diff options
author | Reinhard Tartler <siretart@tauware.de> | 2010-09-13 13:25:51 +0000 |
---|---|---|
committer | Reinhard Tartler <siretart@tauware.de> | 2010-09-13 13:25:51 +0000 |
commit | b3555bf08a2240b6e4c1ae0c6a5f76e8d64c29c5 (patch) | |
tree | 03040228f64d458828026c5f9ae6457313020032 | |
parent | 4660143a2c009031ae7e812bcb966ea784a8881c (diff) | |
download | ffmpeg-b3555bf08a2240b6e4c1ae0c6a5f76e8d64c29c5.tar.gz |
fix x11grab example in e.g. the manpage so that they actually work
Originally committed as revision 25113 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | doc/ffmpeg-doc.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ffmpeg-doc.texi b/doc/ffmpeg-doc.texi index 71bed9b711..d9c5c14242 100644 --- a/doc/ffmpeg-doc.texi +++ b/doc/ffmpeg-doc.texi @@ -817,14 +817,14 @@ standard mixer. FFmpeg can grab the X11 display. @example -ffmpeg -f x11grab -s cif -i :0.0 /tmp/out.mpg +ffmpeg -f x11grab -s cif -r 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 -i :0.0+10,20 /tmp/out.mpg +ffmpeg -f x11grab -s cif -r 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 |