如何从 Dropbox 文件获取 ID3 标签信息?
是否有一种简单有效的方法可以使用 PHP API 从我的 Dropbox 文件夹中的音乐文件中收集 ID3 标签信息?我可以循环遍历文件并使用 getFile API 方法和 id3_get_tag php 函数提取信息,但随着音乐文件数量的增加,速度会非常慢。
有没有一种有效的方法可以从大型音乐文件目录中获取 id3 信息?
Is there an easy and efficient way to gather ID3 tag info from music files in my dropbox folder using the PHP API? I'm able to loop through the files and pull the information using the getFile API method and the id3_get_tag php function but this is very slow as you increase the number of music files.
Is there an efficient way to grab the id3 information from a large directory of music files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以查看 PHP Reader 库,其中应该做你使用纯 php 之后的事情。我现在知道它是否比 id3_get_tag 快。
You can have a look at the PHP Reader library, which should do what you're after using pure php. If it's faster than id3_get_tag or not, I do now know.