Update of /cvsroot/quickrip/ng
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5781
Modified Files:
base.py
Log Message:
Added disc label to title names to make them more descriptive
Index: base.py
===================================================================
RCS file: /cvsroot/quickrip/ng/base.py,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** base.py 1 Mar 2004 17:00:40 -0000 1.1.1.1
--- base.py 1 Mar 2004 23:17:22 -0000 1.2
***************
*** 157,161 ****
title['rip'] = 'no'
title['id'] = t['trackno']
! title['name'] = str(t['trackno'])
title['size'] = 680
title['vbr'] = min(2000, self.calcRate(int(t['length']), 96, 680))
--- 157,161 ----
title['rip'] = 'no'
title['id'] = t['trackno']
! title['name'] = ''.join([self.raw_dvd.label, '-', str(t['trackno'])])
title['size'] = 680
title['vbr'] = min(2000, self.calcRate(int(t['length']), 96, 680))
|