• 1
  • 3
  • 4
  • 5(current)
  • 6
  • 7
  • 11
Release Library Data Provider
#61
If you have 0.9 (the latest release as of this morning) that problem should be fixed. The patch was:

https://github.com/SumnerH/service.libra...d666d4c869

The key lines for this error are in library.py, somewhere around line 193ish:
Code:
+            if not shows.has_key('result') or not shows['result'].has_key('tvshows'):
+                return None
(without the + at front)

If you have the most recent code with these lines (and restarted Kodi after installing/editing it) and are still seeing the error, please let me know so I can figure out what's doing on.

I'm a little suspicious about the KeyError looking like a tuple, so I'm going to stare at this for a while now.
Reply
#62
If you are seeing this, can you edit those lines to be (first 2 lines are unchanged, as is the last comment line--it's just adding the "try" line and the entire 3-line "except" clause and indenting the "fav_unwatched = " line a bit more):


(Ignore the leading period on the first line, it's needed to get the indentation proper on the other lines but shouldn't be added to the file)
Code:
.
            if not shows.has_key('result') or not shows['result'].has_key('tvshows'):
                return None
            try:
                fav_unwatched = [ show for show in shows['result']['tvshows'] if show['title'] in
                                  set([ fav['title'] for fav in favs['result']['favourites'] if fav['type'] == 'window']) ]
            except KeyError:
                print >> sys.stderr, "Problem looking up tvshows", `shows`, `favs`
                return None

            # Skeleton return data, to be built out below...

This will:
a) Hide the error for now; and
b) Print a line saying "Problem looking up tvshows" into the kodi.log--if someone could post one of those lines it'd be a help.
Reply
#63
I will try this tomorrow but here is the kodi.log i got....

