在AS3中加载ID3标签而不加载声音

发布于 2024-08-23 05:26:42 字数 31 浏览 10 评论 0 原文

有没有办法在AS3中加载ID3标签而不加载声音?

Is there a way to load ID3 tags in AS3 without loading sound?

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

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

发布评论

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

评论(2

皓月长歌 2024-08-30 05:26:42

那么你可以简单地开始加载声音,使用 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.

时光清浅 2024-08-30 05:26:42

那么使用 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

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