2021-01-05, 08:20
(2020-12-21, 16:17)willburstyle06 Wrote:(2020-12-20, 20:14)PatK Wrote:(2020-12-20, 07:43)willburstyle06 Wrote: VLC doesn't automatically exit back to Kodi like it was before. I'm not sure what changedIf I use MPC-HC (or BE) as an external player, it works perfectly as expected with both Matrix and Leia.
Running VLC brings, it used to work fine, I have updated VLC and looking at the error below, file:/// pathing might be at issue with the VLC directive.
Your input can't be opened:
VLC is unable to open the MRL 'file:///C:/Kodi-Leia/Kodi/%2Ffullscreen'. Check the log for details.
Your input can't be opened:
VLC is unable to open the MRL 'file:///C:/Kodi-Leia/Kodi/%2Fclose'. Check the log for details.
I'll have to go check if my log shows the same thing
I was able to solve the issue with VLC not automatically returning to Kodi by just turning on the setting to "close VLC after playlist ends"
It's more of a minor inconvenience then an actual problem but is there a way to set the playercorefactory.xml rules so that it automatically plays a file with VLC based on the files resolution it detects, in this case any 4k file? Right now I have it set so it sees 2160p in the file name to use VLC but sometimes I forget to add that in lol
Once again here is my current playercorefactory.xml
<playercorefactory>
<players>
<player name="VLC Player" type="ExternalPlayer" audio="false" video="true">
<filename>C:\Program Files\VideoLAN\VLC\vlc.exe</filename>
<args>"{1}"</args>
<hidexbmc>false</hidexbmc>
<hideconsole>false</hideconsole>
<warpcursor>none</warpcursor>
<playcountminimumtime>100000</playcountminimumtime>
</player>
</players>
<rules action="prepend">
<rule filename=".*2160p.*" player="VLC Player"/>
</rules>
</playercorefactory>