[Haifux] jpeg to mpeg or avi

2004-02-24 Thread Gustavo Halperin
Hello I need any program for make a 'mpeg' or 'avi' movie from 'jpeg' pictures. Do you people know some program for do it? Thanks Gustavo -- Regards. gustavo halperin _ Laboratory for Computer Graphics and CAD Faculty of Mechanical Engineering Tech

Re: [Haifux] jpeg to mpeg or avi

2004-02-24 Thread Raindel Shachar
Hi, mencoder (part of the MPlayer project) knows how to do that. You may wish to have a look in the mencoder relevant documentation ( http://www.mplayerhq.hu/MPlayer/DOCS/HTML/en/menc-feat-enc-images.html , which describes exactly what you try to do), and tell us your experience. Good luc

Re: [Haifux] jpeg to mpeg or avi

2004-02-24 Thread Gustavo Halperin
Raindel Shachar wrote: Hi, mencoder (part of the MPlayer project) knows how to do that. You may wish to have a look in the mencoder relevant documentation ( http://www.mplayerhq.hu/MPlayer/DOCS/HTML/en/menc-feat-enc-images.html , which describes exactly what you try to do), and tell us your

Re: [Haifux] jpeg to mpeg or avi

2004-02-24 Thread Raindel Shachar
The command line params has been changed, and probably the docs was not updated since. You will wish to do conversions like the following: Old command line: mencoder -mf on:w=800:h=600:fps=25 -ovc copy -o output.avi \*.jpg New command line: mencoder -mf w=800:h=600:fps=25 -ovc copy -o output.avi

Re: [Haifux] jpeg to mpeg or avi

2004-02-24 Thread Eli Billauer
Hello, After downloading "transcode", I've used the following command for heavy video generation: transcode -i bmp-files-list -x imlist,null -g `identify imgs/image.bmp | perl -ne 'print /\s(\d+x\d+)\s/'` \ -y raw,null -f 10 -o trial.avi This takes a list of image files, given in "bmp-

Re: [Haifux] jpeg to mpeg or avi

2004-02-24 Thread Gustavo Halperin
Raindel Shachar wrote: The command line params has been changed, and probably the docs was not updated since. You will wish to do conversions like the following: Old command line: mencoder -mf on:w=800:h=600:fps=25 -ovc copy -o output.avi \*.jpg New command line: mencoder -mf w=800:h=600:fps=25