Win One Button DVD/BluRay Ripping using a Launcher from within XBMC
#12
cank Wrote:I am just learning xbmc and found your add-on. I can't seem to get it to work. when I click to run AutoRipDVD it opens both my DVD and my Blu-Ray drive even if there is media in them.
Do I need to launch AutoRipDVD in StandAlone(normal PC executable) or File Launcher (e.g. game emulator) and do I need to change any of the settings other than in the .bat file?
Let me know if a debug file is needed or if I am just dumb and missing something simple.
thanks

You need to set up Advanced Launcher to launch as a pc executable the file "LaunchAutoRipDVD.vbs"

It should only eject the drive if there is no media (or media that is not in DVD or Blu-Ray format) in the drive. It will also only default to the first dvd/blu-ray drive letter that has a disc in it and that drive letter needs to be between d and z. So if you have a drive f: and a drive h:, and media in both it will use f: If you have your drives set to a, b or c for some reason try changing the line in the .bat file where it says

Code:
For /f %%# In ('Mountvol^|Findstr [d-z]:\\') Do (
        Fsutil fsinfo drivetype %%#|Find "CD-ROM">Nul&&(Set "CDROM=%%~d#"))
If Not Defined CDROM call :NoDrive

to

Code:
For /f %%# In ('Mountvol^|Findstr [a-z]:\\') Do (
        Fsutil fsinfo drivetype %%#|Find "CD-ROM">Nul&&(Set "CDROM=%%~d#"))
If Not Defined CDROM call :NoDrive

If that doesn't work, try deleting the above completely from the .bat file (make a copy backup first), and find the next section that reads:


Code:
for /f "tokens=6" %%t in ('vol %CDROM%') do @set volid=%%t
echo: %volid%

and change where it says 'vol %CDROM%' to read your drive letter instead. ie. if you know your DVD drive letter is say k: then change it to 'vol K:'

If you have two drives and want to use this script for both, I would install two copies in two different directories and manually change the .bat files to point to each drive and then in Advance Launcher just call on AutoRipDVD and the other AutoRipBluRay or something.

Otherwise the script will just either only use the hardcoded drive letter you changed %CDROM% to, or using the scan method it will find the first drive with a disc in it and use that.

Hopefully this is clear, but if you have any other questions please just ask.
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
Logout Mark Read Team Forum Stats Members Help
One Button DVD/BluRay Ripping using a Launcher from within XBMC9