zoukankan      html  css  js  c++  java
  • iOS之视频播放MPMoviePlayerViewController

    需要导入的框架

    #import <MediaPlayer/MediaPlayer.h>

    MediaPlayer.framework

    MPMoviePlayerViewController:

    打开网络视频:

    -(void)openmovie

    {

        MPMoviePlayerViewController *movie = [[MPMoviePlayerViewControlleralloc]initWithContentURL:[NSURLURLWithString:@"视频网络地址"]];

        

        [movie.moviePlayer prepareToPlay];

        [self presentMoviePlayerViewControllerAnimated:movie];

        [movie.moviePlayersetControlStyle:MPMovieControlStyleFullscreen];

        

        [movie.viewsetBackgroundColor:[UIColorclearColor]];

        

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

        [[NSNotificationCenterdefaultCenter]addObserver:self

         

                                                selector:@selector(movieFinishedCallback:)

         

                                                    name:MPMoviePlayerPlaybackDidFinishNotification

         

                                                   object:movie.moviePlayer];

    }

    -(void)movieFinishedCallback:(NSNotification*)notify{

        

        // 视频播放完或者在presentMoviePlayerViewControllerAnimated下的Done按钮被点击响应的通知。

        

        MPMoviePlayerController* theMovie = [notifyobject];

        

        [[NSNotificationCenterdefaultCenter]removeObserver:self

         

                                                       name:MPMoviePlayerPlaybackDidFinishNotification

         

                                                      object:theMovie];

        

        [selfdismissMoviePlayerViewControllerAnimated];

        

    }

    打开本地视频:

    -(void)openmovie

    {

      

       NSString *url = [[NSBundlemainBundle]pathForResource:@"IMG_0322"ofType:@"mp4"];

        MPMoviePlayerViewController *playerViewController  = [[MPMoviePlayerViewControlleralloc]initWithContentURL:[NSURLfileURLWithPath:url]];

        [[NSNotificationCenterdefaultCenter]addObserver:selfselector:@selector(movieFinishedCallback:)

                                                    name:MPMoviePlayerPlaybackDidFinishNotification

                                                  object:[playerViewControllermoviePlayer]];

        [self.view addSubview:playerViewController.view];

        

        MPMoviePlayerController *player = [playerViewControllermoviePlayer];

        [playerplay];

        

    }

    - (void) movieFinishedCallback:(NSNotification*) aNotification {

       MPMoviePlayerController *player = [aNotificationobject];

        [[NSNotificationCenterdefaultCenter]removeObserver:selfname:MPMoviePlayerPlaybackDidFinishNotificationobject:player];

        [playerstop];

        [player.viewremoveFromSuperview];

       

    }

  • 相关阅读:
    通过C#代码调用Dynamics 365 Web API执行批量操作
    Dynamics 365 CE Update消息PostOperation阶段Image的尝试
    sql注入100种姿势过waf(二):过安全狗
    sql注入100种姿势过waf(一):waf 了解
    双文件上传突破利用
    渗透实例(一):点后缀突破上传文件
    IIS6.0使用冒号上传漏洞利用
    利用3389端口监视管理员登录
    Windows突破远程连接最大数去掉限制登录
    MIME格式解析
  • 原文地址:https://www.cnblogs.com/Sucri/p/4645493.html
Copyright © 2011-2022 走看看