################################################################################
# ... output of cat /storage/.kodi/temp/kodi.log
# OpenELEC release: RPi2.arm-5.0.6
#
################################################################################
01:00:08 T:1970139680 NOTICE: special://profile/ is mapped to: special://masterprofile/
01:00:08 T:1970139680 NOTICE: -----------------------------------------------------------------------
01:00:08 T:1970139680 NOTICE: Starting Kodi (14.2-RC1 Git:e7ba06f). Platform: Linux ARM 32-bit
01:00:08 T:1970139680 NOTICE: Using Release Kodi x32 build (version for Raspberry Pi)
01:00:08 T:1970139680 NOTICE: Kodi compiled Mar 13 2015 by GCC 4.9.2 for Linux ARM 32-bit version 3.18.9 (201225)
01:00:08 T:1970139680 NOTICE: Running on OpenELEC (official) - Version: 5.0.6, kernel: Linux ARM 32-bit version 3.18.9
01:00:08 T:1970139680 NOTICE: FFmpeg version: 2.4.6
01:00:08 T:1970139680 NOTICE: WARNING: unsupported ffmpeg version detected
01:00:08 T:1970139680 NOTICE: Host CPU: ARMv7 Processor rev 5 (v7l), 4 cores available
01:00:08 T:1970139680 NOTICE: ARM Features: Neon enabled
01:00:08 T:1970139680 NOTICE: special://xbmc/ is mapped to: /usr/share/kodi
01:00:08 T:1970139680 NOTICE: special://xbmcbin/ is mapped to: /usr/lib/kodi
01:00:08 T:1970139680 NOTICE: special://masterprofile/ is mapped to: /storage/.kodi/userdata
01:00:08 T:1970139680 NOTICE: special://home/ is mapped to: /storage/.kodi
01:00:08 T:1970139680 NOTICE: special://temp/ is mapped to: /storage/.kodi/temp
01:00:08 T:1970139680 NOTICE: The executable running is: /usr/lib/kodi/kodi.bin
01:00:08 T:1970139680 NOTICE: Local hostname: KLO-Player
01:00:08 T:1970139680 NOTICE: Log File is located: /storage/.kodi/temp/kodi.log
01:00:08 T:1970139680 NOTICE: -----------------------------------------------------------------------
01:00:08 T:1970139680 ERROR: DBus: Error org.freedesktop.DBus.Error.ServiceUnknown - The name org.freedesktop.UPower was not provided by any .service files
01:00:08 T:1970139680 NOTICE: load settings...
01:00:08 T:1970123840 NOTICE: Thread FDEventMonitor start, auto delete: false
01:00:08 T:1970139680 NOTICE: Found 1 Lists of Devices
01:00:08 T:1970139680 NOTICE: Enumerated PI devices:
01:00:08 T:1970139680 NOTICE: Device 1
01:00:08 T:1970139680 NOTICE: m_deviceName : HDMI
01:00:08 T:1970139680 NOTICE: m_displayName : HDMI
01:00:08 T:1970139680 NOTICE: m_displayNameExtra:
01:00:08 T:1970139680 NOTICE: m_deviceType : AE_DEVTYPE_HDMI
01:00:08 T:1970139680 NOTICE: m_channels : FL,FR
01:00:08 T:1970139680 NOTICE: m_sampleRates : 8000,11025,16000,22050,24000,32000,44100,48000,88200,96000,176400,192000
01:00:08 T:1970139680 NOTICE: m_dataFormats : AE_FMT_FLOAT,AE_FMT_S32NE,AE_FMT_S16NE,AE_FMT_S32LE,AE_FMT_S16LE,AE_FMT_FLOATP,AE_FMT_S32NEP,AE_FMT_S16NEP,AE_FMT_AC3,AE_FMT_DTS,AE_FMT_EAC3
01:00:08 T:1970139680 NOTICE: Device 2
01:00:08 T:1970139680 NOTICE: m_deviceName : Analogue
01:00:08 T:1970139680 NOTICE: m_displayName : Analogue
01:00:08 T:1970139680 NOTICE: m_displayNameExtra:
01:00:08 T:1970139680 NOTICE: m_deviceType : AE_DEVTYPE_PCM
01:00:08 T:1970139680 NOTICE: m_channels : FL,FR
01:00:08 T:1970139680 NOTICE: m_sampleRates : 48000
01:00:08 T:1970139680 NOTICE: m_dataFormats : AE_FMT_FLOAT,AE_FMT_S32LE,AE_FMT_S16LE,AE_FMT_FLOATP,AE_FMT_S32NEP,AE_FMT_S16NEP
01:00:08 T:1970139680 NOTICE: Device 3
01:00:08 T:1970139680 NOTICE: m_deviceName : Both
01:00:08 T:1970139680 NOTICE: m_displayName : HDMI and Analogue
01:00:08 T:1970139680 NOTICE: m_displayNameExtra:
01:00:08 T:1970139680 NOTICE: m_deviceType : AE_DEVTYPE_PCM
01:00:08 T:1970139680 NOTICE: m_channels : FL,FR
01:00:08 T:1970139680 NOTICE: m_sampleRates : 48000
01:00:08 T:1970139680 NOTICE: m_dataFormats : AE_FMT_FLOAT,AE_FMT_S32LE,AE_FMT_S16LE,AE_FMT_FLOATP,AE_FMT_S32NEP,AE_FMT_S16NEP
01:00:08 T:1970139680 NOTICE: Loaded settings file from special://xbmc/system/advancedsettings.xml
01:00:08 T:1970139680 NOTICE: Contents of special://xbmc/system/advancedsettings.xml are...
<?xml version="1.0" encoding="UTF-8" ?>
<advancedsettings>
<showexitbutton>false</showexitbutton>
<fanartres>720</fanartres>
<imageres>540</imageres>
<video>
<busydialogdelayms>750</busydialogdelayms>
</video>
<samba>
<clienttimeout>30</clienttimeout>
</samba>
<network>
<readbufferfactor>4.0</readbufferfactor>
</network>
</advancedsettings>
01:00:08 T:1970139680 NOTICE: Loaded settings file from special://profile/advancedsettings.xml
01:00:08 T:1970139680 NOTICE: Contents of special://profile/advancedsettings.xml are...
<!-- zerocache -->
<advancedsettings>
<network>
<cachemembuffersize>0</cachemembuffersize>
<curlclienttimeout>45</curlclienttimeout>
</network>
<gui>
<algorithmdirtyregions>3</algorithmdirtyregions>
<nofliptimeout>0</nofliptimeout>
</gui>
<videoscanner>
<ignoreerrors>true</ignoreerrors>
</videoscanner>
</advancedsettings>
01:00:08 T:1970139680 NOTICE: Default DVD Player: dvdplayer
01:00:08 T:1970139680 NOTICE: Default Video Player: dvdplayer
01:00:08 T:1970139680 NOTICE: Default Audio Player: paplayer
01:00:08 T:1970139680 NOTICE: Disabled debug logging due to GUI setting. Level 0.
01:00:08 T:1970139680 NOTICE: Log level changed to "LOG_LEVEL_NORMAL"
01:00:08 T:1970139680 NOTICE: CMediaSourceSettings: loading media sources from special://masterprofile/sources.xml
01:00:08 T:1970139680 NOTICE: Loading player core factory settings from special://xbmc/system/playercorefactory.xml.
01:00:08 T:1970139680 NOTICE: Loaded playercorefactory configuration
01:00:08 T:1970139680 NOTICE: Loading player core factory settings from special://masterprofile/playercorefactory.xml.
01:00:08 T:1970139680 NOTICE: special://masterprofile/playercorefactory.xml does not exist. Skipping.
01:00:09 T:1959785536 NOTICE: Thread ActiveAE start, auto delete: false
01:00:09 T:1949299776 NOTICE: Thread AESink start, auto delete: false
01:00:09 T:1888482368 NOTICE: Thread CRBPWorker start, auto delete: false
01:00:09 T:1970139680 NOTICE: Running database version Addons16
01:00:09 T:1970139680 NOTICE: ADDONS: Using repository repository.xbmc.org
01:00:09 T:1970139680 NOTICE: ADDONS: Using repository repository.xunitytalk
01:00:09 T:1970139680 NOTICE: ADDONS: Using repository repository.lambda
01:00:09 T:1970139680 NOTICE: ADDONS: Using repository repository.openelec.tv
01:00:09 T:1970139680 NOTICE: ADDONS: Using repository repository.xbmchub
01:00:09 T:1970139680 NOTICE: Register - new cec device registered on cec->RPI: CEC Adapter (2708:1001)
01:00:09 T:1877996608 NOTICE: Thread PeripBusUSBUdev start, auto delete: false
01:00:09 T:1970139680 NOTICE: Raspberry PI firmware version: Mar 10 2015 15:33:55
Copyright © 2012 Broadcom
version 015c58030bfa095c209a59c0c19e02d6705a2c24 (clean) (release)
01:00:09 T:1970139680 NOTICE: ARM mem: 752MB GPU mem: 256MB MPG2:0 WVC1:0
01:00:09 T:1970139680 NOTICE: cacheMemBufferSize: 0MB
01:00:09 T:1970139680 NOTICE: Config:
arm_control=0xa5800010
arm_freq=900
avoid_fix_ts=1
config_hdmi_boost=2
disable_commandline_tags=2
disable_l2cache=1
emmc_pll_core=1
force_pwm_open=1
framebuffer_ignore_alpha=1
framebuffer_swap=1
hdmi_channel_map=8
hdmi_force_cec_address=65535
hdmi_ignore_cec_init=1
ignore_lcd=1
over_voltage_avs=0x1b774
pause_burst_frames=1
program_serial_random=1
sdram_freq=450
temp_limit=85
01:00:09 T:1970139680 NOTICE: Config:
device_tree=-
01:00:09 T:1970139680 NOTICE: InitWindowSystem: Using EGL Implementation: raspberrypi
01:00:09 T:1970139680 NOTICE: Found resolution 640 x 480 for display 0 with 640 x 480 @ 60.000000 Hz
01:00:09 T:1970139680 NOTICE: Found resolution 640 x 480 for display 0 with 640 x 480 @ 59.940063 Hz
01:00:09 T:1970139680 NOTICE: Found resolution 720 x 480 for display 0 with 720 x 480 @ 60.000000 Hz
01:00:09 T:1970139680 NOTICE: Found resolution 720 x 480 for display 0 with 720 x 480 @ 59.940063 Hz
01:00:09 T:1970139680 NOTICE: Found resolution 1280 x 720 for display 0 with 1280 x 720 @ 60.000000 Hz
01:00:09 T:1970139680 NOTICE: Found resolution 1280 x 720 for display 0 with 1280 x 720 @ 59.940063 Hz
01:00:09 T:1970139680 NOTICE: Found resolution 1920 x 1080 for display 0 with 1920 x 1080 @ 60.000000 Hz
01:00:09 T:1970139680 NOTICE: Found resolution 1920 x 1080 for display 0 with 1920 x 1080 @ 59.940063 Hz
01:00:09 T:1970139680 NOTICE: Found resolution 720 x 576 for display 0 with 720 x 576 @ 50.000000 Hz
01:00:09 T:1970139680 NOTICE: Found resolution 1280 x 720 for display 0 with 1280 x 720 @ 50.000000 Hz
01:00:09 T:1970139680 NOTICE: Found resolution 1920 x 1080 for display 0 with 1920 x 1080 @ 50.000000 Hz
01:00:09 T:1970139680 NOTICE: Found resolution 1920 x 1080 for display 0 with 1920 x 1080 @ 24.000000 Hz
01:00:09 T:1970139680 NOTICE: Found resolution 1920 x 1080 for display 0 with 1920 x 1080 @ 23.976025 Hz
01:00:09 T:1970139680 NOTICE: Found resolution 1920 x 1080 for display 0 with 1920 x 1080 @ 25.000000 Hz
01:00:09 T:1970139680 NOTICE: Found resolution 1920 x 1080 for display 0 with 1920 x 1080 @ 30.000000 Hz
01:00:09 T:1970139680 NOTICE: Found resolution 1920 x 1080 for display 0 with 1920 x 1080 @ 29.970032 Hz
01:00:09 T:1970139680 NOTICE: Found resolution 800 x 600 for display 0 with 800 x 600 @ 60.000000 Hz
01:00:09 T:1970139680 NOTICE: Found resolution 800 x 600 for display 0 with 800 x 600 @ 59.940063 Hz
01:00:09 T:1970139680 NOTICE: Found resolution 1024 x 768 for display 0 with 1024 x 768 @ 60.000000 Hz
01:00:09 T:1970139680 NOTICE: Found resolution 1024 x 768 for display 0 with 1024 x 768 @ 59.940063 Hz
01:00:09 T:1970139680 NOTICE: Found resolution 1280 x 1024 for display 0 with 1280 x 1024 @ 60.000000 Hz
01:00:09 T:1970139680 NOTICE: Found resolution 1280 x 1024 for display 0 with 1280 x 1024 @ 59.940063 Hz
01:00:09 T:1970139680 NOTICE: Found resolution 1360 x 768 for display 0 with 1360 x 768 @ 60.000000 Hz
01:00:09 T:1970139680 NOTICE: Found resolution 1360 x 768 for display 0 with 1360 x 768 @ 59.940063 Hz
01:00:09 T:1970139680 NOTICE: Found ([email protected]) at 22, setting to RES_DESKTOP at 16
01:00:09 T:1970139680 NOTICE: Checking resolution 16
01:00:09 T:1970139680 NOTICE: GL_VENDOR = Broadcom
01:00:09 T:1970139680 NOTICE: GL_RENDERER = VideoCore IV HW
01:00:09 T:1970139680 NOTICE: GL_VERSION = OpenGL ES 2.0
01:00:09 T:1970139680 NOTICE: GL_SHADING_LANGUAGE_VERSION = OpenGL ES GLSL ES 1.00
01:00:09 T:1970139680 NOTICE: GL_EXTENSIONS = GL_OES_compressed_ETC1_RGB8_texture GL_OES_compressed_paletted_texture GL_OES_texture_npot GL_OES_depth24 GL_OES_vertex_half_float GL_OES_EGL_image GL_OES_EGL_image_external GL_EXT_discard_framebuffer GL_OES_rgb8_rgba8 GL_OES_depth32 GL_OES_mapbuffer GL_EXT_texture_format_BGRA8888 GL_APPLE_rgb_422 GL_EXT_debug_marker
23:26:15 T:1970139680 NOTICE: Running database version Addons16
23:26:15 T:1970139680 NOTICE: Running database version ViewModes6
23:26:15 T:1970139680 NOTICE: Running database version Textures13
23:26:16 T:1970139680 NOTICE: Running database version MyMusic48
23:26:16 T:1970139680 NOTICE: Running database version MyVideos90
23:26:16 T:1970139680 NOTICE: Running database version TV26
23:26:16 T:1970139680 NOTICE: Running database version Epg8
23:26:16 T:1970139680 NOTICE: start dvd mediatype detection
23:26:16 T:1879336000 NOTICE: Thread DetectDVDMedia start, auto delete: false
23:26:17 T:1970139680 WARNING: JSONRPC: Could not parse type "PVR.Details.Channel"
23:26:17 T:1970139680 WARNING: JSONRPC: Could not parse type "PVR.Details.ChannelGroup.Extended"
23:26:17 T:1970139680 WARNING: JSONRPC: Could not parse type "GUI.Property.Value"
23:26:17 T:1970139680 WARNING: JSONRPC: Could not parse type "Setting.Details.SettingList"
23:26:17 T:1866540096 NOTICE: Thread LanguageInvoker start, auto delete: false
23:26:17 T:1970139680 NOTICE: Previous line repeats 6 times.
23:26:17 T:1970139680 NOTICE: initialize done
23:26:17 T:1970139680 NOTICE: Running the application...
23:26:18 T:1806763072 NOTICE: Thread JobWorker start, auto delete: true
23:26:18 T:1866540096 NOTICE: -->Python Interpreter Initialized<--
23:26:18 T:1970139680 NOTICE: starting zeroconf publishing
23:26:18 T:1970139680 NOTICE: Webserver: Starting...
23:26:18 T:1970139680 NOTICE: WebServer: Started the webserver
23:26:18 T:1970139680 NOTICE: ES: Starting event server
23:26:18 T:1764820032 NOTICE: Thread EventServer start, auto delete: false
23:26:18 T:1764820032 NOTICE: ES: Starting UDP Event server on 0.0.0.0:9777
23:26:18 T:1764820032 NOTICE: UDP: Listening on port 9777
23:26:18 T:1789985856 NOTICE: Thread JobWorker start, auto delete: true
23:26:18 T:1756431424 NOTICE: Thread TCPServer start, auto delete: false
23:26:18 T:1739654208 NOTICE: Thread JobWorker start, auto delete: true
23:26:18 T:1731265600 NOTICE: Thread AirPlayServer start, auto delete: false
23:26:18 T:1823540288 NOTICE: -->Python Interpreter Initialized<--
23:26:19 T:1840317504 NOTICE: Previous line repeats 5 times.
23:26:19 T:1840317504 NOTICE: ## OpenELEC Addon ## 0.5.8
23:26:20 T:1823540288 NOTICE: StorageServer Module loaded RUN
23:26:20 T:1831928896 NOTICE: Thread LanguageInvoker start, auto delete: false
23:26:20 T:1823540288 NOTICE: StorageClient-2.5.4 Starting server
23:26:21 T:1831928896 NOTICE: -->Python Interpreter Initialized<--
23:26:22 T:1848706112 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
- NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
Error Type: <type 'exceptions.IndentationError'>
Error Contents: ('unexpected indent', ('/storage/.kodi/addons/service.library.data.provider/library.py', 198, 3, "\t\t\tfav_unwatched = [ show for show in shows['result']['tvshows'] if show['title'] in \n"))
Traceback (most recent call last):
File "/storage/.kodi/addons/service.library.data.provider/service.py", line 46, in <module>
import library
IndentationError: ('unexpected indent', ('/storage/.kodi/addons/service.library.data.provider/library.py', 198, 3, "\t\t\tfav_unwatched = [ show for show in shows['result']['tvshows'] if show['title'] in \n"))
-->End of Python script error report<--
23:26:23 T:1815151680 NOTICE: http://tribeca.tvaddons.ag/tools/notifications/news.txt
23:26:23 T:1815151680 NOTICE: ['notifications-on-startup', False, 'DoFromService', True]
23:26:23 T:1815151680 NOTICE: ['OLD', 't', '2', 'We just wanted to remind you that there\xe2\x80\x99s a new and improved version of XBMC\navailable which we highly recommend upgrading to as soon as possible. It\noffers enhanced hardware decoding along with a ton of other fixes. It\xe2\x80\x99s not\neven called XBMC anymore; it\xe2\x80\x99s now called [COLOR white]Kodi[/COLOR], need we say more?\n\nWe\xe2\x80\x99ve put together some very simple, newbie friendly guides which will walk\nyou through every step of the way. Please visit the following page for\nmore information: [COLOR white]www.tvaddons.ag/update-kodi[/COLOR]\n\nThank you very much for your support. We hope you continue to enjoy our\naddons far into the future, it\xe2\x80\x99s only going to get better from here!']
23:26:23 T:1815151680 NOTICE: ['NEW', 't', '2', 'We just wanted to remind you that there\xe2\x80\x99s a new and improved version of XBMC\navailable which we highly recommend upgrading to as soon as possible. It\noffers enhanced hardware decoding along with a ton of other fixes. It\xe2\x80\x99s not\neven called XBMC anymore; it\xe2\x80\x99s now called [COLOR white]Kodi[/COLOR], need we say more?\n\nWe\xe2\x80\x99ve put together some very simple, newbie friendly guides which will walk\nyou through every step of the way. Please visit the following page for\nmore information: [COLOR white]www.tvaddons.ag/update-kodi[/COLOR]\n\nThank you very much for your support. We hope you continue to enjoy our\naddons far into the future, it\xe2\x80\x99s only going to get better from here!']
23:26:23 T:1831928896 NOTICE: CommonFunctions-2.5.1
23:50:15 T:1739654208 NOTICE: Thread JobWorker start, auto delete: true
23:50:17 T:1681912896 NOTICE: Previous line repeats 3 times.
23:50:17 T:1681912896 NOTICE: Thread LanguageInvoker start, auto delete: false
23:50:18 T:1681912896 NOTICE: -->Python Interpreter Initialized<--
23:50:19 T:1681912896 NOTICE: CommonFunctions-2.5.1
23:50:19 T:1657795648 NOTICE: Thread BackgroundLoader start, auto delete: false
23:50:21 T:1681912896 NOTICE: Thread LanguageInvoker start, auto delete: false
23:50:21 T:1681912896 NOTICE: -->Python Interpreter Initialized<--
23:50:22 T:1681912896 NOTICE: CommonFunctions-2.5.1
23:50:22 T:1657795648 NOTICE: Thread BackgroundLoader start, auto delete: false
23:50:30 T:1681912896 NOTICE: Thread LanguageInvoker start, auto delete: false
23:50:30 T:1681912896 NOTICE: -->Python Interpreter Initialized<--
23:50:31 T:1681912896 NOTICE: CommonFunctions-2.5.1
23:50:32 T:1681912896 WARNING: GetDurationFromMinuteString <runtime> should be in minutes. Interpreting 'None' as 0 minutes
23:50:32 T:1657795648 WARNING: Previous line repeats 9 times.
23:50:32 T:1657795648 NOTICE: Thread BackgroundLoader start, auto delete: false
23:50:36 T:1681912896 NOTICE: Previous line repeats 1 times.
23:50:36 T:1681912896 NOTICE: Thread LanguageInvoker start, auto delete: false
23:50:37 T:1739654208 WARNING: COMXImageFile::GetCodingType progressive images not supported by decoder
23:50:37 T:1739654208 ERROR: COMXImageFile::ReadFile https://walter.trakt.us/images/shows/000...b2a277.jpg GetCodingType=0x7fffffff
23:50:37 T:1681912896 NOTICE: -->Python Interpreter Initialized<--
23:50:37 T:1739654208 WARNING: COMXImageFile::GetCodingType progressive images not supported by decoder
23:50:37 T:1739654208 ERROR: COMXImageFile::ReadFile https://walter.trakt.us/images/shows/000...b2a277.jpg GetCodingType=0x7fffffff
23:50:37 T:1739654208 NOTICE: LoadJpeg: unable to load https://walter.trakt.us/images/shows/000...b2a277.jpg
23:50:37 T:1690301504 WARNING: COMXImageFile::GetCodingType progressive images not supported by decoder
23:50:37 T:1690301504 ERROR: COMXImageFile::ReadFile https://walter.trakt.us/images/shows/000...159c81.jpg GetCodingType=0x7fffffff
23:50:38 T:1690301504 WARNING: COMXImageFile::GetCodingType progressive images not supported by decoder
23:50:38 T:1690301504 ERROR: COMXImageFile::ReadFile https://walter.trakt.us/images/shows/000...159c81.jpg GetCodingType=0x7fffffff
23:50:38 T:1690301504 NOTICE: LoadJpeg: unable to load https://walter.trakt.us/images/shows/000...159c81.jpg
23:50:38 T:1789985856 WARNING: COMXImageFile::GetCodingType progressive images not supported by decoder
23:50:38 T:1789985856 ERROR: COMXImageFile::ReadFile https://walter.trakt.us/images/shows/000...b01ee7.jpg GetCodingType=0x7fffffff
23:50:38 T:1681912896 NOTICE: CommonFunctions-2.5.1
23:50:39 T:1789985856 WARNING: COMXImageFile::GetCodingType progressive images not supported by decoder
23:50:39 T:1789985856 ERROR: COMXImageFile::ReadFile https://walter.trakt.us/images/shows/000...b01ee7.jpg GetCodingType=0x7fffffff
23:50:39 T:1789985856 NOTICE: LoadJpeg: unable to load https://walter.trakt.us/images/shows/000...b01ee7.jpg
23:50:40 T:1657795648 NOTICE: Thread BackgroundLoader start, auto delete: false
23:50:46 T:1637327936 NOTICE: Thread LanguageInvoker start, auto delete: false
23:50:46 T:1637327936 NOTICE: -->Python Interpreter Initialized<--
23:50:47 T:1637327936 NOTICE: CommonFunctions-2.5.1
23:50:48 T:1637327936 NOTICE: metahandler: Initializing MetaHandlers version: 2.7.0
23:50:48 T:1637327936 NOTICE: metahandler: Loading sqlite3 as DB engine version: 3.8.8.3
23:50:48 T:1637327936 NOTICE: metahandler: Looking up TMDB config cache values
23:50:48 T:1637327936 NOTICE: metahandler: Cache still valid, setting values
23:50:48 T:1637327936 NOTICE: metahandler: No SQLite rows requiring update
23:50:49 T:1657795648 NOTICE: Thread BackgroundLoader start, auto delete: false
23:50:54 T:1637327936 NOTICE: Previous line repeats 1 times.
23:50:54 T:1637327936 NOTICE: Thread LanguageInvoker start, auto delete: false
23:50:54 T:1637327936 NOTICE: -->Python Interpreter Initialized<--
23:50:55 T:1637327936 NOTICE: CommonFunctions-2.5.1
23:50:56 T:1657795648 NOTICE: Thread LanguageInvoker start, auto delete: false
23:50:56 T:1657795648 NOTICE: -->Python Interpreter Initialized<--
23:50:57 T:1657795648 NOTICE: CommonFunctions-2.5.1
23:51:14 T:1970139680 NOTICE: DVDPlayer: Opening: https://cs634303.vk.me/u286637479/videos...EY_bj9SbFI
23:51:14 T:1970139680 WARNING: CDVDMessageQueue(player):Tongueut MSGQ_NOT_INITIALIZED
23:51:14 T:1637327936 NOTICE: Thread CMMALRenderer start, auto delete: false
23:51:14 T:1579152448 NOTICE: Thread DVDPlayer start, auto delete: false
23:51:14 T:1579152448 NOTICE: Creating InputStream
23:51:14 T:1579152448 WARNING: Close: failed to delete temporary file ""
23:51:15 T:1570763840 WARNING: Previous line repeats 1 times.
23:51:15 T:1570763840 NOTICE: Thread FileCache start, auto delete: false
23:51:15 T:1579152448 NOTICE: Creating Demuxer
23:51:19 T:1579152448 NOTICE: Opening stream: 0 source: 256
23:51:19 T:1579152448 NOTICE: Creating video thread
23:51:19 T:1579152448 NOTICE: Opening stream: 1 source: 256
23:51:19 T:1604318272 NOTICE: Thread OMXPlayerVideo start, auto delete: false
23:51:19 T:1579152448 NOTICE: Creating audio thread
23:51:19 T:1493406784 NOTICE: Thread OMXPlayerAudio start, auto delete: false
23:51:19 T:1579152448 NOTICE: OMXClock using audio as reference
23:51:21 T:1579152448 NOTICE: Opening stream: 0 source: 1024
23:51:21 T:1579152448 ERROR: OpenStream - Unable to create subtitle parser
23:51:33 T:1604318272 NOTICE: Display resolution DESKTOP : 1920x1080 (1920x1080) @ 60.00 - Full Screen (16)
23:53:23 T:1739654208 NOTICE: Thread JobWorker start, auto delete: true
23:53:23 T:1789985856 NOTICE: Thread LanguageInvoker start, auto delete: false
23:53:23 T:1789985856 NOTICE: -->Python Interpreter Initialized<--
23:53:32 T:1789985856 NOTICE: Thread LanguageInvoker start, auto delete: false
23:53:32 T:1789985856 NOTICE: -->Python Interpreter Initialized<--
23:53:33 T:1579152448 NOTICE: Opening stream: 0 source: 1025

