我想在链接上播放视频: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];
是否可以通过网络网址字符串播放视频?我有很多视频,所以我不想把它们放在我的项目中,所以我需要从网上播放
@Edit:我使用apple's developer site
上的示例完成了它它使用流但解决了我的问题因为我使用了网址。感谢所有答案
答案 0 :(得分:0)
试试这个
NSString *urlStr = [[NSBundle mainBundle] pathForResource:@"3idiots.mov" ofType:nil];
NSURL *url = [NSURL fileURLWithPath:urlStr];
moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:url];
[self.view addSubview:moviePlayer.view];
moviePlayer.view.frame = CGRectMake(0, 0, 300, 400);
[moviePlayer play];
答案 1 :(得分:0)
如果你已准备好流式传输服务器,那么实现一个弹出youtube风格的视频控制器非常容易。
答案 2 :(得分:0)
删除
NSString *urlStr = [[NSBundle mainBundle] pathForResource:@"3idiots.mov" ofType:nil];
像这样传递网址,
NSURL *videoURL = [NSURL URLWithString:@"http://www.youtube.com/v/HGd9qAfpZio&hl=en_US&fs=1&"];