Changes between Version 5 and Version 6 of AudioChannelManipulation
- Timestamp:
- Jan 15, 2014, 6:57:03 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AudioChannelManipulation
v5 v6 74 74 }}} 75 75 76 == Mix both stereo channels to stereo == 77 78 The left channel and right channel will each contain both the left and right channels (like "mono as stereo"). 79 80 {{{ 81 ffmpeg -i input.mp3 -af "pan=stereo:c0<c0+c1:c1<c0+c1" output.ogg 82 }}} 83 76 84 == Switch stereo channels == 77 85 Switch left channel to right and right channel to left: … … 88 96 89 97 == Mute a channel == 90 This example will mute the first channel but keep the second channel as is:98 This example will mute the first channel (the left channel) but keep the second channel as is: 91 99 92 100 {{{ … … 94 102 }}} 95 103 104 ---- 96 105 97 ----98 106 == Layouts == 99 107
