使用运动的覆盆子pi上的离线网络摄像头流

时间:2014-03-11 20:04:48

标签: raspberry-pi

我正在尝试通过HDMI在显示器上进行网络摄像头(logitech c270)流。我正在使用raspbian和我安装了动作(sudo apt-get install motion),我做了我需要做的一切。现在,当我开始运动服务时,raspberry说它已成功启动并且摄像头打开(活动指示灯亮起)。我在哪里可以看到来自网络摄像头的流?

1 个答案:

答案 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中看到它。