1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

doc: drop "./" binary prefixes.

This commit is contained in:
Clément Bœsch
2011-11-13 23:33:22 +01:00
parent 3a9f2f1d65
commit 9466237b8b
3 changed files with 7 additions and 7 deletions

View File

@@ -110,8 +110,8 @@ As a simple test, just run the following two command lines where INPUTFILE
is some file which you can decode with ffmpeg: is some file which you can decode with ffmpeg:
@example @example
./ffserver -f doc/ffserver.conf & ffserver -f doc/ffserver.conf &
./ffmpeg -i INPUTFILE http://localhost:8090/feed1.ffm ffmpeg -i INPUTFILE http://localhost:8090/feed1.ffm
@end example @end example
At this point you should be able to go to your Windows machine and fire up At this point you should be able to go to your Windows machine and fire up

View File

@@ -1219,7 +1219,7 @@ which is bottom field first.
For example: For example:
@example @example
./ffmpeg -i in.vob -vf "fieldorder=bff" out.dv ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
@end example @end example
@section fifo @section fifo
@@ -2295,7 +2295,7 @@ Pass the images of input video on to next video filter as multiple
slices. slices.
@example @example
./ffmpeg -i in.avi -vf "slicify=32" out.avi ffmpeg -i in.avi -vf "slicify=32" out.avi
@end example @end example
The filter accepts the slice height as parameter. If the parameter is The filter accepts the slice height as parameter. If the parameter is
@@ -2407,7 +2407,7 @@ unsharp=7:7:2.5
unsharp=7:7:-2:7:7:-2 unsharp=7:7:-2:7:7:-2
# Use the default values with @command{ffmpeg} # Use the default values with @command{ffmpeg}
./ffmpeg -i in.avi -vf "unsharp" out.mp4 ffmpeg -i in.avi -vf "unsharp" out.mp4
@end example @end example
@section vflip @section vflip
@@ -2415,7 +2415,7 @@ unsharp=7:7:-2:7:7:-2
Flip the input video vertically. Flip the input video vertically.
@example @example
./ffmpeg -i in.avi -vf "vflip" out.avi ffmpeg -i in.avi -vf "vflip" out.avi
@end example @end example
@section yadif @section yadif

View File

@@ -36,7 +36,7 @@ and the vflip filter before merging it back with the other stream by
overlaying it on top. You can use the following command to achieve this: overlaying it on top. You can use the following command to achieve this:
@example @example
./ffmpeg -i input -vf "[in] split [T1], fifo, [T2] overlay=0:H/2 [out]; [T1] fifo, crop=iw:ih/2:0:ih/2, vflip [T2]" output ffmpeg -i input -vf "[in] split [T1], fifo, [T2] overlay=0:H/2 [out]; [T1] fifo, crop=iw:ih/2:0:ih/2, vflip [T2]" output
@end example @end example
The result will be that in output the top half of the video is mirrored The result will be that in output the top half of the video is mirrored