Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Can copy command concatenate multiple mp3 files

Nov
27
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 ?
 
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.
 
To concatenate the files:

copy /b file1.mp3 + file2.mp3 + file3.mp3 song.mp3

but song.mp3 would not be playable...
 

Similar threads

Replies
7
Views
2K
Back
Top