• March 18, 2024, 07:23:44 PM
  • Welcome, Guest
Please login or register.

Login with username, password and session length
Advanced search  

News:

This Forum Beta is ONLY for registered owners of D-Link products in the USA for which we have created boards at this time.

Author Topic: Apple HomeKit implementation (Homebridge & homebridge-camera-ffmpeg)  (Read 43206 times)

S0NIC

  • Level 1 Member
  • *
  • Posts: 2

I'd just like to confirm that the DCS 2330L and the DCS 935L work very well with Apple HomeKit and Siri when the Homebridge plugin "homebridge-camera-ffmpeg" is used.

This could possibly also apply to all DLINK cameras with MJPEG & RTSP streams.You just need the correct URL.
http://forums.dlink.com/index.php?topic=59172.0
https://www.ispyconnect.com/man.aspx?n=D-Link

Code: [Select]
        {
            "platform": "Camera-ffmpeg",
            "cameras": [
                {
                    "name": "DCS-935L",
                    "videoConfig": {
                        "source": "-re -i rtsp://USERNAME:PASSWORD@CAM-IP-ADDRESS:554/play1.sdp",
                        "stillImageSource": "-i http://USERNAME:PASSWORD@CAM-IP-ADDRESS/cgi/jpg/image.cgi",
                        "maxStreams": 2,
                        "maxWidth": 1280,
                        "maxHeight": 720,
                        "vcodec": "h264_omx",
"packetSize": 188,
                        "maxFPS": 4
                    }
                },
                {
                    "name": "DCS-2330L",
                    "videoConfig": {
                        "source": "-re -i rtsp://USERNAME:PASSWORD@CAM-IP-ADDRESS/live2.sdp",
                        "stillImageSource": "-i http://USERNAME:PASSWORD@CAM-IP-ADDRESS/dms?nowprofileid=2",
                        "maxStreams": 2,
                        "maxWidth": 1280,
                        "maxHeight": 720,
                        "vcodec": "h264_omx",
                        "packetSize": 188,
"maxFPS": 4
                    }
                }
            ]
        },

The instructions can be found here:
« Last Edit: March 05, 2018, 08:46:13 AM by GreenBay42 »
Logged

GreenBay42

  • Administrator
  • Level 11 Member
  • *
  • Posts: 2752
Re: Apple HomeKit implementation (Homebridge & homebridge-camera-ffmpeg)
« Reply #1 on: March 05, 2018, 08:49:34 AM »

Thanks for the info.
Logged

kikect

  • Level 1 Member
  • *
  • Posts: 1
Re: Apple HomeKit implementation (Homebridge & homebridge-camera-ffmpeg)
« Reply #2 on: August 17, 2018, 03:21:01 AM »

Hi, I have a 942L camera and it's working fine. Here you are my config: (I have the RTSP authentication disable on the camera config)


         "platform": "Camera-ffmpeg",
            "cameras": [
                 {
               "name": "Bedroom",
                    "videoConfig": {
                        "source": "-rtsp_transport tcp -re -i rtsp://IP-ADDRESS/play1.sdp",
                        "maxStreams": 2,
                        "maxWidth": 1280,
                        "maxHeight": 720,
                        "maxFPS": 30
                 }
                 }

Logged