G > #! /bin/sh > > OUTFILE=$1 > echo "Outputting to $OUTFILE" > shift > INFILE=$1 > echo "Coming from $INFILE" > shift > > while [ -n "$1" ] ; do > COMMANDLINE="$COMMANDLINE $1"; > shift > done > > echo "Extra options $COMMANDLINE" > > mencoder "$INFILE" $COMMANDLINE -ovc lavc \ > -lavcopts vcodec=mpeg4:vbitrate=400 \ > -vf scale=320:240,rotate=1 \ > -oac copy \ > -ofps 23.976 \ > -o "$OUTFILE" >
i used this script to convert a video-file and played it with mplayer frm iwxmmt and the performance is absolutely smooth cheers _______________________________________________ Angstrom-distro-users mailing list [email protected] http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/angstrom-distro-users
