通过http在iOS设备上流式传输和下载大型视频

时间:2012-07-16 14:09:42

标签: ios http video stream download

是否可以访问存储在http服务器上的大型视频文件(最多300 MB)?用户应该能够在设备(iPhone和iPad)上下载视频文件(mp4)并随时访问它,或者只是流式传输视频而不保存设备上的任何数据。

管理这些问题的好方法是什么?那有什么好的教程吗?

提前致谢,Bautzi

1 个答案:

答案 0 :(得分:1)

NSString *urlStr = [NSURL URLWithString:@"http://www.linktoyourmovie.mp4"];
NSURL *url = [NSURL URLWithString:urlStr];
MPMoviePlayerController *moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:url];
moviePlayer.view.frame = CGRectMake(0, 0, 300, 400);  
[self.view addSubview:moviePlayer.view];
[moviePlayer play];
[moviePlayer release];

这是如何流式传输视频而不将其保存在设备上。希望其他人可以帮助解决这个问题。