Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
7ce118ba
Commit
7ce118ba
authored
Apr 03, 2012
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doc/filters: update documentation.
parent
9e8aae44
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
10 deletions
+8
-10
filters.texi
doc/filters.texi
+8
-10
No files found.
doc/filters.texi
View file @
7ce118ba
...
@@ -17,10 +17,11 @@ output pads is called a "sink".
...
@@ -17,10 +17,11 @@ output pads is called a "sink".
@anchor{Filtergraph syntax}
@anchor{Filtergraph syntax}
@section Filtergraph syntax
@section Filtergraph syntax
A filtergraph can be represented using a textual representation, which
A filtergraph can be represented using a textual representation, which is
is recognized by the @code{-vf} and @code{-af} options in @command{avconv}
recognized by the @option{-filter}/@option{-vf} and @option{-filter_complex}
and @command{avplay}, and by the @code{av_parse_graph()} function defined in
options in @command{avconv} and @option{-vf} in @command{avplay}, and by the
@file{libavfilter/avfiltergraph}.
@code{avfilter_graph_parse()}/@code{avfilter_graph_parse2()} function defined in
@file{libavfilter/avfiltergraph.h}.
A filterchain consists of a sequence of connected filters, each one
A filterchain consists of a sequence of connected filters, each one
connected to the previous one in the sequence. A filterchain is
connected to the previous one in the sequence. A filterchain is
...
@@ -1125,15 +1126,12 @@ Follow some examples:
...
@@ -1125,15 +1126,12 @@ Follow some examples:
overlay=main_w-overlay_w-10:main_h-overlay_h-10
overlay=main_w-overlay_w-10:main_h-overlay_h-10
# insert a transparent PNG logo in the bottom left corner of the input
# insert a transparent PNG logo in the bottom left corner of the input
movie=logo.png [logo];
avconv -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
[in][logo] overlay=10:main_h-overlay_h-10 [out]
# insert 2 different transparent PNG logos (second logo on bottom
# insert 2 different transparent PNG logos (second logo on bottom
# right corner):
# right corner):
movie=logo1.png [logo1];
avconv -i input -i logo1 -i logo2 -filter_complex
movie=logo2.png [logo2];
'overlay=10:H-h-10,overlay=W-w-10:H-h-10' output
[in][logo1] overlay=10:H-h-10 [in+logo1];
[in+logo1][logo2] overlay=W-w-10:H-h-10 [out]
# add a transparent color layer on top of the main video,
# add a transparent color layer on top of the main video,
# WxH specifies the size of the main input to the overlay filter
# WxH specifies the size of the main input to the overlay filter
...
...
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