FLVPlayback on iOS: METADATA_RECEIVED never fires
Hey All,
I'm experiencing an issue with FLVPlayback 2.5 on iOS on a Flash CS5.5 app compiled under Air 2.7. It appears as though the METADATA_RECEIVED event never fires when testing directly on the device. It works fine in the IDE debugger, it works on the desktop player, and works on Android (tested only on Honeycomb thus far). A symptom of this metadata never be received under iOS means that flvPlayback.totalTime isn't available either.
Has anyone else experienced this issue and/or can confirm/deny my findings. Any kind of work-around or hack to make this work? Any help would be greatly appreciated.
Here's my code:
_flvPlayback = new FLVPlayback();
_flvPlayback.addEventListener(VideoProgressEvent.PROGRESS, flvProgress);
_flvPlayback.addEventListener(MetadataEvent.METADATA_RECEIVED, flvMetaDataReceived);
_flvPlayback.addEventListener(VideoEvent.READY, flvReady);
_flvPlayback.load(_url);
Thanks
