I have 33 audio files, each about 11 seconds long, and I'd like to merge them into one lossless file. How can I do this efficiently (i.e. without cut-pasting in Audacity 33 times)?
Tell me more
×
Super User is a question and answer site for
computer enthusiasts and power users. It's 100% free, no registration required.
|
You can do this with
|
||||
|
|
|
If you start with only lossless files, you can use use shntool:
|
||||
|
|
|
Assuming you want to merge them alphabetically, by filename:
The for loop puts all the filenames in a file called inputs.txt, one-per-line, and the second one uses ffmpeg's concat demuxer to merge the files. |
|||
|
|