################################################################################
# ... output of cat /storage/.kodi/temp/kodi.old.log
# OpenELEC release: RPi2.arm-5.0.6
#
################################################################################
01:00:07 T:1969963552 NOTICE: special://profile/ is mapped to: special://masterprofile/
01:00:07 T:1969963552 NOTICE: -----------------------------------------------------------------------
01:00:07 T:1969963552 NOTICE: Starting Kodi (14.2-RC1 Git:e7ba06f). Platform: Linux ARM 32-bit
01:00:07 T:1969963552 NOTICE: Using Release Kodi x32 build (version for Raspberry Pi)
01:00:07 T:1969963552 NOTICE: Kodi compiled Mar 13 2015 by GCC 4.9.2 for Linux ARM 32-bit version 3.18.9 (201225)
01:00:07 T:1969963552 NOTICE: Running on OpenELEC (official) - Version: 5.0.6, kernel: Linux ARM 32-bit version 3.18.9
01:00:07 T:1969963552 NOTICE: FFmpeg version: 2.4.6
01:00:07 T:1969963552 NOTICE: WARNING: unsupported ffmpeg version detected
01:00:07 T:1969963552 NOTICE: Host CPU: ARMv7 Processor rev 5 (v7l), 4 cores available
01:00:07 T:1969963552 NOTICE: ARM Features: Neon enabled
01:00:08 T:1969963552 NOTICE: special://xbmc/ is mapped to: /usr/share/kodi
01:00:08 T:1969963552 NOTICE: special://xbmcbin/ is mapped to: /usr/lib/kodi
01:00:08 T:1969963552 NOTICE: special://masterprofile/ is mapped to: /storage/.kodi/userdata
01:00:08 T:1969963552 NOTICE: special://home/ is mapped to: /storage/.kodi
01:00:08 T:1969963552 NOTICE: special://temp/ is mapped to: /storage/.kodi/temp
01:00:08 T:1969963552 NOTICE: The executable running is: /usr/lib/kodi/kodi.bin
01:00:08 T:1969963552 NOTICE: Local hostname: KLO-Player
01:00:08 T:1969963552 NOTICE: Log File is located: /storage/.kodi/temp/kodi.log
01:00:08 T:1969963552 NOTICE: -----------------------------------------------------------------------
01:00:08 T:1969963552 ERROR: DBus: Error org.freedesktop.DBus.Error.ServiceUnknown - The name org.freedesktop.UPower was not provided by any .service files
01:00:08 T:1969963552 NOTICE: load settings...
01:00:08 T:1969947712 NOTICE: Thread FDEventMonitor start, auto delete: false
01:00:08 T:1969963552 NOTICE: Found 1 Lists of Devices
01:00:08 T:1969963552 NOTICE: Enumerated PI devices:
01:00:08 T:1969963552 NOTICE: Device 1
01:00:08 T:1969963552 NOTICE: m_deviceName : HDMI
01:00:08 T:1969963552 NOTICE: m_displayName : HDMI
01:00:08 T:1969963552 NOTICE: m_displayNameExtra:
01:00:08 T:1969963552 NOTICE: m_deviceType : AE_DEVTYPE_HDMI
01:00:08 T:1969963552 NOTICE: m_channels : FL,FR
01:00:08 T:1969963552 NOTICE: m_sampleRates : 8000,11025,16000,22050,24000,32000,44100,48000,88200,96000,176400,192000
01:00:08 T:1969963552 NOTICE: m_dataFormats : AE_FMT_FLOAT,AE_FMT_S32NE,AE_FMT_S16NE,AE_FMT_S32LE,AE_FMT_S16LE,AE_FMT_FLOATP,AE_FMT_S32NEP,AE_FMT_S16NEP,AE_FMT_AC3,AE_FMT_DTS,AE_FMT_EAC3
01:00:08 T:1969963552 NOTICE: Device 2
01:00:08 T:1969963552 NOTICE: m_deviceName : Analogue
01:00:08 T:1969963552 NOTICE: m_displayName : Analogue
01:00:08 T:1969963552 NOTICE: m_displayNameExtra:
01:00:08 T:1969963552 NOTICE: m_deviceType : AE_DEVTYPE_PCM
01:00:08 T:1969963552 NOTICE: m_channels : FL,FR
01:00:08 T:1969963552 NOTICE: m_sampleRates : 48000
01:00:08 T:1969963552 NOTICE: m_dataFormats : AE_FMT_FLOAT,AE_FMT_S32LE,AE_FMT_S16LE,AE_FMT_FLOATP,AE_FMT_S32NEP,AE_FMT_S16NEP
01:00:08 T:1969963552 NOTICE: Device 3
01:00:08 T:1969963552 NOTICE: m_deviceName : Both
01:00:08 T:1969963552 NOTICE: m_displayName : HDMI and Analogue
01:00:08 T:1969963552 NOTICE: m_displayNameExtra:
01:00:08 T:1969963552 NOTICE: m_deviceType : AE_DEVTYPE_PCM
01:00:08 T:1969963552 NOTICE: m_channels : FL,FR
01:00:08 T:1969963552 NOTICE: m_sampleRates : 48000
01:00:08 T:1969963552 NOTICE: m_dataFormats : AE_FMT_FLOAT,AE_FMT_S32LE,AE_FMT_S16LE,AE_FMT_FLOATP,AE_FMT_S32NEP,AE_FMT_S16NEP
01:00:08 T:1969963552 NOTICE: Loaded settings file from special://xbmc/system/advancedsettings.xml
01:00:08 T:1969963552 NOTICE: Contents of special://xbmc/system/advancedsettings.xml are...
<?xml version="1.0" encoding="UTF-8" ?>
<advancedsettings>
<showexitbutton>false</showexitbutton>
<fanartres>720</fanartres>
<imageres>540</imageres>
<video>
<busydialogdelayms>750</busydialogdelayms>
</video>
<samba>
<clienttimeout>30</clienttimeout>
</samba>
<network>
<readbufferfactor>4.0</readbufferfactor>
</network>
</advancedsettings>
01:00:08 T:1969963552 NOTICE: Loaded settings file from special://profile/advancedsettings.xml
01:00:08 T:1969963552 NOTICE: Contents of special://profile/advancedsettings.xml are...
<!-- zerocache -->
<advancedsettings>
<network>
<cachemembuffersize>0</cachemembuffersize>
<curlclienttimeout>45</curlclienttimeout>
</network>
<gui>
<algorithmdirtyregions>3</algorithmdirtyregions>
<nofliptimeout>0</nofliptimeout>
</gui>
<videoscanner>
<ignoreerrors>true</ignoreerrors>
</videoscanner>
</advancedsettings>
01:00:08 T:1969963552 NOTICE: Default DVD Player: dvdplayer
01:00:08 T:1969963552 NOTICE: Default Video Player: dvdplayer
01:00:08 T:1969963552 NOTICE: Default Audio Player: paplayer
01:00:08 T:1969963552 NOTICE: Disabled debug logging due to GUI setting. Level 0.
01:00:08 T:1969963552 NOTICE: Log level changed to "LOG_LEVEL_NORMAL"
01:00:08 T:1969963552 NOTICE: CMediaSourceSettings: loading media sources from special://masterprofile/sources.xml
01:00:08 T:1969963552 NOTICE: Loading player core factory settings from special://xbmc/system/playercorefactory.xml.
01:00:08 T:1969963552 NOTICE: Loaded playercorefactory configuration
01:00:08 T:1969963552 NOTICE: Loading player core factory settings from special://masterprofile/playercorefactory.xml.
01:00:08 T:1969963552 NOTICE: special://masterprofile/playercorefactory.xml does not exist. Skipping.
01:00:08 T:1959785536 NOTICE: Thread ActiveAE start, auto delete: false
01:00:08 T:1949299776 NOTICE: Thread AESink start, auto delete: false
01:00:08 T:1888482368 NOTICE: Thread CRBPWorker start, auto delete: false
01:00:08 T:1969963552 NOTICE: Running database version Addons16
01:00:08 T:1969963552 NOTICE: ADDONS: Using repository repository.xbmc.org
01:00:08 T:1969963552 NOTICE: ADDONS: Using repository repository.xunitytalk
01:00:08 T:1969963552 NOTICE: ADDONS: Using repository repository.lambda
01:00:08 T:1969963552 NOTICE: ADDONS: Using repository repository.openelec.tv
01:00:08 T:1969963552 NOTICE: ADDONS: Using repository repository.xbmchub
01:00:08 T:1969963552 NOTICE: Register - new cec device registered on cec->RPI: CEC Adapter (2708:1001)
01:00:09 T:1877996608 NOTICE: Thread PeripBusUSBUdev start, auto delete: false
01:00:09 T:1969963552 NOTICE: Raspberry PI firmware version: Mar 10 2015 15:33:55
Copyright © 2012 Broadcom
version 015c58030bfa095c209a59c0c19e02d6705a2c24 (clean) (release)
01:00:09 T:1969963552 NOTICE: ARM mem: 752MB GPU mem: 256MB MPG2:0 WVC1:0
01:00:09 T:1969963552 NOTICE: cacheMemBufferSize: 0MB
01:00:09 T:1969963552 NOTICE: Config:
arm_control=0xa5800010
arm_freq=900
avoid_fix_ts=1
config_hdmi_boost=2
disable_commandline_tags=2
disable_l2cache=1
emmc_pll_core=1
force_pwm_open=1
framebuffer_ignore_alpha=1
framebuffer_swap=1
hdmi_channel_map=8
hdmi_force_cec_address=65535
hdmi_ignore_cec_init=1
ignore_lcd=1
over_voltage_avs=0x1b774
pause_burst_frames=1
program_serial_random=1
sdram_freq=450
temp_limit=85
01:00:09 T:1969963552 NOTICE: Config:
device_tree=-
01:00:09 T:1969963552 NOTICE: InitWindowSystem: Using EGL Implementation: raspberrypi
01:00:09 T:1969963552 NOTICE: Found resolution 640 x 480 for display 0 with 640 x 480 @ 60.000000 Hz
01:00:09 T:1969963552 NOTICE: Found resolution 640 x 480 for display 0 with 640 x 480 @ 59.940063 Hz
01:00:09 T:1969963552 NOTICE: Found resolution 720 x 480 for display 0 with 720 x 480 @ 60.000000 Hz
01:00:09 T:1969963552 NOTICE: Found resolution 720 x 480 for display 0 with 720 x 480 @ 59.940063 Hz
01:00:09 T:1969963552 NOTICE: Found resolution 1280 x 720 for display 0 with 1280 x 720 @ 60.000000 Hz
01:00:09 T:1969963552 NOTICE: Found resolution 1280 x 720 for display 0 with 1280 x 720 @ 59.940063 Hz
01:00:09 T:1969963552 NOTICE: Found resolution 1920 x 1080 for display 0 with 1920 x 1080 @ 60.000000 Hz
01:00:09 T:1969963552 NOTICE: Found resolution 1920 x 1080 for display 0 with 1920 x 1080 @ 59.940063 Hz
01:00:09 T:1969963552 NOTICE: Found resolution 720 x 576 for display 0 with 720 x 576 @ 50.000000 Hz
01:00:09 T:1969963552 NOTICE: Found resolution 1280 x 720 for display 0 with 1280 x 720 @ 50.000000 Hz
01:00:09 T:1969963552 NOTICE: Found resolution 1920 x 1080 for display 0 with 1920 x 1080 @ 50.000000 Hz
01:00:09 T:1969963552 NOTICE: Found resolution 1920 x 1080 for display 0 with 1920 x 1080 @ 24.000000 Hz
01:00:09 T:1969963552 NOTICE: Found resolution 1920 x 1080 for display 0 with 1920 x 1080 @ 23.976025 Hz
01:00:09 T:1969963552 NOTICE: Found resolution 1920 x 1080 for display 0 with 1920 x 1080 @ 25.000000 Hz
01:00:09 T:1969963552 NOTICE: Found resolution 1920 x 1080 for display 0 with 1920 x 1080 @ 30.000000 Hz
01:00:09 T:1969963552 NOTICE: Found resolution 1920 x 1080 for display 0 with 1920 x 1080 @ 29.970032 Hz
01:00:09 T:1969963552 NOTICE: Found resolution 800 x 600 for display 0 with 800 x 600 @ 60.000000 Hz
01:00:09 T:1969963552 NOTICE: Found resolution 800 x 600 for display 0 with 800 x 600 @ 59.940063 Hz
01:00:09 T:1969963552 NOTICE: Found resolution 1024 x 768 for display 0 with 1024 x 768 @ 60.000000 Hz
01:00:09 T:1969963552 NOTICE: Found resolution 1024 x 768 for display 0 with 1024 x 768 @ 59.940063 Hz
01:00:09 T:1969963552 NOTICE: Found resolution 1280 x 1024 for display 0 with 1280 x 1024 @ 60.000000 Hz
01:00:09 T:1969963552 NOTICE: Found resolution 1280 x 1024 for display 0 with 1280 x 1024 @ 59.940063 Hz
01:00:09 T:1969963552 NOTICE: Found resolution 1360 x 768 for display 0 with 1360 x 768 @ 60.000000 Hz
01:00:09 T:1969963552 NOTICE: Found resolution 1360 x 768 for display 0 with 1360 x 768 @ 59.940063 Hz
01:00:09 T:1969963552 NOTICE: Found ([email protected]) at 22, setting to RES_DESKTOP at 16
01:00:09 T:1969963552 NOTICE: Checking resolution 16
01:00:09 T:1969963552 NOTICE: GL_VENDOR = Broadcom
01:00:09 T:1969963552 NOTICE: GL_RENDERER = VideoCore IV HW
01:00:09 T:1969963552 NOTICE: GL_VERSION = OpenGL ES 2.0
01:00:09 T:1969963552 NOTICE: GL_SHADING_LANGUAGE_VERSION = OpenGL ES GLSL ES 1.00
01:00:09 T:1969963552 NOTICE: GL_EXTENSIONS = GL_OES_compressed_ETC1_RGB8_texture GL_OES_compressed_paletted_texture GL_OES_texture_npot GL_OES_depth24 GL_OES_vertex_half_float GL_OES_EGL_image GL_OES_EGL_image_external GL_EXT_discard_framebuffer GL_OES_rgb8_rgba8 GL_OES_depth32 GL_OES_mapbuffer GL_EXT_texture_format_BGRA8888 GL_APPLE_rgb_422 GL_EXT_debug_marker
22:29:18 T:1969963552 NOTICE: Running database version Addons16
22:29:18 T:1969963552 NOTICE: Running database version ViewModes6
22:29:18 T:1969963552 NOTICE: Running database version Textures13
22:29:18 T:1969963552 NOTICE: Running database version MyMusic48
22:29:19 T:1969963552 NOTICE: Running database version MyVideos90
22:29:19 T:1969963552 NOTICE: Running database version TV26
22:29:19 T:1969963552 NOTICE: Running database version Epg8
22:29:19 T:1969963552 NOTICE: start dvd mediatype detection
22:29:19 T:1960948800 NOTICE: Thread DetectDVDMedia start, auto delete: false
22:29:20 T:1969963552 WARNING: JSONRPC: Could not parse type "PVR.Details.Channel"
22:29:20 T:1969963552 WARNING: JSONRPC: Could not parse type "PVR.Details.ChannelGroup.Extended"
22:29:20 T:1969963552 WARNING: JSONRPC: Could not parse type "GUI.Property.Value"
22:29:20 T:1969963552 WARNING: JSONRPC: Could not parse type "Setting.Details.SettingList"
22:29:20 T:1866540096 NOTICE: Thread LanguageInvoker start, auto delete: false
22:29:20 T:1969963552 NOTICE: Previous line repeats 6 times.
22:29:20 T:1969963552 NOTICE: initialize done
22:29:20 T:1969963552 NOTICE: Running the application...
22:29:21 T:1805644864 NOTICE: Thread JobWorker start, auto delete: true
22:29:21 T:1866540096 NOTICE: -->Python Interpreter Initialized<--
22:29:21 T:1969963552 NOTICE: starting zeroconf publishing
22:29:21 T:1969963552 NOTICE: Webserver: Starting...
22:29:21 T:1788867648 NOTICE: Thread JobWorker start, auto delete: true
22:29:21 T:1969963552 NOTICE: WebServer: Started the webserver
22:29:21 T:1969963552 NOTICE: ES: Starting event server
22:29:21 T:1746924608 NOTICE: Thread TCPServer start, auto delete: false
22:29:21 T:1763701824 NOTICE: Thread JobWorker start, auto delete: true
22:29:21 T:1755313216 NOTICE: Thread EventServer start, auto delete: false
22:29:21 T:1755313216 NOTICE: ES: Starting UDP Event server on 0.0.0.0:9777
22:29:21 T:1755313216 NOTICE: UDP: Listening on port 9777
22:29:21 T:1730147392 NOTICE: Thread AirPlayServer start, auto delete: false
22:29:21 T:1815151680 NOTICE: -->Python Interpreter Initialized<--
22:29:21 T:1721758784 NOTICE: Thread JobWorker start, auto delete: true
22:29:21 T:1857094720 NOTICE: -->Python Interpreter Initialized<--
22:29:23 T:1840317504 NOTICE: Previous line repeats 2 times.
22:29:23 T:1840317504 NOTICE: ## OpenELEC Addon ## 0.5.8
22:29:23 T:1823540288 NOTICE: -->Python Interpreter Initialized<--
22:29:23 T:1831928896 NOTICE: Previous line repeats 1 times.
22:29:23 T:1831928896 NOTICE: Thread LanguageInvoker start, auto delete: false
22:29:24 T:1815151680 NOTICE: http://tribeca.tvaddons.ag/tools/notifications/news.txt
22:29:24 T:1815151680 NOTICE: ['notifications-on-startup', False, 'DoFromService', True]
22:29:24 T:1815151680 NOTICE: ['OLD', 't', '2', 'We just wanted to remind you that there\xe2\x80\x99s a new and improved version of XBMC\navailable which we highly recommend upgrading to as soon as possible. It\noffers enhanced hardware decoding along with a ton of other fixes. It\xe2\x80\x99s not\neven called XBMC anymore; it\xe2\x80\x99s now called [COLOR white]Kodi[/COLOR], need we say more?\n\nWe\xe2\x80\x99ve put together some very simple, newbie friendly guides which will walk\nyou through every step of the way. Please visit the following page for\nmore information: [COLOR white]www.tvaddons.ag/update-kodi[/COLOR]\n\nThank you very much for your support. We hope you continue to enjoy our\naddons far into the future, it\xe2\x80\x99s only going to get better from here!']
22:29:24 T:1815151680 NOTICE: ['NEW', 't', '2', 'We just wanted to remind you that there\xe2\x80\x99s a new and improved version of XBMC\navailable which we highly recommend upgrading to as soon as possible. It\noffers enhanced hardware decoding along with a ton of other fixes. It\xe2\x80\x99s not\neven called XBMC anymore; it\xe2\x80\x99s now called [COLOR white]Kodi[/COLOR], need we say more?\n\nWe\xe2\x80\x99ve put together some very simple, newbie friendly guides which will walk\nyou through every step of the way. Please visit the following page for\nmore information: [COLOR white]www.tvaddons.ag/update-kodi[/COLOR]\n\nThank you very much for your support. We hope you continue to enjoy our\naddons far into the future, it\xe2\x80\x99s only going to get better from here!']
22:29:24 T:1831928896 NOTICE: -->Python Interpreter Initialized<--
22:29:26 T:1823540288 NOTICE: StorageServer Module loaded RUN
22:29:26 T:1823540288 NOTICE: StorageClient-2.5.4 Starting server
22:29:26 T:1831928896 NOTICE: CommonFunctions-2.5.1
22:29:45 T:1969963552 ERROR: Control 1 in window 10110 has been asked to focus, but it can't
23:25:57 T:1969963552 NOTICE: Storing total System Uptime
23:25:57 T:1969963552 NOTICE: Saving settings
23:25:57 T:1969963552 NOTICE: stop all
23:25:57 T:1969963552 NOTICE: stop player
23:25:57 T:1969963552 NOTICE: ES: Stopping event server
23:25:57 T:1755313216 NOTICE: ES: UDP Event server stopped
23:25:58 T:1969963552 NOTICE: stopping zeroconf publishing
23:25:58 T:1969963552 NOTICE: Webserver: Stopping...
23:25:58 T:1969963552 NOTICE: WebServer: Stopped the webserver
23:25:58 T:1969963552 NOTICE: Webserver: Stopped...
23:25:58 T:1969963552 NOTICE: stop dvd detect media
23:25:58 T:1969963552 NOTICE: stop sap announcement listener
23:25:58 T:1969963552 NOTICE: clean cached files!
23:25:58 T:1969963552 NOTICE: unload skin
Reply
#64
(2015-03-25, 01:01)knutklo Wrote: I will try this tomorrow but here is the kodi.log i got....


