2016-09-23 169 views
0

將圖像和視頻一起上傳到服務器。用戶最多可以選擇5個圖像和5個視頻。因此需要在上傳之前減少視頻和圖像的大小。請指導。 以下是我正在嘗試。做了一些圖像,但不知道視頻壓縮。在上傳到服務器之前壓縮視頻和圖像

// 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") 
} 

//視頻

let strVidName = "vid" + String(index) // + ".mov" 

multipartFormData.appendBodyPart(data: User.sharedInstance.arrRoomGalleryVideos.objectAtIndex(index) as! NSData, name: "video_path[]", fileName: strVidName, mimeType: "application/octet-stream") 

回答

0

可以逢原.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作爲多「圖像/ MP4」文件照常

+0

在我使用這個之前,上傳的視頻大約爲10.5 MB,在我使用它之後,仍然約爲10.5 MB。我能做什麼 ? –

相關問題