• 1
  • 145
  • 146
  • 147(current)
  • 148
  • 149
  • 154
Another External Player Code, but Very Simple to Setup
Hey guys I am looking as to how to get BDMV movies to play. Right now when I try it is launching TotalMedia Theatre 6 and they don't play. So maybe a why to use native XBMC to play them and still use TotalMedia to play my .iso files?

playercorefactory:

<playercorefactory>
<players>
<player name="ISO_BDMV_Player" type="ExternalPlayer" audio="false" video="true">
<filename>C:\Users\rmily_000\AppData\Roaming\XBMC\userdata\PlayISO.bat</filename>
<args>"{1}"</args>
<hidexbmc>false</hidexbmc>
<hideconsole>True</hideconsole>
<warpcursor>none</warpcursor>
</player>
</players>
<rules action="prepend">
<!-- Bluray ISO -->
<!-- Bluray ISO/BDMV -->
<rule filetypes="iso|bdmv|mpls" player="ISO_BDMV_Player"/>

</rules>
</playercorefactory>

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
"C:\Program Files (x86)\ArcSoft\TotalMedia Theatre 6\uMCEPlayer6.exe" E:
"C:\Program Files (x86)\Elaborate Bytes\VirtualCloneDrive\VCDMount.exe" /d=0 /u
GOTO end

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

"C:\Program Files (x86)\ArcSoft\TotalMedia Theatre 6\uMCEPlayer6.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)\ArcSoft\TotalMedia Theatre 6\uMCEPlayer6.exe" %pth% exit
GOTO end

:end
exit
[/code]
Reply
(2014-06-24, 23:12)rmilyard Wrote: Hey guys I am looking as to how to get BDMV movies to play. Right now when I try it is launching TotalMedia Theatre 6 and they don't play. So maybe a why to use native XBMC to play them and still use TotalMedia to play my .iso files?

playercorefactory:

<playercorefactory>
<players>
<player name="ISO_BDMV_Player" type="ExternalPlayer" audio="false" video="true">
<filename>C:\Users\rmily_000\AppData\Roaming\XBMC\userdata\PlayISO.bat</filename>
<args>"{1}"</args>
<hidexbmc>false</hidexbmc>
<hideconsole>True</hideconsole>
<warpcursor>none</warpcursor>
</player>
</players>
<rules action="prepend">
<!-- Bluray ISO -->
<!-- Bluray ISO/BDMV -->
<rule filetypes="iso|bdmv|mpls" player="ISO_BDMV_Player"/>

</rules>
</playercorefactory>

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
"C:\Program Files (x86)\ArcSoft\TotalMedia Theatre 6\uMCEPlayer6.exe" E:
"C:\Program Files (x86)\Elaborate Bytes\VirtualCloneDrive\VCDMount.exe" /d=0 /u
GOTO end

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

"C:\Program Files (x86)\ArcSoft\TotalMedia Theatre 6\uMCEPlayer6.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)\ArcSoft\TotalMedia Theatre 6\uMCEPlayer6.exe" %pth% exit
GOTO end

:end
exit
[/code]

Anyone?
Reply
Hi everyone!

So I got myself a bluray player the other day and then I came to this thread!

What's most important to me is to play my bluray discs (I'm using PowerDVD 14), I haven't yet ripped them or anything, but it would be nice to have that setup also for future use.

If I run PlayDisc.bat I get the desired result, the movie starts in fullscreen. Instead if I run PlayBDMV.bat it just opens PowerDVD and I have to click play myself, which is not what I want. So PlayDisc.bat is the preferred way to launch the disc - but instead it uses PlayBDMV.bat, easy fix I guess...

...but...here comes the weird part...when I rightclick the D: drive in XBMC and choose "Play Disc", not much happens, no difference if I'm using PlayDisc.bat or PlayBDMV.bat in the configuration in playercorefactory.xml, it just says "External Player Active" - "Click OK when playback has ended".

If I then check in Windows Taskmanager, it doesn't even launch PowerDVD, but...again, if use the .bat-files directly from Windows Explorer it starts, and again, by running PlayDisc.bat, I get the result I want, when choosing "Play Disc" in XBMC.

Any one? Greatful for any help!

