我是Raspberry Pi的新手,并且之前没有Linux的经验,所以这对我来说都是新手......
Octoprint是一款3D打印机假脱机程序,您可以在您的树莓派上运行。 Octoprint的一个功能是能够设置USB摄像头以查看静止图像或打印流。
我正在使用Octopi预打包的Octoprint图像。
Octoprint' github包含以下有关我的USB相机的信息。但我不知道如何实现这一点。
Hama PC-Webcam" AC-150"在Raspberry Pi上
./mjpg_streamer -o output_http.so -w ./www -i input_uvc.so -y -r 640x480 -f 10
https://github.com/foosel/OctoPrint/wiki/Webcams-known-to-work
我猜这是一个简单的命令,我通过控制台进入,但我没有运气的几个命令。有人可以说明我如何使用它吗?就像我说的那样,我是pi的绝对初学者......
非常感谢任何帮助!
答案 0 :(得分:1)
试试这个:
camera_usb_options="-r VGA -f 10 -y"
sudo service octoprint stop
fuser /dev/video0
/dev/video0: **1871m**
$ ps axl | grep **1871** *Change this number by yours*
$ kill -9 **1871**
./mjpg_streamer -i "input_uvc.so $camera_usb_options" -o "output_http.so -w ./www"
sudo service octoprint start