我見過這提到了一些網絡周圍的地方,但還沒有找到答案的任何地方。MPMoviePlayerController錯誤_itemFailedToPlayToEnd同時播放YouTube視頻iOS 7
我正在使用ALMovieplayercontroller庫。一切工作正常,但是當我試圖播放Youtube視頻時,它給了我錯誤。
_itemFailedToPlayToEnd:{ kind = 1; new = 2; old = 0; }
編輯
- (void)setContentURL:(NSURL *)contentURL {
self.movieSourceType = MPMovieSourceTypeStreaming;
[super setContentURL:contentURL];
[[NSNotificationCenter defaultCenter] postNotificationName:ALMoviePlayerContentURLDidChangeNotification object:nil];
[self play];
}
這裏是我的代碼
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"]];
我無法找到這個解決方案。
請幫忙。
您是否解決了這個問題? – Sk0prion
@ Sk0prion我已經回答了我的問題 –
@Sunnyshah請接受您自己的回答以關閉此問題。 – Marco