我想播放音频和视频文件我没有这些文件的网址。我现在正在使用AFNetwork下载文件,文件数据将以字节形式出现。
[operation setDownloadProgressBlock:^(NSUInteger bytesRead, long long totalBytesRead, long long totalBytesExpectedToRead)
{
float val = (float)totalBytesRead / totalBytesExpectedToRead;
if(!isStart && val >= 0.5)
{
isStart = YES;
UIWindow *window = [UIApplication sharedApplication].keyWindow;
window = [[UIApplication sharedApplication].windows objectAtIndex:0];
UIWebView * webView = [[UIWebView alloc]initWithFrame:window.frame];
NSURLRequest *urlRequest = [NSURLRequest requestWithURL:[NSURL fileURLWithPath:path]];
[webView loadRequest:urlRequest];
[window addSubview:webView];
}
}];
但是UIWebView没有打开这个文件我也使用了MPMoviePlayer但没有任何反应。 请告诉我这个可能的部分下载文件。
答案 0 :(得分:1)
您可以使用MPMoviePlayerController流播放电影:
NSURL *fileURL = [NSURL URLWithString:@"http://www.website.com/video.mp4"];
MPMoviePlayerController *moviePlayerController = [[MPMoviePlayerController alloc] initWithContentURL:fileURL];
[moviePlayerController play];
[self.view addSubview:_moviePlayerController.view];