vote up 3 vote down star

I have multiple (between 40 and 50) MP3 files that I'd like to concatenate into one file. What's the best way to do this in Python?

Use fileinput module to loop through each line of each file and write it to an output file? Outsource to windows copy command?

flag

3 Answers

vote up 6 vote down check

to put the bytes in those files together is easy... However I am not sure if that will cause a continuous play - I think it might if the files are using the same bitrate, but I'm not sure.

from glob import iglob
import shutil
import os

PATH = r'C:\music'

destination = open('everything.mp3', 'wb')
for filename in iglob(os.path.join(PATH, '*.mp3'))
    shutil.copyfileobj(open(filename, 'rb'), destination)
destination.close()

That will create a single "everything.mp3" file with all bytes of all mp3 files in C:\music concatenated together.

If you want to pass the names of the files in command line, you can use sys.argv[1:] instead of iglob(...), etc.

link|flag
you don't need fullname step there, glob is already producing absolute filenames. – SilentGhost Jun 16 at 13:48
and you can use iglob, instead of glob – SilentGhost Jun 16 at 13:49
@SilentGhost: Thanks, fixed – nosklo Jun 16 at 13:52
I have no clue if it will cause continuous play or not - guess I'll find out - and maybe ask another question about it...haha. – Owen Jun 16 at 15:14
This solution does impact continuous play - in that it doesn't happen. There's some skipping in the spots where MP3s were joined. This is fine for my application though. – Owen Jul 6 at 14:19
show 2 more comments
vote up 1 vote down

Hmm. I won't use "lines". Quick and dirty use

outfile.write( file1.read() )
outfile.write( file2.read() )

;)

link|flag
Though this won't work for very large flies. – Nathan Fellman Oct 5 at 6:17
Yes, I know. But. I wrote "quick and dirty". That implies: without guaranties... – tuergeist Oct 5 at 9:29
vote up 0 vote down

Just to summarize (and steal from nosklo's answer), in order to concatenate two files you do:

destination = open(outfile,'wb')
shutil.copyfileobj(open(file1,'rb'), destination)
shutil.copyfileobj(open(file2,'rb'), destination)
destination.close()

This is the same as:

cat file1 file2 > destination
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.