Skip to content

Possibility to make SecuritySpy HomeKit compatible?

edited March 2017 in Home automation
I know HomeKit is just starting to come to some acceptable level of maturity, but was curious if anyone knows if Apple has talked about any future capability for Mac software (I'm of course thinking specifically of SecuritySpy) to become any kind of official provider for HomeKit. I haven't heard anything like that yet myself, but it could open some possibilities.

Minus that, does anyone know of any good way to use HomeBridge with SecuritySpy in any manner? Or might Ben at some point consider making a HomeBridge plugin?

Ultimately, I'd love to expose the cameras motion sensors to HomeKit so I could use those as triggers to do other things (i.e. something triggers the motion detector in the backyard at night, turn on the outdoor lights for 10 minutes). I have a ton of HomeKit lights and other things so I've already invested a lot in HomeKit and at this point am only interested in trying to somehow bridge HomeKit and SecuritySpy rather than switch to another ecosystem.

Thanks for any pointers, particularly with HomeBridge. I've seen there are different plugins for HomeBridge for several camera manufacturers but I own 3 brands of IP cameras and they do not all have HomeBridge plugins. So I think the best bet would probably be to "bridge" SecuritySpy itself so that I can utilize the feeds and (maybe/hopefully) the motion detection for HomeKit use.
«13

Comments

  • FWIW, I recently bumped into this IOT workflow thats web based. It might be more involved than what you're looking for, but I was thinking about poking around with it and see what's possible with SecSpy functionality expansion/tie-ins for other IOT devices around the network.

    http://nodered.org
  • I'd love an option to have SecuritySpy disable camera alerts from inside my house when we come home. I think HomeKit has a way to know when you've arrived at home.
  • jms703 - this could also be achieved through other means depending on hardware/software available - IFTTT with a compatible iOS app that supports geofencing - being one such software method to trigger an applescript on the Mac running Security Spy to turn off Actions for the internal cameras.

    I personally mostly rely on schedules, and turning the Actions on/off for the unusual days when someone is home (or turning it on when we are out in a time when we are normally home) - variety of people in a given week (in my case makes) it harder to automate fully.
  • I'm in a similar position, with many HomeKit devices. While its certainly possible to bring things together with a DIY solution, HomeKit solves the basic problem of getting the tech approved by the rest of the family (who for some reason think ssh'ing into a remote server to turn the lights on is a bad thing!). Integrating everything into HomeKit is a massive win, and anything sitting outside the shared eco-system is going to be less useful.

    Unfortunately Apple are really slow in bringing HomeKit to the Mac (i.e. they haven't!). While Homebridge is pretty neat, its essentially a hack which Apple could shut down at any time. As such I can't see it ever being officially supported in commercial software. I'd assume Ben is watching HomeKit very closely, but until Apple offer something official there's nothing that can be done.

    Things that could be done now - The iPhone Security Spy app could implement geofencing just for SS. The other easy option is to have an SS Action which turns on a Hue light through the Hue interface (very easy), and then have HomeKit do something when that bulb turns on. Similar you can check the status of a Hue bulb, and use that to control SS using Apple Script..
  • It can be done using homebridge ffm-e.g. (https://github.com/KhaosT/homebridge-camera-ffmpeg) and a URL for the camera feed that I copied from the web interface. I've not got it setup at present as Ive recently changed a lot of stuff but when I did it worked fairly well.. although was a bit slow to start.
  • I've looked at HomeBridge, but I am also a bit leery of an under-the-table interface to HomeKit.

    Nonetheless, does anyone know if HomeBridge has support for HomeKit security cameras?

    What I mean is that HomeKit was updated last year to support the D-Link Omna 180 IP Camera. That is the first (and possibly still only) IP camera that officially supported by HomeKit.

    So Apple has added some limited capability in HomeKit for a video stream and some ways to control it. Possibly also some limited support for motion sensor triggering.

    Just wondering if HomeBridge links into this directly to allow other IP Cameras to mimic the D-Link and appear as fully native IP Camera to HomeKit?

    Of course, with WWDC 2017 only a week away, I hope we seem some HomeKit enhancements tucked in amongst the higher value changes Apple will be introducing.
  • HomeBridge will do whatever functionality Apple provides with HomeKit. Someone just needs to link the two together with there coding skillz!
  • Don’t suppose anyone else has had any luck with this? Since my last post the way that used to kinda work doesn’t anymore.. I’m not sure why! This is one of the last few bits I haven’t got integrated into HomeKit and it bugs me! (The other being Doorbells, thank you very much Ring!)
  • Well in case it’s of interest to anyone else there’s now a plugin for Indigo Domotics that, along with every other type of HomeKit device, can also add SecuritySpy feeds directly into the home app. It’s currently in public beta but in my tests it works nearly perfectly:

    https://github.com/Colorado4Wheeler/HomeKit-Bridge
  • I added my working config to the homebridge-camera-ffmpeg wiki, hopefully this may help some people out there. https://github.com/KhaosT/homebridge-camera-ffmpeg/wiki/Tested-Configurations#securityspy-for-macos

    SecuritySpy seems like the ideal interface for camera-ffmpeg because you should be able to get almost anything working without having to do any heavy lifting.
  • Thickey, thanks for posting your working config. I think I have the config correct, but how do I actually see the cameras in the Home app? I have my Nest working through Homebridge, Homebridge appears to load the camera ffmpeg when I view progress in the Terminal, but I do not see how to add the cameras in the actual iOS Home app... Any advice?
  • ...and no sooner do I ask the question than I figure it out... I'm not exactly sure what I did this time, but everyone make sure you install ffmpeg first (thought I already had, reloaded it, works...)
  • I can’t get the config correct. Anyone willing to share a json file of a working setup that I could modify?
  • I got ffmpeg installed, and the platform loads when home bridge starts...but I think something is wrong with my command line although the json config is fine. I think I'm not including the security spy items where I should.

    Anyone able to help?
  • When using the ffmpeg with security spy config, does the home app allow to assign each camera to a dedicated room ?
  • edited September 2018
    startak11 if you're still working on this, I had problems with the initial install too. It's worth mentioning that there is a full ffmpeg platform that is separate from the Homebridge plugin...you need to install that first. That's where i had trouble, I was trying to install the ffmpeg main platform from ffmpeg.org...it was confusing and I never got it to work. Once I installed it using Homebrew, everything worked fine (http://brewformulas.org/Ffmpeg).

    So the process for me was; install Homebrew, install ffmpeg (the full platform) using homebrew, then install the ffmpeg Homebridge plugin (https://github.com/KhaosT/homebridge-camera-ffmpeg).

    And this is the Homebridge config that's working for me (using Mac Mini and iPhone 6s and iPhone X)...

    {
    "platform": "Camera-ffmpeg",
    "cameras": [
    {
    "name": "CameraName",
    "videoConfig": {
    "source": "-re -i http://<<username:password>>@<<address>>/++video?cameraNum=0",
    "stillImageSource": "-i http://<<username:password>>@<<address>>/++image?cameraNum=0",
    "maxStreams": 1,
    "maxWidth": 1920,
    "maxHeight": 1080,
    "maxFPS": 25
    }
    }
  • Trying to get this to work but no joy as of yet. Installed the components mentioned by @ifunlisted (Homebrew + ffmpeg using home-brew + ffmpeg home bridge plugin).

    Used the same config as @ifunlisted as well, with the only difference that I put a colon and the port number after the address and changed the cameraNum to 1 to correspond to my actual camera number as so...

    "source": "-re -i http://username:password@address.viewcam.me:8080/++video?cameraNum=1",
    "stillImageSource": "-i http://username:password@address.viewcam.me:8080/++image?cameraNum=1",

    Ran Homebridge and added Homebridge to HomeKit. It runs but no cameras are showing up. Here is the output when I run Homebridge

    Loaded config.json with 0 accessories and 0 platforms.
    Warning: skipping plugin found at '/usr/local/lib/node_modules/homebridge-camera-ffmpeg' since we already loaded the same plugin from '/Users/MYUSER/.nvm/versions/node/v10.12.0/lib/node_modules/homebridge-camera-ffmpeg'.
    Loaded plugin: homebridge-camera-ffmpeg
    Registering platform 'homebridge-camera-ffmpeg.Camera-ffmpeg'
    ---
    Loaded plugin: homebridge-foscam
    Registering accessory 'homebridge-foscam.Foscam'
    ---
    Loaded plugin: homebridge-nest
    Registering platform 'homebridge-nest.Nest'
    ---
    Load homebridge-camera-ffmpeg.Camera-ffmpeg
    Setup Payload:
    X-HM://0023ISYWY5GC2


    Questions (to @ifunlisted or anyone else here who has this working)...

    1) Aside from getting the right software installed and the right configuration, is there any other step to "add" the cameras (as a new accessory in HomeKit/Home app)?

    2) If no, then any idea about why my config doesn't seem to work (again, using @ifunlisted's config with only the mods above to the 'source').

    Thanks
  • I did end up getting it to work. Been working solid for months at this point. Once I installed home brew - And figured out all my syntax errors. It worked. My json file was overly complicated because of the nest devices so that made it more complicated.
  • @startak11 any chance you could share the relevant part of your JSON? (with username and password removed of course) I've been working on this for hours trying to get my SecuritySpy cameras to show up in HomeKit and am continually getting "ERROR: FFmpeg exited with code 1" errors in my Homebridge log.

    I'm confident that I have the regular ffmpeg package installed + the homebridge-camera-ffmpeg plugin as well (I have a couple other Homebridge plugins already running so some what familiar with it all already).

    I think it's the data in JSON for my SecuritySpy cameras that is no good... The example that @ifunlisted write out above is different from what @Thickey wrote out over on GitHub: https://github.com/KhaosT/homebridge-camera-ffmpeg/wiki/Tested-Configurations#securityspy-for-macos

    Unfortunately for me neither ways of formatting my JSON do the trick (nor do any of the other variants I've tried). Any chance you @startak11 (or any other members who have this working) could post the relevant part of their working JSON for me to reference while I try to figure this out?
  • Help me @startak11, @ifunlisted, @Jupeman, @Thickey... you're my only hope! :)
  • I know it’s frustrating. It took awhile for me to figure this out. I’ll post my json when I get home in a bit.
  • OK, so the json is too long to post...send me a pm with your email and i'll send it over.
  • Thanks!!
  • Any response from Ben on this issue?
  • Hi @Richinwal and others. We certainly appreciate the enthusiasm to add HomeKit support to SecuritySpy, and agree that it would be a great feature addition. However this simply isn't possible at the moment with an official Apple API; the only way is via unofficial third-party software modules, which as @dct correctly points out could be shut down by Apple at any time. As soon as Apple release an official macOS API, we will be able to move forward with this.
  • Any updates on SecuritySpy supporting HomeKit?

    There are a lot more video devices popping up with HomeKit support that increase my enthusiam.
  • There has actually been some positive news on this recently, which is that with the advent of the next macOS (Big Sur), Apple is allowing limited access to HomeKit via "Mac Catalyst", which is a platform that allows iOS apps to run on macOS. Therefore, it may be possible for us to use an accessory app running under Mac Catalyst to enable HomeKit support in SecuritySpy. We're looking at this now, and I'll post back with any further updates.
  • Two thumbs up Ben!
  • Brilliant ....hope apple don't mess it up !
  • So I have been investigating and testing this. It seems that technically this should work - I've got a basic proof-of-concept app up and running under Catalyst in Big Sur and it has full access to HomeKit - both for reading values from accessories to allow triggers like "when kitchen light is turned on, start recording from camera X", as well as setting values in accessories to allow actions like "when motion is detected in camera X, turn on kitchen light".

    However, there are two significant problems:

    1. HomeKit apps can't be distributed directly to users; Apple has mandated that they have to go through the Mac App Store. This is inconvenient, as we wouldn't be able to bundle this add-on in SecuritySpy itself; it would have to be a separate download via the App Store. This is suboptimal, but not a deal-breaker.

    2. Presumably, Apple have a good reason for preventing macOS apps access to HomeKit. So, they may reject an app that provides a bridge between HomeKit and macOS from being allowed in the App Store.

    It's not clear whether they would in fact reject such an app - the App Store guidelines don't specifically prohibit this. But we would want to find out for sure before spending significant work on this project, so I'm trying to find this out from Apple.
Sign In or Register to comment.