You are not logged in.
Pages: 1
Heyho,
is there an app with which i can convert a bunch of .bmp files to a video file, preferred .avi?
Offline
Mencoder is at least able to convert a sequence of jpeg or png files to a video stream. You could use convert (from the imagemagick package) to convert the bitmaps to jpegs (or pngs):
find /path/to/imagefiles/ -iname "*.bmp" -exec convert '{}' '{}.jpg' ;
Using mencoder on these files would look like this:
mencoder "mf://path/to/imagefiles/*.jpg" -mf fps=30 -ovc lavc -lavcopts vcodec=mpeg4:vbitrate=4000:vhq:mpeg_quant:v4mv:mbd=2:trell -o /path/to/outfile.avi
Offline
Avidemux may do it.
If your bmp's are sequential, try:
avidemux2 *.bmp
Offline
Hey thx you both! smoon you cli skills are awesome
and avidemux is really a nice app. never seen it before :shock: now video editing can begin.
cheers,
detto
Offline
Pages: 1