Question

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);
Was it helpful?

Solution

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top