Use FFMPEG (free software) to compile an image sequence into a video
Link to FFMPEG: https://ffmpeg.org/download.html
An excellent video on how to install and set it up: • Install FFmpeg on Windows 10 - 2019
The command used
---------------------------------------------------------------------
ffmpeg -i "frames/Quick_frame%5d.png" -c:v libx264 -crf 0 "Video.mp4"
---------------------------------------------------------------------
The image files are sequentially called "Quick_frame00000.png", "Quick_frame00001.png", "Quick_frame00002.png", ...
This is a sequence with 5 zero-padded digits
The files are located in a folder called frames
For any sequence replace the %5d with the correct formatter for your files.
Change the "Video.mp4" to the name of your output file.