Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2011-11-23 00:51:20 +0400
committerClément Bœsch <ubitux@gmail.com>2011-11-23 00:54:23 +0400
commit530a540cece290ab356f1608be0b8706b61616b4 (patch)
tree6e24b44d82a0c948bcd8461733cde2258f2f0f1e /doc/ffmpeg.texi
parentb429440d857e01250666ed1a68c86c77e575b9ee (diff)
doc: add a -map_channel example for splitting channels into streams.
Diffstat (limited to 'doc/ffmpeg.texi')
-rw-r--r--doc/ffmpeg.texi6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi
index 5daeb3bf57..2fbfa44b0d 100644
--- a/doc/ffmpeg.texi
+++ b/doc/ffmpeg.texi
@@ -757,6 +757,12 @@ to the respective @var{OUTPUT_CH0} and @var{OUTPUT_CH1}:
ffmpeg -i INPUT -map_channel 0.0.0 OUTPUT_CH0 -map_channel 0.0.1 OUTPUT_CH1
@end example
+The following example split the channels of a stereo input into streams:
+
+@example
+ffmpeg -i stereo.wav -map 0:0 -map 0:0 -map_channel 0.0.0:0.0 -map_channel 0.0.1:0.1 -y out.ogg
+@end example
+
Note that "-map_channel" is currently limited to the scope of one input for
each output; you can't for example use it to pick multiple input audio files
and mix them into one single output.