Trying to create n .xml file
#1
Hi, I'm trying to create an .xml file to adjust subtitles beyond 10 secs. I've created an .xml file, and have put the following data in it:

<?xml version="1.0"?>

<advancedsettings>
<subsdelayrange>30</subsdelayrange>
</advancedsettings>

I've saved this file into user/appdata/roaming/xbmc/userdata, and have just dropped it in there alongside a few others I can see.

The problem I have is that it doesn't work, so I suspect I've written the instructions up wrong, but am unclear as to the right way to do it. Can anyone help? Thanks very much.
Reply
#2
It's missing the video tag.

Code:
<advancedsettings>
  <video>
    <subsdelayrange>30</subsdelayrange>
  </video>
</advancedsettings>

Check xbmc.log if it's properly loaded/parsed.
Always read the online manual (wiki), FAQ (wiki) and search the forum before posting.
Do not PM or e-mail Team-Kodi members directly asking for support. Read/follow the forum rules (wiki).
Please read the pages on troubleshooting (wiki) and bug reporting (wiki) before reporting issues.
Reply
#3
Thumbs Up 
Thanks for that. It still didn't work, so I checked the log and it said 'no advanced settings xml found', at which point I realised that I hadn't saved the file as advancedsettings. Once I changed that, it's worked perfectly. Thanks very much for your help.
Reply

Logout Mark Read Team Forum Stats Members Help
Trying to create n .xml file0