Changes between Version 7 and Version 8 of AudioChannelManipulation
- Timestamp:
- Jun 5, 2014, 11:40:36 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AudioChannelManipulation
v7 v8 4 4 5 5 == stereo → mono stream == 6 6 7 Mix a single stereo stream down to a mono stream. Both channels of the stereo stream will be downmixed into the stream. 8 9 [[Image(stereo_mono.png)]] 7 10 8 11 {{{ … … 11 14 12 15 == stereo → 2 × mono streams == 16 13 17 Output each channel in stereo input to individual mono streams in one output file with the [https://ffmpeg.org/ffmpeg-filters.html#channelsplit channelsplit] audio filter. 14 18 19 [[Image(stereo_2mono_streams.png)]] 20 15 21 {{{ 16 22 ffmpeg -i in.mp3 -filter_complex channelsplit out.mp3 … … 18 24 19 25 == stereo → 2 × mono files == 26 20 27 Output each channel in stereo input to individual mono files: 28 29 [[Image(stereo_2mono_outputs.png)]] 21 30 22 31 {{{
