Mercurial > mplayer.hg
view TOOLS/sws-test @ 7962:1d2d47aa8717
some card/mobo combos can't handle buffers larger than 128kB, we change the default buffer to 128kB, add warnings if the buffer becomes full, add a commandline option to enlarge the buffer and give suggestions to users to lessen the buffer size requirements (lower quality/resolution). 128kB should, however, be enough for everybody :-). Bug reported by Brain Edmonds, cause explained (to allow me to fix the driver) by Ronald Bultje (mjpegtools developer)
author | rik |
---|---|
date | Tue, 29 Oct 2002 19:06:26 +0000 |
parents | b5cd3ce87bfb |
children | 835822ce4bb1 |
line wrap: on
line source
#!/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