npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

homebridge-camera-swann

v1.0.4

Published

Enables Homebridge access to Swann NVR cameras via RTSP.

Downloads

63

Readme

Homebridge Camera Swann

npm npm isc license

Enables Homebridge access to Swann NVR cameras via RTSP

This is a fork of the popular: homebridge-camera-ffmpeg

Installation

  • Install via Homebridge Web UI

    • Search for Camera Swann on the plugin screen of config-ui-x .
    • Click install.
  • Basic Installation

    • Install this plugin using: npm install -g homebridge-camera-swann
    • Edit config.json and add the camera.
    • Run Homebridge
    • Add extra camera accessories in Home app. The setup code is the same as homebridge.
  • Advanced Installation

    • Warning: This will install the latest cutting edge development version (may not work!).
    • Install: npm install -g --save https://github.com/SupImDos/homebridge-camera-swann/tarball/master
    • Edit config.json and add the camera.
    • Run Homebridge
    • Add extra camera accessories in Home app. The setup code is the same as homebridge.

Configuration

Config.json Example

{
    "platform": "Camera-Swann",
    "cameras": [
        {
            "name": "Camera Name",
            "manufacturer": "Camera Brand",
            "model": "Camera Model",
            "serialNumber": "Camera Serial",
            "firmwareRevision": "Camera Firmware Version",
            "videoConfig": {
                "mainStream": "-rtsp_transport tcp -i rtsp://[USER]:[PASS]@[HOST]:[PORT]/ch0[X]/0",
                "subStream": "-rtsp_transport tcp -i rtsp://[USER]:[PASS]@[HOST]:[PORT]/ch0[X]/1",
                "maxStreams": 1,
                "bitrateThreshold": 299,
                "videoPacketSize": 1378,
                "audioPacketSize": 188,
                "mapvideo": "0:v",
                "mapaudio": "0:a",
                "audio": true,
                "debug": false
            }
        }
    ]
}

Swann NVR/DVR Configuration Example

Main Stream

Sub Stream

Why use this plugin?

Copy instead of Transcode

The main advantage of this plugin is that it uses ffmpeg to copy the H.264 stream, without the need to transcode it.

Bitrate Threshold

The second advantage of this plugin is the ability to set a bitrateThreshold. This bitrate threshold allows the plugin to select the mainStream or subStream based on the video bitrate requested by HomeKit.

Examples:

  1. Scenario 1 (At home)

    • bitrateThreshold=299
    • iPhone is on local network, requests a stream with video bitrate of 299kbps
    • Requested bitrate is >= bitrateThreshold
    • Camera-Swann selects Main Stream to restream over SRTP
  2. Scenario 2 (Away from home)

    • bitrateThreshold=299
    • iPhone is on 4G, requests a stream with video bitrate of 132kbps
    • Requested bitrate is < bitrateThreshold
    • Camera-Swann selects Sub Stream to restream over SRTP