Skip to content

Instantly share code, notes, and snippets.

@jswhisperer
Created March 6, 2025 20:28
Show Gist options
  • Save jswhisperer/b04971dc1f5534267cf1e6ac9b814553 to your computer and use it in GitHub Desktop.
Save jswhisperer/b04971dc1f5534267cf1e6ac9b814553 to your computer and use it in GitHub Desktop.
Custom Kodi External Players MacOS
echo -e '<playercorefactory>
<players>
<player name="iina" type="ExternalPlayer" audio="false" video="true">
<filename>/Applications/IINA.app/Contents/MacOS/IINA</filename>
</player>
<player name="VLC" type="ExternalPlayer" audio="false" video="true">
<filename>/Applications/VLC.app/Contents/MacOS/VLC</filename>
<args>--video-on-top --play-and-exit</args>
<hidexbmc>true</hidexbmc>
</player>
</players>
<rules action="prepend">
<rule video="true" player="iina"/>
</rules>
</playercorefactory>
' > ~/Library/Application\ Support/Kodi/userdata/playercorefactory.xml
@jswhisperer
Copy link
Author

One liner

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment