SceneKit2Video
SceneKit2Video copied to clipboard
Demo project: High-def video output from SCNKit
Hi, Great stuff with the SCNKit2Video, it's amazing. I've managed to hook it up to an ARSCNView and i'm getting it to render this view, so any AR Elements that...
Checked with different dae and scn animations. All of them are animating on sceneView, but not moving on the video. There is a strange bug - when I'm starting recording...
Fixes issue https://github.com/lacyrhoades/SceneKit2Video/issues/6
I want to record screen video like Animoji App do in my iMessage extension app, which is tracking face expressions using SCNView. Everything is working, but recording is not shown...
In the example given, the video is saved to `outputURL` in the callback `andThen`. If I were to save it on the phone instead, how would the new location be...
I love that you have implemented a UIImage overlay to the video. Is it possible to make that image dynamic? Like if the image were to change over the course...
ARKit
I was trying to use SceneKit2Video in order to record video of an ARKit scene. It records the nodes in the scene correctly, but for some reason the video of...
When trying to build in Xcode 9 using Swift 4 as the compile language, it gives a couple errors in VideoRenderer.swift: * On line 88, it says `'AVFileTypeAppleMV4' has been...
Example not working. I met issue on iPhone 6s iOS 11 beta 4. When run example, preview and saved video looks black. But on iPhone 7 plus iOS 10.3.2, work...
The user can specify any output URL. Like this. ``` var options = VideoRendererOptions() options.sceneDuration = scene.duration options.videoSize = CGSize(width: 1280, height: 720) options.fps = 60 options.outputUrl = outputUrl ```