我正在使用AVPlayerViewController
并使用它我正在播放HLS视频。是否可以在tvOS的进度条上以不同的时间间隔(例如10,20等分黄点)添加一些点?
或者是他们使用的任何其他方法,我可以实现这一点。
答案 0 :(得分:1)
最后通过苹果开发者博客和其他各种博客获得了答案
我们可以使用setInterstitialTimeRanges方法设置AVPlayerItem的InterstitialTimeRanges属性
[self.playerItem setInterstitialTimeRanges:self.timeRangeArray];
其中self.timeRangeArray是一个AVInterstitialTimeRange对象的数组,它将显示在AVPlayerViewController的进度条上。