2

これらのファイルの URL を持っていないオーディオおよびビデオ ファイルを再生したいです。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 も使用しましたが、何も起こりません。この部分的にダウンロードされたファイルの可能性があるかどうか教えてください。

4

1 に答える 1

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];
于 2013-07-08T10:58:47.700 に答える