From: <te...@us...> - 2003-06-13 20:19:53
|
Update of /cvsroot/quickrip/quickrip In directory sc8-pr-cvs1:/tmp/cvs-serv16736 Modified Files: quickriprc Log Message: Updated for new settings, with helpful comments should people wish to edit the text files directly (this is a copy that is put into /usr/share/quickrip and so should remain untouched for reference) Index: quickriprc =================================================================== RCS file: /cvsroot/quickrip/quickrip/quickriprc,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** quickriprc 29 Apr 2003 11:13:34 -0000 1.1.1.1 --- quickriprc 13 Jun 2003 20:19:50 -0000 1.2 *************** *** 1,10 **** [paths] ! outputdir = /home/tom/tmp tcprobe = /usr/bin/tcprobe mplayer = /usr/bin/mplayer mencoder = /usr/bin/mencoder [mencoder] aspectratio = 0 deinterlacing = 0 --- 1,43 ---- + """ + quickriprc - Example config file with comments + + copyright: (C) 2003, Tom Chance + license: GNU General Public License (GPL) (see LICENSE file) + web: http://quickrip.sf.net + email: tom...@gm... + """ + [paths] ! # Default output directory for created movie files ! outputdir = /home/tom ! ! # Paths to binaries tcprobe = /usr/bin/tcprobe mplayer = /usr/bin/mplayer mencoder = /usr/bin/mencoder + [mencoder] + # Aspect ratio for DVD + # (0 = default, 4:3 + # 1 = 4:3 + # 2 = 16:19 + # 3 = 2.35:1 aspectratio = 0 + + # De-interlacing options + # (0 = none + # 1 = -vop dint + # 2 = -vop il + # 3 = -vop lavcdeint + # 4 = -vop pp=lb deinterlacing = 0 + # Number of mencoder passes + # Can be 1, 2 or 3 + passes = 3 + + #PDA mode (changes output resolution to suitable for PDAs) + # 0 = off + # 1 = on + pdamode = 0 \ No newline at end of file |