[Mplayer-cvslog] CVS: main/TOOLS/benchmark-gab plot,NONE,1.1
Winner of tha face compo
gabucino at mplayerhq.hu
Sat Aug 31 10:18:59 CEST 2002
- Previous message: [Mplayer-cvslog] CVS: main/TOOLS/benchmark-gab benchmark,1.1,1.2 start,1.1,1.2 variables,1.1,1.2
- Next message: [Mplayer-cvslog] CVS: main help_mp-bg.h,1.1,1.2 help_mp-cz.h,1.18,1.19 help_mp-de.h,1.42,1.43 help_mp-dk.h,1.9,1.10 help_mp-en.h,1.49,1.50 help_mp-hu.h,1.45,1.46 help_mp-nl.h,1.13,1.14 help_mp-pl.h,1.39,1.40 help_mp-zh.h,1.1,1.2 mplayer.h,1.15,1.16
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/mplayer/main/TOOLS/benchmark-gab
In directory mail:/var/tmp.root/cvs-serv21405
Added Files:
plot
Log Message:
very simple script for viewing results with gnuplot, converted to JPEG
(hey, I don't know gnuplot at all, but I found this very useful)
--- NEW FILE ---
#!/bin/sh
#
# needs ImageMagick and gnuplot installed
# ImageMagick not needed in you don't wanna convert to JPG
#
. ./variables
rm -f *.plot
rm -f log-*.pbm
rm -f log-*.jpg
rm -f plot.file
for i in log-*; do
grep Total: $i | awk '{print $6}' | sed s/s// | nl | head -n 75 > $i.plot
done
for i in log-*.plot; do
echo "set key left box" > plot.file
echo "set samples 50" >> plot.file
echo "set term pbm" >> plot.file
echo "plot [0:75] '$i'" >> plot.file
#echo "pause -1 \"Hit return to continue\"" >> plot.file
#echo "" >> plot.file
gnuplot plot.file > $i.pbm
convert $i.pbm $i.jpg
rm -f $i.pbm
done
#gnuplot plot.file > out.pbm
rm -f *.plot
rm -f plot.file
- Previous message: [Mplayer-cvslog] CVS: main/TOOLS/benchmark-gab benchmark,1.1,1.2 start,1.1,1.2 variables,1.1,1.2
- Next message: [Mplayer-cvslog] CVS: main help_mp-bg.h,1.1,1.2 help_mp-cz.h,1.18,1.19 help_mp-de.h,1.42,1.43 help_mp-dk.h,1.9,1.10 help_mp-en.h,1.49,1.50 help_mp-hu.h,1.45,1.46 help_mp-nl.h,1.13,1.14 help_mp-pl.h,1.39,1.40 help_mp-zh.h,1.1,1.2 mplayer.h,1.15,1.16
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the MPlayer-cvslog
mailing list