-
Notifications
You must be signed in to change notification settings - Fork 58
Settings
The script is controlled by the skinner through skin settings to allow the skinner to fully integrate the settings of this script within the skin settings of the skin and to make sure the background service isn't spending time retieving info that isn't consumed by a skin.
This means that the skinner enables functions of the script with enabling some skin settings.
Important settings:
enables the extrafanart background scanner
Skin.ToggleSetting(SkinHelper.EnableExtraFanart)
Used to automatically provide the studiologo as window property. Skinstring must be set to the path to the studio logos. This path can be a folder on disk or a path to a Kodi Image resource addon. For example use the Resource addon select tool to set the path of this skin string.
RunScript(script.skin.helper.service,action=setresourceaddon,skinstring=SkinHelper.StudioLogos,addontype=resource.images.studios)
Show OSD info panel at playback start for number of seconds (0 or empty disables this)
Skin.SetNumeric(SkinHelper.ShowInfoAtPlaybackStart)
Auto close the Video OSD panel when activated by the user after number of seconds (0 or empty disables this)
Skin.SetNumeric(SkinHelper.AutoCloseVideoOSD)
Auto close the Music OSD panel when activated by the user after number of seconds (0 or empty disables this)
Skin.SetNumeric(SkinHelper.AutoCloseMusicOSD)
Enables the scraper for PVR artwork/metadata. See: https://github.com/marcelveldt/script.skin.helper.service/wiki/Listitem-Properties---PVR
Skin.SetBool(SkinHelper.EnablePVRThumbs)
Enables the scraper for Music artwork/metadata. See: https://github.com/marcelveldt/script.skin.helper.service/wiki/Listitem-Properties---Music-items
Skin.SetBool(SkinHelper.EnableMusicArt)
Enables the scraper for rich artwork (if not found in Kodi database). For example to have full artwork available for a movie in the plex or netflix addon. See: https://github.com/marcelveldt/script.skin.helper.service/wiki/Listitem-Properties---Artwork
Skin.SetBool(SkinHelper.EnableExtendedArt)
Enables the scraper for animated artwork. See: https://github.com/marcelveldt/script.skin.helper.service/wiki/Listitem-Properties---Animated-Art
Skin.SetBool(SkinHelper.EnableAnimatedPosters)
Will temporary disable the Kodi screensaver on fullscreen music playback
Skin.SetBool(SkinHelper.DisableScreenSaverOnFullScreenMusic)