3

I am trying to play video using MPMoviePlayerController, and am having following error,

 _itemFailedToPlayToEnd: {
   kind = 1;
   new = 2;
   old = 0;
  }

Below is my code,

NSURL *fileURL = [NSURL URLWithString:_videoUrl];
NSLog(@" fileURL: %@",fileURL);
_moviePlayer =  [[MPMoviePlayerController alloc] initWithContentURL:fileURL];
_moviePlayer.movieSourceType = MPMovieSourceTypeStreaming;
UIWindow *backgroundWindow = [[UIApplication sharedApplication] keyWindow];
[_moviePlayer.view setFrame:backgroundWindow.frame];
[backgroundWindow addSubview:_moviePlayer.view];
[_moviePlayer prepareToPlay];
[_moviePlayer play];

How can I resolve this issue?

Amar
  • 13,202
  • 7
  • 53
  • 71
user3197071
  • 41
  • 1
  • 5

1 Answers1

1

I had same issue, viewed a lot of topics and haven't found working solution. but what I have discovered that the problem with the url header response content type whose of your Movie URL.. if you try to SetContentUrl with another url from another server I guess this will solve the problem..

Hasan Sawaed
  • 173
  • 2
  • 9