If you want to record ARKit, try ARKitRecorder. Real Time record, Aspect ratio and timestamp are perfect.
https://github.com/noppefoxwolf/ARKitRecorder
To run the example project, clone the repo, and run pod install
from the Example directory first.
SCNVideoWriter is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "SCNVideoWriter"
let writer = try! SCNVideoWriter(scene: sceneView.scene)
writer.startWriting()
writer.finishWriting(completionHandler: { [weak self] (url) in
print("done", url)
})
noppefoxwolf, noppelabs@gmail.com
SCNVideoWriter is available under the MIT license. See the LICENSE file for more info.