Concatenate files with ffmpeg

with tags ffmpeg -

Take a list of media files and concatenate them into a single file.


References

for f in *.wav; do echo "file '$f'" >> mylist.txt; done
ffmpeg -f concat -i mylist.txt -c copy output.wav
Later article
FFmpeg Oneliners
Older article
ffmpeg Field Notes