B Budi Nov 27 1 2017-12-07 #1 Can copy command concatenate and merge multiple mp3 files ? copy /b file1.mp3 file2.mp3 file3.mp3 song.mp3 will that simply just work ?
Can copy command concatenate and merge multiple mp3 files ? copy /b file1.mp3 file2.mp3 file3.mp3 song.mp3 will that simply just work ?
Charles Dye Super Moderator May 5,070 133 Staff member 2017-12-07 #2 You would get a file containing all the bytes from the three source files, but I don't think it would be a playable MP3 file.
You would get a file containing all the bytes from the three source files, but I don't think it would be a playable MP3 file.
C Charles G Apr 1,818 17 2017-12-07 #3 To concatenate the files: copy /b file1.mp3 + file2.mp3 + file3.mp3 song.mp3 but song.mp3 would not be playable...
To concatenate the files: copy /b file1.mp3 + file2.mp3 + file3.mp3 song.mp3 but song.mp3 would not be playable...