From: <jh...@us...> - 2003-06-25 12:51:42
|
Update of /cvsroot/quickrip/quickrip In directory sc8-pr-cvs1:/tmp/cvs-serv23525 Modified Files: dvd.py Log Message: changed calcrate adjustment to 0.98, which falls closer to the typical rates given by other bitrate calculators. Our calcs are still on the conservative side, though (though not by as much). Index: dvd.py =================================================================== RCS file: /cvsroot/quickrip/quickrip/dvd.py,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** dvd.py 25 Jun 2003 04:14:25 -0000 1.18 --- dvd.py 25 Jun 2003 12:51:37 -0000 1.19 *************** *** 126,130 **** self.audiobr = int(audiobr) self.rate = ((((self.filesize*1024*8)/1000)*1024)-(self.audiobr*self.length))/(self.length); ! self.rate = self.rate * 0.96 # Correction based on addition of credits and usual error return self.rate except: --- 126,130 ---- self.audiobr = int(audiobr) self.rate = ((((self.filesize*1024*8)/1000)*1024)-(self.audiobr*self.length))/(self.length); ! self.rate = self.rate * 0.98 # Correction based on addition of credits and usual error return self.rate except: |