This is a different error, indicating that the file is garbled up (the indentation is wrong).

You probably ought to download a fresh copy from here:

https://raw.githubusercontent.com/Sumner...library.py

and copy it over the existing one.

I wouldn't be surprised if that fixes things for you immediately. If it doesn't then we can try that extra logging out.
Reply
#65
FWIW knutklo is the only one I've seen post that he's having problems and that's a different issue, and I've had a few people say that the problem is resolved. So I'm pretty sure the code fix is working. Please anyone else post if you are having problems.


Knutklo, I'm not dismissing your problem--I think getting a fresh copy of library.py will fix things for you, if not I'll keep working on it with you.
Reply
#66
I have a service library data provider and a service library data provider master
Reply
#67
This is what mine say


if favs['result']['favourites'] is None:
return None
shows = json.loads(self.json_query("VideoLibrary.GetTVShows", unplayed=True, properties=self.tvshow_properties, limit=None))
fav_unwatched = [ show for show in shows['result']['tvshows'] if show['title'] in
set([ fav['title'] for fav in favs['result']['favourites'] if fav['type'] == 'window']) ]

# Skeleton return data, to be built out below...
rv = { u'jsonrpc': u'2.0', u'id': 1, u'result': { u'tvshows': [], u'limits': { u'start': 0, u'total': 0, u'end': 0 } } }
# Find the oldest unwatched episode for each fav_unwatched, and add it to the rv; store data in a per-show property
for fav in fav_unwatched:
Reply
#68
Ok I added all of this and I got no error on reboot. Was this all I had to do? If so thank you very much, appreciate the help..





