up vote 8 down vote favorite
1
share [g+] share [fb]

What's the best way of capturing an mp3 stream coming off of http and saving it to disk with python?

Thus far I've tried

target = open(target_path, "w")
conn = urllib.urlopen(stream_url)
while True:
    target.write(conn.read(buf_size))

This gives me data but its garbled or wont play in mp3 players.

link|improve this question
Can you specify more informations? What kind of streaming is it? Plain mp3 (could you also Save it with 'Save as ...')? If not, the protocol has probalby more informations in it, than just the audio information. – Andre Bossard Oct 9 '08 at 14:39
feedback

2 Answers

up vote 10 down vote accepted

If you're on Windows, you might accidentally be doing CRLF conversions, corrupting the binary data. Try opening target in binary mode:

target = open(target_path, "wb")
link|improve this answer
feedback

The best way for this is:

urllib.urlretrieve(stream_url, target_path);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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