我想在链接上播放视频:www.mysite.com/iphone/video.mp4
我使用 ios5 和 MPMoviePlayerController 我尝试使用以下代码,但它只显示一个黑页:
MPMoviePlayerController *player=[[MPMoviePlayerController alloc]initWithContentURL:[NSURL URLWithString:@"http://www.mysite.com/iphone/video.mp4"]]; [[player view] setFrame:[self.view.bounds]]; [self.view addSubview:[player view]]; [player play];
是否可以通过 web url 字符串播放视频?我有很多视频,所以我不想把它们放在我的项目中,所以我需要从网络上播放它
@Edit:我用苹果开发者网站上的示例完成了它
它使用流,但解决了我的问题,因为我使用了网页 url。感谢所有答案