if not shows.has_key('result') or not shows['result'].has_key('tvshows'):
return None
try:
fav_unwatched = [ show for show in shows['result']['tvshows'] if show['title'] in
set([ fav['title'] for fav in favs['result']['favourites'] if fav['type'] == 'window']) ]
except KeyError:
print >> sys.stderr, "Problem looking up tvshows", `shows`, `favs`
return None
Reply
#69
Hi, i'm sorry if i'm asking something stupid/already asked.

But what's the difference between Recommended and Random Albums?


I've seen this: http://forum.kodi.tv/showthread.php?tid=...pid1964416
I have also the same question? Do random movies (and albuns) refresh from time to time?
Reply
#70
Recommended Albums are the most-played albums. Random is totally random.

Random should refresh periodically, I broke that briefly but it's fixed with the most recent patches.
Reply
#71
(2015-03-25, 03:23)AL8782 Wrote: Ok I added all of this and I got no error on reboot. Was this all I had to do? If so thank you very much, appreciate the help..




Code:
#
            if not shows.has_key('result') or not shows['result'].has_key('tvshows'):
                return None
            try:
                fav_unwatched = [ show for show in shows['result']['tvshows'] if show['title'] in
                                  set([ fav['title'] for fav in favs['result']['favourites'] if fav['type'] == 'window']) ]
            except KeyError:
                print >> sys.stderr, "Problem looking up tvshows", `shows`, `favs`
                return None

