Is it possible to create the resulting video separately? #269

Open
opened 2022-05-24 17:26:01 +02:00 by cloverthe · 2 comments
cloverthe commented 2022-05-24 17:26:01 +02:00 (Migrated from github.com)

Lets say I have \temp_results filled with frames and I want to build a video of it, is this possible?

Lets say I have \temp_results filled with frames and I want to build a video of it, is this possible?
kyugorithm commented 2022-05-25 16:36:27 +02:00 (Migrated from github.com)

You have already that code (last few lines in video_swap.py)

You have already that code (last few lines in video_swap.py)
Fibonacci134 commented 2022-05-28 17:23:56 +02:00 (Migrated from github.com)

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.

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.
Sign in to join this conversation.