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,但适用于 mp4 流(非本地,从互联网播放)。我怎样才能让它为 HLS 工作?是否有任何单独的方法可以使其适用于 HLS?
播放器不支持此功能。您可以使用以下代码禁用这些按钮:
if([playerItem canStepBackward] && [playerItem canStepForward]){ [playerViewController setShowsPlaybackControls:YES]; } else{ [playerViewController setShowsPlaybackControls:NO]; }