[WINDOWS] HOW-TO launch Blu-ray Disc (HDD) backups with menus using External Player

  Thread Rating:
  • 1 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
Roman_V_M Offline
Fan
Posts: 332
Joined: Jun 2011
Reputation: 6
Location: Kyiv, Ukraine
Post: #21
ekon Wrote:Before I start configuring this, TMT 5 (this guide is for TMT3) does not play index.bdmv. It just starts TMT but it doesnt play anything. Is there anyway around this?

I've got a working config for playing BD folder rips in TMT5. The trick is that you need to pass a folder name instead of index.bdmv (TMT5 seems to ignore index.bdmv), which is done via a cmd script:
Code:
"c:\Program Files\ArcSoft\TotalMedia Theatre 5\uLaunchTMT5.exe" %~dp1
exit
The playercorefactory.xml is simple:
Code:
<playercorefactory>
<players>
   <player name="TMT5" type="ExternalPlayer" audio="false" video="true">
<!-- the path to a cmd script - you can change to your own -->
     <filename>c:\Users\Roman\AppData\Roaming\XBMC\userdata\bd.cmd</filename>
     <args>"{1}"</args>
     <hidexbmc>true</hidexbmc>
     <hideconsole>true</hideconsole>
     <warpcursor>none</warpcursor>
   </player>
</players>
<rules action="prepend">
   <rule filetypes="bdmv" player="TMT5"/>
</rules>
</playercorefactory>
Don't forget to launch TMT5 and check "auto full screen" and "always on top" options.
One of the issues I've noticed that sometimes XBMC steals key focus. And you need to close TMT5 manually. Apart from that it works.
I'm not sure but you may also need a virtual BD drive from Daemon tools lite in your system.

UPD: I've found out that TMT5 MCE plug-in better suits here. For that you need to create a shortcut to the file "uMCEPlayer5.exe" and set "maximized" in its properties. Then use this shortcut to open BD folders. So the bd.cmd file for XBMC should be the following:
Code:
"c:\Program Files\ArcSoft\TotalMedia Theatre 5\uMCEPlayer5.lnk" %~dp1
exit
Now it works almost perfect.Smile
(This post was last modified: 2011-07-04 09:06 by Roman_V_M.)
find quote
spleeker Offline
Junior Member
Posts: 13
Joined: Jul 2011
Reputation: 0
Post: #22
i might be going a little crazy here but...i've used method posted by roman on 3 separate machines and it works perfectly on 2 of them...the system that doesnt work will load the tmt5 player and it just sits at the blue screen tmt5 screen...nothing...im running the movies with the umceplayer5

im starting to wonder if windows 7 service pack 1 has anything to do with this...the reason im suspicious is-you guessed it-the 2 working systems are running pre-7 sp1...the machine that wont work is win7 sp1...all are x64 systems....and i also am almost positive xbmc has nothing to do with this...if i copy the cmd file to the \bdmv\ folder of any bd structure and run bd index.bdmv....the movie immediately loads and plays on the 2 non sp1 systems and doesnt load on the sp1 machine....i've had a long week and dont want to rack my brain over this seemingly small issue...if someone could point out something totally obvious i would be grateful....thanks guys (great job w the scripts roman)

*edit...meant to add...all 3 systems are running the 50187 version of tmt5 and have the hotfix applied
find quote
spleeker Offline
Junior Member
Posts: 13
Joined: Jul 2011
Reputation: 0
Post: #23
got it working...a clean install did the trick
find quote
foxm2k Offline
Member
Posts: 63
Joined: Jan 2011
Reputation: 0
Post: #24
Thank you that helped me a lot
find quote
The_Penguin Offline
Junior Member
Posts: 1
Joined: Sep 2011
Reputation: 0
Post: #25
I'll try to play BR-folders with TMT3. The path in de cmd-box shows ...\bdmv\backup, so I get the error unsupported in TMT3. How can I change that the path is \BDMV\ so it can find the right index.bdmv

My PlayFolder.bat:

"C:\Program Files\ArcSoft\TotalMedia Theatre 3\uMCEDVDPlayer.exe" %~dp1
exit

ISO works fine, thats not an issue.
find quote
Bi0hazz Offline
Junior Member
Posts: 1
Joined: Oct 2011
Reputation: 0
Post: #26
Manipulate the %~dp1 first. It would then look like this

set str=%~dp1
set str=%str:\backup=%
"C:\Program Files\ArcSoft\TotalMedia Theatre 3\uMCEDVDPlayer.exe" %str
exit

I needed to do the same because TMT5 wil only play from one folder up from \bdmv.
So I needed to to strip \BDMV.
find quote
meimeiriver Offline
Junior Member
Posts: 16
Joined: Oct 2011
Reputation: 0
Post: #27
Bi0hazz Wrote:Manipulate the %~dp1 first. It would then look like this

set str=%~dp1
set str=%str:\backup=%
"C:\Program Files\ArcSoft\TotalMedia Theatre 3\uMCEDVDPlayer.exe" %str
exit

I needed to do the same because TMT5 wil only play from one folder up from \bdmv.
So I needed to to strip \BDMV.

TMT 5 will indeed NOT play from the BDMV folder; but will do so from the folder up. See my solution:

http://forum.xbmc.org/showpost.php?p=911...tcount=105
find quote
Post Reply