使用 python 提取 MP3 URL 的 ID3 标签

发布于 2024-11-09 22:53:40 字数 222 浏览 0 评论 0原文

我正在开发一个Python程序,它可以提取mp3文件的ID3标签。我使用 urllib2 检查 URL 的 MIME 类型(如果是音频/mpeg),之后我需要查找有关此 MP3 文件的信息。

问题是,我不想将该 Mp3 文件完全加载到我的 PC 中,我只想提取 ID3 标签?那么是否可以在不完全下载 MP3 文件的情况下提取它们,因为下载会减慢我的进程?

请建议一些东西。

谢谢,

I am developing a python program which can extract ID3 tags of mp3 files. I am using urllib2 for checking MIME type of the URL (if it is audio/mpeg), after that I need to find information about this MP3 file.

Problem is, I dont want to load that Mp3 file completely in my PC, I just want to extract ID3 tags? so is it possible to extract them without downloading MP3 file completely because downloading will slow down my process?

Please suggest something.

Thanks,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

红墙和绿瓦 2024-11-16 22:53:40

您可以进行部分下载:使用部分下载 (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()
>>>

You can do a partial download: Download file using partial download (HTTP) (if the server supports it)

on rereading, and seeing joelhardi's comment, this is even easier:

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()
>>>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文