Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorLou Logan <lou@lrcd.com>2015-08-18 23:55:15 +0300
committerLou Logan <lou@lrcd.com>2015-08-19 00:14:57 +0300
commit5d410a1db2bfc88dbf4410f7a1a43dd81cb04333 (patch)
treeceb7ebe33c426b3fc0ac6157dd147b96d3cf1f52 /doc
parent4545906f60380e69c388792050ac40b484b3042f (diff)
doc/indevs: fix fbdev typos
Fixes ticket #4784 as found by rodarmor. Signed-off-by: Lou Logan <lou@lrcd.com> Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/indevs.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/indevs.texi b/doc/indevs.texi
index d5415bbc7c..6f47504287 100644
--- a/doc/indevs.texi
+++ b/doc/indevs.texi
@@ -444,12 +444,12 @@ Documentation/fb/framebuffer.txt included in the Linux source tree.
To record from the framebuffer device @file{/dev/fb0} with
@command{ffmpeg}:
@example
-ffmpeg -f fbdev -r 10 -i /dev/fb0 out.avi
+ffmpeg -f fbdev -framerate 10 -i /dev/fb0 out.avi
@end example
You can take a single screenshot image with the command:
@example
-ffmpeg -f fbdev -frames:v 1 -r 1 -i /dev/fb0 screenshot.jpeg
+ffmpeg -f fbdev -framerate 1 -i /dev/fb0 -frames:v 1 screenshot.jpeg
@end example
See also @url{http://linux-fbdev.sourceforge.net/}, and fbset(1).