Kodi Community Forum

Full Version: Advanced settings audio latency ignored
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Debug log: http://xbmclogs.com/psljxog3c

My advancedsettings.xml:

Code:
<advancedsettings>
  <video>
   <latency>250</latency>
  </video>
</advancedsettings>

Audio is not delayed, those settings has no effect. File placed in kodi userdata folder.

Source (it should work):

(2016-03-22, 11:47)fritsch Wrote: [ -> ]See: http://kodi.wiki/view/Advancedsettings.xml
Code:
<advancedsettings>
  <video>
   <latency>250</latency>
  </video>
</advancedsettings>

The link you gave forces a delay of "0" which is the default - so no wondering that it does _not_ work.

http://forum.kodi.tv/showthread.php?tid=264826

Any thoughts why it's ignored?
Take a closer look into http://kodi.wiki/view/Advancedsettings.xml and compare with what you did. You will notice that your advanced settings is wrong.
See if this works

Code:
<advancedsettings>
  <video>
    <audiodelayrange>.025000</audiodelayrange>
  </video>
</advancedsettings>
Sorry,

Maybe I'm dumb, can you clarify? Also, audiodelayrange has no effect too (this is what I've tried first)

As you can see, I used fritsch's solution. What's wrong here?
Bump... what's going on?

<delay> ?

I want it with no matter what refresh rate is, so is it valid?

Code:
<advancedsettings>
  <video>
      <latency>
          <delay>250</delay>
     </latency>
  </video>
</advancedsettings>
Or I also need <refresh> tag?
(2016-04-22, 08:28)giaur Wrote: [ -> ]
Code:
<advancedsettings>
  <video>
      <latency>
          <delay>250</delay>
     </latency>
  </video>
</advancedsettings>

That look ok. Does it not work?
Yes it works. Previous fritsch's post misleaded me, I assumed it must be valid syntax