2022-11-11 12:02:44 +01:00
|
|
|
//
|
|
|
|
// AttachmentViewModel+Compress.swift
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// Created by MainasuK on 2022/11/11.
|
|
|
|
//
|
|
|
|
|
2022-11-11 14:28:19 +01:00
|
|
|
import os.log
|
2022-11-11 12:02:44 +01:00
|
|
|
import UIKit
|
|
|
|
import AVKit
|
2022-11-11 14:28:19 +01:00
|
|
|
import SessionExporter
|
|
|
|
import MastodonCore
|
2022-11-11 12:02:44 +01:00
|
|
|
|
|
|
|
extension AttachmentViewModel {
|
|
|
|
func comporessVideo(url: URL) async throws -> URL {
|
2022-11-11 14:28:19 +01:00
|
|
|
let urlAsset = AVURLAsset(url: url)
|
|
|
|
let exporter = NextLevelSessionExporter(withAsset: urlAsset)
|
|
|
|
exporter.outputFileType = .mp4
|
|
|
|
|
2022-11-17 23:02:43 +01:00
|
|
|
let isLandscape: Bool = {
|
2022-11-13 18:19:39 +01:00
|
|
|
guard let track = urlAsset.tracks(withMediaType: .video).first else {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
let size = track.naturalSize.applying(track.preferredTransform)
|
|
|
|
return abs(size.width) >= abs(size.height)
|
|
|
|
}()
|
|
|
|
|
2022-11-11 14:28:19 +01:00
|
|
|
let outputURL = try FileManager.default.createTemporaryFileURL(
|
|
|
|
filename: UUID().uuidString,
|
|
|
|
pathExtension: url.pathExtension
|
|
|
|
)
|
|
|
|
exporter.outputURL = outputURL
|
|
|
|
|
|
|
|
let compressionDict: [String: Any] = [
|
|
|
|
AVVideoAverageBitRateKey: NSNumber(integerLiteral: 3000000), // 3000k
|
|
|
|
AVVideoProfileLevelKey: AVVideoProfileLevelH264HighAutoLevel as String,
|
|
|
|
AVVideoAverageNonDroppableFrameRateKey: NSNumber(floatLiteral: 30), // 30 FPS
|
|
|
|
]
|
|
|
|
exporter.videoOutputConfiguration = [
|
|
|
|
AVVideoCodecKey: AVVideoCodecType.h264,
|
2022-11-13 18:19:39 +01:00
|
|
|
AVVideoWidthKey: NSNumber(integerLiteral: isLandscape ? 1280 : 720),
|
|
|
|
AVVideoHeightKey: NSNumber(integerLiteral: isLandscape ? 720 : 1280),
|
2022-11-11 14:28:19 +01:00
|
|
|
AVVideoScalingModeKey: AVVideoScalingModeResizeAspectFill,
|
|
|
|
AVVideoCompressionPropertiesKey: compressionDict
|
|
|
|
]
|
|
|
|
exporter.audioOutputConfiguration = [
|
|
|
|
AVFormatIDKey: kAudioFormatMPEG4AAC,
|
|
|
|
AVEncoderBitRateKey: NSNumber(integerLiteral: 128000), // 128k
|
|
|
|
AVNumberOfChannelsKey: NSNumber(integerLiteral: 2),
|
|
|
|
AVSampleRateKey: NSNumber(value: Float(44100))
|
|
|
|
]
|
2022-11-11 12:02:44 +01:00
|
|
|
|
2022-11-11 14:28:19 +01:00
|
|
|
// needs set to LOW priority to prevent priority inverse issue
|
|
|
|
let task = Task(priority: .utility) {
|
|
|
|
_ = try await exportVideo(by: exporter)
|
|
|
|
}
|
|
|
|
_ = try await task.value
|
2022-11-11 12:02:44 +01:00
|
|
|
|
2022-11-11 14:28:19 +01:00
|
|
|
return outputURL
|
2022-11-11 12:02:44 +01:00
|
|
|
}
|
2022-11-11 14:28:19 +01:00
|
|
|
|
|
|
|
private func exportVideo(by exporter: NextLevelSessionExporter) async throws -> URL {
|
|
|
|
guard let outputURL = exporter.outputURL else {
|
|
|
|
throw AppError.badRequest
|
|
|
|
}
|
|
|
|
return try await withCheckedThrowingContinuation { continuation in
|
|
|
|
exporter.export(progressHandler: { progress in
|
|
|
|
DispatchQueue.main.async { [weak self] in
|
|
|
|
guard let self = self else { return }
|
|
|
|
self.videoCompressProgress = Double(progress)
|
|
|
|
os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: export progress: %.2f", ((#file as NSString).lastPathComponent), #line, #function, progress)
|
|
|
|
}
|
|
|
|
}, completionHandler: { result in
|
|
|
|
switch result {
|
|
|
|
case .success(let status):
|
|
|
|
switch status {
|
|
|
|
case .completed:
|
|
|
|
print("NextLevelSessionExporter, export completed, \(exporter.outputURL?.description ?? "")")
|
|
|
|
continuation.resume(with: .success(outputURL))
|
|
|
|
default:
|
|
|
|
if Task.isCancelled {
|
|
|
|
exporter.cancelExport()
|
|
|
|
os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: cancel export", ((#file as NSString).lastPathComponent), #line, #function)
|
|
|
|
}
|
|
|
|
print("NextLevelSessionExporter, did not complete")
|
|
|
|
}
|
|
|
|
case .failure(let error):
|
|
|
|
continuation.resume(with: .failure(error))
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
} // end func
|
2022-11-11 12:02:44 +01:00
|
|
|
}
|