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 🙏

© 2026 – Pkg Stats / Ryan Hefner

dahua-camera-ultimate

v1.0.1

Published

Dahua Camera Ultimate - Homebridge plugin for direct Dahua IP camera integration with motion detection and FFmpeg streaming

Readme

Dahua Camera Ultimate

npm version

Homebridge plugin for direct Dahua IP camera integration — connects to individual cameras by IP, not via an NVR.

Features

  • 📷 Direct camera connection — no NVR required
  • 🔍 Auto-discovery of camera model, serial, and firmware
  • 📹 RTSP streaming — mainstream, substream, or thirdstream
  • 📸 Fast snapshots via CGI API
  • 🎯 Motion detection via real-time event stream
  • 🚀 Hardware acceleration — VAAPI, QuickSync, NVENC, AMF, VideoToolbox, V4L2
  • 🎥 HomeKit Secure Video (HKSV) with prebuffering
  • ⚙️ Homebridge Config UI X support

Installation

npm install -g dahua-camera-ultimate@latest

Or install via Homebridge Config UI X by searching for dahua-camera-ultimate.

Configuration

Add one platform entry per camera:

{
  "platforms": [
    {
      "platform": "Dahua_Camera_Ultimate",
      "name": "Front Door",
      "host": "192.168.1.101",
      "username": "admin",
      "password": "your_password"
    },
    {
      "platform": "Dahua_Camera_Ultimate",
      "name": "Backyard",
      "host": "192.168.1.102",
      "username": "admin",
      "password": "your_password"
    }
  ]
}

Configuration Options

| Option | Type | Default | Description | |--------|------|---------|-------------| | name | string | host IP | Camera display name in HomeKit | | host | string | required | Camera IP address or hostname | | port | number | 80 | HTTP port | | secure | boolean | false | Use HTTPS | | username | string | required | Camera username | | password | string | required | Camera password | | channel | number | 1 | RTSP channel (usually 1) | | streamType | string | mainstream | mainstream, substream, or thirdstream | | motion | boolean | true | Enable motion sensor | | motionTimeout | number | 1 | Seconds before motion resets | | videoProcessor | string | bundled | Path to custom FFmpeg binary | | probeOnStartup | boolean | false | Log stream codec info on startup | | debugMotion | boolean | false | Log all motion events |

Video Config

{
  "videoConfig": {
    "encoder": "software",
    "resolutionMode": "adaptive",
    "maxWidth": 1920,
    "maxHeight": 1080,
    "maxBitrate": 2000,
    "audio": true,
    "recording": false,
    "prebuffer": false
  }
}

Hardware Acceleration

The bundled ffmpeg-for-homebridge only includes software codecs. To use hardware acceleration install or compile FFmpeg with the appropriate encoder support, then set the videoProcessor path and select the encoder in videoConfig.

For hardware encoders, set resolutionMode to force-max to avoid being stuck at 640x360.

Credits

  • Author: pit5bul
  • Inspired by homebridge-camera-ffmpeg