我是这个iPhone开发的新手。我想从URL播放视频,该URL可以是youtube视频,也可以来自任何URL。我怎样才能做到这一点 ?谁能建议我一个好方法。我试过了
NSURL *fileURL = [NSURL URLWithString:url];
moviePlayerController = [[MPMoviePlayerController alloc] initWithContentURL:fileURL];
[moviePlayerController.view setFrame:CGRectMake(0, 70, 320, 270)];
[self.view addSubview:moviePlayerController.view];
moviePlayerController.fullscreen = YES;
[moviePlayerController play];
但是它不起作用。
最佳答案
请遵循本教程,这将为您工作
http://www.devx.com/wireless/Article/44642/1954
http://adayd3sign.wordpress.com/2011/05/11/iphone-playing-video-with-the-mediaplayer-framework/
希望这可以帮助
关于iphone - 如何使用mplayer从URL播放视频?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9938621/