Changes between Version 16 and Version 17 of AudioChannelManipulation
- Timestamp:
- Dec 5, 2014, 12:25:39 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AudioChannelManipulation
v16 v17 164 164 Just change the channel specifications in the pan filter: 165 165 {{{ 166 pan=stereo|c0<c0+c1|c1<c2+c3 167 }}} 166 ffmpeg -i input1.wav -i input2.wav -filter_complex "[0:a][1:a]amerge,pan=stereo|c0<c0+c1|c1<c2+c3[aout]" -map "[aout]" output.mp3 167 }}} 168 169 The pan audio filter has to be used in this situation instead of `-ac 2` unlike the previous example. 168 170 169 171 == Mix both stereo channels to stereo == … … 171 173 [[Image(stereo_stereo_mix.png, nolink)]] 172 174 173 The left channel and right channel will each contain both the left and right channels (like "mono as stereo"):175 The left and right channels of the output will each contain both the left and right channels of the input: 174 176 175 177 {{{
