Skip to content

Releases: homebridge-plugins/homebridge-camera-ffmpeg

Version 1.1.1

14 May 19:32
bc3e6e5
Compare
Choose a tag to compare

What's Changes

  • Adds debug log for videoProcessor.

Full Changelog: v1.1.0...v1.1.1

Version 1.1.0

13 May 13:48
d88dadd
Compare
Choose a tag to compare

What's Changes

  • Adds an option to have a camera behave like a video doorbell, including a switch to trigger doorbell events (automate the switch to get notifications)
  • Add Manufacturer, Model, Serial, and Firmware Revision into config.schema.json.

Full Changelog: v1.0.0...v1.1.0

Version 1.0.0

12 May 03:31
494e276
Compare
Choose a tag to compare

What's Changes

Breaking Changes

  • homebridge-camera-ffmpeg now comes bundled with it's own pre-built static ffmpeg binaries that are compiled with support for audio (libfdk-aac) and hardware decoding (h264_omx). The following platforms are supported:
    • Raspbian Linux - armv6l (armv7l)
    • Debian/Ubuntu Linux - x86_64, armv7l, aarch64
    • Alpine Linux - x86_64, armv6l, aarch64
    • macOS (10.14+) - x86_64
    • Windows 10 - x86_64
  • If your platform is not supported the plugin will fallback to using your global install of ffmpeg automatically.
  • Should you wish to force the plugin to use the global install of ffmpeg instead of the provided copy, you can simply set videoProcessor option to ffmpeg. Example:
    {
      "platform": "Camera-ffmpeg",
      "videoProcessor": "ffmpeg",
      "cameras": [
        ...
      ]
    }

Other Changes

  • Initial release.

Full Changelog: initial-commit...v1.0.0