在AS3中加载ID3标签而不加载声音
有没有办法在AS3中加载ID3标签而不加载声音?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法在AS3中加载ID3标签而不加载声音?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
那么你可以简单地开始加载声音,使用 bufferTime< /a> = 0,当 id3 数据可用时,您只需 关闭流。
或者,如果声音通过服务器分发,则服务器可以读出 ID3 并提供 API 来获取它。
well you can simply start loading the sound, with bufferTime = 0, and when the id3 data is available, you just close the stream.
or, if the sound is distributed through a server, then the server could read out the ID3 and provide an API to get it.
那么使用 AS3 读取 ID3 标签可能不是正确的方法。您当然可以使用 PHP、C#、Python 或任何其他语言从 MP3 中读取 ID3 标签。
例如,您可以有一个 PHP 脚本“id3Reader.php?file=mymp3.php”,并将返回一个包含所有 ID3 信息的 XML,然后您可以在 AS3 中解析它,速度相当快。我建议在 PHP 部分使用缓存,或者可能使用像 mysql 这样的数据存储,这样您就不必一遍又一遍地读取 id3 标签。尽管 PHP 是一种糟糕的语言,但它完成了它的工作,并且对于这种任务它做得很好。
使用 PHP http://php.net/manual/en/ref.id3 读取 ID3
。 php
Well using AS3 to read the ID3 Tags is probably not the way to go. You can of course use PHP, C#, Python or any other language to read the ID3 tags out of an MP3.
For instance you can have a PHP Script "id3Reader.php?file=mymp3.php" and will return an XML containing all the ID3 info, then you can parse that in AS3 which is rather quick. I recommend using caching in the PHP part or probably having a data store like mysql so you don't have to be reading the id3 tag over an over. Although PHP is a rotten language it does its job and for this kind of task it does it well.
Reading ID3 with PHP
http://php.net/manual/en/ref.id3.php