我有错误和问题。我想将修改后的视频导出到相机胶卷,但导出的视频与相机胶卷不兼容。
我还想删除初始录制的视频,以便我可以录制多次,但它会产生错误而且没有意义。如果我取消注释代码,将会出现错误,告诉我最终路径不存在。我假设在导出修改版本之前删除了初始电影。但我不明白为什么会发生这种情况,因为删除代码低于导出代码。
以下是代码:
// Create Date Formatter
let dateFormatter = NSDateFormatter()
dateFormatter.dateFormat = "yyyy-MM-dd-hh-mm-ss"
// Create Export Session
let exportSession = AVAssetExportSession(asset: composition, presetName: AVAssetExportPresetHighestQuality)
exportSession?.videoComposition = videoComposition
do {
try exportSession?.outputURL = NSFileManager.defaultManager().URLForDirectory(.DocumentDirectory, inDomain: .UserDomainMask, appropriateForURL: nil, create: true).URLByAppendingPathComponent(dateFormatter.stringFromDate(NSDate())).URLByAppendingPathExtension("mov")
}
catch {
print(error)
}
exportSession?.outputFileType = AVFileTypeQuickTimeMovie
exportSession?.exportAsynchronouslyWithCompletionHandler({
print("Output File Type: \(exportSession?.outputFileType)")
print("Output URL: \(exportSession?.outputURL?.absoluteString)")
print("Video Compatible W/ Camera Roll: \(exportSession?.asset.compatibleWithSavedPhotosAlbum)")
//-----SAVE-----
if exportSession?.status == AVAssetExportSessionStatus.Completed
{
print("Export Finished")
if UIVideoAtPathIsCompatibleWithSavedPhotosAlbum((exportSession?.outputURL?.absoluteString)!) //Returns false...
{
UISaveVideoAtPathToSavedPhotosAlbum((exportSession?.outputURL?.absoluteString)!, self, nil, nil)
print("Video Saved")
// Show Message
self.showMessage()
}
else
{
print("Video Not Saved")
}
}
else if exportSession?.status == AVAssetExportSessionStatus.Failed
{
print("Export Error: \(exportSession?.error)")
print("Export Failed")
}
else
{
print("Export Cancelled")
}
})
// The code below generates an error
// Remove Temporary Video
// do
// {
// try NSFileManager.defaultManager().removeItemAtURL(initialOutputURL)
// }
// catch
// {
// print(error)
// }
那么不相容性在哪里?我想要注意,日志显示QuickTime格式和720x720分辨率。
答案 0 :(得分:0)
好的,所以我最终找到了答案......这也没有多大意义。也许它会帮助遇到这个问题的其他人。
因此,删除初始视频的代码必须置于 exportAsynchronouslyWithCompletionHandler
之内,而不是之后。
要保存我刚刚使用 ALAssetLibrary ,.videoAtPathIsCompatibleWithSavedPhotosAlbum
和.writeVideoAtPathToSavedPhotosAlbum
的视频。我知道它已被弃用,但我也希望与iOS 7兼容。如果您想要iOS 8及更高版本,请使用 PHPhotoLibrary 。这非常奇怪,因为我的初始代码和ALAssetLibrary版本完全相同。此外,有趣的是,日志仍然显示视频与相机胶卷不兼容。
最后一项修复是在播放视频时使用CGFloat(M_PI_2)
代替90
。