Search code examples
ffmpegyoutubejpegmp4converters

jpeg "frames" to MP4 conversion, quick fix


How do I convert a series of jpeg images ("Test 03_0000.jpeg" to "Test 03_3000.jpeg") into an MP4 (30fps)?

I have tried Lightworks and Animotica. It did not work.

I have downloaded ffmpeg now, but tutorial tl/dr.

Help!


Solution

  • ffmpeg -framerate 30 -i "Test 03_%04d.jpeg" -vf format=yuv420p output.mp4
    

    See the image demuxer documentation and FFmpeg Wiki: H.264 for more information.