Is it possible to create the resulting video separately? #269
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Lets say I have \temp_results filled with frames and I want to build a video of it, is this possible?
You have already that code (last few lines in video_swap.py)
Go into your temp_result and use ffmpeg to convert into video.
ffmpeg -f image2 -framerate 25 -i frame_%07d.jpg -vcodec libx264 -crf 22 video.mp4
Just confirm how frame_ is written i cant remember from memory.