如何使用python捕获mp3流

时间:2008-10-09 14:36:02

标签: python streaming

捕获来自http的mp3流并使用python将其保存到磁盘的最佳方法是什么?

到目前为止,我已经尝试了

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

这给了我数据,但它的乱码或不会在MP3播放器中播放。

2 个答案:

答案 0 :(得分:15)

如果您使用的是Windows,则可能会意外地进行CRLF转换,从而破坏二进制数据。尝试以二进制模式打开target

target = open(target_path, "wb")

答案 1 :(得分:4)

最好的方法是:

urllib.urlretrieve(stream_url, target_path);