Storing animation as video file #581
Answered
by
marcomusy
ItayVortex
asked this question in
Q&A
-
Using for example the animation from example density4d, is it possible to store it as a video file? |
Beta Was this translation helpful? Give feedback.
Answered by
marcomusy
Jan 19, 2022
Replies: 1 comment
-
yes - just use video = Video("movie.mp4", duration=6, backend='ffmpeg') # backend='opencv'
# ...loop
video.addFrame()
video.close() see example: https://github.com/marcomusy/vedo/blob/master/examples/other/makeVideo.py |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ItayVortex
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
yes - just use
see example: https://github.com/marcomusy/vedo/blob/master/examples/other/makeVideo.py