ffmpeg will allow you to create video from still images.
For example, to create a video with a frame rate of 10 frames per second, from images 001.jpg .... 999.jpg:
ffmpeg -r 10 -b 1800 -i %03d.jpg test1800.mp4
You can use multimedia streams (audio and video), for example (add the appropriate codec parameters for bitrate, etc.)
ffmpeg -i video.mp4 -i audio.wav -map 1.1 -map 2.1 output.mp4
I am not going to go into details, since ffmpeg is a pain (changes in incompatible versions between versions and depending on how they were compiled), and find the speed / compression / resolution parameter, which is good for you are a trial error.
Phil lello
source share