ios – AVPlayer全屏

ios – AVPlayer全屏,第1张

概述我在我的应用程序中使用AVPlayer而不是MPMoviePlayerController,因为我想将播放器作为子图层. 但是我需要控制,如播放,暂停,搜索和全屏.如何在AVPlayer中获得该按钮? 这就是我放置玩家的方式: AVURLAsset *avasset = [[AVURLAsset alloc] initWithURL:URL1 options:nil]; AVPlayer 我在我的应用程序中使用AVPlayer而不是MPMovIEPlayerController,因为我想将播放器作为子图层.
但是我需要控制,如播放,暂停,搜索和全屏.如何在AVPlayer中获得该按钮?
这就是我放置玩家的方式:
AVURLAsset *avasset = [[AVURLAsset alloc] initWithURL:URL1 options:nil];    AVPlayerItem *item = [[AVPlayerItem alloc] initWithAsset:avasset];    player = [[[AVPlayer alloc] initWithPlayerItem:item]retain];    playerLayer = [AVPlayerLayer playerLayerWithPlayer:player];    CGSize size = self.vIEw.bounds.size;    float x = size.wIDth/2.0-187.0;    float y = size.height/2.0 - 125.0;    playerLayer.frame = CGRectMake(x,y,474,320);    [playerLayer setVIDeoGravity:AVLayerVIDeoGravityResizeAspectFill];    [self.vIEw.layer addSublayer:playerLayer];    [player play];
解决方法 你必须提供自己的按钮.

对于playpause,AVPlayer中有直接的API.

对于全屏……嗯……你知道你在哪里画画:你只需要调整你的UIWindow和相应的UIVIEw&图层为全尺寸.

对于搜索,你有像seekToTime:这样的方法

总结

以上是内存溢出为你收集整理的ios – AVPlayer全屏全部内容,希望文章能够帮你解决ios – AVPlayer全屏所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1105471.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存