playercorefactory des not execute
#16
Good Morning Forum-Users,

i need your Help again :-)

TMT5.3 does not work. The sound is again asynchronously. :-( Now, I want to use PowerDVD 12. If I replace the path with PDVD the player doesn't starts?!

PlayerCoreFacotry.xml

Code:
<playercorefactory>
<players>

<!-- 3D MKV Playback -->

<player name="3DSBS" type="ExternalPlayer" audio="true" video="true">
<filename>C:\Batch-Files\SBS3D.cmd</filename>
<args>"{1}"</args>
<hidexbmc>true</hidexbmc>
<hidecursor>true</hidecursor>
</player>

<!-- Iso Playback -->

<player name="TMTISO" type="ExternalPlayer" audio="true" video="true">
<filename>C:\Batch-Files\PlayISO.cmd</filename>
<args>"{1}" /close</args>
<hidexbmc>true</hidexbmc>
<hideconsole>false</hideconsole>
<warpcursor>none</warpcursor>
</player>

<!-- BD Disk Playback -->

<player name="TMTMCEPlayer" type="ExternalPlayer" audio="false" video="true">
<filename>C:\Batch-Files\BD.cmd</filename>
<args>"{1}" /fullscreen</args>
<hidexbmc>true</hidexbmc>
</player>
</players>

<!-- REGELN -->

<rules action="prepend">
<rule filename=".*sbs3d.mkv*" protocols="*sbs3d.mkv*" player="3DSBS"/>
<rule filename=".*iso" player="TMTISO"/>
<rule name="Blu-Ray" protocols="bd" player="TMTMCEPlayer"/>
<rule filetypes="bdmv" filename=".*bdmv" player="TMTMCEPlayer"/>
<rule filetypes="bdmv" filename=".*m2ts" player="TMTMCEPlyer"/>
</rules>
</playercorefactory>

3D SBS-Films

Code:
set pth=%1
set pth=%pth:sbs3d\sbs3d.mkv=%
"C:\Program Files (x86)\CyberLink\PowerDVD12\PowerDVD12.exe" %pth% exit

PlayIso Films

Code:
"C:\Program Files (x86)\Elaborate Bytes\VirtualCloneDrive\VCDMount.exe" /d=0 %1
c:\wait.exe 3000
"C:\Program Files (x86)\CyberLink\PowerDVD12\PowerDVD12.exe" G:

Play BD

Code:
"C:\Program Files (x86)\CyberLink\PowerDVD12\PowerDVD12.exe" /fullsreen f:

Where is the Error?! I can't understand why PDVD not work...

regards
Raik



Reply
#17
You can try the codes below-

Playercorefactory.xml:

<playercorefactory>
<players>
<player name="ISO_Player" type="ExternalPlayer" audio="false" video="true">
<filename>C:\Batch-Files\PlayISO.bat</filename>
<args>"{1}" /fullscreen</args>
<hidexbmc>false</hidexbmc>
<hideconsole>true</hideconsole>
<warpcursor>none</warpcursor>
</player>
<player name="Disc_Player" type="ExternalPlayer" audio="false" video="true">
<filename>C:\Batch-Files\PlayDisc.bat</filename>
<args>"{1}" /fullscreen</args>
<hidexbmc>false</hidexbmc>
<hideconsole>true</hideconsole>
<warpcursor>none</warpcursor>
</player>
<player name="Universal_Player" type="ExternalPlayer" audio="false" video="true">
<filename>C:\Program Files (x86)\CyberLink\PowerDVD12\PowerDVD12.exe</filename>
<args>"{1}" /fullscreen</args>
<hidexbmc>false</hidexbmc>
<hideconsole>true</hideconsole>
<warpcursor>none</warpcursor>
</player>
</players>
<rules action="prepend">
<!-- Bluray ISO -->
<rule filetypes="iso" player="ISO_Player"/>
<!-- Bluray MKV -->
<rule filetypes="mkv" filename=".*SBS3D.*" player="Universal_Player"/>

<!-- Bluray Disc -->
<rule protocols="bd|dvd" player="Disc_Player"/>
</rules>
</playercorefactory>

PlayISO.bat:

@echo off
"C:\Program Files (x86)\Elaborate Bytes\VirtualCloneDrive\VCDMount.exe" /d=0 %1
ping -n 2 -w 1000 127.0.0.1 > nul
"C:\Program Files (x86)\CyberLink\PowerDVD12\PowerDVD12.exe" G:\
"C:\Program Files (x86)\Elaborate Bytes\VirtualCloneDrive\VCDMount.exe" /d=0 /u
exit

PlayDisc.bat:

@echo off
"C:\Program Files (x86)\CyberLink\PowerDVD12\PowerDVD12.exe" F:
>Alienware X51- do it all HTPC
>Simplify XBMC configurations
>HOW-TO Bitstreaming using XBMC
I refused to watch movie without bitstreaming HD audio!
Reply
#18
Hi BluRay,

thanks for your answer. I copied your code in my files but it does not work :-( .

The PowerDVD12 Player would not work/ starts. Its very tricky with PowerDVD i mean. I experimented with code from these thread. Now the player start but would not play the file automatically.. ?!

Its very frustrating the TMT5 works fine but the audio is asynchron and PowerDVD12 will not work with *.cmd files, work only standalone. I use Win 7 x64 with XBMC Eden 11.0, perhaps important...
playercorefactory


Quote:<playercorefactory>
<players>

<!-- 3D MKV Playback -->

<player name="3DSBS" type="ExternalPlayer" audio="true" video="true">
<filename>C:\Batch-Files\SBS3D.cmd</filename>
<args>"{1}" /fullscreen</args>
<hidexbmc>false</hidexbmc>
</player>

<!-- Iso Playback -->

<player name="TMTISO" type="ExternalPlayer" audio="true" video="true">
<filename>C:\Batch-Files\PlayISO.cmd</filename>
<args>"{1}" /fullscreen</args>
<hidexbmc>true</hidexbmc>
<hideconsole>false</hideconsole>
<warpcursor>none</warpcursor>
</player>

<!-- BD Disk Playback -->

<player name="TMTMCEPlayer" type="ExternalPlayer" audio="false" video="true">
<filename>C:\Batch-Files\BD.cmd</filename>
<args>"{1}" /fullscreen</args>
<hidexbmc>true</hidexbmc>
</player>
</players>

<!-- REGELN -->

<rules action="prepend">
<rule filename=".*sbs3d.mkv*" protocols="*sbs3d.mkv*" player="3DSBS"/>
<rule filename=".*iso" player="TMTISO"/>
<rule name="Blu-Ray" protocols="bd" player="TMTMCEPlayer"/>
<rule filetypes="bdmv" filename=".*bdmv" player="TMTMCEPlayer"/>
<rule filetypes="bdmv" filename=".*m2ts" player="TMTMCEPlyer"/>
</rules>
</playercorefactory>

PlayIso.cmd

Quote:"C:\Program Files (x86)\Elaborate Bytes\VirtualCloneDrive\VCDMount.exe" /d=0 %1
C:\wait.exe 3000
"C:\Program Files (x86)\CyberLink\PowerDVD12\PDVDLaunchPolicy.exe" G:


SBS3D.cmd

Quote:set pth=%1
set pth=%pthConfusedbs3d\sbs3d.mkv=%
"C:\Program Files (x86)\CyberLink\PowerDVD12\PDVDLaunchPolicy.exe" %pth% exit
Reply
#19
@mirage,
I couldn't get BDMV to work with PDVD12, but ISO and some other files worked fine with PDVD12--I used codes in post #659.....
>Alienware X51- do it all HTPC
>Simplify XBMC configurations
>HOW-TO Bitstreaming using XBMC
I refused to watch movie without bitstreaming HD audio!
Reply
#20
(2012-07-29, 17:14)bluray Wrote: @mirage,
I couldn't get BDMV to work with PDVD12, but ISO and some other files worked fine with PDVD12--I used codes in post #659.....


Hi,

thanks for your answer. I reply in linked thread.
Reply

Logout Mark Read Team Forum Stats Members Help
playercorefactory des not execute1