使用python提取MP3 URL的ID3标签

| 我正在开发一个python程序,可以提取mp3文件的ID3标签。我正在使用urllib2来检查URL的MIME类型(如果是音频/ mpeg),此后,我需要查找有关此MP3文件的信息。 问题是,我不想将Mp3文件完全加载到我的PC中,我只想提取ID3标签?那么是否可以提取它们而不完全下载MP3文件,因为下载会减慢我的进程? 请提出一些建议。 谢谢,     
已邀请:
您可以执行部分​​下载:使用部分下载(HTTP)下载文件(如果服务器支持) 在重读并看到joelhardi的评论时,这甚至更容易了:
jcomeau@intrepid:/tmp$ python
Python 2.6.6 (r266:84292, Apr 20 2011, 11:58:30) 
[GCC 4.5.2] on linux2
Type \"help\", \"copyright\", \"credits\" or \"license\" for more information.
>>> import urllib
>>> urllib.urlopen(\'http://latest/temp.csv\')
<addinfourl at 160617676 whose fp = <socket._fileobject object at 0x9872aec>>
>>> input=_
>>> input.read(128)
\'gene,species,C_frame,start_exon1,end_exon1,start_exon2,end_exon2,start_exon3,end_exon3,start_exon4,end_exon4,intron1,intron2,int\'
>>> input.close()
>>>
    

要回复问题请先登录注册