Created
November 16, 2012 12:35
-
-
Save lsauer/4086997 to your computer and use it in GitHub Desktop.
mp3 Joiner / Join mp3 files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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