Guest User

Untitled

a guest
Jan 19th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. player = AVPlayer(url: videoURL as URL)
  2. player?.actionAtItemEnd = .none
  3.  
  4. let playerLayer = AVPlayerLayer(player: player)
  5. playerLayer.videoGravity = AVLayerVideoGravityResizeAspectFill
  6.  
  7. playerLayer.frame = self.view.frame
  8.  
  9. self.view.layer.addSublayer(playerLayer)
  10.  
  11. player?.play()
Add Comment
Please, Sign In to add comment