Можно ли сделать изображение peview при отображении временной шкалы видео, как в приложении Netflix с AVPlayer? Пример здесь
Upd.Я обнаружил, что mp4
видео имеет это окно предварительного просмотра, но m3u8
формат не имеет его
Код здесь:
func playVideo(cell: MovieCell) {
guard let urlVideo = URL(string: cell.movieSrc) else {
return
}
// Create an AVPlayer, passing it the HTTP Live Streaming URL.
let player = AVPlayer(url: urlVideo)
// Create a new AVPlayerViewController and pass it a reference to the player.
let controller = AVPlayerViewController()
controller.player = player
// Modally present the player and call the player's play() method when complete.
self.present(controller, animated: true) {
player.play()
}
}