Created
February 26, 2019 16:41
-
-
Save weslley39/5062dbbcd45179350efc4a648a1a6f85 to your computer and use it in GitHub Desktop.
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
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