Commit 349e7f42 authored by Stefano Sabatini's avatar Stefano Sabatini

doc/indevs: itemize examples for the v4l2 device

parent d2ccab5f
...@@ -612,16 +612,22 @@ boot time, unaffected by NTP or manual changes to the clock). The ...@@ -612,16 +612,22 @@ boot time, unaffected by NTP or manual changes to the clock). The
@option{-timestamps abs} or @option{-ts abs} option can be used to force @option{-timestamps abs} or @option{-ts abs} option can be used to force
conversion into the real time clock. conversion into the real time clock.
Some usage examples of the video4linux2 devices with @command{ffmpeg} Some usage examples of the video4linux2 device with @command{ffmpeg}
and @command{ffplay}: and @command{ffplay}:
@itemize
@item
Grab and show the input of a video4linux2 device:
@example @example
# Grab and show the input of a video4linux2 device.
ffplay -f video4linux2 -framerate 30 -video_size hd720 /dev/video0 ffplay -f video4linux2 -framerate 30 -video_size hd720 /dev/video0
@end example
# Grab and record the input of a video4linux2 device, leave the @item
framerate and size as previously set. Grab and record the input of a video4linux2 device, leave the
framerate and size as previously set:
@example
ffmpeg -f video4linux2 -input_format mjpeg -i /dev/video0 out.mpeg ffmpeg -f video4linux2 -input_format mjpeg -i /dev/video0 out.mpeg
@end example @end example
@end itemize
For more information about Video4Linux, check @url{http://linuxtv.org/}. For more information about Video4Linux, check @url{http://linuxtv.org/}.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment