Skip to content

Instantly share code, notes, and snippets.

@wteuber
Last active January 10, 2026 22:14
Show Gist options
  • Select an option

  • Save wteuber/fc1ad70c46af2ee55df2c502c7edf198 to your computer and use it in GitHub Desktop.

Select an option

Save wteuber/fc1ad70c46af2ee55df2c502c7edf198 to your computer and use it in GitHub Desktop.
Join/Merge/Combine/Concat mp3 files
# From https://superuser.com/questions/314239/how-to-join-merge-many-mp3-files
ffmpeg -f concat -safe 0 -i <(for f in ./*.mp3; do echo "file '$PWD/$f'"; done) -c copy "all_tracks.mp3"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment