Question

I'm using MPMoviePlayerController to stream audio/video files from a servrer. It works great on all other OS versions. However, on 3.1.2, it shows the Default.png image (used to display at app splash screen) in the background while the movie loads. It only happens for the first time and the player works fine (no image in background) on all subsequent plays.

I have used the following properties:

player.scalingMode = MPMovieScalingModeNone; 
player.backgroundColor = [UIColor blackColor];

I have gone through apple documentation and web in general but seems like no one has this problem. Is there any way I can get rid of this image (Default.png) shown as the player's background?

Thanks.

No correct solution

OTHER TIPS

Sounds like an uninitialized GL texture is briefly being used by the movie player.

Not sure what you can do about that.

Maybe you can hide the player while it loads.

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