advancedsettings.xml override works for one setting but not another
#1
I followed the instructions from https://kodi.wiki/view/Advancedsettings....Conversion

The first setting seekdelay works, however the second usevaapihevc does not

<videoplayer>
    <seekdelay>750</seekdelay>
    <usevaapihevc>false</usevaapihevc>
</videoplayer>

Cheers,
LongMan
Reply
#2
(2023-12-11, 17:48)LongMan Wrote: however the second usevaapihevc does not
I can't seem to find that setting. I expect it is not available on Windows.
My Signature
Links to : Official:Forum rules (wiki) | Official:Forum rules/Banned add-ons (wiki) | Debug Log (wiki)
Links to : HOW-TO:Create Music Library (wiki) | HOW-TO:Create_Video_Library (wiki)  ||  Artwork (wiki) | Basic controls (wiki) | Import-export library (wiki) | Movie sets (wiki) | Movie universe (wiki) | NFO files (wiki) | Quick start guide (wiki)
Reply
#3
Linux, in my case LibeELEC,
https://github.com/xbmc/xbmc/blob/56f8d2...x.xml#L128
Reply
#4
Is vaapi enabled? as that's a conditional setting dependent on vaapi being on.
Reply
#5
<setting id="videoplayer.usevaapi" default="true">true</setting>
    <setting id="videoplayer.usevaapimpeg2">true</setting>
    <setting id="videoplayer.usevaapimpeg4" default="true">true</setting>
    <setting id="videoplayer.usevaapivc1" default="true">true</setting>
    <setting id="videoplayer.usevaapivp8" default="true">true</setting>
    <setting id="videoplayer.usevaapivp9" default="true">true</setting>
    <setting id="videoplayer.usevaapihevc">false</setting>
    <setting id="videoplayer.usevaapiav1" default="true">true</setting>
Reply
#6
I want to turn off usevaapihevc specifically.
Reply
#7
Perhaps it's because it's in the linux.xml settings file and not the main settings.xml file. You could one of the other settings in there to see if anything from linux.xml works.
Reply
#8
You might be on to something there. Is this expected behaviour? Is there a special syntax for linux only settings?

Cheers,
LongMan
Reply
#9
@jjd-uk and @Karellen,
The problem may other than i first realized. When i change the setting from the GUI, the change does not survive a reboot. I checked in guisettings.xml and the change is saved but it is not honoured on reboot.

https://paste.kodi.tv/kenebihize.kodi

Cheers,
LongMan

Edit: Setting is Use HEVC VAAPI
Reply
#10
I found the source of the problem. It is the Audio Profile addon. I enabled 'Include Video Player Settings' for the addon and it is overriding the gui settings and the advanced settings.

From one point of view that makes sense. If you install and configure the addon then you want to use those settings. Another point of view may be that advanced settings should override everything. Both points have merit.

The important part is that I understand the dynamics and now I can make it work for me. In addition, this info will be here in case someone else run into this problem in the future.

Thanks for looking into it. I appreciate your effort.

Cheers,
LongMan
Reply

Logout Mark Read Team Forum Stats Members Help
advancedsettings.xml override works for one setting but not another0