hi Kas,
What does one use for this, on Linux?
this is the script i used to use to make xvid avis from dumped frames on linux:
#!/bin/bash OPTS='chroma_opt:vhq=2:bvhq=1:quant_type=mpeg:bitrate=1000' MFOPTS='w=720:h=576:fps=25:type=jpg' mencoder mf://*.jpg -mf $MFOPTS -vf scale -ovc xvid -xvidencopts pass=1:$OPTS -audiofile music.mp3 -oac copy -o /dev/null mencoder mf://*.jpg -mf $MFOPTS -vf scale -ovc xvid -xvidencopts pass=2:$OPTS -audiofile music.mp3 -oac copy -o output.avi best, gabor
