gpt4 book ai didi

ios - 使用 AVPlayer 在后台播放视频会出现 AspectFill 和循环问题

转载 作者:搜寻专家 更新时间:2023-10-31 08:20:46 25 4
gpt4 key购买 nike

这是我所拥有的,我希望这个视频填满整个屏幕 (aspectFill)

playerLayer.videoGravity = kCAGravityResizeAspectFill应该进行纵横比填充,但屏幕顶部和底部仍然出现黑条。

最后一行本应循环播放视频,但它只是变暗并停止播放。

如有任何建议,我们将不胜感激。

var moviePlayer: AVPlayer!

override func viewDidLoad() {
super.viewDidLoad()

// Load the video from the app bundle.
let videoURL: NSURL = NSBundle.mainBundle().URLForResource("video", withExtension: "mp4")!

self.moviePlayer = AVPlayer(URL: videoURL)
self.moviePlayer.muted = true

let playerLayer = AVPlayerLayer(player: self.moviePlayer)
playerLayer.videoGravity = kCAGravityResizeAspectFill //this not working
playerLayer.zPosition = -1

playerLayer.frame = self.view.frame

self.view.layer.addSublayer(playerLayer)

self.moviePlayer.play()

// Loop video.
NSNotificationCenter.defaultCenter().addObserver(self, selector: "loopVideo", name: AVPlayerItemDidPlayToEndTimeNotification, object: self.moviePlayer)
}

func loopVideo() {
self.moviePlayer.play()
}

最佳答案

您使用的视频引力值有误,请更改为:

playerLayer.videoGravity = AVLayerVideoGravityResizeAspectFill;

请注意,此值适用于视频,因为您使用的值用于重新缩放图像。

为了让您的视频循环播放,您只是忘记了在播放完视频后倒带。我不使用 swift 但在 Objc C 中你的 loopVideo 函数看起来像这样:

-(void) loopVideo {
[self.moviePlayer seekToTime:kCMTimeZero];
[self.moviePlayer play];
}

关于ios - 使用 AVPlayer 在后台播放视频会出现 AspectFill 和循环问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33509623/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com