summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2009-06-30 13:45:13 -0400
committerJason A. Donenfeld <Jason@zx2c4.com>2009-06-30 13:45:13 -0400
commit19274c829074f01aab975fe5f5f0fffe4a336ed0 (patch)
tree51c747edad2c017c554238c4339e688dc7caf03f
parentCheck wput's return code and upload during the day as well. (diff)
downloadOldSchoolRipper-19274c829074f01aab975fe5f5f0fffe4a336ed0.tar.xz
OldSchoolRipper-19274c829074f01aab975fe5f5f0fffe4a336ed0.zip
Mix stereo not dpl2.
-rwxr-xr-xrip.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rip.py b/rip.py
index 010d6ae..209652f 100755
--- a/rip.py
+++ b/rip.py
@@ -44,7 +44,7 @@ class Encode(threading.Thread):
os.system("cat ./toencode/" + listing[i] + "/VIDEO_TS/*.VOB > ./toencode/" + listing[i] + "/VIDEO_TS/" + listing[i] + ".vob")
if os.path.exists("./toencode/" + listing[i] + "/VIDEO_TS/" + listing[i] + ".vob") and os.path.getsize("./toencode/" + listing[i] + "/VIDEO_TS/" + listing[i] + ".vob") > 100:
os.system("rm ./toencode/" + listing[i] + "/VIDEO_TS/*.VOB")
- os.system("/home/anyclip/HandBrakeCLI -i ./toencode/" + listing[i] + "/VIDEO_TS/" + listing[i] + ".vob -o " + listing[i] + ".mp4 -e x264 -b 500 -a 1 -E faac -B 96 -R Auto -6 dpl2 --optimize --decomb --deblock --denoise=\"weak\" -f mp4 -P -2 -T -x ref=3:mixed-refs:bframes=6:weightb:direct=auto:b-pyramid:me=umh:subme=9:analyse=all:8x8dct:trellis=1:no-fast-pskip:psy-rd=1,1")
+ os.system("/home/anyclip/HandBrakeCLI -i ./toencode/" + listing[i] + "/VIDEO_TS/" + listing[i] + ".vob -o " + listing[i] + ".mp4 -e x264 -b 500 -a 1 -E faac -B 96 -R Auto -6 stereo --optimize --decomb --deblock --denoise=\"weak\" -f mp4 -P -2 -T -x ref=3:mixed-refs:bframes=6:weightb:direct=auto:b-pyramid:me=umh:subme=9:analyse=all:8x8dct:trellis=1:no-fast-pskip:psy-rd=1,1")
logEvent("Encoding End", listing[i])
try:
os.rename(listing[i] + ".mp4", "./toupload/" + listing[i] + ".mp4")