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
41985cb0
Commit
41985cb0
authored
Apr 15, 2013
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doc/filters: merge asplit and split documentation
Also move them to multimedia filters section.
parent
3453b019
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
49 deletions
+41
-49
filters.texi
doc/filters.texi
+41
-49
No files found.
doc/filters.texi
View file @
41985cb0
...
@@ -934,32 +934,6 @@ the data is treated as if all the planes were concatenated.
...
@@ -934,32 +934,6 @@ the data is treated as if all the planes were concatenated.
A list of Adler-32 checksums for each data plane.
A list of Adler-32 checksums for each data plane.
@end table
@end table
@section asplit
Split input audio into several identical outputs.
The filter accepts a single parameter which specifies the number of outputs. If
unspecified, it defaults to 2.
For example:
@example
[in] asplit [out0][out1]
@end example
will create two separate outputs from the same input.
To create 3 or more outputs, you need to specify the number of
outputs, like in:
@example
[in] asplit=3 [out0][out1][out2]
@end example
@example
ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
@end example
will create 5 copies of the input audio.
@section astreamsync
@section astreamsync
Forward two audio streams and control the order the buffers are forwarded.
Forward two audio streams and control the order the buffers are forwarded.
...
@@ -5723,29 +5697,6 @@ which is equivalent to:
...
@@ -5723,29 +5697,6 @@ which is equivalent to:
subtitles=filename=sub.srt
subtitles=filename=sub.srt
@end example
@end example
@section split
Split input video into several identical outputs.
The filter accepts a single option @option{outputs} which specifies
the number of outputs. If unspecified, it defaults to 2.
For example
@example
ffmpeg -i INPUT -filter_complex split=5 OUTPUT
@end example
will create 5 copies of the input video.
For example:
@example
[in] split [splitout1][splitout2];
[splitout1] crop=100:100:0:0 [cropout];
[splitout2] pad=200:200:100:100 [padout];
@end example
will create two separate outputs from the same input, one cropped and
one padded.
@section super2xsai
@section super2xsai
Scale the input by 2x and smooth using the Super2xSaI (Scale and
Scale the input by 2x and smooth using the Super2xSaI (Scale and
...
@@ -7532,6 +7483,47 @@ aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=
...
@@ -7532,6 +7483,47 @@ aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=
@end example
@end example
@end itemize
@end itemize
@section split, asplit
Split input into several identical outputs.
@code{asplit} works with audio input, @code{split} with video.
The filter accepts a single parameter which specifies the number of outputs. If
unspecified, it defaults to 2.
@subsection Examples
@itemize
@item
Create two separate outputs from the same input:
@example
[in] split [out0][out1]
@end example
@item
To create 3 or more outputs, you need to specify the number of
outputs, like in:
@example
[in] asplit=3 [out0][out1][out2]
@end example
@item
Create two separate outputs from the same input, one cropped and
one padded:
@example
[in] split [splitout1][splitout2];
[splitout1] crop=100:100:0:0 [cropout];
[splitout2] pad=200:200:100:100 [padout];
@end example
@item
Create 5 copies of the input audio with @command{ffmpeg}:
@example
ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
@end example
@end itemize
@c man end MULTIMEDIA FILTERS
@c man end MULTIMEDIA FILTERS
@chapter Multimedia Sources
@chapter Multimedia Sources
...
...
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