美文网首页
几行代码略看iOS的影片播放: MediaPlayer 和 AV

几行代码略看iOS的影片播放: MediaPlayer 和 AV

作者: 淇滨杜隆坦 | 来源:发表于2016-06-22 10:23 被阅读2152次

    在iOS开发上,如果遇到需要播放影片,如开机动画,我們很习惯地会使用MediaPlayer來播放影片,因为很方便使用,所以就一直使用下去。但是随着客户的要求越來越严苛,尤其是过场动画或互动效果上的表现。所以如果在一些动画中还携带影片一起运算,那势必机器会跑不动。所以在iOS 4之后,我们可以使用AVPlayer这个类別来进行更细微的操作。

    注意:

    • MediaPlayer的影片是放在UIView 裡面,而AVPlayer是放在AVPlayerLayer里面,AVPlayerLayer是CALayer 的子类。
    • 使用MediaPlayer前,要记得导入
      MediaPlayer.framework及#import <MediaPlayer/MediaPlayer.h>
    • 使用AVPlayer前,要记得导入
      AVFoundation.frameworkk及#import <AVFoundation/AVFoundation.h>

    先简单的看下本地视频的处理,请参考以下范例:

    使用MediaPlayer来播放影片

    NSString *filePath = [[NSBundle mainBundle] pathForResource:@"backspace" ofType:@"mov"];  
    NSURL *sourceMovieURL = [NSURL fileURLWithPath:filePath];  
      
    moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:sourceMovieURL];  
    moviePlayer.view.frame=CGRectMake(0, 0, 1024, 768);  
    moviePlayer.controlStyle=MPMovieControlStyleNone;  
      
    // Play the movie!  
    [self.view addSubview:moviePlayer.view];  
    

    使用AVPlayer來播放影片

    
    
    NSString *filePath = [[NSBundle mainBundle] pathForResource:@"backspace" ofType:@"mov"];  
    NSURL *sourceMovieURL = [NSURL fileURLWithPath:filePath];  
      
    AVAsset *movieAsset = [AVURLAsset URLAssetWithURL:sourceMovieURL options:nil];  
    AVPlayerItem *playerItem = [AVPlayerItem playerItemWithAsset:movieAsset];  
    AVPlayer *player = [AVPlayer playerWithPlayerItem:playerItem];  
    AVPlayerLayer *playerLayer = [AVPlayerLayer playerLayerWithPlayer:player];  
    playerLayer.frame = self.view.layer.bounds;  
    playerLayer.videoGravity = AVLayerVideoGravityResizeAspect;  
      
    [self.view.layer addSublayer:playerLayer];  
    [player play];  
    

    相关文章

      网友评论

          本文标题:几行代码略看iOS的影片播放: MediaPlayer 和 AV

          本文链接:https://www.haomeiwen.com/subject/ljagdttx.html