Vineesh TP
Vineesh TP

Reputation: 7973

Zoom Playing video using AVPlayer

I am paying a m3u8 video url using AVPlayer Is it possible to zoom the video while playing the video.

 let url = URL(string: "http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/sl.m3u8")
let player = AVPlayer(url: url)

let playerLayer = AVPlayerLayer(player: player)
playerLayer.frame = self.view.bounds
playerLayer.backgroundColor = UIColor.purple.cgColor
self.view.layer.addSublayer(playerLayer)

Upvotes: 5

Views: 3603

Answers (0)

Related Questions