vote up 0 vote down star

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.

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);
flag

1 Answer

vote up 0 vote down check

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:

2285061 MP3 files with ID3v2 tags failed to play.

link|flag
Interesting. I'll test it out. My files are playing fine though, just the id3: prefix doesn't seem to work. – Typeoneerror Aug 25 at 19:51
yeah, what I've heard is that play("mp3:url") works fine, while play("id3:url") returns a "Stream Not Found". – Cay Aug 25 at 21:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.