playercorefactory.xml
Code:
<playercorefactory>
    <players>
        <player name="ISO_Player" type="ExternalPlayer" audio="false" video="false">
            <filename>C:\Users\techmo01\AppData\Roaming\XBMC\userdata\PlayISO.bat</filename>
            <args>"{1}" /fullscreen</args>
            <forceontop>false</forceontop>
            <hidexbmc>false</hidexbmc>
            <hidecursor>false</hidecursor>
        </player>
                <player name="BDMV_Player" type="ExternalPlayer" audio="false" video="true">
            <filename>C:\Users\techmo01\AppData\Roaming\XBMC\userdata\PlayBDMV.bat</filename>
            <args>"{1}" /fullscreen</args>
            <forceontop>true</forceontop>
            <hidexbmc>true</hidexbmc>
            <hidecursor>false</hidecursor>
        </player>
        <player name="Disc_Player" type="ExternalPlayer" audio="false" video="true">
            <filename>C:\Users\techmo01\AppData\Roaming\XBMC\userdata\PlayDisc.bat</filename>
            <args>"{1}" /fullscreen</args>
            <forceontop>false</forceontop>
            <hidexbmc>false</hidexbmc>
            <hidecursor>false</hidecursor>
                </player>
        <player name="Universal_Player" type="ExternalPlayer" audio="false" video="false">
            <filename>C:\Program Files (x86)\CyberLink\PowerDVD14\PowerDVD.exe</filename>
            <args>"{1}" /fullscreen</args>
            <forceontop>false</forceontop>
            <hidexbmc>false</hidexbmc>
            <hidecursor>false</hidecursor>
        </player>
    </players>
    <rules action="prepend">
        <!-- Bluray ISO -->
        <rule filename=".*iso.*" player="ISO_Player"/>
                <!-- Bluray BDMV -->
        <rule filename=".*bdmv.*" player="BDMV_Player"/>
                <!-- Bluray MKV -->
                <rule filename=".*mkv.*" player="Universal_Player"/>
                <!-- Bluray M2TS -->
                <rule filename=".*m2ts.*" player="Universal_Player"/>

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

PlayDisc.bat
Code:
@echo off
rem you can place your PlayDisc file in \Roaming\XBMC\userdata\

"C:\Program Files (x86)\CyberLink\PowerDVD14\PowerDVD.exe" D:

PlayBDMV.bat
Code:
@echo off
rem you can place your PlayBDMV file anywhere
set pth=%1
set pth=%pth:BDMV\index.bdmv=%
"C:\Program Files (x86)\CyberLink\PowerDVD14\PowerDVD.exe" %pth% exit

PlayISO.bat
Code:
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
"C:\Program Files (x86)\CyberLink\PowerDVD14\PowerDVD.exe" F:
"C:\Program Files (x86)\Elaborate Bytes\VirtualCloneDrive\VCDMount.exe" /d=0 /u
GOTO end

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

"C:\Program Files (x86)\CyberLink\PowerDVD14\PowerDVD.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\PowerDVD14\PowerDVD.exe" %pth% exit
GOTO end

:end
exit

...and last but not least...

xbmc.log - I just copied the interesting bits...
Code:
18:59:21 T:8344  NOTICE: CMediaSourceSettings: loading media sources from special://masterprofile/sources.xml
18:59:21 T:8344  NOTICE: Loading player core factory settings from special://xbmc/system/playercorefactory.xml.
18:59:21 T:8344  NOTICE: Loaded playercorefactory configuration
18:59:21 T:8344  NOTICE: Loading player core factory settings from special://profile/playercorefactory.xml.
18:59:21 T:8344  NOTICE: Loaded playercorefactory configuration
18:59:56 T:8344  NOTICE: ExternalPlayer Filename: C:\Users\techmo01\AppData\Roaming\XBMC\userdata\PlayBDMV.bat
18:59:56 T:8344  NOTICE: ExternalPlayer Tweaks: hideconsole (true), hidexbmc (true), islauncher (false), warpcursor ()
18:59:56 T:8344  NOTICE: CExternalPlayer::OpenFile: D:\BDMV\index.bdmv
18:59:56 T:8608  NOTICE: Thread ExternalPlayer start, auto delete: false
18:59:56 T:8608  NOTICE: CExternalPlayer::Process: Player : C:\Users\techmo01\AppData\Roaming\XBMC\userdata\PlayBDMV.bat
18:59:56 T:8608  NOTICE: CExternalPlayer::Process: File   : D:\BDMV\index.bdmv
18:59:56 T:8608  NOTICE: CExternalPlayer::Process: Content:
18:59:56 T:8608  NOTICE: CExternalPlayer::Process: Args   : "{1}" /fullscreen
18:59:56 T:8608  NOTICE: CExternalPlayer::Process: Start
18:59:56 T:8608  NOTICE: CExternalPlayer::Process: Hiding XBMC window
18:59:56 T:8300  NOTICE: Thread BackgroundLoader start, auto delete: false
18:59:57 T:8608  NOTICE: CExternalPlayer::ExecuteAppW32:  "C:\Users\techmo01\AppData\Roaming\XBMC\userdata\PlayBDMV.bat" "D:\BDMV\index.bdmv" /fullscreen
18:59:57 T:8608  NOTICE: CExternalPlayer::ExecuteAppW32: WAIT_OBJECT_0
18:59:57 T:8608  NOTICE: CExternalPlayer::Process: XBMC cannot stay hidden for a launcher process
19:00:16 T:8608  NOTICE: CExternalPlayer::Process: Stop
19:00:16 T:8608  NOTICE: CExternalPlayer::Process: Showing XBMC window
/ Samme
Reply
Samme, I'm having pretty much the same problem. If I just run my .bat file, I get the desired results, but when I try to run it using XBMC, nothing happens. My log looks like yours too. XBMC recognizes the playercorefactory settings and says it is running my bat file as an external player, but it appears as if nothing is happening. If you or anyone figures this out, please post your findings. I can't figure it out.
Reply
So I am needing some help.

Right now I have most of my Blu Rays as .ISO files. I am using TMT to play my .ISO files. I also have use files names with .3D on the end to know which are 3D.

However I am now finding that my BDMV files aren't playing. Could someone help me as to how to fix this?

playercorefactory:
Code:
<playercorefactory>
<players>
<player name="ISO_BDMV_Player" type="ExternalPlayer" audio="false" video="true">
<filename>C:\Users\rmily_000\AppData\Roaming\XBMC\userdata\PlayISO.bat</filename>
<args>"{1}"</args>
<hidexbmc>false</hidexbmc>
<hideconsole>True</hideconsole>
<warpcursor>none</warpcursor>
</player>
</players>
<rules action="prepend">
<!-- Bluray ISO -->
<!-- Bluray ISO/BDMV -->
<rule filetypes="iso|bdmv|mpls" player="ISO_BDMV_Player"/>

</rules>
</playercorefactory>

PlayISO:
Code:
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
"C:\Program Files (x86)\ArcSoft\TotalMedia Theatre 6\uMCEPlayer6.exe" E:
"C:\Program Files (x86)\Elaborate Bytes\VirtualCloneDrive\VCDMount.exe" /d=0 /u
GOTO end

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

"C:\Program Files (x86)\ArcSoft\TotalMedia Theatre 6\uMCEPlayer6.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)\ArcSoft\TotalMedia Theatre 6\uMCEPlayer6.exe" %pth% exit
GOTO end

:end
exit
Reply
Heres my playercorefactory text - can anyone tell me how I can amend it to let me choose whether I want to launch playback via MPC-HC or the XBMC player please? I think this makes MPC-HC default. I'd prefer to have the standard XBMC player as the default and to have to select MPC-HC when i want to use it. Thanks in advance.

<?xml version="1.0"?>

-<playercorefactory>


-<players>


-<player video="true" audio="false" type="ExternalPlayer" name="MPC-HC">

<filename>C:\Program Files\MPC-HC\mpc-hc.exe</filename>

<args>"{1}" /fullscreen /play /close</args>

<hidexbmc>true</hidexbmc>

<hideconsole>true</hideconsole>

<warpcursor>none</warpcursor>

</player>

</players>


-<rules action="prepend">

<rule player="MPC-HC" filetypes="mkv"/>

</rules>

</playercorefactory>
Reply
Aiden - just replied over at AVS Forums - basically take out the 'rules' elements.

Code:
<playercorefactory>
<players>
   <player name="MPC-HC" type="ExternalPlayer" audio="false" video="true">
     <filename>C:\Program Files\MPC-HC\mpc-hc.exe</filename>
     <args>"{1}" /fullscreen /close</args>
     <hidexbmc>true</hidexbmc>
     <hideconsole>true</hideconsole>
     <warpcursor>none</warpcursor>
   </player>
</players>
</playercorefactory>
Reply
I would like the following:
Play 3D Bluray discs using TMT when pressing play disc in XBMC.
All other bluray discs should be used in XBMC.

So what part should I include so TMT doesn't play all Bluray discs but only 3D bluray discs?

Also tmt5 is often loosing focus. How can i solve that?
Reply
Is there a way to stop XBMC from launching the external player over and over again when I close the external player.
I seem to get stuck in a loop and have to close XBMC?
Reply
I think thats caused by selecting play next video automatically in XBMC options.

It is probably the main reason I went back to internal player, as it is annoying. Of course you can switch that off, but I like to play random TV episodes from a comedy TV series, so I use the option a lot.
Reply
Guys I could REALLY use some help. Right now I am having XBMC play all my .ISO files with TMT. That is working fine. That is how I wanted it. This way I can rip all my BDs to .ISO and play them back at 1:1. Works nice since we have a lot of 3D movies.

