Skip to content

Instantly share code, notes, and snippets.

@pgpt10
Last active February 5, 2021 13:14
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pgpt10/187fad113d76184feb211bc61e0b715b to your computer and use it in GitHub Desktop.
Save pgpt10/187fad113d76184feb211bc61e0b715b to your computer and use it in GitHub Desktop.
//1. Create a URL
if let url = URL(string: "https://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4") {
//2. Create AVPlayer object
let asset = AVAsset(url: url)
let playerItem = AVPlayerItem(asset: asset)
let player = AVPlayer(playerItem: playerItem)
//3. Create AVPlayerLayer object
let playerLayer = AVPlayerLayer(player: player)
playerLayer.frame = self.videoView.bounds //bounds of the view in which AVPlayer should be displayed
playerLayer.videoGravity = .resizeAspect
//4. Add playerLayer to view's layer
self.videoView.layer.addSublayer(playerLayer)
//5. Play Video
player.play()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment