| 88 | | All inputs must have the same sample rate and format. If inputs do not have the same duration the output will stop with the shortest. |
| | 88 | All inputs must have the same sample rate and format. If inputs do not have the same duration the output will stop with the shortest. |
| | 89 | |
| | 90 | == 5.1 → 6 × mono |
| | 91 | |
| | 92 | [[Image(5point1_6mono.png)]] |
| | 93 | |
| | 94 | Split a 5.1 channel input into individual per-channel files: |
| | 95 | |
| | 96 | {{{ |
| | 97 | ffmpeg -i in.wav \ |
| | 98 | -filter_complex "channelsplit=channel_layout=5.1[FL][FR][FC][LFE][BL][BR]" \ |
| | 99 | -map "[FL]" front_left.wav \ |
| | 100 | -map "[FR]" front_right.wav \ |
| | 101 | -map "[FC]" front_center.wav \ |
| | 102 | -map "[LFE]" lfe.wav \ |
| | 103 | -map "[BL]" back_left.wav \ |
| | 104 | -map "[BR]" back_right.wav |
| | 105 | }}} |
| | 106 | |