Certification Sub Menu
#1
Does a certification sub menu exist on any skin or is this not a functionality XBMC supports? By sub menu I mean in addition to the standard sub menus, i.e. Title, Genre, Actor, Studio, etc.
Reply
#2
I see two advantages of this functionality:
1. One can browse their movie library based on the certification.
2. Parental control set up would be very easy, either via profiles (child profile one can access movies up to a certain certification, etc) or perhaps one wouldn't need profiles and just be able to lock movies of a certain certification upwards which can be unlocked via a pin entry. Profiles is clearly a better way to go however as then XMBC can be taylored to the individual user.

edit: the above assumes this functionality does not exist already in XBMC and therefore apologies but this would be in the wrong forum. However of it does exists then clearly I just need to learn how to achieve this and any help would be much appreciated.
Reply
#3
Do I take it that this functionality does not exist and this should be moved to the Features Suggestions forum?
Reply
#4
Profiles (wiki) and smart playlists (wiki) should give you what you seek. You can create a profile for your children that has access to a separate media source, which you can maintain by using a smart playlist to present only movies with certain MPAA ratings or by locating their films in a separate directory accessed by their profile. Search for "parental control" in the forums and you'll find some threads discussing this topic as well as examples of various implementations by others.
Reply
#5
custom video nodes (wiki). What you see under "movies" are nodes, and you can change them, add to them, etc.
Reply
#6
@ artrafael. Thanks however I don't really want to go through the pain of putting the movies (over 900) into separate folders according to their MPAA rating, if that's what you mean by "separate media source". I will however give the smart playlists a go to see if that will help avoid the issue of having to separate out the movies into separate sources.

@ Ned. Thanks also, I'll have a play with that in a bit.
Reply
#7
Setting up the kids' profile with "Separate media sources" simply means that their profile doesn't automatically have the identical media view as your profile. Whether you implement their media view using a separate physical folder, smart playlist or custom video node is up to you.
Reply
#8
Ok thanks for the clarification.
Reply
#9
@ Ned - the wiki suggests that you can edit how recently added appears - how do I get rid of this sub menu all together?

Edit: So I'm trying to set up this up as a sub menu. It appears that first I need to set up a smart playlist for each and every certification type e.g. U, PG, 12, etc. Then I need to set up a certification.xml containing all of these playlists. Is that correct if I want to go to the sub menu labelled "certification" and view a bunch of folders labeled U, PG, 12, etc?

Edit 2: I think I might need one certification.xml per rating and then create a custom parent node... Am I on the right path?
Reply
#10
Must be doing something wrong.

I have created a smart playlist called U.xsp and saved it to the correct place. This seems to be working. It contains the following:

Code:
<smartplaylist type="movies">
    <name>U</name>
    <match>one</match>
    <rule field="mpaarating" operator="is">
        <value>U</value>
    </rule>
</smartplaylist>

I then created a custom video node xml called U.xml with the following and saved it to userdata/library/video/movies:

Code:
<node order="11" type="filter">
  <label>(Custom) U</label>
  <path>videodb://1/3</path>
  <content>movies</content>
  <match>all</match>
  <icon>DefaultU.png</icon>
  <limit>0</limit>
  <rule field="mpaarating" operator="is">
        <value>U</value>
</node>

However this is not appearing in the list. All I see is genres, actors, countries, studios, etc....
Reply
#11
Never used it, but why limit to zero results Huh try deleting

Code:
<limit>0</limit>

you could also try

Code:
<path>videodb://</path>

or perhaps

Code:
<path>videodb://1/2/</path>

The path field uses these values http://wiki.xbmc.org/index.php?title=Ope...nd_Dialogs notice there's a difference between Frodo & Gotham nightlies, which are you using?
Reply
#12
@ jjd-uk

I put 0 limit assuming that this would mean no limit.

I also tried changing the videodb path to no avail.

I'm using the stable release of Frodo.
Reply
#13
Ok those are just the things the popped out at me, afraid I've no experiences with using custom nodes.

