mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-06 15:49:50 +08:00
doc: document amerge filter as an alternative for the -map_channel limitation.
This commit is contained in:

committed by
Clément Bœsch

parent
b90d79ec1f
commit
d055c3286c
@ -189,6 +189,23 @@ Example: merge two mono files into a stereo stream:
|
||||
amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
|
||||
@end example
|
||||
|
||||
If you need to do multiple merges (for instance multiple mono audio streams in
|
||||
a single video media), you can do:
|
||||
@example
|
||||
ffmpeg -f lavfi -i "
|
||||
amovie=input.mkv:si=0 [a0];
|
||||
amovie=input.mkv:si=1 [a1];
|
||||
amovie=input.mkv:si=2 [a2];
|
||||
amovie=input.mkv:si=3 [a3];
|
||||
amovie=input.mkv:si=4 [a4];
|
||||
amovie=input.mkv:si=5 [a5];
|
||||
[a0][a1] amerge [x0];
|
||||
[x0][a2] amerge [x1];
|
||||
[x1][a3] amerge [x2];
|
||||
[x2][a4] amerge [x3];
|
||||
[x3][a5] amerge" -c:a pcm_s16le output.mkv
|
||||
@end example
|
||||
|
||||
@section anull
|
||||
|
||||
Pass the audio source unchanged to the output.
|
||||
|
Reference in New Issue
Block a user