在上传到服务器之前压缩视频和图像

时间:2016-09-23 09:43:57

标签: ios iphone swift video upload

将图像和视频一起上传到服务器。用户最多可以选择5个图像和5个视频。因此需要在上传之前减小视频和图像的大小。请指导。 以下是我的尝试。为图像做了些什么但不知道视频压缩。

-Xmx8G

//视频

// images

if  let imageData1 = UIImageJPEGRepresentation(User.sharedInstance.arrRoomGalleryImages.objectAtIndex(index) as! UIImage, 0.6) {              
    multipartFormData.appendBodyPart(data: imageData1, name: "image_path[]", fileName: strImgName, mimeType: "image/png")
}

1 个答案:

答案 0 :(得分:2)

在将视频上传到服务器之前,您可以将每个原始.mov文件转换为.mp4压缩文件。以下是SWIFT 3中的内容:

首先,创建一个封装压缩过程的函数。请注意,压缩文件是一项异步任务:

func compressVideo(inputURL: URL, outputURL: URL, handler:@escaping (_ exportSession: AVAssetExportSession?)-> Void) {
                let urlAsset = AVURLAsset(url: inputURL, options: nil)
                guard let exportSession = AVAssetExportSession(asset: urlAsset, presetName: AVAssetExportPresetMediumQuality) else {
                    handler(nil)
                    return
                }

                exportSession.outputURL = outputURL
                exportSession.outputFileType = AVFileTypeMPEG4 //AVFileTypeQuickTimeMovie (m4v)
                exportSession.shouldOptimizeForNetworkUse = true
                exportSession.exportAsynchronously { () -> Void in
                    handler(exportSession)
                }
            }

现在你可以这样使用compressVideo:

// Put in fileURL the URL of the original .mov video
let compressedURL = NSURL.fileURL(withPath: NSTemporaryDirectory() + NSUUID().uuidString + ".mp4")
let compressedFileData : Data? =  nil

// Encode to mp4
compressVideo(inputURL: fileURL, outputURL: compressedURL, handler: { (_ exportSession: AVAssetExportSession?) -> Void in

    switch exportSession!.status {
        case .completed:

        print("Video compressed successfully")
        do {
            compressedFileData = try Data(contentsOf: exportSession!.outputURL!)
            // Call upload function here using compressedFileData
        } catch _ {
            print ("Error converting compressed file to Data")
        }

        default:
            print("Could not compress video")
    }
} )

现在您可以像往常一样将compressedFileData作为多部分“image / mp4”文件上传