Should be fine, but if you could look in your kodi.log and let me know if it has a line saying "Problem looking up tvshows" in it that would be awesome (and if there is, post the whole kodi.log). If it doesn't, that's good info and means everything should be fixed.
Reply
#72
I am sorry but can't get this to work and I guess it is these words I don't understand (clause and indenting):

"try" line and the entire 3-line "except" clause and indenting the "fav_unwatched = " line a bit more):

Can I ask where I can download the fixed original file? or how to update the file I have?

I have run update from these places in kodi:
SYSTEM | OpenELEC | System | Check for updates now:
and
SYSTEM | Add-ons | Check for update

Here is how my library.py looks like now
------------------------------------------------------------

PHP Code:
# Favourite episodes are the oldest unwatched episodes from shows that are in your favourites list
    
def _fetch_favourite_episodes(selfuseCache False):
        
def query_favourite():
            
# Get all favourites and all unwatched shows, and store their intersection in fav_unwatched
            
favs json.loads(self.json_query("Favourites.GetFavourites"
                                              
Falseproperties=[], sort=Nonequery_filter=Nonelimit=None))
            if 
favs['result']['favourites'is None:
                return 
None            

shows 
json.loads(self.json_query("VideoLibrary.GetTVShows"unplayed=Trueproperties=self.tvshow_propertieslimit=None))
if 
not shows.has_key('result') or not shows['result'].has_key('tvshows'):
return 
None
try:
fav_unwatched = [ show for show in shows['result']['tvshows'] if show['title'in
set
([ fav['title'] for fav in favs['result']['favourites'] if fav['type'] == 'window']) ]
except KeyError:
print >> 
sys.stderr"Problem looking up tvshows", `shows`, `favs`
return 
None 

            
# Skeleton return data, to be built out below...
            
rv = { u'jsonrpc'u'2.0'u'id'1u'result': { u'tvshows': [], u'limits': { u'start'0u'total'0u'end'} } }
            
# Find the oldest unwatched episode for each fav_unwatched, and add it to the rv; store data in a per-show property
            
for fav in fav_unwatched:
                
show_info_string =  self.json_query("VideoLibrary.GetEpisodes"Trueproperties=self.tvepisode_properties
                                                    
params={"tvshowid"fav['tvshowid']}, sort={"method""episode"}, limit=1
                                                    
query_filter=self.unplayed_filter)
                
show_info json.loads(show_info_string
Reply
#73
(2015-03-25, 07:03)SumnerH Wrote:
(2015-03-25, 03:23)AL8782 Wrote: Ok I added all of this and I got no error on reboot. Was this all I had to do? If so thank you very much, appreciate the help..




Code:
#
            if not shows.has_key('result') or not shows['result'].has_key('tvshows'):
                return None
            try:
                fav_unwatched = [ show for show in shows['result']['tvshows'] if show['title'] in
                                  set([ fav['title'] for fav in favs['result']['favourites'] if fav['type'] == 'window']) ]
            except KeyError:
                print >> sys.stderr, "Problem looking up tvshows", `shows`, `favs`
                return None

Should be fine, but if you could look in your kodi.log and let me know if it has a line saying "Problem looking up tvshows" in it that would be awesome (and if there is, post the whole kodi.log). If it doesn't, that's good info and means everything should be fixed.


Here's the Kodi log

http://xbmclogs.com/pxk2roesf
Reply
#74
OKI
I will do a reinstall again if this log does not tell anyone anything ;-)

http://xbmclogs.com/p6scm97f4
Reply
#75
I will do a reinstall now because I see it is very few that has this problem.
I just want to finish my complete tutorial on this media center with confluence skin.
If I get same error again within the next 2 hours of reinstall I will continue this post.
Thank you all ;-)
Reply
  • 1
  • 3
  • 4
  • 5(current)
  • 6
  • 7
  • 11

Logout Mark Read Team Forum Stats Members Help
Library Data Provider0