If someone is kind enough to check his/her playercorefactory.xml and spot what's the error in mine.
The problem I'm having is not something too painful, I'm happy enough with Kodi player, but I'm wondering why Wrapper is not the default one, although is selected in My Apps->Wrapper.
Play using is showing me:
- VideoPlayer (Default)
4 times Wrapper!!!
the 6th in the list VideoPlayer.
I did a full reinstall of 2.0.3, copy update.zip on a fresh usb stick, hit the upgrade back button, and I end up with the same scenario as before. It used to be right with 2.0.1 and it appeared in 2.0.3.
Special notes: it also ignores the rule with .*.3D.*. I have a single rip that should match this rule, but it plays with Kodi instead of wrapper.
Special note #2: after re-upgrade I added <rule filetypes="mkv... following the above finding, but no luck. That's the only change I've made to the default file.
Could be <rule protocols="nfs...? My shares are mounted via NFS, read-only, from 2 Synology units. That because I don't want any patch and is not possible to mount 2 Samba shares with 2 different user/pass combination.
Here's my file:
<playercorefactory>
<players>
<!-- himedia player for video -->
<player name="Wrapper" type="ExternalPlayer" audio="false" video="true">
<filename>com.himedia.xbmcwrapper</filename>
<hidexbmc>true</hidexbmc>
<playcountminimumtime>120</playcountminimumtime>
</player>
</players>
<rules action="prepend">
<!--network protocol rules-->
<rule protocols="nfs|http|rtmp|sop" player="VideoPlayer" /> <!--all nfs-->
<!--internet streams rules-->
<rule protocols="pvr" player="VideoPlayer" /> <!--all pvr-->
<rule internetstream="true" player="VideoPlayer" /> <!--all streams-->
<!--video audio channels rules-->
<rule video="true" audiochannels="6" player="Wrapper" /> <!--5.1 audio-->
<rule video="true" audiochannels="8" player="Wrapper" /> <!-- 7.1 audio-->
<!--video resolution rules-->
<rule video="true" videoresolution="720" player="Wrapper" />
<rule video="true" videoresolution="1080" player="Wrapper" />
<rule video="true" videoresolution="2160" player="Wrapper" /> <!--4K-->
<!--audio / music rules-->
<rule audio="true" player="PAplayer"/> <!--all audio to kodi internal music player-->
<!--specific codecs rules-->
<rule video="true" audiocodec="truehd|true-hd|dtshd|dts-hd|dts" player="Wrapper"/>
<rule filename=".*.3D.*|.*.3D.iso|3D.*" player="Wrapper"/>
<rule filetypes="mkv|iso|bdmv|mpls|m2ts" player="Wrapper"/>
<rule video="true" player="Wrapper"/>
</rules>
</playercorefactory>