|
对不起,原帖子中有大佬说对比度高,原来是说看不清楚。
原帖是黏贴一些内容,可能是偏码问题,在网页有阴影和错位,显示不正常。但在我自己的浏览器中显示是正常的,我今天在办公室打开帖子才发现显示不正常。原贴不知道怎么修改,现从新发一次。
新版HA有个很酷的功能:Stream, 但是很不完善:https://www.home-assistant.io/blog/2019/03/20/release-90/
大家先看看视频:http://www.vrsho.com/doorbell-home-automation-kodi/
其实在kodi中很多年前就有相似的插件,我搜索和阅读了能搜到的帖子(主要是国外英文,国内很少人折腾这个),也都做和测试了一遍,都能串流到kodi,但都各有不完善的地方。
我的目的是实现在ha中可以自动化控制摄像头,并在所有的kodi播放器上串流摄像头视频,目前,最大问题是触发视频串流的问题,有的可以自动化触发,有的没法办法自动化触发,所以,还不能完美实现ha与kodi协同控制。
其中,方法二 插件script.securitycam最理想的,但是没有好的触发方法,插件作者是领了一个插件通过邮件触发点,但邮件触发可能存在即时性和可靠性不大的问题,大神有兴趣可以研究研究。
说用这个脚本可以关闭preview,
http://192.168.1.6:8080/jsonrpc?request={"jsonrpc": 2.0,"method":"Addons.ExecuteAddon","params":{"addonid":"script.securitycam"},"id": 1}}
可是,我总是得到下面错误:
{"error":{"code":-32700,"message":"Parse error."},"id":1,"jsonrpc":"2.0"}
不知何故。
我把资料分享出来,供有兴趣的同学们参考,省了大家搜索查找的时间,也希望有兴趣的大神能完善有关的方法。
### 在kodi中视频串流摄像头的几种方法:
## 方法一: Stream Security Camera Fullscreen To Kodi (without Kodi Surveillance Room add-on):https://community.home-assistant ... e-room-add-on/20043 https://www.arcdyn.com/articles/ ... di-on-raspberry-pi/
## 将摄像头视频串流到Kodi的命令
shell_command:
cam1_on_kodi: "curl -i -X POST -H \"Content-Type: application/json\" -d '{\"jsonrpc\":\"2.0\",\"method\":\"Player.Open\",\"params\":{\"options\":{\"shuffled\":false,\"repeat\":\"off\"},\"item\":{\"file\":\"special://profile/playlists/video/cam1.m3u\"}},\"id\":\"1\"}' http://192.168.1.82:8080/jsonrpc"
## 停止摄像头视频串流的命令 效果与使用服务 media_player.media_stop 一样:
# shell_command:
cam1_stop_on_kodi: "curl -i -X POST -H \"Content-Type: application/json\" -d '{\"jsonrpc\":\"2.0\",\"method\":\"Player.Stop\",\"params\":{\"playerid\":1},\"id\":1}' http://192.168.1.82:8080/jsonrpc"
## 方法二:插件:script.securitycam:https://github.com/Paulemann/script.securitycam,kodi论坛:https://forum.kodi.tv/showthread.php?tid=182540&page=17, Doorbell Home Automation (KODI) http://www.vrsho.com/doorbell-home-automation-kodi/ The Media Center Blog http://windowsmediacenter.blogsp ... -add-on-update.html
## 此插件的原版本:XbmcSecurityCamOverlayAddOn(已经失效)https://github.com/RyanMelenaNoesis/XbmcSecurityCamOverlayAddOn
## 方法三:插件 surveillance room:https://github.com/maikito26/plugin.video.surveillanceroom homeassistant论坛:Pop-up your security cam on Kodi https://community.home-assistant ... ty-cam-on-kodi/4997
## 方法四:插件 surveillance camera 18.9以下的kodi 官方插件中有这个插件 https://kodi.wiki/view/Add-on:Surveillance_Cameras https://kodi.tv/addon/plugins-video-add-ons/surveillance-cameras 安装和使用方法:Adding a video stream from an IP camera in Kodi TV using Surveillance Cameras add-on https://www.claudiokuenzler.com/ ... lance-camera-add-on
## 方法五:用播放器直接播放:让KODI播放萤石监控摄像头画面 https://bbs.hassbian.com/thread-3226-1-1.html (出处: 『瀚思彼岸』» 智能家居技术论坛)
|
|