Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
9466237b
Commit
9466237b
authored
Nov 13, 2011
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doc: drop "./" binary prefixes.
parent
3a9f2f1d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
ffserver.texi
doc/ffserver.texi
+2
-2
filters.texi
doc/filters.texi
+4
-4
libavfilter.texi
doc/libavfilter.texi
+1
-1
No files found.
doc/ffserver.texi
View file @
9466237b
...
...
@@ -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:
@example
./
ffserver -f doc/ffserver.conf
&
./
ffmpeg -i INPUTFILE http://localhost:8090/feed1.ffm
ffserver -f doc/ffserver.conf
&
ffmpeg -i INPUTFILE http://localhost:8090/feed1.ffm
@end example
At this point you should be able to go to your Windows machine and fire up
...
...
doc/filters.texi
View file @
9466237b
...
...
@@ -1219,7 +1219,7 @@ which is bottom field first.
For example:
@example
./
ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
@end example
@section fifo
...
...
@@ -2295,7 +2295,7 @@ Pass the images of input video on to next video filter as multiple
slices.
@example
./
ffmpeg -i in.avi -vf "slicify=32" out.avi
ffmpeg -i in.avi -vf "slicify=32" out.avi
@end example
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
# 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
@section vflip
...
...
@@ -2415,7 +2415,7 @@ unsharp=7:7:-2:7:7:-2
Flip the input video vertically.
@example
./
ffmpeg -i in.avi -vf "vflip" out.avi
ffmpeg -i in.avi -vf "vflip" out.avi
@end example
@section yadif
...
...
doc/libavfilter.texi
View file @
9466237b
...
...
@@ -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:
@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
The result will be that in output the top half of the video is mirrored
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment