gpt4 book ai didi

ios - AVPlayerViewController 播放速度的自定义控件

转载 作者:行者123 更新时间:2023-11-29 12:01:27 26 4
gpt4 key购买 nike

  1. 我们可以将自定义播放速度(0.5、1.0、1.5、2.0)控制添加到 AVPlayerViewController 吗?
  2. 有没有一种方法可以使用 UISlider 值更改来刷新速度?
  3. 如果正在播放,我们可以改变播放速度吗?

最佳答案

  1. Can we add custom playback speed (0.5, 1.0, 1.5, 2.0) control to AVPlayerViewController?

您可以通过一些技巧将自定义播放速度按钮添加到 AVPlayerViewController

在 iOS 11 中,即,您可以通过在“播放/暂停”按钮旁边添加控件来向 AVPlayerViewController 添加按钮。该按钮具有可帮助您找到该控件的可访问标识符。

iOS 11 AVPlayerViewController

所以,我所做的基本上就是找到“播放/暂停”按钮,并将我的播放速度按钮添加到“播放/暂停”按钮的 super View 中。

func findPlayPauseButton(view: UIView) -> UIView? {
if view.accessibilityIdentifier == "Play/Pause" {
return view
}
for subview in view.subviews {
if let result = findPlayPauseButton(view: subview) {
return result
}
}
return nil
}

guard let playerView = playerViewController?.view else {
return
}

guard let playPauseButton = findPlayPauseButton(view: playerView) else {
return
}

if let playerControlsView = playPauseButton.superview {
let playbackSpeedButton = UIButton(type: .system)
playbackSpeedButton.accessibilityIdentifier = "PlaybackSpeed"
playbackSpeedButton.setTitle("1 X", for: .normal)
playbackSpeedButton.addTarget(self, action: #selector(self.playbackSpeedButtonTapped), for: .touchUpInside)
playbackSpeedButton.translatesAutoresizingMaskIntoConstraints = false
playerControlsView.addSubview(playbackSpeedButton)
NSLayoutConstraint.activate([
playbackSpeedButton.heightAnchor.constraint(equalTo: playPauseButton.heightAnchor),
playbackSpeedButton.widthAnchor.constraint(equalToConstant: 50),
playbackSpeedButton.leadingAnchor.constraint(equalTo: playPauseButton.trailingAnchor, constant: 70),
playbackSpeedButton.bottomAnchor.constraint(equalTo: playPauseButton.bottomAnchor),
])
}

结果:

Playback Speed Button Example

您可能知道,这有很多缺点,因为您会发现所有边缘情况,即,您还需要注意景观,您需要检查 hack 是否在每个新的平台上仍然有效iOS 版本等。如果您的应用程序支持 iOS 10,那么情况就不同了,因为 AVPlayerViewController 的 UI 在 iOS 11 中发生了变化。

  1. Is there a way we can refresh speed rate using an UISlider value change?

是的,不用 UIButton 来改变播放速度,只需添加一个 UISlider

  1. Can we change the playback speed if it is playing currently?

是的,如果它正在播放,那么您只需要更改 rate播放器的属性:例如 1.25 X => playerViewController.player?.rate = 1.25

更新:

请求增强! 🙃 雷达编号为 46022646:Playback speed control for AVPlayerViewController (Video) .

关于ios - AVPlayerViewController 播放速度的自定义控件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36848244/

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