本帖最后由 wyz6123707 于 2018-4-21 21:55 编辑
参考内容
github - homebridge-camera-ffmpeg
wqqs的帖子 - 小方摄像头破解及接入HomeAssistant过程分享
oioi的帖子 - 小米小方摄像头降级加破解
dodiu的帖子 - 首先来破解小方摄像头再接入ha
破解
这里不多说了,大佬们的帖子写得很详细了
群晖surveillance station调用
套件中心安装surveillance station
进入surveillance station
添加小方摄像头
点击添加网络摄像机
快速添加
配置如下
地址输入你小方摄像头的地址,端口为554,视频路径为/unicast,具体可以参考上图。
然后点击测试连接,确认添加
这样,没有内存卡也能储存小方的视频了
添加到Home Assistant
这部分内容参考wqqs的帖子 - 小方摄像头破解及接入HomeAssistant过程分享,我只是做个搬运及整理。
camera:
- platform: ffmpeg
name: Living Room
input: -rtsp_transport tcp -i rtsp://你的小方IP:554/unicast
添加到homebridge
先安装homebridge-ffmpeg插件
树莓派
sudo npm install -g homebridge-camera-ffmpeg
群晖docker
打开docker,进入homebridge容器,点击终端机,新增,输入
npm install -g homebridge-camera-ffmpeg>
修改config.json
这部分内容参考插件页
添加一个platform
{
"platform":"Camera-ffmpeg",
"cameras":[
{
"name":"Camera 1",
"videoConfig":{
"source":"-rtsp_transport tcp -i rtsp://ip-address/unicast",
"stillImageSource":"-i rtsp://ip-address/unicast -vframes 1 -r 1",
"maxStreams":2,
"maxWidth":720,
"maxHeight":480,
"maxFPS":10,
"vcodec":"h264_omx"
}
}
]
}
重启homebridge
enjoy it
|