Kodi launches another player than the default one
#1
I have created a playercorefactory.xml file.
It is almost working perfectly.
The settings correctly defines the Default player because when I click "Play using ...", Kodi has identified the right one.
Unfortunately, when I simply click to play the movie, it always starts the same ("Universal-Player" ), like it woumd take into accound the definition.

I don't understand because it that par has been working ... until I made some additional changes (I cannot tell which anymore).

Here is my XML... Can some one tell me what I do wrong please?
Code:
<playercorefactory>
    <players>
        <player name="Universal-Player" type="ExternalPlayer" audio="flase" video="true">
            <filename>C:\Users\yves\AppData\Roaming\Kodi\userdata\external_player.bat</filename>
            <args>"{1}"</args>
            <hidexbmc>true</hidexbmc>
            <hideconsole>true</hideconsole>
            <warpcursor>none</warpcursor>
            <playcountminimumtime>1140</playcountminimumtime>
        </player>
        <player name="ISO-BD-Player" type="ExternalPlayer" audio="flase">
            <filename>C:\Users\yves\AppData\Roaming\Kodi\userdata\bd-iso_mount_and_view.bat</filename>
            <args>"{1}"</args>
            <hidexbmc>true</hidexbmc>
            <hideconsole>true</hideconsole>
            <warpcursor>none</warpcursor>
            <playcountminimumtime>1140</playcountminimumtime>
        </player>
        <player name="ISO-DVD-Player" type="ExternalPlayer" audio="flase">
            <filename>C:\Users\yves\AppData\Roaming\Kodi\userdata\dvd-iso_mount_and_view.bat</filename>
            <args>"{1}"</args>
            <hidexbmc>true</hidexbmc>
            <hideconsole>true</hideconsole>
            <warpcursor>none</warpcursor>
            <playcountminimumtime>1140</playcountminimumtime>
        </player>

        <!--
        <player name="DVDPlayer" audio="true" video="false" />
        -->

    </players>

    <rules action="overwrite">
    <rule video="true" player="Universal-Player">
        <rule filetypes="iso" player="ISO-BD-Player" >
            <rule dvdimage=true filename=".*dvd.*iso" player="ISO-DVD-Player" />
        </rule>
        <!--
        <rule internetstream="true" player="DVDPlayer" />
        -->
    </rule>
</rules>

</playercorefactory>


Thanks in advance.
Reply

Logout Mark Read Team Forum Stats Members Help
Kodi launches another player than the default one0