audio - What is the best way to merge mp3 files? -


i've got many, many mp3 files merge single file. i've used command line method

copy /b 1.mp3+2.mp3 3.mp3 

but it's pain when there's lot of them , namings inconsistent. time never seems come out right either.

as thomas owens pointed out, concatenating files leave multiple id3 headers scattered throughout resulting concatenated file - time/bitrate info wildly wrong.

you're going need use tool can combine audio data you.

mp3wrap ideal - it's designed join mp3 files, without needing decode + re-encode data (which result in loss of audio quality) , deal id3 tags intelligently.

the resulting file can split component parts using mp3splt tool - mp3wrap adds information idv3 comment allow this.


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -