博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MPMoviePlayerController播放视频
阅读量:6333 次
发布时间:2019-06-22

本文共 1421 字,大约阅读时间需要 4 分钟。

  MPMoviePlayerController* moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:ddi.videoFileUrl];

        

        [[NSNotificationCenter defaultCenter] addObserver:self

                                                 selector:@selector(moviePlayBackDidFinish:)

                                                     name: MPMoviePlayerPlaybackDidFinishNotification

                                                   object:moviePlayer];

        [[NSNotificationCenter defaultCenter] addObserver:self

                                                 selector:@selector(moviePlayBackDidFinish:)

                                                     name:MPMoviePlayerWillExitFullscreenNotification

                                                   object:moviePlayer];

        

        moviePlayer.controlStyle = MPMovieControlStyleEmbedded;

        moviePlayer.movieSourceType=MPMovieSourceTypeFile;//这句重要,没有这句视频一片漆黑,无法播放(本地视频)MPMovieSourceTypeStreaming(网路视频)

        moviePlayer.shouldAutoplay = YES;

        [self.view addSubview:moviePlayer.view];

        [moviePlayer setFullscreen:YES animated:YES];

 

#pragma mark - NSNotificationCenter

-(void)moviePlayBackDidFinish:(NSNotification*)notification

{

    MPMoviePlayerController *moviePlayer = [notification object];

    [[NSNotificationCenter defaultCenter] removeObserver:self

                                                    name:MPMoviePlayerPlaybackDidFinishNotification

                                                  object:moviePlayer];

    [[NSNotificationCenter defaultCenter] removeObserver:self name:MPMoviePlayerWillExitFullscreenNotification object:moviePlayer];

    

    // If the moviePlayer.view was added to the view, it needs to be removed

    if ([moviePlayer respondsToSelector:@selector(setFullscreen:animated:)]) {

        [moviePlayer.view removeFromSuperview];

    }

    

//    [moviePlayer release];

}

 

转载于:https://www.cnblogs.com/YuFly-lyx/p/5777157.html

你可能感兴趣的文章
mac下开启docker API远程调用
查看>>
tar 命令的详解
查看>>
Cisco路由器安全配置
查看>>
第十次作业
查看>>
spring事务管理(一)
查看>>
给定一个字符串s,返回去掉子串"mi"后的字符串。
查看>>
Nginx 外的另一选择,轻量级开源 Web 服务器 Tengine 发布新版本
查看>>
Wrod中超链接的一些技巧
查看>>
我的友情链接
查看>>
IP_VFR-4-FRAG_TABLE_OVERFLOW【cisco设备报错】碎片***
查看>>
Codeforces Round #256 (Div. 2) D. Multiplication Table 【二分】
查看>>
ARM汇编指令格式
查看>>
HDU-2044-一只小蜜蜂
查看>>
HDU-1394-Minimum Inversion Number
查看>>
df -h 卡住
查看>>
第七天1
查看>>
[转] createObjectURL方法 实现本地图片预览
查看>>
Jquery中的Jquery.extend, Jquery.fn.extend,Jquery.prototype
查看>>
JavaScript—DOM编程核心.
查看>>
JavaScript碎片
查看>>