Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MPMoviePlayerController error _itemFailedToPlayToEnd while playing youtube video iOS 7

I've seen this mentioned a few places around the web but have yet to find answer anywhere.

I am using ALMovieplayercontroller library. Everything works fine but when i am trying to play Youtube video it gives me error.

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

EDIT

- (void)setContentURL:(NSURL *)contentURL {

    self.movieSourceType = MPMovieSourceTypeStreaming;
    [super setContentURL:contentURL];
    [[NSNotificationCenter defaultCenter] postNotificationName:ALMoviePlayerContentURLDidChangeNotification object:nil];
    [self play];
}

Here is my code

ALMoviePlayerControls *movieControls = [[ALMoviePlayerControls alloc] initWithMoviePlayer:self.moviePlayer style:ALMoviePlayerControlsStyleDefault];
//[movieControls setAdjustsFullscreenImage:NO];
[movieControls setBarColor:[UIColor colorWithRed:195/255.0 green:29/255.0 blue:29/255.0 alpha:0.5]];
[movieControls setTimeRemainingDecrements:YES];

//assign controls
[self.moviePlayer setControls:movieControls];
[self.view addSubview:self.moviePlayer.view];
self.moviePlayer.movieSourceType = MPMovieSourceTypeStreaming;

//THEN set contentURL
[self.moviePlayer setContentURL:[NSURL URLWithString:@"http://www.youtube.com/watch?v=NaosmAGx8NM"]];

I am not able to find the solution for this.

Please Help.

like image 597
Sunny Shah Avatar asked Dec 15 '13 09:12

Sunny Shah


2 Answers

Yes after so much researching i found to the following soluction.

MPMoviePlayerController directly will not play the youtube videos. you have to extract the video URL and set video URL to MPMoviePlayerController. after this video will be played.

There are lots of API available that gives the extracted video URL.

Some of them are below

XCDYouTubeKit

HCYoutubeParser

But using this API your application might be rejected. you should have to use on your risk.

Best way to play youtube videos is the WebView.

like image 86
Sunny Shah Avatar answered Nov 07 '22 01:11

Sunny Shah


Ok!!! the problem is that the player doesn't know what you are trying to play,

  1. you can try to change the name to x.mp4
  2. you can debug the project and see that the path and the file you are trying to play exists.
like image 3
ElizaS Avatar answered Nov 07 '22 00:11

ElizaS