Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您好,我有一个 USB 网络摄像头,对于 picamera 来说太破了,无论如何我可以编写一个可以录制视频的 python 程序吗?
脑海中浮现出一些想法……
确定您拥有的网络摄像头
将其插入并查看是否可以通过以下方式看到它:
sudo lsusb
安装v4l-utils并查看是否可以访问:
v4l-utils
sudo apt-get install v4l-utils
v4l2-ctl --list-devices
安装ffmpeg并尝试使用它:
ffmpeg
sudo apt install ffmpeg
ffplay /dev/video0
如果这可行,您可以使用 OpenCV 进行记录ffmpeg或使用OpenCV videocapture()来抓取和记录帧。
videocapture()