[Mplayer-cvslog] CVS: main/TOOLS sws-test,NONE,1.1
Michael Niedermayer
michael at mplayerhq.hu
Tue Jul 9 23:53:32 CEST 2002
- Previous message: [Mplayer-cvslog] CVS: main/TOOLS cpuinfo.c,1.1,1.2
- Next message: [Mplayer-cvslog] CVS: main/libmpdvdkit input_iovec.h,NONE,1.1 bswap.h,1.2,1.3 common.h,1.3,1.4 css.c,1.4,1.5 dvd_reader.c,1.6,1.7 ioctl.c,1.3,1.4 ioctl.h,1.3,1.4 libdvdcss.c,1.6,1.7
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/mplayer/main/TOOLS
In directory mail:/var/tmp.root/cvs-serv31055
Added Files:
sws-test
Log Message:
very simple script to generate png images from an video with all -sws methods
--- NEW FILE ---
#!/bin/sh
if [ $# -lt 3 ] ; then
echo "sws-test <video-file> <start-pos> <res>"
echo "example: sws-test abc.avi 10 160:120"
exit 1
fi
for i in `seq 0 10` ; do
mplayer -vo png $1 -ss $2 -frames 3 -sws $i -vop scale=$3
rm 00000001.png
mv 00000002.png sws-`basename $1`-$2-$3-$i.png
done
#gauss with lowwer variance
mplayer -vo png $1 -ss $2 -frames 3 -sws 7 -vop scale=$3:0:50
rm 00000001.png
mv 00000002.png sws-`basename $1`-$2-$3-7-50.png
- Previous message: [Mplayer-cvslog] CVS: main/TOOLS cpuinfo.c,1.1,1.2
- Next message: [Mplayer-cvslog] CVS: main/libmpdvdkit input_iovec.h,NONE,1.1 bswap.h,1.2,1.3 common.h,1.3,1.4 css.c,1.4,1.5 dvd_reader.c,1.6,1.7 ioctl.c,1.3,1.4 ioctl.h,1.3,1.4 libdvdcss.c,1.6,1.7
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the MPlayer-cvslog
mailing list