Kodi Community Forum

Full Version: Trying to get external player working
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I've tried my best to follow the guide, but I can't seem to get it working.

I've created a playercorefactory.xml in C:\Users\media\AppData\Roaming\xbmc\userdata

with this inside it.

Code:
<playercorefactory>
<players>
   <player name="DVDFAB" type="ExternalPlayer" audio="true" video="true">
     <filename>C:\Program Files (x86)\DVDFab Media Player 2\Fabplayer.exe</filename>
     <args>"{1}" /fullscreen /close</args>
     <hidexbmc>false</hidexbmc>
     <hideconsole>false</hideconsole>
     <warpcursor>none</warpcursor>
   </player>
</players>
<rules action="prepend">
   <rule filetypes="iso" player="DVDFAB"/>
</rules>
</playercorefactory>

basically I'm trying to set it so that DVDFab media player will play all my ISO images, both DVD and bluray.

This currently isn't working.

Any help? would be greatly appreciated!