view TOOLS/benchmark/test.sh @ 19831:a9d072fde78f

r19829: Improve TrueType font installation section r19828: Move subtitles and OSD section from the installation to the usage chapter r19827: Slightly restructure font installation section r19825: Truetype fonts now preferred over bitmap fonts, rewrite the font installation r19823: Remove mpsub section, the format is documented in DOCS/tech r19820: Marillat packages binary codecs, not bitmap fonts
author voroshil
date Thu, 14 Sep 2006 09:41:06 +0000
parents 351aaf1eff87
children
line wrap: on
line source


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 ""