码迷,mamicode.com
首页 > 其他好文 > 详细

MPMoviePlayerViewController不能播放本地mp4的解决办法.

时间:2015-03-13 09:18:53      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

之前一直用MPMoviePlayerViewController进行网络播放,最近下载文件然后本地播放,发现怎么播放都是黑屏.后来发现MPMoviePlayerViewController的本地URL不能使用[NSURL urlStringFrom]这个方法.下面贴下正确代码

 NSString *path1=[[NSBundle mainBundle] pathForResource:@"fuck" ofType:@"mp4"];
        NSURL *url = [NSURL fileURLWithPath:path1];
        YYMoviePlayerViewController *vcPlayVC = [[YYMoviePlayerViewController  alloc]initWithContentURL:url];
        vcPlayVC.moviePlayer.movieSourceType = MPMovieSourceTypeFile;
        [self presentMoviePlayerViewControllerAnimated:vcPlayVC];

 

MPMoviePlayerViewController不能播放本地mp4的解决办法.

标签:

原文地址:http://www.cnblogs.com/zuopeng/p/4334270.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!