我正在尝试通过HDMI在显示器上进行网络摄像头(logitech c270)流。我正在使用raspbian和我安装了动作(sudo apt-get install motion
),我做了我需要做的一切。现在,当我开始运动服务时,raspberry说它已成功启动并且摄像头打开(活动指示灯亮起)。我在哪里可以看到来自网络摄像头的流?
答案 0 :(得分:2)
使用以下命令启动motion
motion -n -c <config-file>
<config-file>
是motion
的配置文件。
在此配置文件中,您可以打开流媒体服务器,以便从浏览器访问网络摄像头图像流。
它应包含以下几行:
stream_port 8081
stream_localhost off
webcontrol_port 8080
webcontrol_localhost off
按照其余说明for example here。
如果您打开Firefox并转到:8081,您将看到输出。
遗憾的是,对我来说,Chrome无法显示此流,但如果您制作html
这样的文件:
<html>
<body>
<img src="http://<ip-address>:8081"/>
</body>
</html>
你也应该在Chrome中看到它。