I need to select the multiple videos from albums and should know the size of each video. I am trying to use Gallery but it shows both photos and videos. In my case, I need to restrict to only videos.
@IBAction func gallery(_ sender: Any) {
let gallery = GalleryController()
gallery.delegate = self
present(gallery, animated: true, completion: nil)
}