Changes between Version 7 and Version 8 of How to capture a webcam input
- Timestamp:
- 09/20/2012 06:20:51 PM (9 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
How to capture a webcam input
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