Perhaps enable debug logging restarting XBMC then going to the Library, normally debug logs show whether user custom stuff is loaded although I'm not sure if this is the case with Custom Nodes.
Reply
#14
Have enabled debugging and restarted. I don't know what I'm looking for but here is said log:
Code:
14:43:49 T:8224  NOTICE: -----------------------------------------------------------------------
14:43:49 T:8224  NOTICE: Starting XBMC (12.1 Git:20130317-0d373cc), Platform: Windows 7 SP1 64-bit, build 7601. Built on Mar 17 2013 (compiler 1600)
14:43:49 T:8224  NOTICE: Intel(R) Core(TM) i7-2600K CPU @ 3.40GHz
14:43:49 T:8224  NOTICE: Desktop Resolution: 1920x1080 32Bit at 60Hz
14:43:49 T:8224  NOTICE: Running with administrator rights
14:43:49 T:8224  NOTICE: Aero is enabled
14:43:49 T:8224  NOTICE: special://xbmc/ is mapped to: C:\Program Files (x86)\XBMC
14:43:49 T:8224  NOTICE: special://xbmcbin/ is mapped to: C:\Program Files (x86)\XBMC
14:43:49 T:8224  NOTICE: special://masterprofile/ is mapped to: C:\Users\Adrian\AppData\Roaming\XBMC\userdata
14:43:49 T:8224  NOTICE: special://home/ is mapped to: C:\Users\Adrian\AppData\Roaming\XBMC\
14:43:49 T:8224  NOTICE: special://temp/ is mapped to: C:\Users\Adrian\AppData\Roaming\XBMC\cache
14:43:49 T:8224  NOTICE: The executable running is: C:\Program Files (x86)\XBMC\XBMC.exe
14:43:49 T:8224  NOTICE: Local hostname: StudyDesktopPC
14:43:49 T:8224  NOTICE: Log File is located: C:\Users\Adrian\AppData\Roaming\XBMC\xbmc.log
14:43:49 T:8224  NOTICE: -----------------------------------------------------------------------
14:43:50 T:8224  NOTICE: Found 2 Lists of Devices
14:43:50 T:8224  NOTICE: Enumerated DirectSound devices:
14:43:50 T:8224  NOTICE:     Device 1
14:43:50 T:8224  NOTICE:         m_deviceName      : {18B6BD65-B612-40B7-9569-2A3B3978153A}
14:43:50 T:8224  NOTICE:         m_displayName     : Speakers - Speakers (Realtek High Definition Audio)
14:43:50 T:8224  NOTICE:         m_displayNameExtra: DirectSound: Speakers (Realtek High Definition Audio)
14:43:50 T:8224  NOTICE:         m_deviceType      : AE_DEVTYPE_PCM
14:43:50 T:8224  NOTICE:         m_channels        : FL,FR
14:43:50 T:8224  NOTICE:         m_sampleRates     : 48000
14:43:50 T:8224  NOTICE:         m_dataFormats     : AE_FMT_FLOAT,AE_FMT_AC3
14:43:50 T:8224  NOTICE:     Device 2
14:43:50 T:8224  NOTICE:         m_deviceName      : {415F52A8-4C1A-4558-915E-6132C1F58BCA}
14:43:50 T:8224  NOTICE:         m_displayName     : SPDIF - Realtek Digital Output(Optical) (Realtek High Definition Audio)
14:43:50 T:8224  NOTICE:         m_displayNameExtra: DirectSound: Realtek Digital Output(Optical) (Realtek High Definition Audio)
14:43:50 T:8224  NOTICE:         m_deviceType      : AE_DEVTYPE_IEC958
14:43:50 T:8224  NOTICE:         m_channels        : FL,FR
14:43:50 T:8224  NOTICE:         m_sampleRates     : 48000
14:43:50 T:8224  NOTICE:         m_dataFormats     : AE_FMT_FLOAT,AE_FMT_AC3
14:43:50 T:8224  NOTICE:     Device 3
14:43:50 T:8224  NOTICE:         m_deviceName      : {B982D924-71A4-4D8F-A675-A9C2ADF704D3}
14:43:50 T:8224  NOTICE:         m_displayName     : SPDIF - Realtek Digital Output (Realtek High Definition Audio)
14:43:50 T:8224  NOTICE:         m_displayNameExtra: DirectSound: Realtek Digital Output (Realtek High Definition Audio)
14:43:50 T:8224  NOTICE:         m_deviceType      : AE_DEVTYPE_IEC958
14:43:50 T:8224  NOTICE:         m_channels        : FL,FR
14:43:50 T:8224  NOTICE:         m_sampleRates     : 48000
14:43:50 T:8224  NOTICE:         m_dataFormats     : AE_FMT_FLOAT,AE_FMT_AC3
14:43:50 T:8224  NOTICE: Enumerated WASAPI devices:
14:43:50 T:8224  NOTICE:     Device 1
14:43:50 T:8224  NOTICE:         m_deviceName      : {18B6BD65-B612-40B7-9569-2A3B3978153A}
14:43:50 T:8224  NOTICE:         m_displayName     : Speakers - Speakers (Realtek High Definition Audio)
14:43:50 T:8224  NOTICE:         m_displayNameExtra: WASAPI: Speakers (Realtek High Definition Audio)
14:43:50 T:8224  NOTICE:         m_deviceType      : AE_DEVTYPE_PCM
14:43:50 T:8224  NOTICE:         m_channels        : FL,FR,FC,LFE,SL,SR,BL,BR
14:43:50 T:8224  NOTICE:         m_sampleRates     : 192000,96000,48000,44100
14:43:50 T:8224  NOTICE:         m_dataFormats     : AE_FMT_S24NE4,AE_FMT_S24LE4,AE_FMT_S24BE4,AE_FMT_S16NE,AE_FMT_S16LE,AE_FMT_S16BE,AE_FMT_LPCM
14:43:50 T:8224  NOTICE:     Device 2
14:43:50 T:8224  NOTICE:         m_deviceName      : {415F52A8-4C1A-4558-915E-6132C1F58BCA}
14:43:50 T:8224  NOTICE:         m_displayName     : SPDIF - Realtek Digital Output(Optical) (Realtek High Definition Audio)
14:43:50 T:8224  NOTICE:         m_displayNameExtra: WASAPI: Realtek Digital Output(Optical) (Realtek High Definition Audio)
14:43:50 T:8224  NOTICE:         m_deviceType      : AE_DEVTYPE_IEC958
14:43:50 T:8224  NOTICE:         m_channels        : FL,FR
14:43:50 T:8224  NOTICE:         m_sampleRates     : 192000,96000,48000,44100
14:43:50 T:8224  NOTICE:         m_dataFormats     : AE_FMT_AAC,AE_FMT_S24NE4,AE_FMT_S24LE4,AE_FMT_S24BE4,AE_FMT_S16NE,AE_FMT_S16LE,AE_FMT_S16BE
14:43:50 T:8224  NOTICE:     Device 3
14:43:50 T:8224  NOTICE:         m_deviceName      : {B982D924-71A4-4D8F-A675-A9C2ADF704D3}
14:43:50 T:8224  NOTICE:         m_displayName     : SPDIF - Realtek Digital Output (Realtek High Definition Audio)
14:43:50 T:8224  NOTICE:         m_displayNameExtra: WASAPI: Realtek Digital Output (Realtek High Definition Audio)
14:43:50 T:8224  NOTICE:         m_deviceType      : AE_DEVTYPE_IEC958
14:43:50 T:8224  NOTICE:         m_channels        : FL,FR
14:43:50 T:8224  NOTICE:         m_sampleRates     : 192000,96000,48000,44100
14:43:50 T:8224  NOTICE:         m_dataFormats     : AE_FMT_AAC,AE_FMT_S24NE4,AE_FMT_S24LE4,AE_FMT_S24BE4,AE_FMT_S16NE,AE_FMT_S16LE,AE_FMT_S16BE
14:43:50 T:8224  NOTICE: load settings...
14:43:50 T:8224  NOTICE: special://profile/ is mapped to: special://masterprofile/
14:43:50 T:8224  NOTICE: loading special://masterprofile/guisettings.xml
14:43:50 T:8224  NOTICE: Getting hardware information now...
14:43:50 T:8224  NOTICE: Loading player core factory settings from special://xbmc/system/playercorefactory.xml.
14:43:50 T:8224  NOTICE: Loaded playercorefactory configuration
14:43:50 T:8224  NOTICE: Loading player core factory settings from special://masterprofile/playercorefactory.xml.
14:43:50 T:8224  NOTICE: special://masterprofile/playercorefactory.xml does not exist. Skipping.
14:43:50 T:8224  NOTICE: No settings file to load (special://xbmc/system/advancedsettings.xml)
14:43:50 T:8224  NOTICE: Loaded settings file from special://profile/advancedsettings.xml
14:43:50 T:8224  NOTICE: Contents of special://profile/advancedsettings.xml are...
                                            <advancedsettings>
                                              <videodatabase>
                                                <type>mysql</type>
                                                <host>192.168.0.100</host>
                                                <port>3306</port>
                                                <user>xbmc</user>
                                                <pass>xbmc</pass>
                                                <name>xbmc_videos</name>
                                              </videodatabase>
                                              <musicdatabase>
                                                <type>mysql</type>
                                                <host>192.168.0.100</host>
                                                <port>3306</port>
                                                <user>xbmc</user>
                                                <pass>xbmc</pass>
                                                <name>xbmc_music</name>
                                              </musicdatabase>
                                              <videolibrary>
                                                <importwatchedstate>true</importwatchedstate>
                                              </videolibrary>
                                              <pathsubstitution>
                                                <substitute>
                                                  <from>special://masterprofile/Thumbnails/</from>
                                                  <to>nfs://192.168.0.100/raid0/data/XBMC/</to>
                                                </substitute>
                                              </pathsubstitution>
                                            </advancedsettings>
14:43:50 T:8224 WARNING: VIDEO database configuration is experimental.
14:43:50 T:8224  NOTICE: Getting hardware information now...
14:43:50 T:8224  NOTICE: Default DVD Player: dvdplayer
14:43:50 T:8224  NOTICE: Default Video Player: dvdplayer
14:43:50 T:8224  NOTICE: Default Audio Player: paplayer
14:43:50 T:8224  NOTICE: Enabled debug logging due to GUI setting (2)
14:43:50 T:8224  NOTICE: Log level changed to 2
14:43:50 T:8224  NOTICE: Loading media sources from special://masterprofile/sources.xml
14:43:50 T:8224   DEBUG:     Setting <default> source to : nfs://192.168.0.100/raid0/data/Media/Photographs/
14:43:50 T:8224    INFO: creating subdirectories
14:43:50 T:8224    INFO: userdata folder: special://masterprofile/
14:43:50 T:8224    INFO: recording folder:
14:43:50 T:8224    INFO: screenshots folder:
14:43:50 T:8224   DEBUG: SECTION:LoadDLL(special://xbmcbin/system/libnfs.dll)
14:43:50 T:8224   DEBUG: NFS: Context for 192.168.0.100/raid0/data/XBMC not open - get a new context.
14:43:50 T:8224   DEBUG: NFS: Connected to server 192.168.0.100 and export /raid0/data/XBMC
14:43:50 T:8224   DEBUG: NFS: chunks: r/w 32768/32768
14:43:50 T:8224   ERROR: NFS: Failed to create(//) mkdir call failed with "NFS: MKDIR of // failed with NFS3ERR_PERM(-1)"
14:43:50 T:8224   ERROR: XFILE::CDirectory::Create - Error creating C:\Users\Adrian\AppData\Roaming\XBMC\userdata\Thumbnails
14:43:50 T:8224   ERROR: XFILE::CDirectory::Create - Error creating special://masterprofile/Thumbnails
14:43:50 T:8224    INFO: thumbnails folder: special://masterprofile/Thumbnails
14:43:50 T:8224    INFO: load language info file: special://xbmc/language/English/langinfo.xml
14:43:50 T:8224   DEBUG: trying to set locale to eng_gbr
14:43:50 T:8224    INFO: global locale set to English_United Kingdom.1252
14:43:50 T:8224    INFO: load English language file, from path: special://xbmc/language/
14:43:50 T:8224   DEBUG: POParser: PO file has Win Style Line Endings. Converted in memory to Linux LF for file: C:\Program Files (x86)\XBMC\language\English\strings.po
14:43:50 T:8224   DEBUG: POParser: loaded 2686 strings from file C:\Program Files (x86)\XBMC\language\English\strings.po
14:43:50 T:8224    INFO: CSoftAE::InternalOpenSink - sink incompatible, re-starting
14:43:50 T:8224   DEBUG: CAESinkDirectSound::Initialize: Using Window handle: 65552
14:43:50 T:8224   DEBUG: CAESinkDirectSound::Initialize: secondary buffer created
14:43:50 T:8224   DEBUG: CAESinkDirectSound::Initialize: Initializing DirectSound with the following parameters:
14:43:50 T:8224   DEBUG:   Audio Device    : Speakers (Realtek High Definition Audio)
14:43:50 T:8224   DEBUG:   Sample Rate     : 44100
14:43:50 T:8224   DEBUG:   Sample Format   : AE_FMT_FLOAT
14:43:50 T:8224   DEBUG:   Bits Per Sample : 32
14:43:50 T:8224   DEBUG:   Valid Bits/Samp : 32
14:43:50 T:8224   DEBUG:   Channel Count   : 2
14:43:50 T:8224   DEBUG:   Block Align     : 8
14:43:50 T:8224   DEBUG:   Avg. Bytes Sec  : 352800
14:43:50 T:8224   DEBUG:   Samples/Block   : 32
14:43:50 T:8224   DEBUG:   Format cBSize   : 22
14:43:50 T:8224   DEBUG:   Channel Layout  : FL,FR
14:43:50 T:8224   DEBUG:   Channel Mask    : 3
14:43:50 T:8224   DEBUG:   Frames          : 441
14:43:50 T:8224   DEBUG:   Frame Samples   : 882
14:43:50 T:8224   DEBUG:   Frame Size      : 8
14:43:50 T:8224   DEBUG: CSoftAE::InternalOpenSink - DirectSound Initialized:
14:43:50 T:8224   DEBUG:   Output Device : Speakers - Speakers (Realtek High Definition Audio)
14:43:50 T:8224   DEBUG:   Sample Rate   : 44100
14:43:50 T:8224   DEBUG:   Sample Format : AE_FMT_FLOAT
14:43:50 T:8224   DEBUG:   Channel Count : 2
14:43:50 T:8224   DEBUG:   Channel Layout: FL,FR
14:43:50 T:8224   DEBUG:   Frames        : 441
14:43:50 T:8224   DEBUG:   Frame Samples : 882
14:43:50 T:8224   DEBUG:   Frame Size    : 8
14:43:50 T:8224   DEBUG: CSoftAE::InternalOpenSink - Using speaker layout: 2.0
14:43:50 T:8224   DEBUG: CSoftAE::InternalOpenSink - Internal Buffer Size: 3528
14:43:50 T:8400  NOTICE: Thread CSoftAE start, auto delete: false
14:43:50 T:8400    INFO: CSoftAE::Run - Thread Started
14:43:50 T:8224  NOTICE: Running database version Addons15
14:43:50 T:8224   DEBUG: SECTION:LoadDLL(special://xbmcbin/system/cpluff.dll)
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in xbmc.json has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in script.cu.lrclyrics has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.fanart.tv has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.youtubetrailers has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in webinterface.default has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in repository.xbmc.org has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.trakt.tv has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in screensaver.xbmc.builtin.black has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.euphoria has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in repository.pvr-osx32.xbmc.org has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in script.module.chardet has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in visualization.projectm has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in repo.hybrid has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in weather.wunderground has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in script.module.simplejson has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in metadata.universal has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.ofdb.de has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in screensaver.xbmc.builtin.dim has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in script.favourites has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in metadata.themoviedb.org has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in xbmc.metadata has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in repository.pvr-ios.xbmc.org has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in script.ace.extrapack has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in skin.confluence has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in visualization.glspectrum has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in script.randomandlastitems has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in xbmc.gui has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in visualization.milkdrop has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in script.module.pil has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.amazon.de has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in service.skin.widgets has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in script.video.parentalcontrols has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in script.common.plugin.cache has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in visualization.dxspectrum has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in metadata.musicvideos.theaudiodb.com has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in xbmc.core has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.impa.com has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.solarwinds has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in script.artistslideshow has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in script.artwork.downloader has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in xbmc.pvr has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in repository.pvr-android.xbmc.org has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.movieposterdb.com has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in metadata.album.universal has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.htbackdrops.com has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in repository.pvr-win32.xbmc.org has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.port.hu has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in repository.pvr-osx64.xbmc.org has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in metadata.tvdb.com has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.musicbrainz.org has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.allmusic.com has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.rt.com has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.last.fm has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.themoviedb.org has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in skin.ace has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in script.videolanguage has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.theaudiodb.com has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in metadata.artists.universal has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in xbmc.python has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in script.tv.show.next.aired has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.imdb.com has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in script.module.elementtree has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in xbmc.addon has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in visualization.waveform has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.plasma has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in script.module.pysqlite has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.hdtrailers.net has been installed.'
14:43:50 T:8224   DEBUG: ADDON: cpluff: 'Not all directories were successfully scanned.'
14:43:50 T:8224   DEBUG: PERIPHERALS::CPeripherals::LoadMappings - loaded node "Motorola Nyxboard Hybrid"
14:43:50 T:8224   DEBUG: PERIPHERALS::CPeripherals::LoadMappings - loaded node "CEC Adapter"
14:43:50 T:8224   DEBUG: PERIPHERALS::CPeripherals::LoadMappings - loaded node "Pulse-Eight CEC Adapter"
14:43:50 T:8224   DEBUG: PERIPHERALS::CPeripherals::LoadMappings - loaded node "iMON HID device"
14:43:50 T:8224   DEBUG: SECTION:LoadDLL(special://xbmcbin/system/libcec.dll)
14:43:50 T:1216  NOTICE: Thread XBMC Peripherals start, auto delete: false
14:43:50 T:7032  NOTICE: Previous line repeats 1 times.
14:43:50 T:7032  NOTICE: Thread CRemoteControl start, auto delete: false
14:43:50 T:7032   DEBUG: CRemoteControl::Connect - connecting to: ::1:24000 ...
14:43:50 T:8400   DEBUG: CAESinkDirectSound::CheckPlayStatus: Resuming Playback
14:43:50 T:8224   DEBUG: CWIN32Util::GetDriveStatus: Requesting status for drive \\.\Z:.
14:43:50 T:8224   DEBUG: CWIN32Util::GetDriveStatus: Requesting media status for drive \\.\Z:.
14:43:50 T:8224  NOTICE: Found screen: Generic PnP Monitor on NVIDIA GeForce GTX 560 Ti  , adapter 0.
14:43:50 T:8224  NOTICE: Found screen: Generic PnP Monitor on NVIDIA GeForce GTX 560 Ti  , adapter 1.
14:43:50 T:8224  NOTICE: Primary mode: 1920x1080 @ 60.00 - Full Screen
14:43:50 T:8224  NOTICE: Secondary mode: 1680x1050 @ 59.94 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 640x480 @ 60.00 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 640x480 @ 72.00 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 640x480 @ 75.00 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 640x480 @ 59.94 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 720x480 @ 56.00 - Full Screen
14:43:50 T:8224  NOTICE: Previous line repeats 2 times.
14:43:50 T:8224  NOTICE: Additional mode: 720x480 @ 60.00 - Full Screen
14:43:50 T:8224  NOTICE: Previous line repeats 2 times.
14:43:50 T:8224  NOTICE: Additional mode: 720x480 @ 72.00 - Full Screen
14:43:50 T:8224  NOTICE: Previous line repeats 2 times.
14:43:50 T:8224  NOTICE: Additional mode: 720x480 @ 75.00 - Full Screen
14:43:50 T:8224  NOTICE: Previous line repeats 2 times.
14:43:50 T:8224  NOTICE: Additional mode: 720x480 @ 59.94 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 720x576 @ 56.00 - Full Screen
14:43:50 T:8224  NOTICE: Previous line repeats 2 times.
14:43:50 T:8224  NOTICE: Additional mode: 720x576 @ 60.00 - Full Screen
14:43:50 T:8224  NOTICE: Previous line repeats 2 times.
14:43:50 T:8224  NOTICE: Additional mode: 720x576 @ 72.00 - Full Screen
14:43:50 T:8224  NOTICE: Previous line repeats 2 times.
14:43:50 T:8224  NOTICE: Additional mode: 720x576 @ 75.00 - Full Screen
14:43:50 T:8224  NOTICE: Previous line repeats 2 times.
14:43:50 T:8224  NOTICE: Additional mode: 720x576 @ 50.00 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 800x600 @ 56.00 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 800x600 @ 60.00 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 800x600 @ 72.00 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 800x600 @ 75.00 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1024x768 @ 60.00 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1024x768 @ 70.00 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1024x768 @ 75.00 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1152x864 @ 75.00 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1280x720 @ 60.00 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1280x720 @ 50.00 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1280x720 @ 59.94 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1280x768 @ 60.00 - Full Screen
14:43:50 T:8224  NOTICE: Previous line repeats 2 times.
14:43:50 T:8224  NOTICE: Additional mode: 1280x768 @ 75.00 - Full Screen
14:43:50 T:8224  NOTICE: Previous line repeats 2 times.
14:43:50 T:8224  NOTICE: Additional mode: 1280x800 @ 60.00 - Full Screen
14:43:50 T:8224  NOTICE: Previous line repeats 2 times.
14:43:50 T:8224  NOTICE: Additional mode: 1280x800 @ 75.00 - Full Screen
14:43:50 T:8224  NOTICE: Previous line repeats 2 times.
14:43:50 T:8224  NOTICE: Additional mode: 1280x960 @ 60.00 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1280x1024 @ 60.00 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1280x1024 @ 75.00 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1360x768 @ 60.00 - Full Screen
14:43:50 T:8224  NOTICE: Previous line repeats 2 times.
14:43:50 T:8224  NOTICE: Additional mode: 1360x768 @ 75.00 - Full Screen
14:43:50 T:8224  NOTICE: Previous line repeats 2 times.
14:43:50 T:8224  NOTICE: Additional mode: 1366x768 @ 60.00 - Full Screen
14:43:50 T:8224  NOTICE: Previous line repeats 2 times.
14:43:50 T:8224  NOTICE: Additional mode: 1366x768 @ 75.00 - Full Screen
14:43:50 T:8224  NOTICE: Previous line repeats 2 times.
14:43:50 T:8224  NOTICE: Additional mode: 1600x900 @ 59.94 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1600x900 @ 60.00 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1600x900 @ 59.94 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1600x900 @ 60.00 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1600x900 @ 59.94 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1600x900 @ 60.00 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1600x1024 @ 59.94 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1600x1024 @ 60.00 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1600x1024 @ 59.94 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1600x1024 @ 60.00 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1600x1024 @ 59.94 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1600x1024 @ 60.00 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1680x1050 @ 59.94 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1680x1050 @ 60.00 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1920x1080 @ 60.00 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1920x1080 @ 50.00 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1920x1080 @ 59.94 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1440x900 @ 60.00 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1440x900 @ 75.00 - Full Screen
14:43:50 T:8224  NOTICE: Additional mode: 1680x1050 @ 59.94 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1680x1050 @ 60.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 640x480 @ 60.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 640x480 @ 75.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 640x480 @ 59.94 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 720x480 @ 56.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Previous line repeats 2 times.
14:43:50 T:8224  NOTICE: Additional mode: 720x480 @ 60.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Previous line repeats 2 times.
14:43:50 T:8224  NOTICE: Additional mode: 720x480 @ 75.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Previous line repeats 2 times.
14:43:50 T:8224  NOTICE: Additional mode: 720x480 @ 59.94 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 720x576 @ 56.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Previous line repeats 2 times.
14:43:50 T:8224  NOTICE: Additional mode: 720x576 @ 60.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Previous line repeats 2 times.
14:43:50 T:8224  NOTICE: Additional mode: 720x576 @ 75.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Previous line repeats 2 times.
14:43:50 T:8224  NOTICE: Additional mode: 800x600 @ 56.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 800x600 @ 60.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 800x600 @ 75.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1024x768 @ 60.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1024x768 @ 75.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1152x864 @ 75.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1280x720 @ 60.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Previous line repeats 2 times.
14:43:50 T:8224  NOTICE: Additional mode: 1280x720 @ 59.94 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1280x768 @ 60.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Previous line repeats 2 times.
14:43:50 T:8224  NOTICE: Additional mode: 1280x800 @ 60.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Previous line repeats 2 times.
14:43:50 T:8224  NOTICE: Additional mode: 1280x960 @ 60.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1280x1024 @ 60.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1280x1024 @ 75.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1360x768 @ 59.94 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1360x768 @ 60.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1360x768 @ 59.94 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1360x768 @ 60.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1360x768 @ 59.94 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1360x768 @ 60.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1366x768 @ 59.94 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1366x768 @ 60.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1366x768 @ 59.94 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1366x768 @ 60.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1366x768 @ 59.94 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1366x768 @ 60.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1600x900 @ 59.94 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1600x900 @ 60.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1600x900 @ 59.94 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1600x900 @ 60.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1600x900 @ 59.94 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1600x900 @ 60.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1600x1024 @ 59.94 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1600x1024 @ 60.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1600x1024 @ 59.94 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1600x1024 @ 60.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1600x1024 @ 59.94 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1600x1024 @ 60.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1440x900 @ 59.94 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1440x900 @ 60.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1440x900 @ 59.94 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1440x900 @ 60.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1440x900 @ 59.94 - Full Screen #2
14:43:50 T:8224  NOTICE: Additional mode: 1440x900 @ 60.00 - Full Screen #2
14:43:50 T:8224  NOTICE: Checking resolution 16
14:43:50 T:8224   DEBUG: CWinEventsWin32::WndProc: window resize event
14:43:50 T:8224   DEBUG: CWinEventsWin32::WndProc: window move event
14:43:50 T:8224   DEBUG: CWinSystemWin32::ResizeInternal - resizing due to size change (0,0,1920,1080 fullscreen)->(0,0,1920,1080 fullscreen)
14:43:50 T:8224   DEBUG: CWinEventsWin32::WndProcWindow is active
14:43:51 T:8224   DEBUG: CRenderSystemDX::InitRenderSystem - trying D3D9Ex...
14:43:51 T:8224   DEBUG: CRenderSystemDX::InitRenderSystem - using D3D9Ex
14:43:51 T:8224   DEBUG: CRenderSystemDX::CreateDevice on adapter 0
14:43:51 T:8224   DEBUG: CRenderSystemDX::CreateDevice - using hardware vertex processing
14:43:51 T:8224   DEBUG: CRenderSystemDX::CreateDevice - adapter 0: nvd3dum.dll, NVIDIA GeForce GTX 560 Ti  , VendorId 4318, DeviceId 4608
14:43:51 T:8224   DEBUG: CRenderSystemDX::CreateDevice - using D3DCAPS2_DYNAMICTEXTURES
14:43:51 T:8224   DEBUG: CRenderSystemDX::CreateDevice - texture caps: 0x0001ECC5
14:43:51 T:8224   DEBUG: CRenderSystemDX::CreateDevice - RENDER_CAPS_DXT
14:43:51 T:8224   DEBUG: CRenderSystemDX::CreateDevice - RENDER_CAPS_NPOT
14:43:51 T:8224   DEBUG: CRenderSystemDX::CreateDevice - RENDER_CAPS_DXT_NPOT
14:43:51 T:8224   DEBUG: CRenderSystemDX::CreateDevice - nVidia workaround - disabling RENDER_CAPS_DXT_NPOT
14:43:51 T:8224   DEBUG: CWinSystemWin32::SetFullScreen (windowed fullscreen) on screen 0 with size 1920x1080, refresh 60.000000
14:43:51 T:8224   DEBUG: CRenderManager::UpdateDisplayLatency - Latency set to 0 msec
14:43:51 T:8224    INFO: load default splash image: C:\Program Files (x86)\XBMC\media\Splash.png
14:43:51 T:8224   DEBUG: SECTION:LoadDLL(special://xbmcbin/system/ImageLib.dll)
14:43:51 T:8224    INFO: load keymapping
14:43:51 T:8224    INFO: Loading special://xbmc/system/keymaps/appcommand.xml
14:43:51 T:8224    INFO: Loading special://xbmc/system/keymaps/gamepad.xml
14:43:51 T:8224    INFO: Loading special://xbmc/system/keymaps/joystick.Alienware.Dual.Compatible.Controller.xml
14:43:51 T:8224    INFO: Loading special://xbmc/system/keymaps/joystick.AppleRemote.xml
14:43:51 T:8224    INFO: Loading special://xbmc/system/keymaps/joystick.Harmony.xml
14:43:51 T:8224    INFO: Loading special://xbmc/system/keymaps/joystick.Interact.AxisPad.xml
14:43:51 T:8224    INFO: Loading special://xbmc/system/keymaps/joystick.Logitech.RumblePad.2.xml
14:43:51 T:8224    INFO: Loading special://xbmc/system/keymaps/joystick.Microsoft.Xbox.360.Controller.xml
14:43:51 T:8224    INFO: Loading special://xbmc/system/keymaps/joystick.Microsoft.Xbox.Controller.S.xml
14:43:51 T:8224    INFO: Loading special://xbmc/system/keymaps/joystick.PS3.Remote.Keyboard.xml
14:43:51 T:8224    INFO: Loading special://xbmc/system/keymaps/joystick.Sony.PLAYSTATION(R)3.Controller.xml
14:43:51 T:8224    INFO: Loading special://xbmc/system/keymaps/joystick.WiiRemote.xml
14:43:51 T:8224    INFO: Loading special://xbmc/system/keymaps/keyboard.xml
14:43:51 T:8224    INFO: Loading special://xbmc/system/keymaps/mouse.xml
14:43:51 T:8224    INFO: Loading special://xbmc/system/keymaps/remote.xml
14:43:51 T:8224    INFO: Loading special://xbmc/system/IRSSmap.xml
14:43:51 T:8224    INFO: * Adding remote mapping for device 'Microsoft MCE'
14:43:51 T:8224    INFO: * Adding remote mapping for device 'Abstract'
14:43:51 T:8224   DEBUG: CButtonTranslator::Load - no userdata IRSSmap.xml found, skipping
14:43:51 T:8224    INFO: GUI format 1920x1080, Display 1920x1080 @ 60.00 - Full Screen
14:43:51 T:8224   DEBUG: guilib: Fill viewport on change for solving rendering passes
14:43:51 T:8224   DEBUG: SECTION:LoadDLL(special://xbmcbin/system/libcurl.dll)
14:43:51 T:8224  NOTICE: Running database version Addons15
14:43:51 T:8224   DEBUG: CDatabaseManager::Initialize, updating databases...
14:43:51 T:8224  NOTICE: Running database version ViewModes4
14:43:51 T:8224  NOTICE: Running database version Textures13
14:43:51 T:8224  NOTICE: Running database version xbmc_music32
14:43:51 T:7032   DEBUG: CRemoteControl::Connect - connecting to: 127.0.0.1:24000 ...
14:43:51 T:8224  NOTICE: Running database version xbmc_videos75
14:43:51 T:8224  NOTICE: Running database version TV22
14:43:51 T:8224  NOTICE: Running database version Epg7
14:43:51 T:8224   DEBUG: CDatabaseManager::Initialize, updating databases... DONE
14:43:51 T:8224  NOTICE: initializing playlistplayer
14:43:51 T:8224  NOTICE: DONE initializing playlistplayer
14:43:51 T:8224   DEBUG: DPMS: supported power-saving modes: OFF STANDBY
14:43:51 T:8224   DEBUG: CAnnouncementManager - Announcement: OnClear from xbmc
14:43:51 T:8224   DEBUG: GOT ANNOUNCEMENT, type: 2, from xbmc, message OnClear
14:43:51 T:8224    INFO: Unloading old skin ...
14:43:51 T:8224    INFO:   load skin from: C:\Program Files (x86)\XBMC\addons\skin.confluence (version: 2.1.4)
14:43:51 T:8224    INFO:   load fonts for skin...
14:43:51 T:8224    INFO: Loading fonts from C:\Program Files (x86)\XBMC\addons\skin.confluence\720p\Font.xml
14:43:51 T:8224   DEBUG: POParser: PO file has Win Style Line Endings. Converted in memory to Linux LF for file: C:\Program Files (x86)\XBMC\addons\skin.confluence\language\English\strings.po
14:43:51 T:8224   DEBUG: POParser: loaded 131 strings from file C:\Program Files (x86)\XBMC\addons\skin.confluence\language\English\strings.po
14:43:51 T:8224    INFO: Loading skin includes from C:\Program Files (x86)\XBMC\addons\skin.confluence\720p\includes.xml
14:43:51 T:8224    INFO:   load new skin...
14:43:51 T:8224    INFO: Loading user windows, path C:\Program Files (x86)\XBMC\addons\skin.confluence\720p
14:43:51 T:8224   DEBUG: Load Skin XML: 1.31ms
14:43:51 T:8224    INFO:   initialize new skin...
14:43:51 T:8224   DEBUG: guilib: Fill viewport on change for solving rendering passes
14:43:51 T:8224    INFO: Loading skin file: Pointer.xml, load type: LOAD_ON_GUI_INIT
14:43:51 T:8224   DEBUG: CTextureBundleXBT::OpenBundle - Opened bundle C:\Program Files (x86)\XBMC\addons\skin.confluence\media\Textures.xbt
14:43:51 T:8224    INFO: Loading skin file: DialogVolumeBar.xml, load type: LOAD_ON_GUI_INIT
14:43:51 T:8224    INFO: Loading skin file: DialogKaiToast.xml, load type: LOAD_ON_GUI_INIT
14:43:51 T:8224    INFO: Loading skin file: DialogMuteBug.xml, load type: LOAD_ON_GUI_INIT
14:43:51 T:8224    INFO: Loading skin file: DialogSeekBar.xml, load type: LOAD_ON_GUI_INIT
14:43:51 T:8224    INFO: Loading skin file: DialogBusy.xml, load type: LOAD_ON_GUI_INIT
14:43:51 T:8224    INFO: Loading skin file: DialogExtendedProgressBar.xml, load type: LOAD_ON_GUI_INIT
14:43:51 T:8224    INFO: Loading C:\Program Files (x86)\XBMC\addons\skin.confluence\sounds\sounds.xml
14:43:51 T:8224    INFO: CAEWAVLoader::Initialize - Sound Loaded: C:\Program Files (x86)\XBMC\addons\skin.confluence\sounds\cursor.wav
14:43:51 T:8224    INFO: CAEWAVLoader::Initialize - Sound Loaded: C:\Program Files (x86)\XBMC\addons\skin.confluence\sounds\click.wav
14:43:51 T:8224    INFO: CAEWAVLoader::Initialize - Sound Loaded: C:\Program Files (x86)\XBMC\addons\skin.confluence\sounds\back.wav
14:43:51 T:8224   DEBUG: AERemap: Downmix normalization is disabled
14:43:51 T:8224    INFO: CAEWAVLoader::Initialize - Sound Loaded: C:\Program Files (x86)\XBMC\addons\skin.confluence\sounds\shutter.wav
14:43:51 T:8224    INFO: CAEWAVLoader::Initialize - Sound Loaded: C:\Program Files (x86)\XBMC\addons\skin.confluence\sounds\notify.wav
14:43:51 T:8224   DEBUG: AERemap: Downmix normalization is disabled
14:43:51 T:8224    INFO: CAEWAVLoader::Initialize - Sound Loaded: C:\Program Files (x86)\XBMC\addons\skin.confluence\sounds\out.wav
14:43:51 T:8224   DEBUG: AERemap: Downmix normalization is disabled
14:43:51 T:8224    INFO:   skin loaded...
14:43:51 T:8224    INFO: JSONRPC v6.0.3: Successfully initialized
14:43:51 T:8224   DEBUG: ADDON: Starting service addons.
14:43:51 T:8224    INFO: initializing python engine.
14:43:52 T:8224   DEBUG: new python thread created. id=1
14:43:52 T:8224    INFO: initializing python engine.
14:43:52 T:8224   DEBUG: new python thread created. id=2
14:43:52 T:10212  NOTICE: Thread XBPyThread start, auto delete: false
14:43:52 T:10212   DEBUG: Python thread: start processing
14:43:52 T:8224    INFO: initializing python engine.
14:43:52 T:8224   DEBUG: new python thread created. id=3
14:43:52 T:7348  NOTICE: Thread XBPyThread start, auto delete: false
14:43:52 T:7348   DEBUG: Python thread: start processing
14:43:52 T:8224   DEBUG: Activating window ID: 12999
14:43:52 T:8224   DEBUG: ------ Window Init (Startup.xml) ------
14:43:52 T:8224    INFO: Loading skin file: Startup.xml, load type: LOAD_EVERY_TIME
14:43:52 T:6596  NOTICE: Thread XBPyThread start, auto delete: false
14:43:52 T:6596   DEBUG: Python thread: start processing
14:43:52 T:8224    INFO: removing tempfiles
14:43:52 T:8224   DEBUG: ADDON: Starting service addons.
14:43:52 T:8224    INFO: initializing python engine.
14:43:52 T:8224   DEBUG: new python thread created. id=4
14:43:52 T:8224  NOTICE: initialize done
14:43:52 T:9992  NOTICE: Thread XBPyThread start, auto delete: false
14:43:52 T:9992   DEBUG: Python thread: start processing
14:43:52 T:10212  NOTICE: -->Python Interpreter Initialized<--
14:43:52 T:10212   DEBUG: XBPyThread::Process - The source file to load is C:\Users\Adrian\AppData\Roaming\XBMC\addons\service.skin.widgets\default.py
14:43:52 T:10212   DEBUG: XBPyThread::Process - Setting the Python path to C:\Users\Adrian\AppData\Roaming\XBMC\addons\service.skin.widgets;C:\Users\Adrian\AppData\Roaming\XBMC\addons\script.module.chardet\lib;C:\Program Files (x86)\XBMC\addons\weather.wunderground\resources\lib\wunderground;C:\Program Files (x86)\XBMC\addons\script.module.simplejson\lib;C:\Program Files (x86)\XBMC\addons\script.module.pil\lib;C:\Users\Adrian\AppData\Roaming\XBMC\addons\script.video.parentalcontrols\resources\lib;C:\Users\Adrian\AppData\Roaming\XBMC\addons\script.common.plugin.cache\lib;C:\Users\Adrian\AppData\Roaming\XBMC\addons\script.module.elementtree\lib;C:\Program Files (x86)\XBMC\addons\script.module.pysqlite\lib;C:\Program Files (x86)\XBMC\system\python\DLLs;C:\Program Files (x86)\XBMC\system\python\Lib;C:\Program Files (x86)\XBMC\python26.zip;C:\Program Files (x86)\XBMC\system\python\lib\plat-win;C:\Program Files (x86)\XBMC\system\python\lib\lib-tk;C:\Program Files (x86)\XBMC;C:\Program Files (x86)\XBMC\system\python;C:\Program Files (x86)\XBMC\system\python\lib\site-packages;
14:43:52 T:10212   DEBUG: XBPyThread::Process - Entering source directory C:\Users\Adrian\AppData\Roaming\XBMC\addons\service.skin.widgets
14:43:52 T:10212   DEBUG: Instantiating addon using automatically obtained id of "service.skin.widgets" dependent on version 2.1.0 of the xbmc.python api
14:43:52 T:8224   DEBUG: CJoystick::Initialize : No Joystick found
14:43:52 T:8224  NOTICE: Running the application...
14:43:52 T:8224   DEBUG: CApplication::ExecuteXBMCAction : Translating ReplaceWindow(Home)
14:43:52 T:8224   DEBUG: CApplication::ExecuteXBMCAction : To ReplaceWindow(Home)
14:43:52 T:8224   DEBUG: Activating window ID: 10000
14:43:52 T:8224   DEBUG: ------ Window Init () ------
14:43:52 T:8224   DEBUG: ------ Window Init (Pointer.xml) ------
14:43:52 T:7348  NOTICE: -->Python Interpreter Initialized<--
14:43:52 T:7348   DEBUG: XBPyThread::Process - The source file to load is C:\Users\Adrian\AppData\Roaming\XBMC\addons\script.video.parentalcontrols\resources\lib\parentalcontrols\service.py
14:43:52 T:6596  NOTICE: -->Python Interpreter Initialized<--
14:43:52 T:6596   DEBUG: XBPyThread::Process - The source file to load is C:\Users\Adrian\AppData\Roaming\XBMC\addons\script.artwork.downloader\service.py
14:43:52 T:9992  NOTICE: -->Python Interpreter Initialized<--
14:43:52 T:9992   DEBUG: XBPyThread::Process - The source file to load is C:\Users\Adrian\AppData\Roaming\XBMC\addons\script.common.plugin.cache\default.py
14:43:52 T:7348   DEBUG: XBPyThread::Process - Setting the Python path to C:\Users\Adrian\AppData\Roaming\XBMC\addons\script.video.parentalcontrols\resources\lib\parentalcontrols;C:\Users\Adrian\AppData\Roaming\XBMC\addons\script.module.chardet\lib;C:\Program Files (x86)\XBMC\addons\weather.wunderground\resources\lib\wunderground;C:\Program Files (x86)\XBMC\addons\script.module.simplejson\lib;C:\Program Files (x86)\XBMC\addons\script.module.pil\lib;C:\Users\Adrian\AppData\Roaming\XBMC\addons\script.video.parentalcontrols\resources\lib;C:\Users\Adrian\AppData\Roaming\XBMC\addons\script.common.plugin.cache\lib;C:\Users\Adrian\AppData\Roaming\XBMC\addons\script.module.elementtree\lib;C:\Program Files (x86)\XBMC\addons\script.module.pysqlite\lib;C:\Program Files (x86)\XBMC\system\python\DLLs;C:\Program Files (x86)\XBMC\system\python\Lib;C:\Program Files (x86)\XBMC\python26.zip;C:\Program Files (x86)\XBMC\system\python\lib\plat-win;C:\Program Files (x86)\XBMC\system\python\lib\lib-tk;C:\Program Files (x86)\XBMC;C:\Program Files (x86)\XBMC\system\python;C:\Program Files (x86)\XBMC\system\python\lib\site-packages;
14:43:52 T:7348   DEBUG: XBPyThread::Process - Entering source directory C:\Users\Adrian\AppData\Roaming\XBMC\addons\script.video.parentalcontrols\resources\lib\parentalcontrols
14:43:52 T:6596   DEBUG: XBPyThread::Process - Setting the Python path to C:\Users\Adrian\AppData\Roaming\XBMC\addons\script.artwork.downloader;C:\Users\Adrian\AppData\Roaming\XBMC\addons\script.module.chardet\lib;C:\Program Files (x86)\XBMC\addons\weather.wunderground\resources\lib\wunderground;C:\Program Files (x86)\XBMC\addons\script.module.simplejson\lib;C:\Program Files (x86)\XBMC\addons\script.module.pil\lib;C:\Users\Adrian\AppData\Roaming\XBMC\addons\script.video.parentalcontrols\resources\lib;C:\Users\Adrian\AppData\Roaming\XBMC\addons\script.common.plugin.cache\lib;C:\Users\Adrian\AppData\Roaming\XBMC\addons\script.module.elementtree\lib;C:\Program Files (x86)\XBMC\addons\script.module.pysqlite\lib;C:\Program Files (x86)\XBMC\system\python\DLLs;C:\Program Files (x86)\XBMC\system\python\Lib;C:\Program Files (x86)\XBMC\python26.zip;C:\Program Files (x86)\XBMC\system\python\lib\plat-win;C:\Program Files (x86)\XBMC\system\python\lib\lib-tk;C:\Program Files (x86)\XBMC;C:\Program Files (x86)\XBMC\system\python;C:\Program Files (x86)\XBMC\system\python\lib\site-packages;
14:43:52 T:6596   DEBUG: XBPyThread::Process - Entering source directory C:\Users\Adrian\AppData\Roaming\XBMC\addons\script.artwork.downloader
14:43:52 T:9992   DEBUG: XBPyThread::Process - Setting the Python path to C:\Users\Adrian\AppData\Roaming\XBMC\addons\script.common.plugin.cache;C:\Users\Adrian\AppData\Roaming\XBMC\addons\script.module.chardet\lib;C:\Program Files (x86)\XBMC\addons\weather.wunderground\resources\lib\wunderground;C:\Program Files (x86)\XBMC\addons\script.module.simplejson\lib;C:\Program Files (x86)\XBMC\addons\script.module.pil\lib;C:\Users\Adrian\AppData\Roaming\XBMC\addons\script.video.parentalcontrols\resources\lib;C:\Users\Adrian\AppData\Roaming\XBMC\addons\script.common.plugin.cache\lib;C:\Users\Adrian\AppData\Roaming\XBMC\addons\script.module.elementtree\lib;C:\Program Files (x86)\XBMC\addons\script.module.pysqlite\lib;C:\Program Files (x86)\XBMC\system\python\DLLs;C:\Program Files (x86)\XBMC\system\python\Lib;C:\Program Files (x86)\XBMC\python26.zip;C:\Program Files (x86)\XBMC\system\python\lib\plat-win;C:\Program Files (x86)\XBMC\system\python\lib\lib-tk;C:\Program Files (x86)\XBMC;C:\Program Files (x86)\XBMC\system\python;C:\Program Files (x86)\XBMC\system\python\lib\site-packages;
14:43:52 T:9992   DEBUG: XBPyThread::Process - Entering source directory C:\Users\Adrian\AppData\Roaming\XBMC\addons\script.common.plugin.cache
14:43:52 T:6596   DEBUG: Instantiating addon using automatically obtained id of "script.artwork.downloader" dependent on version 2.1.0 of the xbmc.python api
14:43:52 T:7348   DEBUG: Instantiating addon using automatically obtained id of "script.video.parentalcontrols" dependent on version 2.0 of the xbmc.python api
14:43:52 T:9992   DEBUG: Instantiating addon using automatically obtained id of "script.common.plugin.cache" dependent on version 2.1.0 of the xbmc.python api
14:43:52 T:8224   DEBUG: ------ Window Deinit (Startup.xml) ------
14:43:52 T:8224   DEBUG: ------ Window Init (Home.xml) ------
14:43:52 T:8224    INFO: Loading skin file: Home.xml, load type: KEEP_IN_MEMORY
14:43:52 T:10212   DEBUG: Skin Widgets: script version 0.0.25 started
14:43:52 T:9992  NOTICE:  StorageServer Module loaded RUN
14:43:52 T:9992  NOTICE: StorageClient-2.5.0 Starting server
14:43:52 T:9992  NOTICE: StorageServer-2.5.0 Storage Server starting C:\Users\Adrian\AppData\Roaming\XBMC\userdata\addon_data\script.common.plugin.cache\commoncache.db
14:43:52 T:6596   DEBUG: POParser: loaded 99 strings from file C:\Users\Adrian\AppData\Roaming\XBMC\addons\script.artwork.downloader\resources\language\English\strings.po
14:43:52 T:7348  NOTICE: Started
14:43:52 T:1448  NOTICE: Thread Jobworker start, auto delete: true
14:43:52 T:7032   DEBUG: CRemoteControl::Connect - failed to connect
14:43:52 T:7032    INFO: CRemoteControl::Process - failed to connect to irss, will keep retrying every 5 seconds
14:43:52 T:8224   DEBUG: XBPython::Process - no profile autoexec.py (C:\Users\Adrian\AppData\Roaming\XBMC\userdata\autoexec.py) found, skipping
14:43:52 T:1448   DEBUG: CRecentlyAddedJob::UpdateMusic() - Running RecentlyAdded home screen update
14:43:52 T:7348   ERROR: EXCEPTION: Window id does not exist
14:43:52 T:8224   DEBUG: CNetwork::NetworkMessage - Starting network services
14:43:52 T:8224  NOTICE: ES: Starting event server
14:43:52 T:8224    INFO: JSONRPC Server: Successfully initialized
14:43:52 T:10212   DEBUG: JSONRPC: Incoming request: {"jsonrpc": "2.0",  "id": 1, "method": "VideoLibrary.GetMovies", "params": {"properties": ["title", "originaltitle", "playcount", "year", "genre", "studio", "country", "tagline", "plot", "runtime", "file", "plotoutline", "lastplayed", "trailer", "rating", "resume", "art", "streamdetails", "mpaa", "director"], "limits": {"end": 20}, "sort": {"method": "random" }, "filter": {"field": "playcount", "operator": "lessthan", "value": "1"}}}
14:43:52 T:6952  NOTICE: Thread CTCPServer start, auto delete: false
14:43:52 T:2460  NOTICE: Thread CEventServer start, auto delete: false
14:43:52 T:8224   DEBUG: CLastfmScrobbler: Clearing session.
14:43:52 T:2460  NOTICE: ES: Starting UDP Event server on 0.0.0.0:9777
14:43:52 T:10212   DEBUG: JSONRPC: Calling videolibrary.getmovies
14:43:52 T:2460  NOTICE: UDP: Listening on port 9777
14:43:52 T:8224   DEBUG: CLibrefmScrobbler: Clearing session.
14:43:52 T:8224   DEBUG: ------ Window Init (DialogKaiToast.xml) ------
14:43:52 T:9264  NOTICE: Thread CRssReader start, auto delete: false
14:43:52 T:9264   DEBUG: CurlFile::Open(0C8EF394) http://feeds.xbmc.org/xbmc
14:43:52 T:9264    INFO: XCURL::DllLibCurlGlobal::easy_aquire - Created session to http://feeds.xbmc.org
14:43:53 T:9264   DEBUG: Got rss feed: http://feeds.xbmc.org/xbmc
14:43:53 T:9264   DEBUG: RSS feed encoding: UTF-8
14:43:53 T:9264   DEBUG: Parsed rss feed: http://feeds.xbmc.org/xbmc
14:43:53 T:9264   DEBUG: Thread CRssReader 9264 terminating
14:43:53 T:10212   DEBUG: CVideoDatabase::RunQuery took 71 ms for 936 items query: select * from movieview  WHERE ((movieview.playCount IS NULL OR movieview.playCount < 1))
14:43:53 T:1448   DEBUG: GetRecentlyAddedAlbumSongs() query: SELECT songview.* FROM (SELECT idAlbum FROM albumview ORDER BY idAlbum DESC LIMIT 10) AS recentalbums JOIN songview ON songview.idAlbum=recentalbums.idAlbum
14:43:53 T:1448   DEBUG: CMusicDatabase::GetRecentlyAddedAlbums query: select * from albumview where strAlbum != '' order by idAlbum desc limit 10
14:43:53 T:1448   DEBUG: CRecentlyAddedJob::UpdateVideos() - Running RecentlyAdded home screen update
14:43:53 T:1448   DEBUG: CVideoDatabase::RunQuery took 71 ms for 10 items query: select * from movieview  ORDER BY dateAdded desc, idMovie desc LIMIT 10
14:43:53 T:6596  NOTICE: Artwork Downloader: ## Service - Run at startup: False
14:43:53 T:6596  NOTICE: Artwork Downloader: ## Service - Delayed startup:  minutes
14:43:53 T:6596  NOTICE: Artwork Downloader: ## Service - Run as service: False
14:43:53 T:7348   ERROR: EXCEPTION: Window id does not exist
14:43:53 T:6596  NOTICE: Artwork Downloader: ## Service - Time: :00
14:43:53 T:6596    INFO: Scriptresult: Success
14:43:53 T:6596    INFO: Python script stopped
14:43:53 T:6596   DEBUG: Thread XBPyThread 6596 terminating
14:43:53 T:8224   DEBUG: waiting for python thread 3 (C:\Users\Adrian\AppData\Roaming\XBMC\addons\script.artwork.downloader\service.py) to stop
14:43:53 T:8224   DEBUG: python thread 3 (C:\Users\Adrian\AppData\Roaming\XBMC\addons\script.artwork.downloader\service.py) destructed
14:43:53 T:10212   DEBUG: JSONRPC: Incoming request: {"jsonrpc": "2.0", "id": 1, "method": "VideoLibrary.GetEpisodes", "params": { "properties": ["title", "playcount", "season", "episode", "showtitle", "plot", "file", "rating", "resume", "tvshowid", "art", "streamdetails", "firstaired", "runtime"], "limits": {"end": 20}, "sort": {"method": "random" }, "filter": {"field": "playcount", "operator": "lessthan", "value": "1"}}}
14:43:53 T:10212   DEBUG: JSONRPC: Calling videolibrary.getepisodes
14:43:54 T:1448   DEBUG: CVideoDatabase::RunQuery took 249 ms for 10 items query: select * from episodeview  ORDER BY dateAdded desc, idEpisode desc LIMIT 10
14:43:54 T:548  NOTICE: Thread Jobworker start, auto delete: true
14:43:54 T:548   DEBUG: CThumbExtractor::DoWork - trying to extract filestream details from video file nfs://192.168.0.100/raid0/data/Media/TV Series/Private Practice/Private Practice Season 06/Private Practice S06E10 Georgia on My Mind.mkv
14:43:54 T:548   DEBUG: NFS: Context for 192.168.0.100/raid0/data/Media not open - get a new context.
14:43:54 T:1448   DEBUG: CVideoDatabase::RunQuery took 1 ms for 0 items query: select * from musicvideoview  ORDER BY dateAdded desc, idMVideo desc LIMIT 10
14:43:54 T:1448   DEBUG: CRecentlyAddedJob::UpdateTotal() - Running RecentlyAdded home screen update
14:43:54 T:548   DEBUG: NFS: Connected to server 192.168.0.100 and export /raid0/data/Media
14:43:54 T:548   DEBUG: NFS: chunks: r/w 32768/32768
14:43:54 T:548   DEBUG: CNFSFile::Open - opened raid0/data/Media/TV Series/Private Practice/Private Practice Season 06/Private Practice S06E10 Georgia on My Mind.mkv
14:43:54 T:548   DEBUG: SECTION:LoadDLL(special://xbmcbin/system/players/dvdplayer/avutil-51.dll)
14:43:54 T:548   DEBUG: SECTION:LoadDLL(special://xbmcbin/system/players/dvdplayer/avcodec-53.dll)
14:43:54 T:548   DEBUG: SECTION:LoadDLL(special://xbmcbin/system/players/dvdplayer/avformat-53.dll)
14:43:54 T:548   DEBUG: CDVDDemuxFFmpeg::Open - probing detected format [matroska,webm]
14:43:54 T:548   DEBUG: CDVDDemuxFFmpeg::Open - avformat_find_stream_info starting
14:43:54 T:548   DEBUG: CDVDDemuxFFmpeg::Open - av_find_stream_info finished
14:43:54 T:548    INFO: ffmpeg[224]: Input #0, matroska,webm, from 'nfs://192.168.0.100/raid0/data/Media/TV Series/Private Practice/Private Practice Season 06/Private Practice S06E10 Georgia on My Mind.mkv':
14:43:54 T:548    INFO: ffmpeg[224]:   Duration: 00:43:11.14, start: 0.000000, bitrate: 683 kb/s
14:43:54 T:548    INFO: ffmpeg[224]:     Stream #0:0(eng): Audio: aac, 48000 Hz, stereo, s16 (default) (forced)
14:43:54 T:548    INFO: ffmpeg[224]:     Metadata:
14:43:54 T:548    INFO: ffmpeg[224]:       title           : (m)iCRO(S)iZED(D)OWNLOADS
14:43:54 T:548    INFO: ffmpeg[224]:     Stream #0:1(eng): Video: h264 (High), yuv420p, 852x480, SAR 1:1 DAR 71:40, 23.98 fps, 23.98 tbr, 1k tbn, 47.95 tbc (default)
14:43:54 T:548    INFO: ffmpeg[224]:     Metadata:
14:43:54 T:548    INFO: ffmpeg[224]:       title           : (m)iCRO(S)iZED(D)OWNLOADS
14:43:54 T:548   DEBUG: CNFSFile::Close closing file raid0/data/Media/TV Series/Private Practice/Private Practice Season 06/Private Practice S06E10 Georgia on My Mind.mkv
14:43:54 T:8224   DEBUG: Keyboard: scancode: 38, sym: 0134, unicode: 0000, modifier: 100
14:43:54 T:8224   DEBUG: CApplication::OnKey: alt-leftalt (4f0d4) pressed, action is
14:43:54 T:8224   DEBUG: ------ Window Deinit (Pointer.xml) ------
14:43:54 T:8224   DEBUG: CWinEventsWin32::WndProcWindow is active
14:43:54 T:8224   DEBUG: CWinEventsWin32::WndProc: Focus switched to process C:\Windows\explorer.exe
14:43:55 T:8224   DEBUG: ------ Window Deinit (DialogKaiToast.xml) ------
14:43:59 T:10212   DEBUG: CVideoDatabase::RunQuery took 191 ms for 2381 items query: select * from episodeview  WHERE ((episodeview.playCount IS NULL OR episodeview.playCount < 1))
14:44:00 T:7348   ERROR: EXCEPTION: Window id does not exist
14:44:00 T:10212   DEBUG: JSONRPC: Incoming request: {"jsonrpc": "2.0",  "id": 1, "method": "VideoLibrary.GetMusicVideos", "params": {"properties": ["title", "artist", "playcount", "year", "plot", "genre", "runtime", "fanart", "thumbnail", "file", "streamdetails", "resume"],  "limits": {"end": 20}, "sort": {"method": "random"}}}
14:44:00 T:10212   DEBUG: JSONRPC: Calling videolibrary.getmusicvideos
14:44:00 T:10212   DEBUG: CVideoDatabase::RunQuery took 1 ms for 0 items query: select * from musicvideoview
14:44:00 T:10212   DEBUG: JSONRPC: Incoming request: {"jsonrpc": "2.0", "id": 1, "method": "AudioLibrary.GetAlbums", "params": {"properties": ["title", "description", "albumlabel", "theme", "mood", "style", "type", "artist", "genre", "year", "thumbnail", "fanart", "rating", "playcount"], "limits": {"end": 20}, "sort": {"method": "random"}}}
14:44:00 T:10212   DEBUG: JSONRPC: Calling audiolibrary.getalbums
14:44:00 T:10212   DEBUG: CMusicDatabase::GetAlbumsByWhere query: SELECT albumview.* FROM albumview  WHERE albumview.strAlbum <> ''
14:44:00 T:10212   DEBUG: CMusicDatabase::GetAlbumsByWhere - query took 1 ms
14:44:00 T:10212   DEBUG: JSONRPC: Incoming request: {"jsonrpc": "2.0", "method": "AudioLibrary.GetArtists", "params": {"properties": ["genre", "description", "mood", "style", "born", "died", "formed", "disbanded", "yearsactive", "instrument", "fanart", "thumbnail"], "sort": {"method": "random"}, "limits": {"end": 20}}, "id": 1}
14:44:00 T:10212   DEBUG: JSONRPC: Calling audiolibrary.getartists
14:44:00 T:10212   DEBUG: CMusicDatabase::GetArtistsByWhere query: SELECT artistview.* FROM artistview  WHERE (artistview.idArtist IN (SELECT song_artist.idArtist FROM song_artist) OR artistview.idArtist IN (SELECT album_artist.idArtist FROM album_artist)) and artistview.strArtist != '' and artistview.idArtist <> 1
14:44:00 T:10212   DEBUG: Time to retrieve artists from dataset = 27
14:44:00 T:10212   DEBUG: JSONRPC: Incoming request: {"jsonrpc": "2.0", "id": 1, "method": "AudioLibrary.GetSongs", "params": {"properties": ["title", "playcount", "artist", "album", "year", "file", "thumbnail", "fanart", "rating"], "filter": {"field": "playcount", "operator": "lessthan", "value": "1"}, "limits": {"end": 20},  "sort": {"method": "random"}}}
14:44:00 T:10212   DEBUG: JSONRPC: Calling audiolibrary.getsongs
14:44:00 T:10212   DEBUG: CMusicDatabase::GetSongsByWhere query = SELECT songview.* FROM songview  WHERE ((CAST(songview.iTimesPlayed as DECIMAL(5,1)) < 1))
14:44:00 T:10212   DEBUG: JSONRPC: Incoming request: {"jsonrpc": "2.0", "method": "Addons.GetAddons", "params": {"properties": ["name", "author", "summary", "version", "fanart", "thumbnail"]}, "id": 1}
14:44:00 T:10212   DEBUG: JSONRPC: Calling addons.getaddons
14:44:00 T:7348   ERROR: EXCEPTION: Window id does not exist
14:44:00 T:10212   DEBUG: Skin Widgets: Total time needed to request random queries: 0:00:07.660000
14:44:00 T:10212   DEBUG: JSONRPC: Incoming request: {"jsonrpc": "2.0",  "id": 1, "method": "VideoLibrary.GetMovies", "params": {"properties": ["title", "originaltitle", "playcount", "year", "genre", "studio", "country", "tagline", "plot", "runtime", "file", "plotoutline", "lastplayed", "trailer", "rating", "resume", "art", "streamdetails", "mpaa", "director"], "limits": {"end": 20}, "sort": {"order": "descending", "method": "lastplayed"}, "filter": {"field": "inprogress", "operator": "true", "value": ""}}}
14:44:00 T:10212   DEBUG: JSONRPC: Calling videolibrary.getmovies
14:44:00 T:10212   DEBUG: CVideoDatabase::RunQuery took 11 ms for 1 items query: select * from movieview  WHERE (movieview.idFile  IN (select idFile from bookmark where type = 1))
14:44:00 T:10212   DEBUG: JSONRPC: Incoming request: {"jsonrpc": "2.0", "method": "VideoLibrary.GetTVShows", "params": {"properties": ["title", "studio", "mpaa", "file", "art"], "sort": {"order": "descending", "method": "lastplayed"}, "filter": {"field": "inprogress", "operator": "true", "value": ""}, "limits": {"end": 20}}, "id": 1}
14:44:00 T:10212   DEBUG: JSONRPC: Calling videolibrary.gettvshows
14:44:01 T:10212   DEBUG: CVideoDatabase::RunQuery took 187 ms for 1 items query: SELECT * FROM tvshowview  WHERE (tvshowview.idShow IN (select tvshowview.idShow from tvshowview where (watchedcount > 0 AND watchedcount < totalCount) OR (watchedcount = 0 AND tvshowview.idShow IN (select episodeview.idShow from episodeview WHERE episodeview.idShow = tvshowview.idShow AND episodeview.resumeTimeInSeconds > 0))))
14:44:01 T:7348   ERROR: EXCEPTION: Window id does not exist
14:44:01 T:10212   DEBUG: JSONRPC: Incoming request: {"jsonrpc": "2.0", "method": "VideoLibrary.GetEpisodes", "params": {"tvshowid": 25, "properties": ["title", "playcount", "plot", "season", "episode", "showtitle", "file", "lastplayed", "rating", "resume", "art", "streamdetails", "firstaired", "runtime"], "sort": {"method": "episode"}, "filter": {"field": "playcount", "operator": "is", "value": "0"}, "limits": {"end": 1}}, "id": 1}
14:44:01 T:10212   DEBUG: JSONRPC: Calling videolibrary.getepisodes
14:44:01 T:10212   DEBUG: CVideoDatabase::GetStackedTvShowList query: select idShow from tvshow where c00 like (select c00 from tvshow where idShow=25) order by idShow
14:44:01 T:10212   DEBUG: CVideoDatabase::RunQuery took 20 ms for 16 items query: select * from episodeview  WHERE (episodeview.idShow = 25) AND (((episodeview.playCount IS NULL OR episodeview.playCount = 0)))
14:44:01 T:10212   DEBUG: DatabaseUtils::GetSortFieldList: unknown field 23
14:44:01 T:10212   DEBUG: JSONRPC: Incoming request: {"jsonrpc": "2.0", "id": 1, "method": "AudioLibrary.GetAlbums", "params": {"properties": ["title", "description", "albumlabel", "theme", "mood", "style", "type", "artist", "genre", "year", "thumbnail", "fanart", "rating", "playcount"], "limits": {"end": 20}, "sort": {"order": "descending", "method": "playcount" }}}
14:44:01 T:10212   DEBUG: JSONRPC: Calling audiolibrary.getalbums
Reply
#15
How is XBMC dealing with TV show certification? I set up smart playlists for each rating but nothing appears under them when I navigate to the playlist.

I also set up a a playlist to display everything that hasn't scrapped a certification as follows but when I try to access this playlist nothing happens at all, the screen just stays on the playlist top menu. By doing this I can check to see which movies/TV shows in the library have not been assigned a certification and then set up/edit a nfo so that the when the library is updated it will move it to the relevant certification category.

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
    <name>Not Rated</name>
    <match>all</match>
    <rule field="mpaarating" operator="isnot">
        <value>U</value>
    </rule>
    <rule field="mpaarating" operator="isnot">
        <value>PG/value>
    </rule>
    <rule field="mpaarating" operator="isnot">
        <value>12/value>
    </rule>
    <rule field="mpaarating" operator="isnot">
        <value>12A/value>
    </rule>
    <rule field="mpaarating" operator="isnot">
        <value>15/value>
    </rule>
    <rule field="mpaarating" operator="isnot">
        <value>18/value>
    </rule>
    <rule field="mpaarating" operator="isnot">
        <value>TV-PG/value>
    </rule>
    <rule field="mpaarating" operator="isnot">
        <value>TV-14/value>
    </rule>    
    <rule field="mpaarating" operator="isnot">
        <value>TV-MA/value>
    </rule>
    <order direction="ascending">title</order>
</smartplaylist>

I see all of this as being essential not just to be able to browse based on certification but for setting up proper parental controls. If certification was a default node, this process would be vastly more simplistic, especially for the non-technical users (such as myself Blush )

edit: I just noticed that under playlists the "Not Rated" play list appears as "Not Rated.xsp". The naming convention is no different to the certification ones other than there is a space between the Not and Rated; would this cause the issue of not being able to access it? The answer to this is no, so why is this happening?
Reply

Logout Mark Read Team Forum Stats Members Help
Certification Sub Menu0