Guys could you please help me. I just bought TotalMedia Theatre 5 and dont know how to launch BD folders.
Here is the situation. I have Bluray folders on my hard. No ISOs. With TotalMedia Theatre 3 it was easy.
I made an external player rule for *.bdmv files and launched
uMCEDVDPlayer.exe index.bdmv
to play a bluray folder.
Now the problem with TMT5 is that "uMCEPlayer5.exe index.bdmv" doesn't work. It does launch TMT5 but
it doesn't play the BD folder. The only way to play a BD folder is to use it on the root folder If you have a folder
named BDFILM1 you have to run it like "uMCEPlayer5.exe BDFILM1"
Now how can I launch TMT5 inside XBMC on BD folder structures? I'm not interested to use ISOs in anyway.
[WINDOWS] External Player Support Thread
Zodler
Senior Member Posts: 114 Joined: Apr 2010 Reputation: 0 |
2012-04-17 01:59
Post: #1161
|
| find quote |
BlackJack1
Junior Member Posts: 36 Joined: Jun 2009 Reputation: 0 Location: Poland |
2012-04-17 11:53
Post: #1162
(2012-04-16 16:34)bluray Wrote:(2012-04-16 14:38)BlackJack1 Wrote: Of course I can click "exit" button using my mouse when playback stops but I'd love to see it goes back to XBMC automaticly like prevously using KMPlayer...That is why I said it is depending on your external media player. If PotPlayer have an option to automatically exit itself after the movie complete, it'll return to XBMC after the movie complete. Maybe, KMPlayer have the automatic exit option but PotPlayer player doesn't have it....... I found this option in PotPlayer. Now it works great! Thank you bluray for help
|
| find quote |
bluray
Posting Freak Joined: May 2011 Reputation: 139 |
2012-04-17 16:43
Post: #1163
(2012-04-17 11:53)BlackJack1 Wrote:Great...and congrat!(2012-04-16 16:34)bluray Wrote:(2012-04-16 14:38)BlackJack1 Wrote: Of course I can click "exit" button using my mouse when playback stops but I'd love to see it goes back to XBMC automaticly like prevously using KMPlayer...That is why I said it is depending on your external media player. If PotPlayer have an option to automatically exit itself after the movie complete, it'll return to XBMC after the movie complete. Maybe, KMPlayer have the automatic exit option but PotPlayer player doesn't have it....... ![]() (2012-04-17 01:59)Zodler Wrote: Guys could you please help me. I just bought TotalMedia Theatre 5 and dont know how to launch BD folders.You should be able to use a rule similar to this "<rule filename=".*bdmv.*" player="BDMV_Player"/>" for TMT5. It'll playback BDMV in BD folder. If you need more info on it, you can check out the guide in my signature below too..... >Alienware X51- do it all HTPC >Simplify XBMC configurations >HOW-TO Bitstreaming using XBMC I refused to watch movie without bitstreaming HD audio!
(This post was last modified: 2012-04-17 16:52 by bluray.)
|
| find quote |
Zodler
Senior Member Posts: 114 Joined: Apr 2010 Reputation: 0 |
2012-04-17 18:20
Post: #1164
deleted
(This post was last modified: 2012-04-17 18:49 by Zodler.)
|
| find quote |
backspace
Senior Member Posts: 115 Joined: Mar 2012 Reputation: 1 |
2012-04-26 04:12
Post: #1165
Hi all
![]() I am trying to play music videos in a separate screen (hopefully) docked on monitor 2 (hd tv) and still have xbmc active on monitor 1 and queue up more songs ect while it is still playing. I have it so that it defaults to wmplayer for music videos and it opens and plays but one or two songs then comes up with "click ok when playback has finished" and I can't queue anymore songs until I click ok. Is there a workaround for this or a setting I can change? Thanks for helping
|
| find quote |
mrcleen74
Junior Member Posts: 10 Joined: Jul 2012 Reputation: 0 |
2012-07-13 21:42
Post: #1166
ok i know as mr. garrison says there are no stupid questions, only stupid people and at the moment i am one of them. i apologize if this has been posted already but how do i keep the ability to use vlc or mpc-hc but keep the built in player as default. i love bein able to use the external player for a few things but overall i am pleased with the default player and do use it the most often. i am very much a noob when it comes to xml so iff anyone could show me exactly what to type into it and where i would be most appreciative. thanks in advance.
|
| find quote |
bluray
Posting Freak Joined: May 2011 Reputation: 139 |
2012-07-13 22:09
Post: #1167
(2012-07-13 21:42)mrcleen74 Wrote: ok i know as mr. garrison says there are no stupid questions, only stupid people and at the moment i am one of them. i apologize if this has been posted already but how do i keep the ability to use vlc or mpc-hc but keep the built in player as default. i love bein able to use the external player for a few things but overall i am pleased with the default player and do use it the most often. i am very much a noob when it comes to xml so iff anyone could show me exactly what to type into it and where i would be most appreciative. thanks in advance.Since we are not in front of your HTPC, we cannot write code and link it to the correct directory for you. You can use the code from the forum and try it on your HTPC. If you run into problem, you can post your code and specify your issue, and then we will try to help you out....... Here is another external player thread- Another External Player Code, but Very Simple to Setup.......... >Alienware X51- do it all HTPC >Simplify XBMC configurations >HOW-TO Bitstreaming using XBMC I refused to watch movie without bitstreaming HD audio! |
| find quote |
scudlee
Team-XBMC Member Posts: 612 Joined: Jul 2011 Reputation: 47 |
2012-07-13 22:17
Post: #1168
@mrcleen74 All you need to do is not define any rules in your playercorefactory.xml.
As long as you've defined the players, you can use them for any item from the context menu under the "Play using..." option. |
| find quote |
mrcleen74
Junior Member Posts: 10 Joined: Jul 2012 Reputation: 0 |
2012-07-14 01:29
Post: #1169
<playercorefactory>
<players> <player name="MPC-HC" type="ExternalPlayer" audio="false" video="true"> <filename>C:\Program Files (x86)\K-Lite Codec Pack\Media Player Classic\mpc-hc.exe</filename> <args>/fullscreen /close</args> <hidexbmc>true</hidexbmc> <hideconsole>true</hideconsole> <hidecursor>false</hidecursor> </player> <player name="VLC" type="ExternalPlayer" audio="false" video="true"> <filename>C:\Program Files (x86)\VideoLAN\VLC\VLC.exe</filename> <args>/fullscreen /close</args> <hidexbmc>true</hidexbmc> <hideconsole>true</hideconsole> <hidecursor>false</hidecursor> </player> </players> </playercorefactory> i removed the rules like you mentioned but it still defaults to mpc-hc instead of the dvdplayer built in. sorry for not posting this earlier and thx for such a quick response. so am i stuck with mpc-hc as the default now or is there a way around this? |
| find quote |
scudlee
Team-XBMC Member Posts: 612 Joined: Jul 2011 Reputation: 47 |
2012-07-14 09:11
Post: #1170
Did you happen to set MPC-HC as the default player in your advancedsettings.xml?
If not, post a debug log with you playing something, and it opening MPC-HC. That should clear up what's happening. |
| find quote |



Search
Help