Skip to content

Instantly share code, notes, and snippets.

@eagleusb
Last active June 19, 2020 17:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eagleusb/d880c5c2c6ec8d327b04df67c9f2f09c to your computer and use it in GitHub Desktop.
Save eagleusb/d880c5c2c6ec8d327b04df67c9f2f09c to your computer and use it in GitHub Desktop.
Android Fire TV

FireTV

SDK

Download platform-tools

Sideload

  • kodi
adb connect 192.168.0.123:5555
adb.exe install -r .\kodi-18.7.2-Leia-armeabi-v7a.apk
  • VLC
adb.exe install .\VLC-Android-3.2.11-armeabi-v7a.apk

File

  • kodi
adb.exe push .\playercorefactory.xml /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/userdata/

Documentation: Userdata

Kodi

  • External Players (playercorefactory.xml)
<playercorefactory>
    <players>
        <player name="VLCPlayer" type="ExternalPlayer" audio="false" video="true">
            <filename>org.videolan.vlc</filename>
            <args>--fullscreen "{1}"</args>
            <hidexbmc>true</hidexbmc>
            <playcountminimumtime>120</playcountminimumtime>
        </player>
    </players>
    <rules action="prepend">
        <rule video="true" player="dvdplayer">
            <rule filename=".*265.*|.*HEVC.*|.*hevc.*" player="VLCPlayer"/>
        </rule>
    </rules>
</playercorefactory>

Documentation: HOW-TO:Use_external_players_on_Android

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