Changes between Version 7 and Version 8 of Capture/Webcam
- Timestamp:
- Sep 20, 2012, 4:20:51 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Capture/Webcam
v7 v8 59 59 == Linux == 60 60 61 On Linux, we can use '''[http://ffmpeg.org/ffmpeg.html#video4linux2 video4linux2]''' input device to capture live input (such as web camera), like this:61 On Linux, we can use '''[http://ffmpeg.org/ffmpeg.html#video4linux2 video4linux2]''' (or shortly "v4l2") input device to capture live input (such as web camera), like this: 62 62 {{{ 63 63 ffmpeg -f video4linux2 -r 25 -s 640x480 -i /dev/video0 out.avi 64 }}} 65 or 66 {{{ 67 ffmpeg -f v4l2 -r 25 -s 640x480 -i /dev/video0 out.avi 64 68 }}} 65 69
