Kodi Community Forum

Full Version: Am I doing something - wrong :( ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I'm trying to use the advancedsettings.xml on my Android Shield TV.

Thing is, the 'clean library during library update' doesn't seem to be working?

Code:
<advancedsettings>
<videolibrary>
   <cleanonupdate>true</cleanonupdate> <!-- Also clean library during library update -->
   <importwatchedstate>true</importwatchedstate>
   <hideallitems>true</hideallitems> <!-- removes the "*All" items from the video library -->
   <hideemptyseries>true</hideemptyseries>  <!-- hide empty series in the video library -->
</videolibrary>
<video>
   <timeseekforward>15</timeseekforward> <!-- Skip back time 15 s -->
   <timeseekbackward>-15</timeseekbackward> <!-- Skip forward time 15 s -->
   <subsdelayrange>240</subsdelayrange> <!-- Subtitle offset adjustment range -->
</video>
<network>
   <buffermode>1</buffermode> <!-- Default is 1 -->
   <cachemembuffersize>52428800</cachemembuffersize> <!-- Default is 20971520 bytes or 20 MB -->
   <readbufferfactor>2.0</readbufferfactor> <!-- Default is 1.0 -->
</network>
<advancedsettings>

Am I doing something wrong here?
can you upload a debug log of you updating your library?
(2016-03-28, 20:47)helta Wrote: [ -> ]can you upload a debug log of you updating your library?

Thank you for suggesting to log Smile Guess the advancedsettings.xml is not loading?

Code:
22:06:47 T:1387174192  NOTICE: special://profile/ is mapped to: special://masterprofile/
22:06:47 T:1387174192  NOTICE: -----------------------------------------------------------------------
22:06:47 T:1387174192  NOTICE: Starting Kodi (16.1-RC2 Git:2016-03-28-be20e8a). Platform: Android ARM 32-bit
22:06:47 T:1387174192  NOTICE: Using Release Kodi x32 build
22:06:47 T:1387174192  NOTICE: Kodi compiled Mar 28 2016 by GCC 4.8.0 for Android ARM 32-bit API level 17 (API level 17)
22:06:47 T:1387174192  NOTICE: Running on NVIDIA SHIELD Android TV with Android 6.0.0 API level 23, kernel: Linux ARM 32-bit version 3.10.67+
22:06:47 T:1387174192  NOTICE: FFmpeg version: 2.8.6-kodi-2.8.6-Jarvis-16.0
22:06:47 T:1387174192  NOTICE: Host CPU: Cortex A57 Processor rev 1 (aarch64), 4 cores available
22:06:47 T:1387174192  NOTICE: Product: foster_e, Device: foster, Board: unknown - Manufacturer: NVIDIA, Brand: NVIDIA, Model: SHIELD Android TV, Hardware: foster_e
22:06:47 T:1387174192  NOTICE: External storage path = /storage/emulated/0; status = ok
22:06:47 T:1387174192  NOTICE: ARM Features: Neon enabled
22:06:47 T:1387174192  NOTICE: special://xbmc/ is mapped to: /data/user/0/org.xbmc.kodi/cache/apk/assets
22:06:47 T:1387174192  NOTICE: special://xbmcbin/ is mapped to: /data/user/0/org.xbmc.kodi/cache/apk/assets
22:06:47 T:1387174192  NOTICE: special://masterprofile/ is mapped to: /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/userdata
22:06:47 T:1387174192  NOTICE: special://home/ is mapped to: /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi
22:06:47 T:1387174192  NOTICE: special://temp/ is mapped to: /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/temp
22:06:47 T:1387174192  NOTICE: The executable running is:
22:06:47 T:1387174192  NOTICE: Local hostname: localhost
22:06:47 T:1387174192  NOTICE: Log File is located: /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/temp/kodi.log
22:06:47 T:1387174192  NOTICE: -----------------------------------------------------------------------
22:06:47 T:1387174192  NOTICE: load settings...
22:06:47 T:1387174192   DEBUG: CSettings: loaded settings definition from special://xbmc/system/settings/settings.xml
22:06:47 T:1387174192 WARNING: CSettingInt: unknown options filler "audiocdactions" of "audiocds.autoaction"
22:06:47 T:1387174192   DEBUG: CSettings: loaded settings definition from special://xbmc/system/settings/android.xml
22:06:47 T:1387174192   DEBUG: AESinkAUDIOTRACK - 44100 supported
22:06:47 T:1387174192   DEBUG: AESinkAUDIOTRACK - 48000 supported
22:06:47 T:1387174192   DEBUG: AESinkAUDIOTRACK - 96000 supported
22:06:47 T:1387174192   DEBUG: AESinkAUDIOTRACK - 192000 supported
22:06:47 T:1387174192  NOTICE: Found 1 Lists of Devices
22:06:47 T:1387174192  NOTICE: Enumerated AUDIOTRACK devices:
22:06:47 T:1387174192  NOTICE:     Device 1
22:06:47 T:1387174192  NOTICE:         m_deviceName      : AudioTrack
22:06:47 T:1387174192  NOTICE:         m_displayName     : android
22:06:47 T:1387174192  NOTICE:         m_displayNameExtra: audiotrack
22:06:47 T:1387174192  NOTICE:         m_deviceType      : AE_DEVTYPE_HDMI
22:06:47 T:1387174192  NOTICE:         m_channels        : FL,FR,FC,LFE,BL,BR,SL,SR
22:06:47 T:1387174192  NOTICE:         m_sampleRates     : 48000,44100,48000,96000,192000
22:06:47 T:1387174192  NOTICE:         m_dataFormats     : AE_FMT_S16LE,AE_FMT_AC3,AE_FMT_DTS
22:06:47 T:1387174192   DEBUG: CSkinSettings: no <skinsettings> tag found
22:06:47 T:1387174192  NOTICE: No settings file to load (special://xbmc/system/advancedsettings.xml)
22:06:47 T:1387174192   ERROR: Error loading special://profile/advancedsettings.xml, Line 0
                                            Error reading Element value.
There is no '/' in your closing tag in the advancedsettings.xml you posted.

It should be
PHP Code:
</advancedsettings
Thread moved to Android
(2016-03-28, 21:27)black_eagle Wrote: [ -> ]There is no '/' in your closing tag in the advancedsettings.xml you posted.

It should be
PHP Code:
</advancedsettings

Bless your soul Smile That did the trick! Thank you. While I'm still here, Yahoo weather seems to have stopped working. Just shows as 'busy' ?

Code:
23:37:58 T:1386060080   DEBUG: ADDON: cpluff: 'Plug-in weather.yahoo has been installed.'

23:37:59 T:1410328880   DEBUG: CPythonInvoker(10, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/weather.yahoo/default.py): start processing

23:38:02 T:1410328880   DEBUG: CPythonInvoker(10, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/weather.yahoo/default.py): the source file to load is "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/weather.yahoo/default.py"
23:38:02 T:1410328880   DEBUG: CPythonInvoker(10, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/weather.yahoo/default.py): setting the Python path to /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/weather.yahoo:/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.module.simplejson/lib:/:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.6/lib/python26.zip:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.6/lib/python2.6:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.6/lib/python2.6/plat-linux3:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.6/lib/python2.6/lib-tk:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.6/lib/python2.6/lib-old:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.6/lib/python2.6/lib-dynload
23:38:02 T:1410328880   DEBUG: CPythonInvoker(10, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/weather.yahoo/default.py): entering source directory /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/weather.yahoo
23:38:02 T:1410328880   DEBUG: CPythonInvoker(10, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/weather.yahoo/default.py): instantiating addon using automatically obtained id of "weather.yahoo" dependent on version 2.19.0 of the xbmc.python api

23:38:02 T:1410328880   DEBUG: weather.yahoo: version 3.0.9 started: ['/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/weather.yahoo/default.py', '1']
23:38:02 T:1410328880   DEBUG: weather.yahoo: weather location: 1967057

23:38:14 T:1410328880   DEBUG: weather.yahoo: weather download failed
Quote:While I'm still here, Yahoo weather seems to have stopped working. Just shows as 'busy' ?
How to fix is provided in post #165 in the weather addons support/yahoo! thread of forums.
(2016-03-28, 23:32)OTinley Wrote: [ -> ]
Quote:While I'm still here, Yahoo weather seems to have stopped working. Just shows as 'busy' ?
How to fix is provided in post #165 in the weather addons support/yahoo! thread of forums.

Thank you Smile All is well now.
(2016-03-28, 21:27)black_eagle Wrote: [ -> ]There is no '/' in your closing tag in the advancedsettings.xml you posted.

It should be
PHP Code:
</advancedsettings

Would there be a way I can initiate the Artwork downloader to download Artwork right after the library update?