Commit 8cfe60ef authored by Paul B Mahol's avatar Paul B Mahol

doc/filters: itemize shuffleframes & shuffleplanes examples

Add one more shuffleframes example.
Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 2793ebd6
...@@ -12113,11 +12113,22 @@ frames. Number of indexes also sets maximal value that each index may have. ...@@ -12113,11 +12113,22 @@ frames. Number of indexes also sets maximal value that each index may have.
The first frame has the index 0. The default is to keep the input unchanged. The first frame has the index 0. The default is to keep the input unchanged.
@subsection Examples
@itemize
@item
Swap second and third frame of every three frames of the input: Swap second and third frame of every three frames of the input:
@example @example
ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
@end example @end example
@item
Swap 10th and 1st frame of every ten frames of the input:
@example
ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
@end example
@end itemize
@section shuffleplanes @section shuffleplanes
Reorder and/or duplicate video planes. Reorder and/or duplicate video planes.
...@@ -12142,10 +12153,15 @@ The index of the input plane to be used as the fourth output plane. ...@@ -12142,10 +12153,15 @@ The index of the input plane to be used as the fourth output plane.
The first plane has the index 0. The default is to keep the input unchanged. The first plane has the index 0. The default is to keep the input unchanged.
@subsection Examples
@itemize
@item
Swap the second and third planes of the input: Swap the second and third planes of the input:
@example @example
ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
@end example @end example
@end itemize
@anchor{signalstats} @anchor{signalstats}
@section signalstats @section signalstats
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment