/homebridge-camera-ui

Homebridge plugin for RTSP Cameras with motion detection support, Web UI to manage/watch streams and web application support

Primary LanguageJavaScriptMIT LicenseMIT

camera.ui

camera.ui

CameraUI is a homebridge user interface to control your cameras. It supports almost everything you need for a camera user interface.

  • Livestreams on Web
  • Full functional Web App with push notifications
  • Multi-language support
  • CamViews: A resizable, drag & drop camera overview
  • Telegram and Webhook Support
  • Record Snapshot/Video on movement detection
  • Beautiful User Interface with Themes and Darkmode
  • Config UI X Support
  • and much mure...

Supported Languages: DE | EN

Status

verified-by-homebridge 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.

Click here to review more of my plugins.

Installation Instructions

sudo npm install -g --unsafe-perm homebridge-camera-ui@latest

Once you have installed and configured the plugin you can access the interface via http://localhost:8181.

The default username is admin and the default password is admin.

Example Config

{
   ...
    "platforms": [
        {
            "name": "CameraUI",
            "port": 8181,
            "auth": "form",
            "debug": true,
            "reset": false,
            "mqtt": {
                "active": false,
                "host": "192.168.178.123",
                "port": 1883,
                "topic": "homebridge/motion",
                "on_message": "ON"
            },
            "http": {
                "active": false,
                "port": 7777,
                "localhttp": false
            },
            "ssl": {
                "active": false,
                "key": "/path/to/key/server.key",
                "cert": "/path/to/cert/server.crt"
            },
            "options": {
                "videoProcessor": "ffmpeg",
                "interfaceName": "eth0"
            },
            "cameras": [ ... ],
            "platform": "CameraUI"
        }
    ]
}

See Example Config for more details.

Livestream

To enable livestream for the User Interface, you need give each camera an own socketPort! See Example Config for more details.

Usage

Login

On first login attempt, the interface will prompt you to change the credentials to continue. The Login screen is adjusted for all available screens.

camera.ui

Dashboard

Shows you your favourite cameras streams or snapshots (adjustable under settings)

camera.ui

CamViews

The main function of this interface. Provide you a unique overview of you favourite cameras (adjustable under settings) with resize, drag & drop support!

camera.ui

Recordings

Shows you all recorded files under a hood

camera.ui

Notifications

The Interface also provides you with a notifications section to not miss any notifications.

camera.ui

Settings

You can change your credentials, user image, themes and much more under settings!

camera.ui

Supported clients

This plugin has been verified to work with the following apps/systems:

  • iOS > 11
  • Android
  • Windows 10
  • macOS Catalina 10.15
  • Apple Home
  • All 3rd party apps like Elgato Eve etc
  • Homebridge v1.1.6

Browser

The following browsers are supported by this plugin:

  • Chrome - latest
  • Firefox - latest
  • Safari - 2 most recent major versions
  • iOS - 2 most recent major versions

MS Internet Explorer (any version) is not supported!

Supported Cameras

Every camera with an RTSP stream!

See Tested Cameras for more info.

FAQ

Please check our FAQ before you open an issue.

Contributing

This plugin uses a modified version of the homebridge-camera-ffmpeg plugin from @sunoo

Credits goes also to @phoboslab for the wonderful decoder!

You can contribute to this homebridge plugin in following ways:

  • Report issues and help verify fixes as they are checked in.
  • Review the source code changes.
  • Contribute bug fixes.
  • Contribute changes to extend the capabilities
  • Pull requests are accepted.

See CONTRIBUTING

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 ui and set debug to true!

https://github.com/SeydX/homebridge-camera-ui/wiki/Debug

Licens

MIT License

Copyright (c) 2020 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.