Break apart a video into frames, modify them, then recombine the frames back into video with the original framerate and audio.
- Windows only (for now)
- ffmpeg
- python
First, download ffmpeg and put ffmpeg.exe and ffprobe.exe in the .\ffmpeg folder
- Enter
python dumptybreak.py panda.mp4to "break apart" a video (in this example,panda.mp4) into its composite frames. The extracted frames will appear in.\frames\panda(using the name of the input video) - Modify the extracted frames any way you like, but keep the filenames and number of frames the same.
- Enter
python dumptyglue.py panda.mp4to generate a new video from the frames found in.\frames\pandausing the framerate and audio frompanda.mp4calledpanda-glued.mp4.
- I suck at Python
- There is a colorspace adjustment during the conversion that needs to be ironed out
- Filenames cannot contain spaces