Problem with playercorefactory
#1

Hello I setup a simple playercorefactory.xml to start TMT for the 3D iso file:

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

        </player>
    </players>
        
    <rules action="prepend">
        <!-- Bluray ISO -->
        <rule filenames="*3D*.iso" filetypes="iso" player="ISO_Player"/>
    </rules>
</playercorefactory>

All working fine, except for the fact that ALL the ISO files are played with TMT. So seems the filter *3D*.iso doesn't work.
Could some one point me to a solution?

Example:
MOVIE1.ISO
MOVIE2.ISO
MOVIE3 3D BLABLA.ISO
MOVIE4 3D BLABLA.ISO

So I would like to start TMT only for MOVIE3 and 4.

Thanks
Lucas
Reply
#2
Try this rule (<rule filetypes="iso" filename=".*3d." player="ISO_Player"/>) instead.....
>Alienware X51- do it all HTPC
>Simplify XBMC configurations
>HOW-TO Bitstreaming using XBMC
I refused to watch movie without bitstreaming HD audio!
Reply
#3
(2012-11-01, 00:49)bluray Wrote: Try this rule (<rule filetypes="iso" filename=".*3d." player="ISO_Player"/>) instead.....

Thanks for reply bluray....
Well, this will drive me crazy!!!! Sad


1) With => filename=".*3d." => This will not never start TMT

2) With => filename=".*3D*." => This seems to work but with some exceptions.

Let me report some "real" filename as example for rules Nr.2

"Lego Star Wars.iso" => This is OK. XBMC used internal player
"Nati con la camicia.iso" => This is OK. XBMC used internal player
"Viaggio nell'isola misteriosa 3D [2012].iso" => This is OK. XBMC used external player (TMT)
"John Carter 3D FULL BLURAY.iso" => This is OK. XBMC used external player (TMT)
"[1937] - I Fanciulli del West.iso" => This is NOT OK. XBMC used external player (TMT)
"[1935] - GLi allegri Scozzesi.iso" => This is NOT OK. XBMC used external player (TMT)

WTF!?!? Why for the last two XBMC starts external player ?!?! Confused


Reply
#4
With this (<rule filetypes="iso" filename=".*3d." player="ISO_Player"/>) rule, you have to name your blu-ray ISO this way (Avatar 3d.iso).....other iso's will playback using XBMC....
>Alienware X51- do it all HTPC
>Simplify XBMC configurations
>HOW-TO Bitstreaming using XBMC
I refused to watch movie without bitstreaming HD audio!
Reply
#5
Thanks bluray, now it works. I had to rename all the BD3D iso I have to "XXXX 3D.iso" and then rescrap them, but now it works.

But honestly I cannot understand why this works => ".*3D."
And this not => ".*3D*." Confused

I'm asking because I would like to understand how the filename works in the rules, and just in case I need to create further rules with different filename!
Reply

Logout Mark Read Team Forum Stats Members Help
Problem with playercorefactory0