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

iOS 在应用中播放本地视频文件

时间:2014-09-25 22:41:38      阅读:440      评论:0      收藏:0      [点我收藏+]

标签:http   io   os   使用   ar   for   文件   sp   on   

可以使用MPMoviePlayerController来播放本地视频文件

1.添加 Mediaplayer framework 并且在viewcontroller中#import <MediaPlayer/MediaPlayer.h> 

2. 把视频文件拖拽到xcode中

3. 获取文件存放的路径

NSString*thePath=[[NSBundle mainBundle] pathForResource:@"yourVideo" ofType:@"MOV"];
NSURL*theurl=[NSURL fileURLWithPath:thePath];

4. 用该路径初始化moviePlayer

self.moviePlayer=[[MPMoviePlayerController alloc] initWithContentURL:theurl];
[self.moviePlayer.view setFrame:CGRectMake(40, 197, 240, 160)];
[self.moviePlayer prepareToPlay];
[self.moviePlayer setShouldAutoplay:NO]; // And other options you can look through the documentation.
[self.view addSubview:self.moviePlayer.view];

5. 添加playback后需要做什么操作的控制

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(playBackFinished:) name:MPMoviePlayerPlaybackDidFinishNotification object:moviePlayer]; 
//playBackFinished will be your own method.


翻译自:

http://stackoverflow.com/a/9802543/3458781



iOS 在应用中播放本地视频文件

标签:http   io   os   使用   ar   for   文件   sp   on   

原文地址:http://blog.csdn.net/willyang519/article/details/39557913

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