How to capture camera photo/video using MPlayer on Linux?
Posted on In QAHow to capture camera photo/video using MPlayer on Linux?
You can watch the video from the camera by MPlayer:
# mplayer tv://
Note that you need the root
privilege to play the tv://
.
You can use mplayer to capture photos by:
# mplayer -vo png -frames 3 tv://
If will store files 0000000{1..3}.png in the current directory. You may need to change the frame numbers from 3 to 1 or larger ones depending on the camera initialization time on your machine.