Swift:从 url 保存视频数据时出错
Swift: error while saving video data from url
我有以下用于保存录制视频的代码:
func saveVideo() -> Void {
guard let url = self.videoUrl else {
Logger.shared.log(.video, .error, "error video url invalid")
return
}
let homeDirectory = URL.init(fileURLWithPath: NSHomeDirectory(), isDirectory: true)
let fileUrl = homeDirectory.appendingPathComponent(self.adId.toString()).appendingPathComponent("video-clip").appendingPathComponent(UUID.init().uuidString, isDirectory: false).appendingPathExtension("mov")
Logger.shared.log(.video, .debug, "saving video to: \(fileUrl)")
self.savedVideoUrl = fileUrl
do {
let data = try Data(contentsOf: url)
try data.write(to: fileUrl, options: .atomicWrite)
} catch {
Logger.shared.log(.video, .error, "error saving video: \(error.localizedDescription)")
}
}
这里self.videoUrl
是摄像头录制视频的url
,由委托方法初始化:func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [UIImagePickerController.InfoKey : Any])
问题是saveVideo()
方法执行时报错:
[878 ] 13:22:16.045 | video | Main thread | error saving video: The folder “4A601A28-C4EB-405E-8110-6D01965D5920.mov” doesn’t exist.
我不确定这段代码有什么问题。如果文件不存在那么我们要如何先创建文件然后写入数据呢?
好吧,几天前我有一个类似的任务(即下载视频,不管 url 来源(本地或远程)然后在本地保存)。
我用你的函数做了一个实验。
请参阅 github 存储库,其中包含工作示例和对您的函数应用的修复程序 https://github.com/glennposadas/AVFoundation-SaveLocal
你做错的是你为新文件提供 URL 路径的方式。
编辑:我认为您首先需要创建文件夹路径。我的 fileUrl
有效,因为路径存在。
这样就可以了(.mp4 或 .mov,无论哪种方式):
let fileUrl = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)
.first!
.appendingPathComponent("\(UUID.init().uuidString).mp4")
它有一个路径(如果你要打印它):
/Users/myusername/Library/Developer/CoreSimulator/Devices/812428A5-0893-43BE-B343-B23E9F13D4AA/data/Containers/Data/Application/E278E093-BE29-410B-9C5D-810BD0F968F8/Documents/F227C8B5-5D8D-42B0-8205-3ADAD0DD38F5.mp4
同时,您的文件网址:
let homeDirectory = URL.init(fileURLWithPath: NSHomeDirectory(), isDirectory: true)
let fileUrl = homeDirectory
.appendingPathComponent("someId")
.appendingPathComponent("video-clip")
.appendingPathComponent(UUID.init().uuidString, isDirectory: false)
.appendingPathExtension("mov")
给出路径:
/Users/myusername/Library/Developer/CoreSimulator/Devices/812428A5-0893-43BE-B343-B23E9F13D4AA/data/Containers/Data/Application/570D3CFA-3C44-41A5-A642-C79E5590D16E/someId/video-clip/5B1C9C98-C9EA-40D2-805C-B326466837E6.mov
编辑:要修复每次构建项目时文档中丢失文件的问题,然后查看我上面提供的存储库中的更改。我添加了一个修复程序,用于从文档文件夹中检索视频文件。
所以基本上你应该如何检索文件是你只保存 fileName
,因为构建的每个 运行 都会产生不同的 filePath
。
我有以下用于保存录制视频的代码:
func saveVideo() -> Void {
guard let url = self.videoUrl else {
Logger.shared.log(.video, .error, "error video url invalid")
return
}
let homeDirectory = URL.init(fileURLWithPath: NSHomeDirectory(), isDirectory: true)
let fileUrl = homeDirectory.appendingPathComponent(self.adId.toString()).appendingPathComponent("video-clip").appendingPathComponent(UUID.init().uuidString, isDirectory: false).appendingPathExtension("mov")
Logger.shared.log(.video, .debug, "saving video to: \(fileUrl)")
self.savedVideoUrl = fileUrl
do {
let data = try Data(contentsOf: url)
try data.write(to: fileUrl, options: .atomicWrite)
} catch {
Logger.shared.log(.video, .error, "error saving video: \(error.localizedDescription)")
}
}
这里self.videoUrl
是摄像头录制视频的url
,由委托方法初始化:func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [UIImagePickerController.InfoKey : Any])
问题是saveVideo()
方法执行时报错:
[878 ] 13:22:16.045 | video | Main thread | error saving video: The folder “4A601A28-C4EB-405E-8110-6D01965D5920.mov” doesn’t exist.
我不确定这段代码有什么问题。如果文件不存在那么我们要如何先创建文件然后写入数据呢?
好吧,几天前我有一个类似的任务(即下载视频,不管 url 来源(本地或远程)然后在本地保存)。
我用你的函数做了一个实验。
请参阅 github 存储库,其中包含工作示例和对您的函数应用的修复程序 https://github.com/glennposadas/AVFoundation-SaveLocal
你做错的是你为新文件提供 URL 路径的方式。
编辑:我认为您首先需要创建文件夹路径。我的 fileUrl
有效,因为路径存在。
这样就可以了(.mp4 或 .mov,无论哪种方式):
let fileUrl = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)
.first!
.appendingPathComponent("\(UUID.init().uuidString).mp4")
它有一个路径(如果你要打印它):
/Users/myusername/Library/Developer/CoreSimulator/Devices/812428A5-0893-43BE-B343-B23E9F13D4AA/data/Containers/Data/Application/E278E093-BE29-410B-9C5D-810BD0F968F8/Documents/F227C8B5-5D8D-42B0-8205-3ADAD0DD38F5.mp4
同时,您的文件网址:
let homeDirectory = URL.init(fileURLWithPath: NSHomeDirectory(), isDirectory: true)
let fileUrl = homeDirectory
.appendingPathComponent("someId")
.appendingPathComponent("video-clip")
.appendingPathComponent(UUID.init().uuidString, isDirectory: false)
.appendingPathExtension("mov")
给出路径:
/Users/myusername/Library/Developer/CoreSimulator/Devices/812428A5-0893-43BE-B343-B23E9F13D4AA/data/Containers/Data/Application/570D3CFA-3C44-41A5-A642-C79E5590D16E/someId/video-clip/5B1C9C98-C9EA-40D2-805C-B326466837E6.mov
编辑:要修复每次构建项目时文档中丢失文件的问题,然后查看我上面提供的存储库中的更改。我添加了一个修复程序,用于从文档文件夹中检索视频文件。
所以基本上你应该如何检索文件是你只保存 fileName
,因为构建的每个 运行 都会产生不同的 filePath
。