You can find some great addons onAddons4Kodi.
At the time of writing, Kodi internal player doesn't support the proprietary Dolby Vision; to fix this issue, one way is to install Just Video Player from Google Play and force Kodi to use this external player for Dolby Vision files. Please note that only Dolby Vision MKV files can be rewinded and forwarded using Just Video Player while that is not possible with Dolby Vision MP4 files. For more information refer to this post.
After installing "Just Video Player", create a file named playercorefactory.xml
and copy it into /Android/data/org.xbmc.kodi/files/.kodi/userdata/
. The content of playercorefactory.xml
should be:
<playercorefactory>
<players>
<player name="Just Player" type="ExternalPlayer" audio="false" video="true">
<filename>com.brouken.player</filename>
<hidexbmc>true</hidexbmc>
<playcountminimumtime>120</playcountminimumtime>
</player>
</players>
<rules action="prepend">
<rule internetstream="true">
<rule filename=".*[.]DV[.].*|.*\sDV\s.*|.*[.]Dv[.].*|.*\sDv\s.*|.*[.]dv[.].*|.*\sdv\s.*|.*D[/]VISION.*|.*\sDOVI\s.*|.*[.]DOVI[.].*|.*\sDoVi\s.*|.*[.]DoVi[.].*|.*\sDovi\s.*|.*[.]Dovi[.].*|.*\sdovi\s.*|.*[.]dovi[.].*|.*\sDOVi\s.*|.*[.]DOVi[.].*" player="Just Player" />
</rule>
<rule video="true" player="dvdplayer" />
</rules>
</playercorefactory>