陈斌彬的技术博客

Stay foolish,stay hungry

iOS 的影片播放 MediaPlayer 和 AVPlayer

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

备注:

MediaPlayer 的影片是放在 UIView 里面,而 AVPlayer 是放在 AVPlayerLayer 里面,AVPlayerLayer 是 CALayer 的子类别。

使用 MediaPlayer 前,要记得加入MediaPlayer.framework#import <MediaPlayer/MediaPlayer.h>

使用 AVPlayer 前,要记得加入AVFoundation.framework#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];