Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

homebridge-camera-ui

Package Overview
Dependencies
Maintainers
1
Versions
517
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

homebridge-camera-ui

homebridge-camera-ui

  • 2.0.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
191
decreased by-15.86%
Maintainers
1
Weekly downloads
 
Created
Source

Camera!UI v2

npm npm GitHub last commit Donate

Creating and maintaining Homebridge plugins consume a lot of time and effort, if you would like to share your appreciation, feel free to "Star" or donate.

HomeKit Overview

This is a dynamic platform plugin for Homebridge to control your RTSP Cameras with MQTT (motion), GUI (Access to stream via http), Telegram notification and FakeGato Support.

This Plugin creates one accessory with two services. A camera service to access your camera via RTSP and a Motion Sensor service with FakeGato functionality to check the last movement and more. It creates also some custom characteristics to switch camera settings, eg SSH, FTP, Telnet etc within 3rd party apps like Elgato EVE. (Custom Characteristics only for YI Cameras with YI-HACK v4)

You can also set up the notifier to get a Telegram notification with customized messages and markdown capability when motion detected/undetected.

Last but not least, you can activate "GUI" to access the Stream via webbrowser on any device! On iOS devices you have also the possibility to save the website as a web application to your home screen.

Documentation

Changelog

See the changelog for changes between versions of this package.

Installation instructions

After Homebridge has been installed:

  • (sudo) npm i -g homebridge-camera-ui@latest

You also need a programm to handle the stream. I recommend to use FFmpeg

See OS instructions for detailed installation instruction regarding to your OS

Basic configuration

{
 "bridge": {
   ...
 },
 "accessories": [
   ...
 ],
 "platforms": [
   {
     "platform": "CameraUI",
     "videoProcessor": "ffmpeg",
     "cameras": [
       {
         "name": "Flur",
         "active": true,
         "videoConfig": {
           "source": "-rtsp_transport tcp -re -i rtsp://192.168.178.31/ch0_0.h264",
           "maxWidth": 1920,
           "maxHeight": 1080,
           "maxFPS": 30
         }
       }
     ]
   }
 ]
}

See Example Config for more detailsand options!

OS instructions (FFmpeg)

Mac OS:

To install this utility on OS X, just head over to ffmpeg.org, download the release relative to your Macs architecture. Then put the application into an accessible directory and run it from command line. Another way is using HomeBrew

For example

brew install ffmpeg --with-fdk-aac --with-ffplay --with-libass --with-libvorbis --with-libvpx --with-rtmpdump --with-openh264 --with-tools

Windows:

To install this utility on Windows, head over to ffmpeg.org and follow the download link, using your architecture. Then place the downloaded software into an accessible directory and run from command line.

Linux:

To install this utility on Unix, just follow the instructions found at ffmpeg.org

To check if ffmpeg is installed correctly and see a list of available commands try running the following command in the command line:

ffmpeg -help

Homebridge Docker:

Add FFmpeg to packages

PACKAGES=ffmpeg

GUI Access

After setting up the gui part in config.json, just open http://localhost:<port_config.json> and you are ready. Credentials are these setted up in config.json as username and password.

Login

Cameras

Stream

YI Cameras with YI-HACK-V4

For YI Cameras with YI-HACK-V4 this plugin offers custom characteristics and a "settings" page where you can change some settings like Enable/Disable SSH, FTP, Telnet etc. To use this, u need to pass "yihackv4" into your config.json, ie.

{
 "bridge": {
   ...
 },
 "accessories": [
   ...
 ],
 "platforms": [
   {
     "platform": "CameraUI",
     "yihackv4": true,
     "videoProcessor": "ffmpeg",
     "cameras": [
       {
         "name": "Flur",
         "active": true,
         "videoConfig": {
           "source": "-rtsp_transport tcp -re -i rtsp://192.168.178.31/ch0_0.h264",
           "maxWidth": 1920,
           "maxHeight": 1080,
           "maxFPS": 30
         }
       }
     ]
   }
 ]
}

Settings

iOS Web Application

  • Open Safari. Other browsers, such as Chrome, won’t work for this.
  • Navigate to http://localhost:<port_config.json>
  • Tap the Share button at the bottom of the page.
  • On the bottom row of icons, scroll over until you see Add to Home Screen and tap this.
  • On the next screen, choose a name for the link on your home screen. You’ll see the link so you can confirm it, as well as the site’s favicon that becomes its “app” icon.
  • Now just tap the new app on your home screen, and it will open the website in its own navigation window, independent of Safari.

Supported clients

This plugin has been verified to work with the following apps on iOS 12.2 and iOS 12.3 Beta:

  • iOS 12
  • Apple Home
  • All 3rd party apps like Elgato Eve etc (recommended for custom characteristics)
  • Homebridge v0.4.49

Supported Cameras

  • Every camera with an RTSP stream

Contributing

You can contribute to this homebridge plugin in following ways:

Pull requests are accepted.

Troubleshooting

If you have any issues with the plugin then you can run this plugin in debug mode, which will provide some additional information. This might be useful for debugging issues. Just open your config.json and set debug to true!

Licens

MIT License

Copyright (c) 2019 Seyit Bayraktar

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Keywords

FAQs

Package last updated on 03 Jun 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc