2018-04-28, 13:04
I'm at my wits end here and have been scouring the internet for over a week on how to's on adding vlc as an external player.But all i keep getting is kodi's default player as an the option,and have already tried pre-made playercorefactory.xml texts with no luck.I've also went to kodi's wiki externalplayer page for help but that didn't help either.So here's my xml i tried as i did modify it from that page.
All i want to do is launch vlc as an external player to record shows.So could someone please tell me what i'm missing here.Is there something wrong with my xml or is there additional plugins or downloads i need to be able to do this?
xml:
<playercorefactory>
<players>
<player name="VideoLAN" type="ExternalPlayer" audio="true" video="true">
<filename>C:\Program Files\VLC\vlc.exe</filename>
<args>"{1}" /fullscreen /close</args>
<hidexbmc>false</hidexbmc>
<hideconsole>false</hideconsole>
<warpcursor>none</warpcursor>
</player>
</players>
<rules action="prepend">
rule filetypes="avi|ffmpeg|flv|mov|mp4|mpeg2|mpeg3|mpeg4" filename=".*720p.*|.*1080p.*" player="VLC"/>
</rules>
</playercorefactory>
All i want to do is launch vlc as an external player to record shows.So could someone please tell me what i'm missing here.Is there something wrong with my xml or is there additional plugins or downloads i need to be able to do this?