Last active
February 5, 2021 13:14
-
-
Save pgpt10/187fad113d76184feb211bc61e0b715b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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