热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

NetStream从FMS中的流加载ID3信息-NetStreamLoadingID3informationfromstreaminFMS

IvebeenfollowingthebasicFMSinstructionstoloadanmp3andplayit.Thisisworkingverywell

I've been following the basic FMS instructions to load an mp3 and play it. This is working very well. I've also got a second NetStream instance (id3Stream) that should load the ID3 data from the same mp3, but all I get is a StreamNotFound error. Why would the mp3 stream and play but the id3 data be "not found"? Any help would be appreciated.

我一直在遵循基本的FMS指令来加载mp3并播放它。这非常有效。我还有第二个NetStream实例(id3Stream)应该从同一个mp3加载ID3数据,但我得到的只是一个StreamNotFound错误。为什么mp3流和播放但id3数据“找不到”?任何帮助,将不胜感激。

var url:String = "name_of_mp3";
// -- yay, I'm listening to the song
stream.play("mp3:" + url, position);
// -- boo, it's not found even though it's the same url
id3Stream.play("id3:" + url);

1 个解决方案

#1


0  

I'm not sure its your case, but I've heard that some versions of FMS have a bug with ID3v2. Apparently FMS 3.5.2 fixes this... from the 3.5.2 release notes:

我不确定你的情况,但我听说有些版本的FMS有ID3v2的错误。显然,FMS 3.5.2修复了这个......来自3.5.2发行说明:

2285061 MP3 files with ID3v2 tags failed to play.

2285061带有ID3v2标签的MP3文件无法播放。


推荐阅读
author-avatar
赵智威_
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有