However I am seeing that on this HTPC when I try to play back anything the is in BDMV it doesn't play. I have tried on PC not using any of the rules etc and they play fine. How can I change it so my .ISO play with TMT and my BDMV format files play within XBMC?
Reply
Okay kinda confused here with playcorefactor file. I got TMT6 to work with my ISO files, but for some reason TMT6 keeps on lauching for all files. I want my mkv files to only work on xbmc and my ISO to work only on TMT6.

PHP Code:
<playercorefactory>
    <
players>
        <
player name="ISO_BDMV_Player" type="ExternalPlayer" audio="false" video="true">
            <
filename>C:\Users\chris\AppData\Roaming\XBMC\userdata\PlayISO.bat</filename>
            <
args>"{1}"</args>
            <
hidexbmc>True</hidexbmc>
                        <
hideconsole>true</hideconsole>
                        <
forceontop>false</forceontop>

        </
player>
        <
player name="Disc_Player" type="ExternalPlayer" audio="false" video="true">
            <
filename>C:\Users\chris\AppData\Roaming\XBMC\userdata\PlayDisc.bat</filename>
            <
args>"{1}"</args>
            <
hidexbmc>True</hidexbmc>
                        <
hideconsole>true</hideconsole>
                        <
forceontop>false</forceontop

                </
player>
        <
player name="Universal_Player" type="ExternalPlayer" audio="false" video="true">
            <
filename>C:\Program Files (x86)\ArcSoft\TotalMedia Theatre 6\uTotalMediaTheatre6.exe</filename>
            <
args>"{1}"</args>
            <
hidexbmc>True</hidexbmc>
                        <
hideconsole>true</hideconsole>
                        <
forceontop>false</forceontop>

                                                          
        </
player>
         </
players>
         <
rules action="prepend">
         <!-- 
Bluray ISO/BDMV -->
         <
rule filetypes="iso|bdmv|mpls" player="ISO_BDMV_Player"/>
        <!-- 
Multiple files -->
         <
rule filetypes="m2ts|mkv|avi|ts" player="Universal_Player"/>    
 
                <!-- 
Bluray Disc -->
        <
rule filetypes="bd|ifo" player="Disc_Player"/>
                
              
 </
rules>
 </
playercorefactory
Reply
This is a modified version of "bluray"'s code from the first post. It is working with Arcsoft Totalmedia 6.7.1 for DVD ISO, Bluray ISO, Bluray Folder, DVD Folder, MKV, TS, m2ts and AVI.
I suggest XBMC Launcher to make explorer.exe come back after closing XBMC

UPDATED
1.It always closes explorer before going to external player with no need of any other file to not see the taskbar during transition from XBMC to TMT6
2.When you play a mkv, ts, m2ts or avi you will not have to click Ok when you are back from external player.

When I figure it out how to enter directly to Show bluray menu when going to bluray disc I will share it. Greetings from Chile.

PlayDisc.bat
PHP Code:
@echo off
rem you can place your PlayDisc file in 
\Roaming\XBMC\userdata
Taskkill /IM explorer.exe /F
"C:\Program Files (x86)\ArcSoft\TotalMedia Theatre 6\uLaunchTMT6.exe" D

playercorefactory.xml
PHP Code:
<playercorefactory>
    <
players>
        <
player name="ISO_BDMV_Player" type="ExternalPlayer" audio="false" video="true">
            <
filename>C:\Users\Germini\AppData\Roaming\XBMC\userdata\PlayISO.bat</filename>
            <
args>"{1}"</args>
            <
hidexbmc>false</hidexbmc>
                        <
hideconsole>true</hideconsole>
                        <
forceontop>false</forceontop

        </
player>
        <
player name="Disc_Player" type="ExternalPlayer" audio="false" video="true">
            <
filename>C:\Users\Germini\AppData\Roaming\XBMC\userdata\PlayDisc.bat</filename>
            <
args>"{1}"</args>
            <
hidexbmc>false</hidexbmc>
                        <
hideconsole>true</hideconsole>
                        <
forceontop>false</forceontop
                </
player>
        <
player name="Universal_Player" type="ExternalPlayer" audio="false" video="true">
               <
filename>C:\Users\Germini\AppData\Roaming\XBMC\userdata\PlayUniversal.bat</filename>
                 <
args>"{1}"</args>
                 <
hidexbmc>false</hidexbmc>
             <
forceontop>false</forceontop
                 <
