首页 > 代码库 > iOS的影片播放 MediaPlayer 和 AVPlayer(转)
iOS的影片播放 MediaPlayer 和 AVPlayer(转)
分类: Iphone2013-01-28 16:19 5230人阅读 评论(0) 收藏 举报
在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來播放影片
[cpp] view plaincopy
- 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來播放影片
[cpp] view plaincopy
- 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 和 AVPlayer(转)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。