Skip to content

Instantly share code, notes, and snippets.

@regstuff
Created February 22, 2021 12:41
Show Gist options
  • Save regstuff/e73307ccb214a5df8507b2509d69454c to your computer and use it in GitHub Desktop.
Save regstuff/e73307ccb214a5df8507b2509d69454c to your computer and use it in GitHub Desktop.
Merge 16 mono audios into one 16 channel audio
ffmpeg -i 1.wav -i 2.wav -i 3.wav -i 4.wav -i 5.wav -i 6.wav -i 7.wav -i 8.wav -i 9.wav -i 10.wav -i 11.wav -i 12.wav -i 13.wav -i 14.wav -i 15.wav -i 16.wav -filter_complex "[2:a][0:a][1:a][3:a][4:a][5:a][6:a][7:a][8:a][9:a][10:a][11:a][12:a][13:a][14:a][15:a]join=inputs=16:channel_layout=hexadecagonal[a]" -map "[a]" output.wav
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment