diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-08-08 10:18:38 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-08-08 23:43:37 +0200 |
commit | f09a06908edf5631bee6093120d6f06cfe1fc15d (patch) | |
tree | cc890b4b17d3b7a2b5eda45ada03922ba5096fdc /doc | |
parent | 083754f2be4443c340cf912bdef5d26239ffb42e (diff) | |
download | ffmpeg-f09a06908edf5631bee6093120d6f06cfe1fc15d.tar.gz |
doc/indevs: use separate @example blocks for separate examples
Improve rendering.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/indevs.texi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/indevs.texi b/doc/indevs.texi index 8c7615e69b..a9f2fe4b50 100644 --- a/doc/indevs.texi +++ b/doc/indevs.texi @@ -630,8 +630,10 @@ properties of your X11 display (e.g. grep for "name" or "dimensions"). For example to grab from @file{:0.0} using @command{ffmpeg}: @example ffmpeg -f x11grab -r 25 -s cif -i :0.0 out.mpg +@end example -# Grab at position 10,20. +Grab at position @code{10,20}: +@example ffmpeg -f x11grab -r 25 -s cif -i :0.0+10,20 out.mpg @end example |