作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在关注 A simple iOS view to play video这可以帮助您在 UIView
中显示 AVPlayer
。这非常有帮助,但不幸的是在 VideoView(自定义创建)中它不包含 currentItem?.duration
所以,我尝试通过这种方式自己添加它:
func getCurrentItemDuration() -> Double
{
let duration = player?.currentItem?.duration
let durationSeconds = CMTimeGetSeconds(duration!)
return durationSeconds
}
但是当我尝试在我的 UIViewController
中打印它时,我得到:Nan
class VideoView: UIView {
var playerLayer: AVPlayerLayer?
var player: AVPlayer?
var isLoop: Bool = false
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
}
func configure(url: String) {
if let videoURL = URL(string: url) {
player = AVPlayer(url: videoURL)
playerLayer = AVPlayerLayer(player: player)
playerLayer?.frame = bounds
playerLayer?.videoGravity = AVLayerVideoGravity.resize
if let playerLayer = self.playerLayer {
layer.addSublayer(playerLayer)
}
NotificationCenter.default.addObserver(self, selector: #selector(reachTheEndOfTheVideo(_:)), name: NSNotification.Name.AVPlayerItemDidPlayToEndTime, object: self.player?.currentItem)
}
}
func play() {
if player?.timeControlStatus != AVPlayer.TimeControlStatus.playing {
player?.play()
}
}
func pause() {
player?.pause()
}
func stop() {
player?.pause()
player?.seek(to: CMTime.zero)
}
func getCurrentItemDuration() -> Double
{
let duration = player?.currentItem?.duration
let durationSeconds = CMTimeGetSeconds(duration!)
return durationSeconds
}
@objc func reachTheEndOfTheVideo(_ notification: Notification) {
if isLoop {
player?.pause()
player?.seek(to: CMTime.zero)
player?.play()
}
}
}
我不知道如何修复这个错误,所以如果有人熟悉这个错误,请指导我修复它。 :)
感谢您的宝贵时间。
最佳答案
因为您想获得 Assets 的持续时间。所以,尝试使用:
CMTimeGetSeconds(player.currentItem!.asset.duration)
它将以秒为单位为您提供当前播放项目的持续时间。
关于swift - 如何在不获取 nan 的情况下获取 CurrentItem.duration,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57715324/
我是一名优秀的程序员,十分优秀!