[MPlayer-users] Why is it "Skipping frame!"s?

Amadeus 5oyzyee02 at sneakemail.com
Sat Feb 7 04:51:05 CET 2004


> > for i in 1 2; do
> >         nice -19 mencoder -aid 128 -oac pcm -ovc lavc \
> > 	-lavcopts vcodec=mpeg4:mbd=2:trell:vbitrate=509:vpass=$i \
> > 	-sws 2 -vf crop=672:316:24:130,scale=544:240 \
> > 	-dvd-device some_image.bin dvd://1
> > done

Pretty neat loop trick there=)

You can save a lot of time by dumping the first pass to /dev/null.
This way you won't have to write the pass1 encoding to the harddisc, which is
a slow process.

Not tested, but this just might work:


for i in 1 2; do
for j in /dev/null filename.avi; do
         nice -19 mencoder -aid 128 -oac pcm -ovc lavc \
     -lavcopts vcodec=mpeg4:mbd=2:trell:vbitrate=509:vpass=$i \
     -sws 2 -vf crop=672:316:24:130,scale=544:240 \
     -dvd-device some_image.bin dvd://1
     -o $j
 done
done


Amadeus




More information about the MPlayer-users mailing list