hideconsole>true</hideconsole>
             </
player>
     </
players>
     <
rules action="prepend">
         <!-- 
Bluray ISO/BDMV/DVD/VIDEO_TS -->
         <
rule filetypes="iso|bdmv|mpls|ifo|dvd" player="ISO_BDMV_Player"/>
        <!-- 
Multiple files -->
         <
rule filetypes="m2ts|mkv|avi|ts" player="Universal_Player"/>    
            <!-- 
Bluray Disc -->
        <
rule filetypes="bd" player="Disc_Player"/>    
     </
rules>
 </
playercorefactory

PlayISO.bat
PHP Code:
Taskkill /IM explorer.exe /F

set pth
=%1
set pth
=%pth:~1,-22%
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 next2)

:
next2
Set file
=%1
Set dummy
=%file:ifo=%
IF 
NOT %dummy% == %file% (GOTO playifo) ELSE (GOTO playbdmv)


:
playiso
"C:\Program Files (x86)\Elaborate Bytes\VirtualCloneDrive\VCDMount.exe" /d=%1
"C:\Program Files (x86)\ArcSoft\TotalMedia Theatre 6\uTotalMediaTheatre6.exe"  D:
"C:\Program Files (x86)\Elaborate Bytes\VirtualCloneDrive\VCDMount.exe" /d=/u
GOTO end

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

"C:\Program Files (x86)\ArcSoft\TotalMedia Theatre 6\uTotalMediaTheatre6.exe" "%pth%"
GOTO end

:playifo
set pth
=%1
set pth
=%pth:~1,-22%
"C:\Program Files (x86)\ArcSoft\TotalMedia Theatre 6\uTotalMediaTheatre6.exe" "%pth%" 
GOTO end

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

"C:\Program Files (x86)\ArcSoft\TotalMedia Theatre 6\uTotalMediaTheatre6.exe" %pth%
GOTO 
end

:end
exit 

PlayUniversal.bat
PHP Code:
Taskkill /IM explorer.exe /F
set pth
=%1
set pth
=%pth:~1,-1%

"C:\Program Files (x86)\ArcSoft\TotalMedia Theatre 6\uTotalMediaTheatre6.exe" "%pth%" 
exit 
Reply
Hi

Is there a solution for pDVD 14 yet?
Reply
Hi Guys,

I am new to this forum and have been reading endless threads about how to resolve an issue that I am currently experiencing. Everything was working okay a couple of weeks ago until I completely uninstalled XMBC and reinstalled and used the same Playercore & Bat files as before. However as soon as I click a movie in XMBC, I get a repeated windows command prompt message:

C:\Program Files (x86)\XBMC\GO TO unmounted
C:\Program Files (x86)\XMBC>IF EXIST E:\BDMV\. GOTO mounted


I am seeking to mount ISO's using DVDFab Virtual Drive (Program Files folder) and playback via PowerDVD 14 (x86 Program Files folder)


These are the settings I am using...


Playercorefactory Settings

<?xml version="1.0"?>
<playercorefactory>
<players>
<player video="true" audio="false" type="ExternalPlayer" name="ISO_BDMV_Player">
<filename>C:\Users\Animal\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 player="ISO_BDMV_Player" filetypes="iso|bdmv|mpls"/>
</rules>
</playercorefactory>


PlayISO Bat Settings

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\DVDFab Virtual Drive\vdrive.exe" /d=0 %1
:unmounted
IF EXIST E:\BDMV\. GOTO mounted
GOTO unmounted
:mounted
"C:\Program Files (x86)\Cyberlink\PowerDVD14\Movie\PowerDVD Cinema\PowerDVDCinema.exe" E:
GOTO end
:next
"C:\Program Files (x86)\Cyberlink\PowerDVD14\Movie\PowerDVD Cinema\PowerDVDCinema.exe" %1 exit
GOTO end
:plaympls
set pth=%1
set pth=%pth:~1,-25%
"C:\Program Files (x86)\Cyberlink\PowerDVD14\Movie\PowerDVD Cinema\PowerDVDCinema.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\PowerDVD14\Movie\PowerDVD Cinema\PowerDVDCinema.exe" %pth% exit
GOTO end
:end
exit


I really can't understand why this issue is occurring when it worked fine only a couple of weeks ago. The only thing I can think of is that I have somehow inadvertently modified the original files having tried endless fixes.

I would really appreciate some help please as this is driving me crazy!
Reply
  • 1
  • 145
  • 146
  • 147(current)
  • 148
  • 149
  • 154

Logout Mark Read Team Forum Stats Members Help
Another External Player Code, but Very Simple to Setup13