playercore - location of app
#1
Guys,

I was wondering if someone could help me out. I've ordered a VR set from Freefly VR. It just using my Note 4, so I was wondering, with the VR players out there, if It's possible to tell Kodi to play the video through VR Player in the android app store.

I've read about the playercore xml, which provides a lot of example players to choose. Now I though maybe that I could just edit the xml file and add VR Player into. the problem is I can't find the location of VR Player to add the address into the XML.

Any ideas where it would be located?

Example

Code:
<player name="VE Player" type="ExternalPlayer" audio="false" video="true">
                        <filename>com.xxxx.vrplayer.axx</filename>
                        <hidexbmc>true</hidexbmc>
                        <playcountminimumtime>120</playcountminimumtime>
</player>
Reply
#2
Info in this post:
http://forum.kodi.tv/showthread.php?tid=...pid2042833

Reply
#3
(2015-07-03, 17:35)wrxtasy Wrote: Info in this post:
http://forum.kodi.tv/showthread.php?tid=...pid2042833

Thanks.

Yeah I already figured out, it's in the address of the app via the app store.

I'll post hit here if anyone needs it for future reference.

Code:
<players>

                <player name="VR Player" type="ExternalPlayer" audio="false" video="true">
                        <filename>com.stephanelx.vrplayer</filename>
                        <hidexbmc>true</hidexbmc>
                        <playcountminimumtime>120</playcountminimumtime>
                </player>


        


                
        </players>

Got it working, just struggling now to set it as default. I only have VR Player in my playercore.xml. So I changed my advancedsettings to have
Code:
<defaultplayer>extplayer</defaultplayer
but it's still using Kodi's player. Odd


Edit: Nevermind, I'm a moron. Missed out the tags lol
Reply

Logout Mark Read Team Forum Stats Members Help
playercore - location of app0