Created
February 21, 2019 11:43
-
-
Save pgpt10/aaed8235019a0c57b634b659823e6829 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
let urls = [URL]() | |
//Add items to urls array | |
var playerItems = [AVPlayerItem]() | |
urls.forEach { (url) in | |
let asset = AVAsset(url: url) | |
let playerItem = AVPlayerItem(asset: asset) | |
playerItems.append(playerItem) | |
} | |
let player = AVQueuePlayer(items: playerItems) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment