Skip to content

Instantly share code, notes, and snippets.

@lsauer
Created November 16, 2012 12:35
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lsauer/4086997 to your computer and use it in GitHub Desktop.
Save lsauer/4086997 to your computer and use it in GitHub Desktop.
mp3 Joiner / Join mp3 files
#easy method of joining two mp3's [lsauer.com 2012 - lo sauer]
#the result is dirty since it contains the mp3 header and ID-tags, but most mp3 libs play these files without a hassle.
#use the resulting mp3 as input for AAC, Opus,.. conversion.
#Windows
type file1 file2 > outfile
copy /b file1 + file2 + ... file_n outfile
#Linux, Mac
cat file1 file2 > outfile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment