Update of /cvsroot/quickrip/quickrip
In directory sc8-pr-cvs1:/tmp/cvs-serv16628
Modified Files:
dvd.py
Log Message:
Minor changes for resolutions etc. to fix up for 0.7
Index: dvd.py
===================================================================
RCS file: /cvsroot/quickrip/quickrip/dvd.py,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** dvd.py 10 Jun 2003 23:37:02 -0000 1.14
--- dvd.py 13 Jun 2003 20:18:35 -0000 1.15
***************
*** 138,142 ****
# Find number of tracks, audio languages and subtitle languages with MPlayer
self.numtitles = 0
- #cmd_mplayer = str(self.config['mplayer']) + ' -v dvd:// -identify -quiet -nocache 2>/dev/null'
cmd_mplayer = "".join([str(self.config['mplayer']), ' -v dvd:// -identify -quiet -nocache 2>/dev/null'])
text = os.popen(cmd_mplayer).readlines()
--- 138,141 ----
***************
*** 203,207 ****
# Clean up title
- #if i < 10: title_label = "0" + str(i)
if i < 10: title_label = "".join(["0", str(i)])
else: title_label = str(i)
--- 202,205 ----
***************
*** 247,254 ****
# Check PDA mode (universal to all ripping methods)
! if self.config['pdamode'] == 0:
resolution = "720"
else:
! resolution = "160" #*****************
# Run through selected tracks ripping each one
--- 245,252 ----
# Check PDA mode (universal to all ripping methods)
! if int(self.config['pdamode']) == 0:
resolution = "720"
else:
! resolution = "320"
# Run through selected tracks ripping each one
***************
*** 299,303 ****
all_pass.insert(4, self.sLanguage)
! # Uncomment to test command
# string = ""
# for bit in all_pass:
--- 297,301 ----
all_pass.insert(4, self.sLanguage)
! # # Uncomment to test command
# string = ""
# for bit in all_pass:
|