This file contains hidden or 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
import UIKit | |
import AVFoundation | |
class VideoWriter { | |
fileprivate var writer: AVAssetWriter | |
fileprivate var writerInput: AVAssetWriterInput | |
fileprivate var pixelBufferAdaptor: AVAssetWriterInputPixelBufferAdaptor | |
fileprivate let queue: DispatchQueue | |
static var ciContext = CIContext.init() // we reuse a single context for performance reasons | |