Changes between Version 7 and Version 8 of How to capture a webcam input


Ignore:
Timestamp:
09/20/2012 06:20:51 PM (9 months ago)
Author:
burek
Comment:

Added "v4l2" as a shorthand for "video4linux2"

Legend:

Unmodified
Added
Removed
Modified
  • How to capture a webcam input

    v7 v8  
    5959== Linux == 
    6060 
    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: 
     61On 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: 
    6262{{{ 
    6363ffmpeg -f video4linux2 -r 25 -s 640x480 -i /dev/video0 out.avi 
     64}}} 
     65or 
     66{{{ 
     67ffmpeg -f v4l2 -r 25 -s 640x480 -i /dev/video0 out.avi 
    6468}}} 
    6569