码迷,mamicode.com
首页 > 移动开发 > 详细

iOS9 视频播放

时间:2015-12-04 18:29:58      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:

   self.videoFileURL = [NSURL URLWithString:[NSString stringWithFormat:@"file:///%@", self.vedioString]];
    if (!_videoFileURL) {
        return;
    }
   
    AVAsset *movieAsset = [AVURLAsset URLAssetWithURL:_videoFileURL options:nil];
    self.playerItem = [AVPlayerItem playerItemWithAsset:movieAsset];
    self.player = [AVPlayer playerWithPlayerItem:_playerItem];
    self.playerLayer = [AVPlayerLayer playerLayerWithPlayer:_player];
    _playerLayer.frame = CGRectMake(0, 0, self.vedioView.frame.size.width, self.vedioView.frame.size.height);
    _playerLayer.videoGravity = AVLayerVideoGravityResizeAspect;
    [self.vedioView.layer addSublayer:_playerLayer];
       [_playerItem seekToTime:kCMTimeZero];
    [self addNotification];
    [_player play];
 
 
    //在视屏播放完成添加通知
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(finishPlayer) name:AVPlayerItemDidPlayToEndTimeNotification object:self.player.currentItem];
 
 
升级后需要注意两个地方 
1 在build Settings 搜索bitcode 设置成no
2 在info.plist里添加以下属性 
程序中报错:
 App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app‘s Info.plist file.
解决方法:
 
技术分享

在info.plist 加入key

<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>

 
 

iOS9 视频播放

标签:

原文地址:http://www.cnblogs.com/tian-sun/p/5019821.html

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