Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在研究AVPlayerViewController和使用它,我正在播放 HLS 视频。是否可以在 tvOS 的进度条上以不同的时间间隔(例如,在 10、20 等分钟的黄点)添加一些点?
AVPlayerViewController
或者他们是否可以使用其他任何方法来实现这一点。
经过苹果开发者博客和其他各种博客后终于得到了答案
我们可以使用 setInterstitialTimeRanges 方法来设置 AVPlayerItem 的 InterstitialTimeRanges 属性
[self.playerItem setInterstitialTimeRanges:self.timeRangeArray];
其中 self.timeRangeArray 是一个 AVInterstitialTimeRange 对象数组,将显示在 AVPlayerViewController 的进度条上。