gpt4 book ai didi

ios - 从 iOS 中的图像选择器获取视频 url

转载 作者:行者123 更新时间:2023-12-01 22:19:55 26 4
gpt4 key购买 nike

我在从照片库中选择视频网址时遇到问题。当图像选择器出现时,它无法选择,但我尝试选择它。它会自动压缩并且图像选择器不会被关闭。

这是我的代码。

self.imagePickerController.sourceType = .savedPhotosAlbum
self.imagePickerController.delegate = self
self.imagePickerController.mediaTypes = [kUTTypeMovie as! String]

self.present(self.imagePickerController, animated: true, completion: nil)


func imagePickerController(picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String : AnyObject]) {
var videoURL: NSURL? = nil
videoURL = info["UIImagePickerControllerReferenceURL"] as? NSURL
print(videoURL)

imagePickerController.dismiss(animated: true, completion: nil)
}

最佳答案

Swift 4.2 中,您必须使用 Apple 提供的新枚举来捕获视频 URL:

// Using the full key
if let url = info[UIImagePickerController.InfoKey.mediaURL] as? URL {
// Do something with the URL
}

// Using just the information key value
if let url = info[.mediaURL] as? URL {
// Do something with the URL
}

您可以阅读有关 mediaURL here 的信息.

Specifies the filesystem URL for the movie.

关于ios - 从 iOS 中的图像选择器获取视频 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48149771/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com