Help setting up powerdvd 11 with xbmc
#1
I have been reading these forums and working on this issue for the past week, but for the life of me I can't get things to work properly.

I really only have BMV files (bluray), ISO (mostly 3D and some bluray) and MKV files (bluray movies).

Ideally I would like to click on a movie in my xbmc library and have it open up to a powerdvd main screen. I say this because I'm sure this is the only way to select 3d to play 3d movies. That way I can select play on my blurays or select 3d option in my powerdvd 11 screen to watch movies in 3D.

Here is my playercorefactory file:


<playercorefactory>
<players>

<player name="ISO_BDMV_Player" type="ExternalPlayer" audio="false" video="true">
<filename>C:\Users\mikedb\AppData\Roaming\XBMC\userdata\PlayISO.bat</filename>
<args>"{1}" /fullscreen</args>
<hidexbmc>true</hidexbmc>
<hideconsole>false</hideconsole>
<warpcursor>none</warpcursor>
</player>

</players>

<rules action="prepend">
<!-- Bluray ISO/BDMV -->
<rule filetypes="iso|bdmv|mpls" player="ISO_BDMV_Player"/>

</rules>
</playercorefactory>

and here is my playISO
Set file=%1
Set dummy=%file:iso=%
IF NOT %dummy% == %file% (GOTO playiso) ELSE (goto next)

:next
Set file=%1
Set dummy=%file:mpls=%
IF NOT %dummy% == %file% (GOTO plaympls) ELSE (goto playbdmv)

:playiso
"C:\Program Files (x86)\Elaborate Bytes\VirtualCloneDrive\VCDMount.exe" /d=0 %1

:unmounted
IF EXIST E:\BDMV\. GOTO mounted
GOTO unmounted

:mounted

"C:\Program Files (x86)\CyberLink\PowerDVD11\PDVDLaunchPolicy.exe" E:
GOTO end

:next

"C:\Program Files (x86)\CyberLink\PowerDVD11\PDVDLaunchPolicy.exe" %1 exit
GOTO end

:plaympls
set pth=%1
set pth=%pth:~1,-25%

"C:\Program Files (x86)\CyberLink\PowerDVD11\PDVDLaunchPolicy.exe" "%pth%" exit
GOTO end

:playbdmv
set pth=%1
set pth=%pth:BDMV\MovieObject.bdmv=%
set pth=%pth:BDMV\index.bdmv=%

"C:\Program Files (x86)\CyberLink\PowerDVD11\PDVDLaunchPolicy.exe" %pth% exit
GOTO end

:end
exit

Under the above setup, I can play 3d iso and iso files fine. I get the screen I want with the ability to select 3d. However If I try to open a file in xbmc that is not an iso, as soon as I get to the powerdvd screen.....nothing happens. I click play and it states that there is "No disc in drive G".
Reply
#2
Any help?
Reply

Logout Mark Read Team Forum Stats Members Help
Help setting up powerdvd 11 with xbmc0