0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00
mpv/TOOLS/benchmark/test.sh
arpi 946d610032 scripts
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2264 b3059339-0415-0410-9bf9-f77b7e298cf2
2001-10-18 21:06:04 +00:00

17 lines
527 B
Bash
Executable File

echo 'File: ' $1
mplayer -frames 0 -vo null $1 | grep VIDEO
echo -n 'DShow DLL : '
./test1.sh mplayer $1 -vc divxds -vo null |cut -c 15-23 |xargs echo
echo -n 'VfW DLL : '
./test1.sh mplayer $1 -vc divx -vo null |cut -c 15-23 |xargs echo
echo -n 'DivX4-YV12 : '
./test1.sh mplayer $1 -vc odivx -vo null |cut -c 15-23 |xargs echo
echo -n 'DivX4-YUY2 : '
./test1.sh mplayer $1 -vc divx4 -vo null |cut -c 15-23 |xargs echo
echo -n 'FFmpeg : '
./test1.sh mplayer $1 -vc ffdivx -vo null |cut -c 15-23 |xargs echo
echo ""