SimSwap
SimSwap copied to clipboard
Is it possible to create the resulting video separately?
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.