Follow the instructions posted earlier for the playercorefactory.xml.Mortenjorstad wrote: ↑Sun Jul 26, 2020 1:11 pmThank you for the exoplayer apk. IT workes fine on kodi. My question is there any settings in kodi to make exoplayer the default player.
If you want to go a step further and use the default Kodi player for everything and use ExoPlayer for Dolby VIsion mkv's only, you can add a rule in the XML to tell Kodi to use ExoPlayer when playing videos with Dolby Vision in the name (or however you label your mkv's). I for instance have "Dolby.Vision" in all my DV rips file names. So My XML looks like this:
<playercorefactory>
<players>
<player name="ExoPlayer" type="ExternalPlayer" audio="false" video="true">
<filename>com.google.android.exoplayer2.demo</filename>
<hidexbmc>true</hidexbmc>
<playcountminimumtime>120</playcountminimumtime>
</player>
</players>
<rules action="prepend">
<rule video="true" player="dvdplayer">
<rule filename=".*Dolby.Vision.*" player="ExoPlayer"/>
</rule>
</rules>
</playercorefactory>