iOS用MPMoviePlayerViewController 播放MP4视频

2018-07-20    来源:open-open

容器云强势上线!快速搭建集群,上万Linux镜像随意使用

1.新建single view工程,导入MediaPlayer库,导入一个视频文件test1.mp4

2.ViewController.h

    #import <UIKit/UIKit.h>  
    #import <MediaPlayer/MediaPlayer.h>  
      
    @interface ViewController : UIViewController {  
        MPMoviePlayerViewController *_playerVC;  
    }  
    @end  

2.ViewController.m
    #import "ViewController.h"  
      
    @implementation ViewController  
      
    - (void)viewDidLoad  
    {  
        [super viewDidLoad];  
          
        NSString *path = [[NSBundle mainBundle] pathForResource:@"test1" ofType:@"mp4"];  
        NSLog(@"%@", path);  
        NSURL *url = [NSURL fileURLWithPath:path];  
        _playerVC = [[MPMoviePlayerViewController alloc] initWithContentURL:url];  
          
        UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];  
        button.frame = CGRectMake(100, 100, 100, 40);  
        [button addTarget:self action:@selector(play) forControlEvents:UIControlEventTouchUpInside];  
        [self.view addSubview:button];  
    }  
      
    - (void)play  
    {  
        [self presentMoviePlayerViewControllerAnimated:_playerVC];  
        [_playerVC.moviePlayer play];  
    }  
      
    @end  

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇:使用C#调用存储过程,用函数合理组织代码,使程序更加的清晰(示例)

下一篇:C语言经典算法 - 老鼠走迷官(二)