0

I am facing issue in iOS8, it took more time(around 4-8 sec) in MPMovieSourceTypeStreaming for iOS8 while song is played faster in iOS7

Here is my code:

self.moviePlayerController.movieSourceType = MPMovieSourceTypeStreaming;
self.moviePlayerController setContentURL:[NSURL URLWithString:content.contentURL]];
[[self moviePlayerController] play];

Any idea?

Zoeb S
  • 695
  • 1
  • 7
  • 21

1 Answers1

0

Add Prepare to play method. As it minimizes the time to initiate

Abhi
  • 115
  • 11