Changes between Version 21 and Version 22 of AudioChannelManipulation
- Timestamp:
- Aug 18, 2015, 5:22:56 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AudioChannelManipulation
v21 v22 8 8 9 9 Mix a single stereo stream down to a mono stream. Both channels of the stereo stream will be downmixed into the stream: 10 10 11 11 {{{ 12 12 ffmpeg -i stereo.flac -ac 1 mono.flac 13 }}} 14 15 Mix a single stereo stream down to a mono stream, without phase cancellation. Both channels of the stereo stream will be downmixed into the stream: 16 17 {{{ 18 ffmpeg -i stereo.flac -filter_complex '[a]pan=mono|FC<FL+FR[ip];[a]pan=mono|FC<FL+-1*FR[oop];[ip][oop]amix' mono.flac 13 19 }}} 14 20
