We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, Can you also provide the code for rendering the final video? Many thanks :)
The text was updated successfully, but these errors were encountered:
Once you render the camera path, you can use the following script to create a video.
import imageio import os render_dir = '/path/to/rendered/camera/path' frames = [] fps = 10 for item in sorted(os.listdir(render_dir)): if item.endswith('.png'): im = imageio.imread(os.path.join(render_dir, item)) frames.append(im) # rewind frames = frames + frames[::-1] imageio.mimwrite(render_dir + '.mp4', frames, fps=fps)
Sorry, something went wrong.
No branches or pull requests
Hi,
Can you also provide the code for rendering the final video? Many thanks :)
The text was updated successfully, but these errors were encountered: