Win One Button DVD/BluRay Ripping using a Launcher from within XBMC
@wints

Code:
Set QUALITY=----preset=./HandBrakeCLI -i DVD -o ~/Movies/movie.mp4  -e x264 -q 20.0 -a 1 -E faac -B 160 -6 dpl2 -R Auto -D 0.0 -f mp4 --strict-anamorphic -m -x ref=2:bframes=2:subme=6:mixed-refs=0:weightb=0:8x8dct=0:trellis=0

--------------------------------------------------------------------------------

This line is butchered a bit. Couple things. You are doing the entire command line in the variable "QUALITY" which gets duplicated with other variables. If you look further down in the AutoRipDVD.bat file you will see this line (which is actually the handbrake command line call)

Code:
HandBrakeCLI -v0 -i "%RipDir%%volid%" -o "%RipDir%%volid%\%volid% 720p.mkv" %FORMAT% %QUALITY% %SIZE%

So, you can see you are duplicating the -i, the -o, the format, all in the Quality portion. The handbrake command you are actually passing to windows looks like this

Code:
HandBrakeCLI -v0 -i "E:\Movies\Volume_Name_of_Movie" -o "E:\Movies\Volume_Name_of_Movie 720p.mkv" --optimize --format mkv ----preset=./HandBrakeCLI -i DVD -o ~/Movies/movie.mp4  -e x264 -q 20.0 -a 1 -E faac -B 160 -6 dpl2 -R Auto -D 0.0 -f mp4 --strict-anamorphic -m -x ref=2:bframes=2:subme=6:mixed-refs=0:weightb=0:8x8dct=0:trellis=0 --width 1280 --height 720

Which you can tell from the handbrake options link I posted earlier is a bit of a mess. You didn't even include the %X264% variable, so all that is gone.

Also you removed the "::" from the dash separator line so it is looking like

Code:
--------------------------------------------------------------------------------

Which means it's trying to now execute that line that windows can't recognize.

So you have a lot of errors in your .bat file. I recommend deleting and re-downloading a new AutoRipDVD.bat file and on this line

Code:
Set QUALITY=--ab 64 --mixdown mono --quality 23 -e x264 -x %X264%

Only change the options after the dashes. DO NOT remove %X264%. Instead change the options on the X264 line. You still have it in your .bat now but it's not even being used.

Code:
::------------------------------------
Set X264=b-adapt=2:rc-lookahead=50:me=umh:bframes=5:ref=6:direct=auto:trellis=2:subq=10:psy-rd=1.0,0.10:analyse=all
::------------------------------------

Hopefully this makes sense. You are probably getting all kinds of hidden errors and it's freaking out and giving the no disc warning.
Reply


Messages In This Thread
[No subject] - by Spinalcrack - 2011-07-10, 23:22
New forum member is here - by Geatteevold - 2012-08-23, 03:11
[No subject] - by Johnnovision - 2011-07-12, 22:39
[No subject] - by patm95 - 2011-07-13, 05:03
[No subject] - by Spinalcrack - 2011-07-13, 05:40
[No subject] - by realjobe - 2011-07-13, 13:30
[No subject] - by Spinalcrack - 2011-07-13, 14:20
[No subject] - by publicENEMY - 2011-12-09, 04:40
RE: - by apr0mpt - 2013-01-16, 23:53
[No subject] - by Valdysses - 2012-02-25, 19:17
[No subject] - by Spinalcrack - 2012-02-26, 00:30
[No subject] - by cank - 2012-02-26, 21:32
[No subject] - by Spinalcrack - 2012-02-26, 23:45
[No subject] - by cank - 2012-02-27, 03:31
[No subject] - by Spinalcrack - 2012-02-27, 03:52
any news? - by TheOutlawEzE - 2012-02-28, 07:44
[No subject] - by Spinalcrack - 2012-02-28, 15:34
Updated version - by Spinalcrack - 2012-02-29, 06:46
[No subject] - by TheOutlawEzE - 2012-03-01, 06:24
[No subject] - by Spinalcrack - 2012-03-01, 06:38
*** Major Bug Fix *** - by Spinalcrack - 2012-08-06, 21:42
RE: One Button DVD/BluRay Ripping using a Launcher from within XBMC - by Spinalcrack - 2012-08-10, 19:34
Logout Mark Read Team Forum Stats Members Help
One Button DVD/BluRay Ripping using a Launcher from within XBMC9