Skip to content

Instantly share code, notes, and snippets.

@weslley39
Created February 26, 2019 16:41
Show Gist options
  • Save weslley39/5062dbbcd45179350efc4a648a1a6f85 to your computer and use it in GitHub Desktop.
Save weslley39/5062dbbcd45179350efc4a648a1a6f85 to your computer and use it in GitHub Desktop.
METHOD 1: Merge Two Or More MP3 Files
cat file1.mp3 > newfile.mp3
cat file2.mp3 >> newfile.mp3
cat file3.mp3 >> newfile.mp3
METHOD 2: Merge Two Or More MP3 Files
cat file1.mp3 file2.mp3 file3.mp3 > newfile.mp3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment