Skip to content

Instantly share code, notes, and snippets.

@agammahajan1
Created August 30, 2020 12:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agammahajan1/c488d7f925378d26fcf7e08e611ef46a to your computer and use it in GitHub Desktop.
Save agammahajan1/c488d7f925378d26fcf7e08e611ef46a to your computer and use it in GitHub Desktop.
let videoURL = URL(string: "Sample-Video-Url")
let player = AVPlayer(url: videoURL!)
let playerLayer = AVPlayerLayer(player: player)
playerLayer.frame = self.view.bounds
self.view.layer.addSublayer(playerLayer)
player.play()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment