Created
August 30, 2020 12:41
-
-
Save agammahajan1/6e63a8109f80e5562d4c3f4b7776735c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let exporter = AVAssetExportSession(asset: avUrlAsset, presetName: AVAssetExportPresetHighestQuality) | |
exporter?.outputURL = outputURL | |
exporter?.outputFileType = AVFileType.mp4 | |
exporter?.exportAsynchronously(completionHandler: { | |
print(exporter?.status.rawValue) | |
print(exporter?.error) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment