zoukankan      html  css  js  c++  java
  • 视频播放器

     在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來播放影片

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


    使用AVPlayer來播放影片

      1. NSString *filePath = [[NSBundle mainBundle] pathForResource:@"backspace" ofType:@"mov"];  
      2. NSURL *sourceMovieURL = [NSURL fileURLWithPath:filePath];  
      3.   
      4. AVAsset *movieAsset = [AVURLAsset URLAssetWithURL:sourceMovieURL options:nil];  
      5. AVPlayerItem *playerItem = [AVPlayerItem playerItemWithAsset:movieAsset];  
      6. AVPlayer *player = [AVPlayer playerWithPlayerItem:playerItem];  
      7. AVPlayerLayer *playerLayer = [AVPlayerLayer playerLayerWithPlayer:player];  
      8. playerLayer.frame = self.view.layer.bounds;  
      9. playerLayer.videoGravity = AVLayerVideoGravityResizeAspect;  
      10.   
      11. [self.view.layer addSublayer:playerLayer];  
      12. [player play];  
      13.    
      14.  
      15.  
      16.  MPMoviePlayerController是通过MediaPlayer.frame引入的,可用于播放在iOS支持的所有格式的视频,用起来很简单,但是有注意的事项,实现结果如下:

        /

        代码如下:

        -(IBAction)click:(id)sender{

        //通过点击按钮出发视频播放视图的加载

        [self playMyVedio];

        }

        -(void)playMyVedio{

        //路径的设置,这里要注意,不要用[NSURL urlwithstring],还要去确保路径的正确

        NSBundle *bundle = [NSBundle mainBundle];

        NSString *moviePath = [bundle pathForResource:@"111/Viva" ofType:@"mp4"];

        NSURL *movieURL = [NSURL fileURLWithPath:moviePath];

        //很重要的一点是在头文件里已经把player变为属性了,@property(nonamaic,strong),如果不写为属性就会黑屏,目前不知道为什么

        player =[[MPMoviePlayerController alloc] initWithContentURL:movieURL];

        player.controlStyle=MPMovieControlStyleDefault;

        [player prepareToPlay];

        [player.view setFrame:self.view.bounds];  // player的尺寸

        [self.view addSubview: player.view];

        player.shouldAutoplay=YES;

        }

        如果注意了视频的路径,和设置了属性,那么点击按钮就应该可以顺利的以全屏幕是播放视频,下一个问题就是退出,因为是全屏模式,模仿 iphone自己的视频播放,应该是点击左上角的done按钮就退出播放,这里如果不作处理,点击后只是退出全屏,屏幕还是有一块黑,其实是player 的非全屏模式,所以这里就要监听一个通知,点击done按钮后发出的通知,这样就可以退出了,代码如下:

        - (void)viewDidLoad

        {

        [super viewDidLoad];

        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(exitFullScreen:) name: MPMoviePlayerDidExitFullscreenNotification object:nil];

        }

        -(void)exitFullScreen:(NSNotification *)notification{

        [player.view removeFromSuperview];

        NSLog(@”remove player”);

        }

        更新一种方法,程序启动自动播放全屏视频,没有控制条,播放完毕接视图呈现,也就是一个过场动画,这里要注意把设置控制条和全屏等语句写在添加播放器视图之后,要不然设置无效

        -(void)playMyVedio{

        NSString *myFilePath = [[NSBundle mainBundle] pathForResource:@”mnMovnew.mp4″ ofType:nil inDirectory:nil];

        NSURL *movieURL = [NSURL fileURLWithPath:myFilePath];

        player =[[MPMoviePlayerController alloc] initWithContentURL:movieURL];

        [player prepareToPlay];

        [self.view addSubview:player.view];//设置写在添加之后

        player.shouldAutoplay=YES;

        [player setControlStyle:MPMovieControlStyleNone];

        [player setFullscreen:YES];

        [player.view setFrame:self.view.bounds];

        }

  • 相关阅读:
    [POJ2104]K-th Number(区间第k值 记录初始状态)
    [POJ2007]Scrambled Polygon(计算几何 极角排序)
    [POJ1269]Intersecting Lines (计算几何)
    [POJ2318]TOYS (计算几何 行列式(叉乘)+二分)
    [HDOJ1394]Minimum Inversion Number(线段树,逆序数)
    Codeforces Round #319 (Div. 2) C. Vasya and Petya's Game 数学题
    BZOJ 1934 [Shoi2007]Vote 善意的投票 最小割
    BZOJ 1055 区间DP
    HDU4267 树状数组 不连续区间修改(三维)
    HDU 3308 线段树单点更新+区间查找最长连续子序列
  • 原文地址:https://www.cnblogs.com/shuxiachahu123/p/5053371.html
Copyright © 2011-2022 走看看