diff options
author | Lou Logan <lou@lrcd.com> | 2013-10-12 16:40:22 -0800 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-10-14 23:08:52 +0200 |
commit | a06dcde5073be05ce5e53791480d0ea1db0bfc8e (patch) | |
tree | 7167e55bfc452973241dc38f90c7a9b2721cb57f /doc/ffmpeg.texi | |
parent | d6f86d74edfa6e1464ddc613726559269bf1dc7b (diff) | |
download | ffmpeg-a06dcde5073be05ce5e53791480d0ea1db0bfc8e.tar.gz |
doc: make x11grab examples consistent with option names
Change -r to -framerate, but either will work.
Change -s to -video_size, but either will work.
Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
Diffstat (limited to 'doc/ffmpeg.texi')
-rw-r--r-- | doc/ffmpeg.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi index a067aebee5..2bb65d5bfa 100644 --- a/doc/ffmpeg.texi +++ b/doc/ffmpeg.texi @@ -1215,14 +1215,14 @@ standard mixer. Grab the X11 display with ffmpeg via @example -ffmpeg -f x11grab -s cif -r 25 -i :0.0 /tmp/out.mpg +ffmpeg -f x11grab -video_size cif -framerate 25 -i :0.0 /tmp/out.mpg @end example 0.0 is display.screen number of your X11 server, same as the DISPLAY environment variable. @example -ffmpeg -f x11grab -s cif -r 25 -i :0.0+10,20 /tmp/out.mpg +ffmpeg -f x11grab -video_size cif -framerate 25 -i :0.0+10,20 /tmp/out.mpg @end example 0.0 is display.screen number of your X11 server, same as the DISPLAY environment |