在flashplayer中获取外部加载的mp3的比特率
有谁知道这是否可能?
非常感谢,
does anyone know if this is possible?
much appreciated,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有谁知道这是否可能?
非常感谢,
does anyone know if this is possible?
much appreciated,
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
使用本机 flash 声音类,您可以读取声音对象的 id3 元数据属性,但这取决于对 mp3 进行编码的软件将编码信息放入元数据中。 mp3 本身没有任何固有的东西可以将其报告给声音类,并且元数据经常丢失或不可靠。
http://livedocs.adobe.com/flash/9.0 /ActionScriptLangRefV3/flash/media/Sound.html#id3
另外还有一个用于读取实际 mp3 标头信息的第 3 方实用程序,该实用程序的功能要多得多 准确的。
http://code.google.com/p/mp3infoutil/
Using the native flash sound class, you can read the id3 metadata property of the sound object, however this depends on the software that encoded the mp3 putting the encoding information in the metadata. there's nothing inherent to the mp3 itself that reports this to the sound class, and the metadata is often missing or unreliable.
http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/media/Sound.html#id3
alternatively there's this 3rd party utility for reading actual mp3 header information, which is much more accurate.
http://code.google.com/p/mp3infoutil/