Signed-off-by: Forest Crossman <[email protected]>
---
doc/indevs.texi | 51 +++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 51 insertions(+)
diff --git a/doc/indevs.texi b/doc/indevs.texi
index 757fac91de..078f45497a 100644
--- a/doc/indevs.texi
+++ b/doc/indevs.texi
@@ -1086,6 +1086,57 @@ Set the video size given as a string such as
@code{640x480} or @code{hd720}.
Default is @code{qvga}.
@end table
+@subsection Examples
+
+@itemize
+
+@item
+List all the connected IIDC cameras.
+@example
+ffmpeg -sources libdc1394
+@end example
+
+@item
+Grab and record the input of an Apple iSight.
+@example
+ffmpeg -f libdc1394 -pixel_format uyvy422 -video_size 320x240 -framerate 30 -i
auto out.mkv
+@end example
+
+@item
+Grab and record the input of an Apple iSight, using the shorter options.
+@example
+ffmpeg -f libdc1394 -pix_fmt uyvy422 -s 320x240 -r 30 -i auto out.mkv
+@end example
+
+@item
+Grab and record the input of an Apple iSight, specifying the framerate
+as a ratio.
+@example
+ffmpeg -f libdc1394 -pix_fmt uyvy422 -s 320x240 -r 30000:1000 -i auto out.mkv
+@end example
+
+@item
+Grab and record the input of an Apple iSight at a greater resolution but
+a lower framerate.
+@example
+ffmpeg -f libdc1394 -pix_fmt uyvy422 -s 640x480 -r 15 -i auto out.mkv
+@end example
+
+@item
+Grab and record the input of a specific Apple iSight.
+@example
+ffmpeg -f libdc1394 -pix_fmt uyvy422 -s 640x480 -r 15 -i 0x000a270004106ea3
out.mkv
+@end example
+
+@item
+Grab and record the second stream from a specific camera that has
+multiple units.
+@example
+ffmpeg -f libdc1394 -pix_fmt uyvy422 -s 640x480 -r 15 -i 0xfacade02bc394f15:1
out.mkv
+@end example
+
+@end itemize
+
@section openal
The OpenAL input device provides audio capture on all systems with a
--
2.23.0
_______________________________________________
ffmpeg-devel mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".