使用 python 提取 MP3 URL 的 ID3 标签
我正在开发一个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以进行部分下载:使用部分下载 (HTTP) 下载文件 (如果服务器支持的话)
重读并查看 joelhardi 的评论,这会更容易:
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: