ios - 下载时播放 Mp4 和 Mp3 文件
<p><p>我想播放音频和视频文件,但我没有这些文件的 URL。我现在正在使用 AFNetwork 下载文件,文件数据是字节形式的。</p>
<pre><code>[operation setDownloadProgressBlock:^(NSUInteger bytesRead, long long totalBytesRead, long long totalBytesExpectedToRead)
{
float val = (float)totalBytesRead / totalBytesExpectedToRead;
if(!isStart && val >= 0.5)
{
isStart = YES;
UIWindow *window = .keyWindow;
window = [.windows objectAtIndex:0];
UIWebView * webView = [initWithFrame:window.frame];
NSURLRequest *urlRequest = ];
;
;
}
}];
</code></pre>
<p>但是 UIWebView 没有打开这个文件我也使用了 MPMoviePlayer 但没有任何反应。
请告诉我这是否可能是部分下载的文件。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您可以使用 MPMoviePlayerController 流播放电影:</p>
<pre><code>NSURL *fileURL = ;
MPMoviePlayerController *moviePlayerController = [ initWithContentURL:fileURL];
;
;
</code></pre></p>
<p style="font-size: 20px;">关于ios - 下载时播放 Mp4 和 Mp3 文件,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/17524757/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/17524757/
</a>
</p>
页:
[1]