Home » Questions » Computers [ Ask a new question ]

How to create a movie from several .bmp-files under Linux?

How to create a movie from several .bmp-files under Linux?

I have generated 90 .bmp files and now would like to generate a 3 second video with 30 frames per second from this. Preferrably in the .mov format, but any common format would be ok. Is there any (free) program available that can do this?

Asked by: Guest | Views: 198
Total answers/comments: 1
bert [Entry]

"ffmpeg can create a .mov for you.

See this section of the ffmpeg FAQ.

You may like to try something such as:

ffmpeg -f image2 -r 30 -i img%d.bmp ./out.mov"