Jump to content

InfoLabels: Difference between revisions

From Official Kodi Wiki
Ronie (talk | contribs)
Hitcher (talk | contribs)
 
(187 intermediate revisions by 15 users not shown)
Line 1: Line 1:
{{mininav|[[Development]]|[[Add-on development]]|[[Skinning]]}}
{{mininav|[[Development]]|[[Add-on development]]|[[Skinning]]}}
<section begin="main content" />
<section begin="main content" />
Skins can use infolabels with $INFO[infolabel] or the <info> tag. Scripts can read infolabels with <code>xbmc.getInfoLabel('infolabel')</code>.
Skins can use infolabels with '''$INFO[infolabel]''' or the '''<info>''' tag. Scripts can read infolabels with <code>'''xbmc.getInfoLabel('infolabel')'''</code>.


An up-to-date list can be found here [https://github.com/xbmc/xbmc/blob/master/xbmc/GUIInfoManager.cpp GUIInfoManager.cpp]
=== Addon ===


=== ADSP ===
{| class="wikitable sortable" width="100%"
{| class="prettytable" width="100%"
! InfoLabels
! InfoLabels
! style="80%" | Definition
! style="80%" | Description
! Version
! Version
|-
|-
ADSP.ActiveStreamType
<code>Addon.SettingInt(addon_id,setting_id)</code>
User selected stream type, e.g. music or video
'''Returns'''
|
:The integer value of the setting <code>setting_id</code> belonging to the addon with the id <code>addon_id</code>.
|-
'''Parameters'''
|  ADSP.DetectedStreamType
:'''addon_id''' - The id of the addon
|  Detected stream type by Kodi
:'''setting_id''' - The addon setting
|
{{highlight|'''Note'''<br>
|-
The provided setting with <code>setting_id</code> must be an integer setting type.<br>
|  ADSP.MasterName
Otherwise it will return the integer info default value (which is 0).}}
|  Name of the curently selected and used master dsp mode
| [https://forum.kodi.tv/showthread.php?tid=363553&pid=3098121#pid3098121 v20]
|
|-
|  ADSP.MasterInfo
|  Continuously updated information label of master mode (if available)
|
|-
|  ADSP.MasterOwnIcon
|  Icon to use for selected master mode
|
|-
|-
ADSP.MasterOverrideIcon
<code>Addon.SettingStr(addon_id,setting_id)</code>
Icon to overrite Kodi's codec icon with one of add-on, e.g. Dolby Digital EX on Dolby Digital
'''Returns'''
|
:The string value of the setting <code>setting_id</code> belonging to the addon with the id <code>addon_id</code>.
'''Parameters'''
:'''addon_id''' - The id of the addon
:'''setting_id''' - The addon setting
| [https://forum.kodi.tv/showthread.php?tid=363553&pid=3098121#pid3098121 v20]
|}
|}


=== Container ===
=== Container ===
{{highlight|'''Note'''<br>
If no <code>id</code> is specified it grabs the current container.}}


{| class="prettytable" width="100%"
{| class="wikitable sortable" width="100%"
! InfoLabels
! InfoLabels
! style="80%" | Definition
! style="80%" | Description
! Version
! Version
|-
|-
|  Container.Content
<code>Container(id).Column</code>
Shows content of the current container
'''Returns'''
:The column number of the focused position in a panel container.
|
|
|-
|-
|  Container.FolderPath
<code>Container(id).CurrentItem</code>
Shows complete path of currently displayed folder
'''Returns'''
:The current item in the container or grouplist with given id.
|
|
|-
|-
|  Container.FolderName
<code>Container(id).CurrentPage</code>
Shows top most folder in currently displayed folder
'''Returns'''
:The current page in the container with given id.
|
|
|-
|-
|  Container.Viewmode
<code>Container(id).ListItem(offset).Property</code>
|  Returns the current viewmode (list, icons etc.)
'''Returns'''
:The property of the ListItem with a given offset.
'''Parameters'''
:'''offset''' - The offset for the listitem.
{{highlight|'''Note'''<br>
<code>Property</code> has to be replaced with <code>Label</code>, <code>Label2</code>, <code>Icon</code>, etc.<br>
'''Example:''' <code>Container(50).Listitem(2).Label</code>}}
|
|
|-
|-
|  Container.SortMethod
<code>Container(id).ListItemAbsolute(x).[infolabel]</code>
|  Returns the current sort method (name, year, rating, etc.)
'''Returns'''
:The infolabel for an item in a container.
'''Parameters'''
:'''x''' - The absolute position in the container.
{{highlight|'''Note'''<br>
'''Example:''' <code>Container(50).ListItemAbsolute(4).Genre</code>}}
|
|
|-
|-
|  Container.SortOrder
<code>Container(id).ListItemNoWrap(offset).Property</code>
|  Returns the current sort order (Ascending/Descending)
'''Returns'''
:The same as Container(id).ListItemNoWrap(offset).Property but it won't wrap.<br>
:This means if the last item of a list is focused, <code>ListItemNoWrap(1)</code> will be empty while <code>ListItem(1)</code> will return the first item of the list.<br>
'''Parameters'''
:'''offset''' - The offset for the listitem.
{{highlight|'''Note'''<br>
<code>Property</code> has to be replaced with <code>Label</code>, <code>Label2</code>, <code>Icon</code>, etc.<br>
'''Example''': <code>Container(50).ListitemNoWrap(1).Plot</code>}}
|
|
|-
|-
|  Container.PluginName
<code>Container(id).ListItemPosition(x).[infolabel]</code>
|  Returns the current plugins base folder name
'''Returns'''
:The infolabel for an item in a container.
'''Parameters'''
:'''x''' - The position in the container relative to the cursor position.
{{highlight|'''Note'''<br>
'''Example:''' <code>Container(50).ListItemAbsolute(4).Genre</code>}}
|
|
|-
|-
|  Container.PluginCategory
<code>Container(id).NumAllItems</code>
|  Returns the current plugins category (set by the scripter)
'''Returns'''
|
:The number of all items in the container or grouplist with given id including parent folder item.
|-
| [https://forum.kodi.tv/showthread.php?tid=298565&pid=2553240#pid2553240 v18]
|  Container.ShowPlot
|  Returns the TV Show plot of the current container and can be used at season and episode level
|
|-
|-
|  Container.ShowTitle
<code>Container(id).NumItems</code>
|  Returns the TV Show title of the current container and can be used at season and episode level
'''Returns'''
:The number of items in the container or grouplist with given id excluding parent folder item.
|
|
|-
|-
|  Container(id).NumPages
<code>Container(id).NumNonFolderItems</code>
Number of pages in the container with given id. If no id is specified it grabs the current container.
'''Returns'''
|
:The number of items in the container or grouplist with given id excluding all folder items (e.g. pvr recordings folders, parent ".." folder, "All albums", etc).
| [https://forum.kodi.tv/showthread.php?tid=298565&pid=2553240#pid2553240 v18]
|-
|-
|  Container(id).NumItems
<code>Container(id).NumPages</code>
Number of items in the container or grouplist with given id.  If no id is specified it grabs the current container.
'''Returns'''
:The number of pages in the container with given id.
|
|
|-
|-
|  Container(id).CurrentPage
<code>Container(id).Position</code>
Current page in the container with given id.  If no id is specified it grabs the current container.
'''Returns'''
:The current focused position of container / grouplist (id) as a numeric label.
|
|
|-
|-
|  Container(id).CurrentItem
<code>Container(id).Row</code>
Current item in the container or grouplist with given id.  If no id is specified it grabs the current container.
'''Returns'''
:The row number of the focused position in a panel container.
|
|
|-
|-
|  Container(id).Position
<code>Container.Art(type)</code>
|  Returns the current focused position of container / grouplist (id) as a numeric label.
'''Returns'''
|
:The path to the art image file for the given type of the current container.
'''Parameters'''
:'''type''' - The art type to request.
{{highlight|'''Todo'''<br>
List of all art types.}}
|  [https://forum.kodi.tv/showthread.php?tid=231270&pid=2095396#pid2095396 v16]
[https://forum.kodi.tv/showthread.php?tid=211896&pid=1866664#pid1866664 v15]
|-
|-
|  Container(id).Column
<code>Container.Content</code>
|  Returns the column number of the focused position in a panel container.
'''Returns'''
|
:The content of the current container.
| [https://forum.kodi.tv/showthread.php?tid=231270&pid=2109488#pid2109488 v16]
|-
|-
|  Container(id).Row
<code>Container.FolderName</code>
|  Returns the row number of the focused position in a panel container.
'''Returns'''
:The top most folder in currently displayed folder.
|
|
|-
|-
|  Container(id).Totaltime
<code>Container.FolderPath</code>
|  Returns the total time of all items in the current container
'''Returns'''
:The complete path of currently displayed folder.
|
|
|-
|-
|  Container(id).TotalWatched
<code>Container.PluginCategory</code>
|  Returns the number of watched items in the current container
'''Returns'''
|
:The current plugins category (set by the scripter).
| [https://forum.kodi.tv/showthread.php?tid=250862&pid=2300634#pid2300634 v17]
|-
|-
|  Container(id).TotalUnWatched
<code>Container.PluginName</code>
|  Returns the number of unwatched items in the current container
'''Returns'''
:The current plugins base folder name.
|
|
|-
|-
|  Container(id).ListItem(offset).Label
<code>Container.Property(addoncategory)</code>
Shows ListItem.Label for a specific List or Panel Container with a offset ''( eg: Container(50).Listitem(2).Label )''
|  '''Returns'''
:The current add-on category.
|
|
|-
|-
|  Container(id).ListItem(offset).Label2
<code>Container.Property(reponame)</code>
Shows ListItem.Label2 for a specific List or Panel Container with a offset ''( eg: Container(50).Listitem(-2).Label2 )''
|  '''Returns'''
:The current add-on repository name.
|
|
|-
|-
|  Container(id).ListItem(offset).Icon
<code>Container.ShowPlot</code>
Shows ListItem.Icon for a specific List or Panel Container with a offset ''( eg: Container(52).Listitem(1).Icon)''
|  '''Returns'''
:The TV Show plot of the current container and can be used at season and episode level.
|
|
|-
|-
|  Container(id).ListItem(offset).ActualIcon
<code>Container.ShowTitle</code>
Shows ListItem.ActualIcon for a specific List or Panel Container with a offset ''( eg: Container(50).Listitem(0).ActualIcon )''
|  '''Returns'''
|
:The TV Show title of the current container and can be used at season and episode level.
| [https://forum.kodi.tv/showthread.php?tid=250862&pid=2284876#pid2284876 v17]
|-
|-
|  Container(id).ListItem(offset).Thumb
<code>Container.SortMethod</code>
Shows ListItem.Thumb for a specific List or Panel Container with a offset ''( eg: Container(50).Listitem(0).Thumb )''
|  '''Returns'''
:The current sort method (returns a localized value).
|
|
|-
|-
|  Container(id).ListItemNoWrap(offset).Property
<code>Container.SortOrder</code>
Basically returns the same as ListItem(offset) but it won't wrap. That means if the last item of a list is focused, ListItemNoWrap(1) will be empty while ListItem(1) will return the first item of the list. ''Property'' has to be replaced with Label, Label2, Icon etc. ''( eg: Container(50).ListitemNoWrap(1).Plot )''
|  '''Returns'''
|
:The current sort order (Ascending/Descending).
| [https://forum.kodi.tv/showthread.php?tid=231270&pid=2052012#pid2052012 v16]
|-
|-
|  Container(id).ListItemPosition(id).[infolabel]
<code>Container(id).TotalUnWatched</code>
Shows the infolabel for an item in a Container. the item id is the position in the container relative to the cursor position. ''( eg: Container(50).ListItemPosition(4).Genre )''
'''Returns'''
|
:The number of unwatched items in the container.
|  [https://forum.kodi.tv/showthread.php?tid=231270&pid=2052026#pid2052026 v16]
|-
|-
|  Container(id).ListItemAbsolute(id).[infolabel]
<code>Container(id).TotalWatched</code>
Shows the infolabel for an item in a Container. the item id is the absolute position in the container. ''( eg: Container(50).ListItemAbsolute(4).Genre )''
'''Returns'''
|
:The number of watched items in the container.
|  [https://forum.kodi.tv/showthread.php?tid=231270&pid=2052026#pid2052026 v16]
|-
|-
|  Container.Property(addoncategory)
<code>Container.Totaltime</code>
|  Returns the current add-on category
'''Returns'''
:The total time of all items in the current container.
|
|
|-
|-
|  Container.Property(reponame)
<code>Container.ViewCount</code>
|  Returns the current add-on repository name
'''Returns'''
|
:The number of available skin view modes for the current container listing.
| [https://forum.kodi.tv/showthread.php?tid=250862&pid=2278045#pid2278045 v17]
|-
|-
|  Container.ViewCount
<code>Container.Viewmode</code>
| The number of available skin view modes for the current container listing.
| '''Returns'''
:The current viewmode (e.g. list, icons, etc).
|
|
|}
|}
Line 170: Line 217:
=== Control ===
=== Control ===


{| class="prettytable" width="100%"
{| class="wikitable sortable" width="100%"
! InfoLabels
! InfoLabels
! style="80%" | Definition
! style="80%" | Description
! Version
! Version
|-
|-
|  Control.GetLabel(id)[.index()]
<code>Control.GetLabel(id)[.index()]</code>
|  Returns the label value or texture name of the control with the given id. Optionally you can specify index(1) to retrieve label2 from an Edit control.
'''Returns'''
|
:The label value or texture name of the control with the given id.
'''Parameters'''
:'''id''' - The id of the control.
:'''index''' - [opt] Optionally you can specify index(1) to retrieve label2 from an Edit control.
| [https://forum.kodi.tv/showthread.php?tid=211896&pid=1937160#pid1937160 v15]
|}
|}


=== Fanart ===
=== Fanart ===
{{highlight|'''Note'''<br>
Colors are arranged Lightest to Darkest.}}


{| class="prettytable" width="100%"
{| class="wikitable sortable" width="100%"
! InfoLabels
! InfoLabels
! style="80%" | Definition
! style="80%" | Description
! Version
! Version
|-
|-
|  Fanart.Color1
<code>Fanart.Color1</code>
|  Returns the first of three colors included in the currently selected '''[[Fanart]]''' theme for the parent TV Show.  Colors are arranged Lightest to Darkest.
|  Returns the first of three colors included in the currently selected '''[[Fanart]]''' theme for the parent TV Show.
|
|
|-
|-
|  Fanart.Color2
<code>Fanart.Color2</code>
|  Returns the second of three colors included in the currently selected '''[[Fanart]]''' theme for the parent TV Show.  Colors are arranged Lightest to Darkest.
|  Returns the second of three colors included in the currently selected '''[[Fanart]]''' theme for the parent TV Show.
|
|
|-
|-
|  Fanart.Color3
<code>Fanart.Color3</code>
|  Returns the third of three colors included in the currently selected '''[[Fanart]]''' theme for the parent TV Show.  Colors are arranged Lightest to Darkest.
|  Returns the third of three colors included in the currently selected '''[[Fanart]]''' theme for the parent TV Show.
|
|
|}
|}


=== ListItem ===
=== Game ===


{| class="prettytable" width="100%"
{| class="wikitable sortable" width="100%"
! InfoLabels
! InfoLabels
! style="80%" | Definition
! style="80%" | Description
! Version
! Version
|-
|-
ListItem.Label
<code>Game.Developer</code>
Shows the left label of the currently selected item in a container
'''Returns'''
|
:  The developer of the game (e.g. Activision).
| v18
|-
|-
ListItem.Label2
<code>Game.GameClient</code>
Shows the right label of the currently selected item in a container
'''Returns'''
|
:  The add-on ID of the emulator used to play the game.
| v18
|-
|-
ListItem.Title
<code>Game.Genres</code>
Shows the title of the currently selected song or movie in a container
'''Returns'''
|
:  The genre of the game (e.g. Action).
| v18
|-
|-
ListItem.OriginalTitle
<code>Game.Overview</code>
Shows the original title of the currently selected movie in a container
'''Returns'''
|
:  The game description.
|  v18
|-
|  <code>Game.Platform</code>
|  '''Returns'''
:  The platform the game runs on (e.g. Atari 2600).
|  v18
|-
|  <code>Game.Publisher</code>
|  '''Returns'''
:  The publishing company of the game (e.g. Nintendo).
| v18
|-
|-
ListItem.SortLetter
<code>Game.Title</code>
Shows the first letter of the current file in a container
'''Returns'''
|
:  The name of the game.
| v18
|-
|-
ListItem.TrackNumber
<code>Game.Year</code>
Shows the track number of the currently selected song in a container
'''Returns'''
|
:  The year the game was released.
|  v18
|}
 
=== ListItem ===
 
{|  class="wikitable sortable" width="100%"
! InfoLabels
! style="80%" | Description
! Version
|-
|-
|  ListItem.Artist
<code>ListItem.AddonBroken</code>
Shows the artist of the currently selected song in a container
Deprecated! use ListItem.AddonLifecycleDesc instead.
|
|
|-
|-
|  ListItem.AlbumArtist
<code>ListItem.AddonCreator</code>
Shows the artist of the currently selected album in a list
'''Returns'''
:The name of the author the currently selected addon.
|
|
|-
|-
|  ListItem.Property(Artist_Born)
<code>ListItem.AddonDescription</code>
Date of Birth of the currently selected Artist
'''Returns'''
:The full description of the currently selected addon.
|
|
|-
|-
| ListItem.Property(Artist_Died)
| <code>ListItem.AddonDisclaimer</code>
Date of Death of the currently selected Artist
'''Returns'''
:The disclaimer of the currently selected addon.
|
|
|-
|-
| ListItem.Property(Artist_Formed)
| <code>ListItem.AddonInstallDate</code>
Formation date of the currently selected Band
'''Returns'''
:The date the addon was installed.
|
|
|-
|-
| ListItem.Property(Artist_Disbanded)
| <code>ListItem.AddonLastUpdated</code>
Disbanding date of the currently selected Band
'''Returns'''
:The date the addon was last updated.
|
|
|-
|-
| ListItem.Property(Artist_YearsActive)
| <code>ListItem.AddonLastUsed</code>
Years the currently selected artist has been active
'''Returns'''
:The date the addon was used last.
|
|
|-
|-
| ListItem.Property(Artist_Instrument)
| <code>ListItem.AddonLifecycleDesc</code>
Instruments played by the currently selected artist
'''Returns'''
|
:The description of the lifecycle type (e.g. broken due to website changes).
| v19
|-
|-
| ListItem.Property(Artist_Description)
| <code>ListItem.AddonLifecycleType</code>
Shows a biography of the currently selected artist
'''Returns'''
|
:The lifecycle type of the addon as a localized string (e.g. normal, broken, or deprecated).
| v19
|-
|-
| ListItem.Property(Artist_Mood)
| <code>ListItem.AddonName</code>
Shows the moods of the currently selected artist
'''Returns'''
:The name of the currently selected addon.
|
|
|-
|-
| ListItem.Property(Artist_Style)
| <code>ListItem.AddonNews</code>
Shows the styles of the currently selected artist
'''Returns'''
:A brief changelog, taken from the addons' addon.xml file.
|
|
|-
|-
| ListItem.Property(Artist_Genre)
| <code>ListItem.AddonSize</code>
Shows the genre of the currently selected artist
'''Returns'''
:The filesize of the addon.
|
|
|-
|-
| ListItem.Album
| <code>ListItem.AddonSummary</code>
Shows the album of the currently selected song in a container
'''Returns'''
:A short description of the currently selected addon.
|
|
|-
|-
| ListItem.Property(Album_Mood)
| <code>ListItem.AddonType</code>
Shows the moods of the currently selected Album
'''Returns'''
:The type of the currently selected addon (e.g. screensaver, script, skin, etc).
|
|
|-
|-
| ListItem.Property(Album_Style)
| <code>ListItem.AddonVersion</code>
Shows the styles of the currently selected Album
'''Returns'''
:The version of the currently selected addon.
|
|
|-
|-
| ListItem.Property(Album_Theme)
| <code>ListItem.Album</code>
Shows the themes of the currently selected Album
'''Returns'''
:The album of the currently selected song in a container.
|
|
|-
|-
| ListItem.Property(Album_Type)
| <code>ListItem.AlbumArtist</code>
Shows the Album Type (e.g. compilation, enhanced, explicit lyrics) of the currently selected Album
'''Returns'''
:The artist of the currently selected album in a list.
|
|
|-
|-
| ListItem.Property(Album_Label)
| <code>ListItem.AlbumStatus</code>
Shows the record label of the currently selected Album
'''Returns'''
|
:The Musicbrainz release status of the album (e.g. offical, bootleg, promotion, etc).
| v19
|-
|-
| ListItem.Property(Album_Description)
| <code>ListItem.Appearances</code>
Shows a review of the currently selected Album
'''Returns'''
|
:The number of movies featuring the selected actor or directed by the selected director.
| v17
|-
|-
| ListItem.DiscNumber
| <code>ListItem.Artist</code>
Shows the disc number of the currently selected song in a container
'''Returns'''
:The artist of the currently selected song in a container.
|
|
|-
|-
| ListItem.Year
| <code>ListItem.AudioChannels</code>
Shows the year of the currently selected song, album or movie in a container
'''Returns'''
:The number of audio channels of the currently selected video (e.g. 1, 2, 4, 5, 6, 7, 8, 10, etc).
|
|
|-
|-
| ListItem.Premiered
| <code>ListItem.AudioCodec</code>
Shows the release/aired date of the currently selected episode, show, movie or EPG item in a container
'''Returns'''
|
:The audio codec of the currently selected video.<br>
:Possible values:
:*aac
:*aac_latm
:*aac_lc*
:*aac_ltp*
:*aac_ssr*
:*ac3
:*aif
:*aifc
:*aiff
:*alac
:*ape
:*avc
:*cdda
:*dca**
:*dolbydigital
:*dtshd_hra
:*dtshd_ma
:*dtshd_ma_x*
:*dtshd_ma_x_imax*
:*dtsma
:*eac3
:*eac3_ddp_atmos*
:*flac
:*he_aac*
:*he_aac_v2*
:*mp1
:*mp2
:*mp3
:*mp3float
:*ogg
:*opus
:*pcm
:*pcm_bluray
:*pcm_s16le
:*pcm_s24le
:*truehd
:*truehd_atmos*
:*vorbis
:*wav
:*wavpack
:*wmapro
:*wmav2
:
: ** note: dca replaced dts in 2011
| *v22
|-
|-
| ListItem.Genre
| <code>ListItem.AudioLanguage</code>
Shows the genre of the currently selected song, album or movie in a container
'''Returns'''
:The audio language of the currently selected video as an ISO 639-2 three character code (e.g. eng, epo, deu).
|
|
|-
|-
| ListItem.Director
| <code>ListItem.BitRate</code>
Shows the director of the currently selected movie in a container
'''Returns'''
|
:The actual bitrate for CBR or average bitrate for VBR of the currently selected song.
| v19
|-
|-
| ListItem.Country
| <code>ListItem.BPM</code>
Shows the production country of the currently selected movie in a container
'''Returns'''
|
:The Beats Per Minute of the currently selected song.
| v19
|-
|-
| ListItem.Episode
| <code>ListItem.Cast</code>
Shows the episode number value for the currently selected episode. It also shows the number of total, watched or unwatched episodes for the currently selected tvshow or season, based on the the current watched filter.
'''Returns'''
:The list of cast members, separated by carriage returns, for use in dialogvideoinfo.xml.
|
|
|-
|-
|  ListItem.Season
<code>ListItem.Cast(separator)</code>
Shows the season value for the currently selected tvshow
'''Returns'''
|
:A list of cast members, separated by given separator, or if no separator was given separated by carriage returns. Possible values for separator: comma, pipe, slash, cr, dash, colon, semicolon, fullstop.
| [https://forum.kodi.tv/showthread.php?tid=377306&pid=3230987#pid3230987 v22]
|-
|-
| ListItem.TVShowTitle
| <code>ListItem.CastAndRole</code>
Shows the name value for the currently selected tvshow in the season and episode depth of the video library
'''Returns'''
:The list of cast members and roles, separated by carriage returns. Every cast/role combination is formatted 'cast' as 'role' where 'as' is localised, for use in dialogvideoinfo.xml.
|
|
|-
|-
|  ListItem.Property(TotalSeasons)
<code>ListItem.CastAndRole(separator)</code>
Shows the total number of seasons for the currently selected tvshow
'''Returns'''
|
:A list of cast members and roles, separated by given separator, or if no separator was given separated by carriage returns. Possible values for separator: comma, pipe, slash, cr, dash, colon, semicolon, fullstop.
| [https://forum.kodi.tv/showthread.php?tid=377306&pid=3230987#pid3230987 v22]
|-
|-
| ListItem.Property(TotalEpisodes)
| <code>ListItem.ChannelLogo</code>
Shows the total number of episodes for the currently selected tvshow or season
'''Returns'''
|
:The logo of the currently selected radio or TV channel (PVR).
| v22
|-
|-
| ListItem.Property(WatchedEpisodes)
| <code>ListItem.ChannelName</code>
Shows the number of watched episodes for the currently selected tvshow or season
'''Returns'''
:The name of current selected TV channel in a container (PVR).
|
|
|-
|-
| ListItem.Property(UnWatchedEpisodes)
| <code>ListItem.ChannelName</code>
Shows the number of unwatched episodes for the currently selected tvshow or season
'''Returns'''
:The channel name of the selected item (PVR).
|
|
|-
|-
| ListItem.Property(NumEpisodes)
| <code>ListItem.ChannelNumber</code>
Shows the number of total, watched or unwatched episodes for the currently selected tvshow or season, based on the the current watched filter.
'''Returns'''
:The channel number of the selected item (PVR).
|
|
|-
|-
| ListItem.PictureAperture
| <code>ListItem.ChannelNumberLabel</code>
Shows the F-stop used to take the selected picture. This is the value of the EXIF FNumber tag (hex code 0x829D).
'''Returns'''
:The channel and subchannel number of the currently selected channel that's currently playing (PVR).
|
|
|-
|-
| ListItem.PictureAuthor
| <code>ListItem.Comment</code>
Shows the name of the person involved in writing about the selected picture. This is the value of the IPTC Writer tag (hex code 0x7A).
'''Returns'''
:The comment assigned to the item (PVR/MUSIC).
|
|
|-
|-
| ListItem.PictureByline
| <code>ListItem.ContributorAndRole</code>
Shows the name of the person who created the selected picture.  This is the value of the IPTC Byline tag (hex code 0x50).
'''Returns'''
:The list of all people and their role who've contributed to the selected song.
|
|
|-
|-
| ListItem.PictureBylineTitle
| <code>ListItem.Contributors</code>
Shows the title of the person who created the selected picture. This is the value of the IPTC BylineTitle tag (hex code 0x55).
'''Returns'''
:The list of all people who've contributed to the selected song.
|
|
|-
|-
| ListItem.PictureCamMake
| <code>ListItem.Country</code>
Shows the manufacturer of the camera used to take the selected picture. This is the value of the EXIF Make tag (hex code 0x010F).
'''Returns'''
:The production country of the currently selected movie in a container.
|
|
|-
|-
| ListItem.PictureCamModel
| <code>ListItem.CurrentItem</code>
Shows the manufacturer's model name or number of the camera used to take the selected picture. This is the value of the EXIF Model tag (hex code 0x0110).
|  '''Returns'''
|
:The current index of the item in a container starting at 1.
| v19
|-
|-
| ListItem.PictureCaption
| <code>ListItem.Date</code>
Shows a description of the selected picture. This is the value of the IPTC Caption tag (hex code 0x78).
'''Returns'''
:The file date of the currently selected song or movie in a container, the aired date of an episode, or the day, start time, and end time of the currently selected TV programme (PVR).
|
|
|-
|-
| ListItem.PictureCategory
| <code>ListItem.DateAdded</code>
Shows the subject of the selected picture as a category code. This is the value of the IPTC Category tag (hex code 0x0F).
'''Returns'''
:The date the currently selected item was added to the library or date and time of an event in the EventLog window.
|
|
|-
|-
| ListItem.PictureCCDWidth
| <code>ListItem.DBID</code>
Shows the width of the CCD in the camera used to take the selected picture. This is calculated from three EXIF tags (0xA002 * 0xA210 / 0xA20e).
'''Returns'''
:The database id of the currently selected ListItem in a container.
|
|
|-
|-
| ListItem.PictureCity
| <code>ListItem.DBTYPE</code>
Shows the city where the selected picture was taken. This is the value of the IPTC City tag (hex code 0x5A).
'''Returns'''
:The database type of the ListItem.DBID for videos (video, movie, set, tvshow, season, episode, musicvideo) or for audio (music, song, album, artist).
{{highlight|'''Note'''<br>
With season, the "*all seasons" entry does give a DBTYPE "season" and a DBID, but you can't get the details of that entry since it's a virtual entry in the Video Library.}}
|
|
|-
|-
| ListItem.PictureColour
| <code>ListItem.DecodedFileNameAndPath</code>
Shows whether the selected picture is "Colour" or "Black and White".
'''Returns'''
:The full path with filename of the currently selected song or movie in a container decoded.
|
|
|-
|-
| ListItem.PictureComment
| <code>ListItem.Director</code>
Shows a description of the selected picture. This is the value of the EXIF User Comment tag (hex code 0x9286). This is the same value as Slideshow.SlideComment.
'''Returns'''
:The director of the currently selected movie in a container.
|
|
|-
|-
|  ListItem.PictureCopyrightNotice
<code>ListItem.Director(separator)</code>
Shows the copyright notice of the selected picture. This is the value of the IPTC Copyright tag (hex code 0x74).
'''Returns'''
|
:A list of directors, separated by given separator, or if no separator was given separated by the advanced settings value “itemseparator” for video items. Possible values for separator: comma, pipe, slash, cr, dash, colon, semicolon, fullstop.
| [https://forum.kodi.tv/showthread.php?tid=377306&pid=3230987#pid3230987 v22]
|-
|-
| ListItem.PictureCountry
| <code>ListItem.DiscNumber</code>
Shows the full name of the country where the selected picture was taken. This is the value of the IPTC CountryName tag (hex code 0x65).
'''Returns'''
:The disc number of the currently selected song in a container.
|
|
|-
|-
| ListItem.PictureCountryCode
| <code>ListItem.DiscTitle</code>
Shows the country code of the country where the selected picture was taken. This is the value of the IPTC CountryCode tag (hex code 0x64).
'''Returns'''
|
:The disc title of the currently selected album or song.
| v19
|-
|-
| ListItem.PictureCredit
| <code>ListItem.Duration[(format)]</code>
Shows who provided the selected picture. This is the value of the IPTC Credit tag (hex code 0x6E).
'''Returns'''
:The song or movie duration of the currently selected movie in a container. Optionally specify a time format, hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).
|
|
|-
|-
| ListItem.PictureDate
| <code>ListItem.EndDate</code>
Shows the localized date of the selected picture. The short form of the date is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.
'''Returns'''
:The end date of the selected item (PVR).
|
|
|-
|-
| ListItem.PictureDatetime
| <code>ListItem.EndTime</code>
Shows the date/timestamp of the selected picture. The localized short form of the date and time is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.
'''Returns'''
:The end time of current selected TV programme in a container (PVR).
|
|
|-
|-
| ListItem.PictureDesc
| <code>ListItem.EndTimeResume</code>
Shows a short description of the selected picture. The SlideComment, EXIFComment, or Caption values might contain a longer description. This is the value of the EXIF ImageDescription tag (hex code 0x010E).
'''Returns'''
:The time a video will end if you resume it, instead of playing it from the beginning.
|
|
|-
|-
| ListItem.PictureDigitalZoom
| <code>ListItem.Episode</code>
Shows the digital zoom ratio when the selected picture was taken. This is the value of the EXIF DigitalZoomRatio tag (hex code 0xA404).
'''Returns'''
:The episode number value for the currently selected episode. It also shows the number of total, watched or unwatched episodes for the currently selected TV show or season, based on the the current watched filter.
|
|
|-
|-
| ListItem.PictureExpMode
| <code>ListItem.EpisodeName</code>
Shows the exposure mode of the selected picture. The possible values are "Automatic", "Manual", and "Auto bracketing". This is the value of the EXIF ExposureMode tag (hex code 0xA402).
'''Returns'''
:The name of the episode if the selected EPG item is a TV Show (PVR).
|
|
|-
|-
| ListItem.PictureExposure
| <code>ListItem.FileExtension</code>
Shows the class of the program used by the camera to set exposure when the selected picture was taken. Values include "Manual", "Program (Auto)", "Aperture priority (Semi-Auto)", "Shutter priority (semi-auto)", etc. This is the value of the EXIF ExposureProgram tag (hex code 0x8822).
'''Returns'''
:The file extension (without leading dot) of the currently selected item in a container.
|
|
|-
|-
| ListItem.PictureExposureBias
| <code>ListItem.FileName</code>
Shows the exposure bias of the selected picture. Typically this is a number between -99.99 and 99.99. This is the value of the EXIF ExposureBiasValue tag (hex code 0x9204).
'''Returns'''
:The filename of the currently selected song or movie in a container.
|
|
|-
|-
| ListItem.PictureExpTime
| <code>ListItem.FileNameAndPath</code>
Shows the exposure time of the selected picture, in seconds. This is the value of the EXIF ExposureTime tag (hex code 0x829A). If the ExposureTime tag is not found, the ShutterSpeedValue tag (hex code 0x9201) might be used.
'''Returns'''
:The full path with filename of the currently selected song or movie in a container.
|
|
|-
|-
| ListItem.PictureFlashUsed
| <code>ListItem.FileNameNoExtension</code>
Shows the status of flash when the selected picture was taken. The value will be either "Yes" or "No", and might include additional information. This is the value of the EXIF Flash tag (hex code 0x9209).
'''Returns'''
|
:The filename without its extension.
| v19
|-
|-
| ListItem.PictureFocalLen
| <code>ListItem.FolderName</code>
Shows the lens focal length of the selected picture
'''Returns'''
:The top most folder of the path of the currently selected song or movie in a container.
|
|
|-
|-
| ListItem.PictureFocusDist
| <code>ListItem.FolderPath</code>
Shows the focal length of the lens, in mm. This is the value of the EXIF FocalLength tag (hex code 0x920A).
'''Returns'''
:The complete path of the currently selected song or movie in a container (without user details).
|
|
|-
|-
| ListItem.PictureGPSLat
| <code>ListItem.Genre</code>
Shows the latitude where the selected picture was taken (degrees, minutes, seconds North or South). This is the value of the EXIF GPSInfo.GPSLatitude and GPSInfo.GPSLatitudeRef tags.
'''Returns'''
:The genre of the currently selected song, album, or movie in a container.
|
|
|-
|-
|  ListItem.PictureGPSLon
<code>ListItem.Genre(separator)</code>
Shows the longitude where the selected picture was taken (degrees, minutes, seconds East or West). This is the value of the EXIF GPSInfo.GPSLongitude and GPSInfo.GPSLongitudeRef tags.
'''Returns'''
|
:A list of genres, separated by given separator, or if no separator was given separated by the advanced settings value “itemseparator” for videos or music. Possible values for separator: comma, pipe, slash, cr, dash, colon, semicolon, fullstop.
| [https://forum.kodi.tv/showthread.php?tid=377306&pid=3230987#pid3230987 v22]
|-
|-
| ListItem.PictureGPSAlt
| <code>ListItem.HdrType</code>
Shows the altitude in meters where the selected picture was taken. This is the value of the EXIF GPSInfo.GPSAltitude tag.
'''Returns'''
|
:The HDR type of the currently selected video (e.g. hdr10, dolbyvision, or hlg).
| v20
|-
|-
| ListItem.PictureHeadline
| <code>ListItem.IMDBNumber</code>
Shows a synopsis of the contents of the selected picture. This is the value of the IPTC Headline tag (hex code 0x69).
'''Returns'''
:The IMDB iD of the selected Video in a container.
|
|
|-
|-
| ListItem.PictureImageType
| <code>ListItem.Label</code>
Shows the color components of the selected picture. This is the value of the IPTC ImageType tag (hex code 0x82).
'''Returns'''
:The left label of the currently selected item in a container.
|
|
|-
|-
| ListItem.PictureIPTCDate
| <code>ListItem.Label2</code>
Shows the date when the intellectual content of the selected picture was created, rather than when the picture was created. This is the value of the IPTC DateCreated tag (hex code 0x37).
'''Returns'''
:The right label of the currently selected item in a container.
|
|
|-
|-
| ListItem.PictureIPTCTime
| <code>ListItem.LastPlayed</code>
Shows the time when the intellectual content of the selected picture was created, rather than when the picture was created. This is the value of the IPTC TimeCreated tag (hex code 0x3C).
'''Returns'''
:The last play date of video in a container.
|
|
|-
|-
| ListItem.PictureISO
| <code>ListItem.Mood</code>
Shows the ISO speed of the camera when the selected picture was taken. This is the value of the EXIF ISOSpeedRatings tag (hex code 0x8827).
'''Returns'''
:The mood of the selected song.
|
|
|-
|-
| ListItem.PictureKeywords
| <code>ListItem.Mpaa</code>
Shows keywords assigned to the selected picture. This is the value of the IPTC Keywords tag (hex code 0x19).
'''Returns'''
:The MPAA rating of the currently selected movie in a container.
|
|
|-
|-
|  ListItem.PictureLightSource
| <code>ListItem.MusicChannels</code>
Shows the kind of light source when the picture was taken. Possible values include "Daylight", "Fluorescent", "Incandescent", etc. This is the value of the EXIF LightSource tag (hex code 0x9208).
'''Returns'''
:The number of audio channels for a song.
| v19
|-
| <code>ListItem.NextDuration</code>
'''Returns'''
:The duration of the next item (PVR).
| v18
|-
| <code>ListItem.NextEndDate</code>
|  '''Returns'''
:The end date of the next item (PVR).
|
|
|-
|-
| ListItem.PictureLongDate
| <code>ListItem.NextEndTime</code>
Shows only the localized date of the selected picture. The long form of the date is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.
'''Returns'''
:The end of the next item (PVR).
|
|
|-
|-
| ListItem.PictureLongDatetime
| <code>ListItem.NextGenre</code>
Shows the date/timestamp of the selected picture. The localized long form of the date and time is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. if the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.
'''Returns'''
:The genre of the next item (PVR).
|
|
|-
|-
|  ListItem.PictureMeteringMode
<code>ListItem.NextGenre(separator)</code>
Shows the metering mode used when the selected picture was taken. The possible values are "Center weight", "Spot", or "Matrix". This is the value of the EXIF MeteringMode tag (hex code 0x9207).
'''Returns'''
|
:A list of genres of the the next item (PVR), separated by given separator, or if no separator was given separated by the advanced settings value “itemseparator” for videos. Possible values for separator: comma, pipe, slash, cr, dash, colon, semicolon, fullstop.
| [https://forum.kodi.tv/showthread.php?tid=377306&pid=3230987#pid3230987 v22]
|-
|-
| ListItem.PictureObjectName
| <code>ListItem.NextPlot</code>
Shows a shorthand reference for the selected picture. This is the value of the IPTC ObjectName tag (hex code 0x05).
'''Returns'''
:The plot of the next item (PVR).
|
|
|-
|-
| ListItem.PictureOrientation
| <code>ListItem.NextPlotOutline</code>
Shows the orientation of the selected picture. Possible values are "Top Left", "Top Right", "Left Top", "Right Bottom", etc. This is the value of the EXIF Orientation tag (hex code 0x0112).
'''Returns'''
|
:The plot outline of the next item (PVR).
|-   
|  ListItem.PicturePath
|  Shows the filename and path of the selected picture
|
|
|-
|-
| ListItem.PictureProcess
| <code>ListItem.NextStartDate</code>
Shows the process used to compress the selected picture
'''Returns'''
:The start date of the next item (PVR).
|
|
|-
|-
| ListItem.PictureReferenceService
| <code>ListItem.NextStartTime</code>
Shows the Service Identifier of a prior envelope to which the selected picture refers. This is the value of the IPTC ReferenceService tag (hex code 0x2D).
'''Returns'''
:The start time of the next item (PVR).
|
|
|-
|-
| ListItem.PictureResolution
| <code>ListItem.NextTitle</code>
Shows the dimensions of the selected picture
'''Returns'''
:The title of the next item (PVR).
|
|
|-
|-
| ListItem.PictureSource
| <code>ListItem.OriginalDate</code>
Shows the original owner of the selected picture. This is the value of the IPTC Source tag (hex code 0x73).
'''Returns'''
|
:The original release date of the item.
| v19
|-
|-
| ListItem.PictureSpecialInstructions
| <code>ListItem.OriginalTitle</code>
Shows other editorial instructions concerning the use of the selected picture. This is the value of the IPTC SpecialInstructions tag (hex code 0x28).
'''Returns'''
:The original title of the currently selected movie in a container.
|
|
|-
|-
| ListItem.PictureState
| <code>ListItem.ParentalRatingCode</code>
Shows the State/Province where the selected picture was taken. This is the value of the IPTC ProvinceState tag (hex code 0x5F).
'''Returns'''
|
:The parental rating code.
| v22
|-
|-
| ListItem.PictureSublocation
| <code>ListItem.ParentalRatingIcon</code>
Shows the location within a city where the selected picture was taken - might indicate the nearest landmark. This is the value of the IPTC SubLocation tag (hex code 0x5C).
'''Returns'''
|
:The parental rating icon.
| v22
|-
|-
| ListItem.PictureSupplementalCategories
| <code>ListItem.ParentalRatingSource</code>
Shows supplemental category codes to further refine the subject of the selected picture. This is the value of the IPTC SuppCategory tag (hex code 0x14).
'''Returns'''
|
:The parental rating source.
| v22
|-
|-
| ListItem.PictureTransmissionReference
| <code>ListItem.Path</code>
Shows a code representing the location of original transmission of the selected picture. This is the value of the IPTC TransmissionReference tag (hex code 0x67).
'''Returns'''
:The complete path of the currently selected song or movie in a container.
|
|
|-
|-
| ListItem.PictureUrgency
| <code>ListItem.PercentPlayed</code>
Shows the urgency of the selected picture. Values are 1-9. The "1" is most urgent. Some image management programs use urgency to indicate picture rating, where urgency "1" is 5 stars and urgency "5" is 1 star. Urgencies 6-9 are not used for rating. This is the value of the IPTC Urgency tag (hex code 0x0A).
'''Returns'''
:The returns percentage value [0-100] of how far the selected video has been played.
|
|
|-
|-
| ListItem.PictureWhiteBalance
| <code>ListItem.PictureAperture</code>
Shows the white balance mode set when the selected picture was taken. The possible values are "Manual" and "Auto". This is the value of the EXIF WhiteBalance tag (hex code 0xA403).
'''Returns'''
:The f-stop used to take the selected picture. This is the value of the EXIF FNumber tag (hex code 0x829D).
|
|
|-
|-
| ListItem.FileName
| <code>ListItem.PictureAuthor</code>
Shows the filename of the currently selected song or movie in a container
'''Returns'''
:The name of the person involved in writing about the selected picture. This is the value of the IPTC Writer tag (hex code 0x7A).
|
|
|-
|-
| ListItem.Path
| <code>ListItem.PictureByline</code>
Shows the complete path of the currently selected song or movie in a container
'''Returns'''
:The name of the person who created the selected picture. This is the value of the IPTC Byline tag (hex code 0x50).
|
|
|-
|-
| ListItem.FolderName
| <code>ListItem.PictureBylineTitle</code>
Shows top most folder of the path of the currently selected song or movie in a container
'''Returns'''
:The title of the person who created the selected picture. This is the value of the IPTC BylineTitle tag (hex code 0x55).
|
|
|-
|-
| ListItem.FolderPath
| <code>ListItem.PictureCamMake</code>
Shows the complete path of the currently selected song or movie in a container (without user details).
'''Returns'''
:The manufacturer of the camera used to take the selected picture. This is the value of the EXIF Make tag (hex code 0x010F).
|
|
|-
|-
| ListItem.FileNameAndPath
| <code>ListItem.PictureCamModel</code>
Shows the full path with filename of the currently selected song or movie in a container
'''Returns'''
:The manufacturer's model name or number of the camera used to take the selected picture. This is the value of the EXIF Model tag (hex code 0x0110).
|
|
|-
|-
| ListItem.FileExtension
| <code>ListItem.PictureCaption</code>
Shows the file extension (without leading dot) of the currently selected item in a container
'''Returns'''
:The description of the selected picture. This is the value of the IPTC Caption tag (hex code 0x78).
|
|
|-
|-
| ListItem.Date
| <code>ListItem.PictureCategory</code>
Shows the file date of the currently selected song or movie in a container / Aired date of an episode / Day, start time and end time of current selected TV programme (PVR)
'''Returns'''
:The subject of the selected picture as a category code. This is the value of the IPTC Category tag (hex code 0x0F).
|
|
|-
|-
| ListItem.DateAdded
| <code>ListItem.PictureCCDWidth</code>
Shows the date the currently selected item was added to the library / Date and time of an event in the EventLog window.
'''Returns'''
:The width of the CCD in the camera used to take the selected picture. This is calculated from three EXIF tags (0xA002 * 0xA210 / 0xA20e).
|
|
|-
|-
| ListItem.Size
| <code>ListItem.PictureCity</code>
Shows the file size of the currently selected song or movie in a container
'''Returns'''
:The city where the selected picture was taken. This is the value of the IPTC City tag (hex code 0x5A).
|
|
|-
|-
| ListItem.Rating[(name)]
| <code>ListItem.PictureColour</code>
Shows the scraped rating of the currently selected item in a container. Optionally you can specify the name of the scraper to retrieve a specific rating.
'''Returns'''
:Whether the selected picture is "Colour" or "Black and White".
|
|
|-
|-
| ListItem.Set
| <code>ListItem.PictureComment</code>
Shows the name of the set the movie is part of
'''Returns'''
:The description of the selected picture. This is the value of the EXIF User Comment tag (hex code 0x9286). This is the same value as Slideshow.SlideComment.
|
|
|-
|-
| ListItem.SetId
| <code>ListItem.PictureCopyrightNotice</code>
Shows the id of the set the movie is part of
'''Returns'''
:The copyright notice of the selected picture. This is the value of the IPTC Copyright tag (hex code 0x74).
|
|
|-
|-
| ListItem.UserRating
| <code>ListItem.PictureCountry</code>
Shows the user rating of the currently selected item in a container
'''Returns'''
:The full name of the country where the selected picture was taken. This is the value of the IPTC CountryName tag (hex code 0x65).
|
|
|-
|-
| ListItem.Votes[(name)]
| <code>ListItem.PictureCountryCode</code>
Shows the IMDB votes of the currently selected movie in a container. Optionally you can specify the name of the scraper to retrieve specific votes.
'''Returns'''
:The country code of the country where the selected picture was taken. This is the value of the IPTC CountryCode tag (hex code 0x64).
|
|
|-
|-
| ListItem.RatingAndVotes[(name)]
| <code>ListItem.PictureCredit</code>
Shows the IMDB rating and votes of the currently selected movie in a container. Optionally you can specify the name of the scraper to retrieve a specific rating and votes.
'''Returns'''
:The provider of the selected picture. This is the value of the IPTC Credit tag (hex code 0x6E).
|
|
|-
|-
| ListItem.Mpaa
| <code>ListItem.PictureDate</code>
Show the MPAA rating of the currently selected movie in a container
'''Returns'''
:The localized date of the selected picture. The short form of the date is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.
|
|
|-
|-
| ListItem.ProgramCount
| <code>ListItem.PictureDatetime</code>
Shows the number of times an xbe has been run from "my programs"
'''Returns'''
:The date/timestamp of the selected picture. The localized short form of the date and time is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.
|
|
|-
|-
| ListItem.Duration
| <code>ListItem.PictureDesc</code>
Shows the song or movie duration of the currently selected movie in a container
'''Returns'''
:The short description of the selected picture. The SlideComment, EXIFComment, or Caption values might contain a longer description. This is the value of the EXIF ImageDescription tag (hex code 0x010E).
|
|
|-
|-
| ListItem.DBTYPE
| <code>ListItem.PictureDigitalZoom</code>
Shows the database type of the ListItem.DBID for videos (video, movie, set, tvshow, season, episode, musicvideo) or for audio (music, song, album, artist). Beware with season, the "*all seasons" entry does give a DBTYPE "season" and a DBID, but you can't get the details of that entry since it's a virtual entry in the Video Library.
'''Returns'''
:The digital zoom ratio when the selected picture was taken. This is the value of the EXIF DigitalZoomRatio tag (hex code 0xA404).
|
|
|-
|-
| ListItem.DBID
| <code>ListItem.PictureExpMode</code>
Shows the database id of the currently selected listitem in a container
'''Returns'''
:The exposure mode of the selected picture. The possible values are "Automatic", "Manual", and "Auto bracketing". This is the value of the EXIF ExposureMode tag (hex code 0xA402).
|
|
|-
|-
| ListItem.Cast
| <code>ListItem.PictureExposure</code>
Shows a concatenated string of cast members of the currently selected movie, for use in dialogvideoinfo.xml
'''Returns'''
:The class of the program used by the camera to set exposure when the selected picture was taken. Values include "Manual", "Program (Auto)", "Aperture priority (Semi-Auto)", "Shutter priority (semi-auto)", etc. This is the value of the EXIF ExposureProgram tag (hex code 0x8822).
|
|
|-
|-
| ListItem.CastAndRole
| <code>ListItem.PictureExposureBias</code>
Shows a concatenated string of cast members and roles of the currently selected movie, for use in dialogvideoinfo.xml
'''Returns'''
:The exposure bias of the selected picture. Typically this is a number between -99.99 and 99.99. This is the value of the EXIF ExposureBiasValue tag (hex code 0x9204).
|
|
|-
|-
| ListItem.Studio
| <code>ListItem.PictureExpTime</code>
Studio of current selected Music Video in a container
'''Returns'''
:The exposure time of the selected picture, in seconds. This is the value of the EXIF ExposureTime tag (hex code 0x829A). If the ExposureTime tag is not found, the ShutterSpeedValue tag (hex code 0x9201) might be used.
|
|
|-
|-
| ListItem.Top250
| <code>ListItem.PictureFlashUsed</code>
Shows the IMDb top250 position of the currently selected listitem in a container.
'''Returns'''
:The status of flash when the selected picture was taken. The value will be either "Yes" or "No", and might include additional information. This is the value of the EXIF Flash tag (hex code 0x9209).
|
|
|-
|-
| ListItem.Trailer
| <code>ListItem.PictureFocalLen</code>
Shows the full trailer path with filename of the currently selected movie in a container
'''Returns'''
:The lens focal length of the selected picture.
|
|
|-
|-
| ListItem.Writer
| <code>ListItem.PictureFocusDist</code>
Name of Writer of current Video in a container
'''Returns'''
:The focal length of the lens, in mm. This is the value of the EXIF FocalLength tag (hex code 0x920A).
|
|
|-
|-
| ListItem.Tagline
| <code>ListItem.PictureGPSAlt</code>
Small Summary of current Video in a container
'''Returns'''
:The altitude in meters where the selected picture was taken. This is the value of the EXIF GPSInfo.GPSAltitude tag.
|
|
|-
|-
| ListItem.PlotOutline
| <code>ListItem.PictureGPSLat</code>
Small Summary of current Video in a container
'''Returns'''
:The latitude where the selected picture was taken (degrees, minutes, seconds North or South). This is the value of the EXIF GPSInfo.GPSLatitude and GPSInfo.GPSLatitudeRef tags.
|
|
|-
|-
| ListItem.Plot
| <code>ListItem.PictureGPSLon</code>
Complete Text Summary of Video in a container
'''Returns'''
:The longitude where the selected picture was taken (degrees, minutes, seconds East or West). This is the value of the EXIF GPSInfo.GPSLongitude and GPSInfo.GPSLongitudeRef tags.
|
|
|-
|-
| ListItem.IMDBNumber
| <code>ListItem.PictureHeadline</code>
|  The IMDB iD of the selected Video in a container
'''Returns'''
:The synopsis of the contents of the selected picture. This is the value of the IPTC Headline tag (hex code 0x69).
|
|
|-
|-
| ListItem.EpisodeName
| <code>ListItem.PictureImageType</code>
(PVR only) The name of the episode if the selected EPG item is a TV Show
'''Returns'''
:The color components of the selected picture. This is the value of the IPTC ImageType tag (hex code 0x82).
|
|
|-
|-
| ListItem.PercentPlayed
| <code>ListItem.PictureIPTCDate</code>
|  Returns percentage value [0-100] of how far the selected video has been played
'''Returns'''
:The date when the intellectual content of the selected picture was created, rather than when the picture was created. This is the value of the IPTC DateCreated tag (hex code 0x37).
|
|
|-
|-
| ListItem.LastPlayed
| <code>ListItem.PictureIPTCTime</code>
Last play date of Video in a container
'''Returns'''
:The time when the intellectual content of the selected picture was created, rather than when the picture was created. This is the value of the IPTC TimeCreated tag (hex code 0x3C).
|
|
|-
|-
| ListItem.PlayCount
| <code>ListItem.PictureISO</code>
Playcount of Video in a container
'''Returns'''
:The ISO speed of the camera when the selected picture was taken. This is the value of the EXIF ISOSpeedRatings tag (hex code 0x8827).
|
|
|-
|-
| ListItem.StartTime
| <code>ListItem.PictureKeywords</code>
Start time of current selected TV programme in a container
'''Returns'''
:The keywords assigned to the selected picture. This is the value of the IPTC Keywords tag (hex code 0x19).
|
|
|-
|-
| ListItem.EndTime
| <code>ListItem.PictureLightSource</code>
End time of current selected TV programme in a container
'''Returns'''
:The kind of light source when the picture was taken. Possible values include "Daylight", "Fluorescent", "Incandescent", etc. This is the value of the EXIF LightSource tag (hex code 0x9208).
|
|
|-
|-
| ListItem.StartDate
| <code>ListItem.PictureLongDate</code>
Start date of current selected TV programme in a container
'''Returns'''
:The localized date of the selected picture. The long form of the date is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.
|
|
|-
|-
| ListItem.ChannelNumber
| <code>ListItem.PictureLongDatetime</code>
Number of current selected TV channel in a container
'''Returns'''
:The date/timestamp of the selected picture. The localized long form of the date and time is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. if the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.
|
|
|-
|-
| ListItem.ChannelName
| <code>ListItem.PictureMeteringMode</code>
Name of current selected TV channel in a container
'''Returns'''
:The metering mode used when the selected picture was taken. The possible values are "Center weight", "Spot", or "Matrix". This is the value of the EXIF MeteringMode tag (hex code 0x9207).
|
|
|-
|-
| ListItem.VideoCodec
| <code>ListItem.PictureObjectName</code>
Shows the video codec of the currently selected video (common values: 3iv2, avc1, div2, div3, divx, divx 4, dx50, flv, h264, microsoft, mp42, mp43, mp4v, mpeg1video, mpeg2video, mpg4, rv40, svq1, svq3, theora, vp6f, wmv2, wmv3, wvc1, xvid)
'''Returns'''
:The shorthand reference for the selected picture. This is the value of the IPTC ObjectName tag (hex code 0x05).
|
|
|-
|-
| ListItem.VideoResolution
| <code>ListItem.PictureOrientation</code>
Shows the resolution of the currently selected video (possible values: 480, 576, 540, 720, 1080, 4K). Note that 540 usually means a widescreen format (around 960x540) while 576 means PAL resolutions (normally 720x576), therefore 540 is actually better resolution than 576.
'''Returns'''
:The orientation of the selected picture. Possible values are "Top Left", "Top Right", "Left Top", "Right Bottom", etc. This is the value of the EXIF Orientation tag (hex code 0x0112).
|
|
|-
|-
| ListItem.VideoAspect
| <code>ListItem.PicturePath</code>
Shows the aspect ratio of the currently selected video (possible values: 1.33, 1.37, 1.66, 1.78, 1.85, 2.20, 2.35, 2.40, 2.55, 2.76)
'''Returns'''
:The filename and path of the selected picture.
|
|
|-
|-
| ListItem.AudioCodec
| <code>ListItem.PictureProcess</code>
Shows the audio codec of the currently selected video (common values: aac, ac3, cook, dca, dtshd_hra, dtshd_ma, eac3, mp1, mp2, mp3, pcm_s16be, pcm_s16le, pcm_u8, truehd, vorbis, wmapro, wmav2)
'''Returns'''
:The process used to compress the selected picture.
|
|
|-
|-
| ListItem.AudioChannels
| <code>ListItem.PictureReferenceService</code>
Shows the number of audio channels of the currently selected video (possible values: 1, 2, 4, 5, 6, 8, 10)
'''Returns'''
:The service identifier of a prior envelope to which the selected picture refers. This is the value of the IPTC ReferenceService tag (hex code 0x2D).
|
|
|-
|-
| ListItem.AudioLanguage
| <code>ListItem.PictureResolution</code>
Shows the audio language of the currently selected video (returns an ISO 639-2 three character code, e.g. eng, epo, deu)
'''Returns'''
:The dimensions of the selected picture.
|
|
|-
|-
| ListItem.SubtitleLanguage
| <code>ListItem.PictureSource</code>
Shows the subtitle language of the currently selected video (returns an ISO 639-2 three character code, e.g. eng, epo, deu)
'''Returns'''
:The original owner of the selected picture. This is the value of the IPTC Source tag (hex code 0x73).
|
|
|-
|-
| ListItem.Property(AudioCodec.[n])
| <code>ListItem.PictureSpecialInstructions</code>
Shows the audio codec of the currently selected video, 'n' defines the number of the audiostream (values: see ListItem.AudioCodec)
'''Returns'''
:The editorial instructions concerning the use of the selected picture. This is the value of the IPTC SpecialInstructions tag (hex code 0x28).
|
|
|-
|-
| ListItem.Property(AudioChannels.[n])
| <code>ListItem.PictureState</code>
Shows the number of audio channels of the currently selected video, 'n' defines the number of the audiostream (values: see ListItem.AudioChannels)
'''Returns'''
:The State/Province where the selected picture was taken. This is the value of the IPTC ProvinceState tag (hex code 0x5F).
|
|
|-
|-
| ListItem.Property(AudioLanguage.[n])
| <code>ListItem.PictureSublocation</code>
Shows the audio language of the currently selected video, 'n' defines the number of the audiostream (values: see ListItem.AudioLanguage)
'''Returns'''
:The location within a city where the selected picture was taken - might indicate the nearest landmark. This is the value of the IPTC SubLocation tag (hex code 0x5C).
|
|
|-
|-
| ListItem.Property(SubtitleLanguage.[n])
| <code>ListItem.PictureSupplementalCategories</code>
Shows the subtitle language of the currently selected video, 'n' defines the number of the subtitle (values: see ListItem.SubtitleLanguage)
'''Returns'''
:The supplemental category codes to further refine the subject of the selected picture. This is the value of the IPTC SuppCategory tag (hex code 0x14).
|
|
|-
|-
| ListItem.AddonName
| <code>ListItem.PictureTransmissionReference</code>
Shows the name of the currently selected addon
'''Returns'''
:The code representing the location of original transmission of the selected picture. This is the value of the IPTC TransmissionReference tag (hex code 0x67).
|
|
|-
|-
| ListItem.AddonVersion
| <code>ListItem.PictureUrgency</code>
Shows the version of the currently selected addon
'''Returns'''
:The urgency of the selected picture. Values are 1-9. The "1" is most urgent. Some image management programs use urgency to indicate picture rating, where urgency "1" is 5 stars and urgency "5" is 1 star. Urgencies 6-9 are not used for rating. This is the value of the IPTC Urgency tag (hex code 0x0A).
|
|
|-
|-
| ListItem.AddonSummary
| <code>ListItem.PictureWhiteBalance</code>
Shows a short description of the currently selected addon
'''Returns'''
:The white balance mode set when the selected picture was taken. The possible values are "Manual" and "Auto". This is the value of the EXIF WhiteBalance tag (hex code 0xA403).
|
|
|-
|-
| ListItem.AddonDescription
| <code>ListItem.PlayCount</code>
Shows the full description of the currently selected addon
'''Returns'''
:The playcount of video in a container.
|
|
|-
|-
| ListItem.AddonType
| <code>ListItem.Plot</code>
Shows the type (screensaver, script, skin, etc...) of the currently selected addon
'''Returns'''
:The complete text summary of video in a container.
|
|
|-
|-
| ListItem.AddonCreator
| <code>ListItem.PlotOutline</code>
Shows the name of the author the currently selected addon
'''Returns'''
:The small summary of current video in a container.
|
|
|-
|-
| ListItem.AddonDisclaimer
| <code>ListItem.Premiered</code>
Shows the disclaimer of the currently selected addon
'''Returns'''
:The release/aired date of the currently selected episode, show, movie, or EPG item in a container.
|
|
|-
|-
| ListItem.AddonBroken
| <code>ListItem.PrivacyPolicy</code>
Shows a message when the addon is marked as broken in the repo
'''Returns'''
|
:The official Kodi privacy-policy.
| v17
|-
|-
| ListItem.Property(Addon.Changelog)
| <code>ListItem.ProgramCount</code>
Shows the changelog of the currently selected addon
'''Returns'''
:The number of times an xbe has been run from "my programs".
|
|
|-
|-
| ListItem.Property(Addon.ID)
| <code>ListItem.Progress</code>
Shows the identifier of the currently selected addon
'''Returns'''
:The part of the programme that's being played (PVR).
|
|
|-
|-
| ListItem.Property(Addon.Status)
| <code>ListItem.Property(Addon.Changelog)</code>
Shows the status of the currently selected addon
'''Returns'''
:The changelog of the currently selected addon.
|
|
|-
|-
| ListItem.Property(Addon.Path)
| <code>ListItem.Property(Addon.ID)</code>
Shows the path of the currently selected addon
'''Returns'''
:The identifier of the currently selected addon.
|
|
|-
|-
| ListItem.StartTime
| <code>ListItem.Property(Addon.Path)</code>
Start time of the selected item (PVR).
'''Returns'''
:The path of the currently selected addon.
|
|
|-
|-
| ListItem.EndTime
| <code>ListItem.Property(Addon.Status)</code>
End time of the selected item (PVR).
'''Returns'''
:The status of the currently selected addon.
|
|
|-
|-
| ListItem.StartDate
| <code>ListItem.Property(Album_Description)</code>
Start date of the selected item (PVR).
'''Returns'''
:The review of the currently selected album.
|
|
|-
|-
| ListItem.EndDate
| <code>ListItem.Property(Album_Duration)</code>
End date of the selected item (PVR).
'''Returns'''
|
:The duration of an album in HH:MM:SS.
| v19
|-
|-
| ListItem.NextTitle
| <code>ListItem.Property(Album_Label)</code>
Title of the next item (PVR).
'''Returns'''
:The record label of the currently selected album.
|
|
|-
|-
| ListItem.NextGenre
| <code>ListItem.Property(Album_Mood)</code>
Genre of the next item (PVR).
'''Returns'''
:The moods of the currently selected album.
|
|
|-
|-
| ListItem.NextPlot
| <code>ListItem.Property(Album_Rating)</code>
Plot of the next item (PVR).
'''Returns'''
:The scraped rating of the currently selected album.
|
|
|-
|-
| ListItem.NextPlotOutline
| <code>ListItem.Property(Album_Style)</code>
Plot outline of the next item (PVR).
'''Returns'''
:The styles of the currently selected album.
|
|
|-
|-
| ListItem.NextStartTime
| <code>ListItem.Property(Album_Theme)</code>
Start time of the next item (PVR).
'''Returns'''
:The themes of the currently selected album.
|
|
|-
|-
| ListItem.NextEndTime
| <code>ListItem.Property(Album_Type)</code>
End of the next item (PVR).
'''Returns'''
:The album type of the currently selected album (e.g. compilation, enhanced, or explicit lyrics).
|
|
|-
|-
| ListItem.NextStartDate
| <code>ListItem.Property(Album_UserRating)</code>
Start date of the next item (PVR).
'''Returns'''
:The user rating of the currently selected album.
|
|
|-
|-
| ListItem.NextEndDate
| <code>ListItem.Property(Artist_Born)</code>
End date of the next item (PVR).
'''Returns'''
:The Date of Birth of the currently selected artist.
|
|
|-
|-
| ListItem.ChannelName
| <code>ListItem.Property(Artist_Description)</code>
Channelname of the selected item (PVR).
'''Returns'''
:The biography of the currently selected artist.
|
|
|-
|-
| ListItem.ChannelNumber
| <code>ListItem.Property(Artist_Died)</code>
Channel number of the selected item (PVR).
'''Returns'''
:The Date of Death of the currently selected artist.
|
|
|-
|-
| ListItem.ChannelGroup
| <code>ListItem.Property(Artist_Disambiguation)</code>
Channel group of the selected item (PVR).
'''Returns'''
|
:The brief description of the currently selected artist that differentiates them from others with the same name.
| v18
|-
|-
| ListItem.SubChannelNumber
| <code>ListItem.Property(Artist_Disbanded)</code>
Subchannel number of the currently selected channel that's currently playing (PVR).
'''Returns'''
:The disbanding date of the currently selected band.
|
|
|-
|-
| ListItem.ChannelNumberLabel
| <code>ListItem.Property(Artist_Formed)</code>
Channel and subchannel number of the currently selected channel that's currently playing (PVR).
'''Returns'''
:The formation date of the currently selected band.
|
|
|-
|-
| ListItem.Progress
| <code>ListItem.Property(Artist_Gender)</code>
Part of the programme that's been played (PVR).
'''Returns'''
|
:The gender of the currently selected artist (e.g.male, female, or other).
| v18
|-
|-
| ListItem.StereoscopicMode
| <code>ListItem.Property(Artist_Genre)</code>
|  Returns the stereomode of the selected video (i.e. mono, split_vertical, split_horizontal, row_interleaved, anaglyph_cyan_red, anaglyph_green_magenta)
'''Returns'''
:The genre of the currently selected artist.
|
|
|-
|-
| ListItem.Comment
| <code>ListItem.Property(Artist_Instrument)</code>
Comment assigned to the item (PVR/MUSIC).
'''Returns'''
:The instruments played by the currently selected artist.
|
|
|-
|-
| ListItem.AddonInstallDate
| <code>ListItem.Property(Artist_Mood)</code>
| Date the addon was installed
| '''Returns'''
:The moods of the currently selected artist.
|
|
|-
|-
| ListItem.AddonLastUpdated
| <code>ListItem.Property(Artist_Sortname)</code>
| Date the addon was last updated
| '''Returns'''
|
:The sortname of the currently selected artist.
| v18
|-
|-
| ListItem.AddonLastUsed
| <code>ListItem.Property(Artist_Style)</code>
| Date the addon was used last
| '''Returns'''
:The styles of the currently selected artist.
|
|
|-
|-
| ListItem.AddonNews
| <code>ListItem.Property(Artist_Type)</code>
| Returns a brief changelog, taken from the addons' addon.xml file
| '''Returns'''
|
:The type of the currently selected artist (person, group, orchestra, choir, etc).
| v18
|-
|-
| ListItem.AddonSize
| <code>ListItem.Property(Artist_YearsActive)</code>
| Filesize of the addon
| '''Returns'''
:The years the currently selected artist has been active.
|
|
|-
|-
| ListItem.Contributors
| <code>ListItem.Property(AudioChannels.[n])</code>
| List of all people who've contributed to the selected song
| '''Returns'''
:The number of audio channels of the currently selected video, 'n' defines the number of the audiostream (values: see ListItem.AudioChannels).
|
|
|-
|-
| ListItem.ContributorAndRole
| <code>ListItem.Property(AudioCodec.[n])</code>
| List of all people and their role who've contributed to the selected song
| '''Returns'''
:The audio codec of the currently selected video, 'n' defines the number of the audiostream (values: see ListItem.AudioCodec).
|
|
|-
|-
| ListItem.EndTimeResume
| <code>ListItem.Property(AudioLanguage.[n])</code>
| Returns the time a video will end if you resume it, instead of playing it from the beginning.
| '''Returns'''
:The audio language of the currently selected video, 'n' defines the number of the audiostream (values: see ListItem.AudioLanguage).
|
|
|-
|-
| ListItem.Mood
| <code>ListItem.Property(game.stretchmode)</code>
| Mood of the selected song
| '''Returns'''
|
:The name of the stretch mode (e.g. Stretch 4:3).
| v18
|-
|-
| ListItem.Status
| <code>ListItem.Property(game.videofilter)</code>
| For use with tv shows. It can return one of the following: 'returning series','in production','planned','cancelled' or 'ended'
| '''Returns'''
|
:The name of the video filter (e.g. Bilinear).
| v18
|-
|-
| ListItem.Tag
| <code>ListItem.Property(game.videorotation)</code>
| Will return the name of the 'tag' this movie is part of.
| '''Returns'''
|
:The angle of the rotation.
| v18
|-
|-
| ListItem.Property(Role.Arranger)
| <code>ListItem.Property(NumEpisodes)</code>
| Returns the name of the person who arranged the selected song
| '''Returns'''
:The number of total, watched, or unwatched episodes for the currently selected TV show or season, based on the the current watched filter.
|
|
|-
|-
| ListItem.Property(Role.Composer)
| <code>ListItem.Property(Role.Arranger)</code>
| Returns the name of the person who composed the selected song
| '''Returns'''
:The name of the person who arranged the selected song.
|
|
|-
|-
| ListItem.Property(Role.Conductor)
| <code>ListItem.Property(Role.Composer)</code>
| Returns the name of the person who conducted the selected song
| '''Returns'''
:The name of the person who composed the selected song.
|
|
|-
|-
| ListItem.Property(Role.DJMixer)
| <code>ListItem.Property(Role.Conductor)</code>
| Returns the name of the dj who remixed the selected song
| '''Returns'''
:The name of the person who conducted the selected song.
|
|
|-
|-
| ListItem.Property(Role.Engineer)
| <code>ListItem.Property(Role.DJMixer)</code>
| Returns the name of the person who was the engineer of the selected song
| '''Returns'''
:The name of the DJ who remixed the selected song.
|
|
|-
|-
| ListItem.Property(Role.Lyricist)
| <code>ListItem.Property(Role.Engineer)</code>
| Returns the name of the person who wrote the lyrics of the selected song
| '''Returns'''
:The name of the person who was the engineer of the selected song.
|
|
|-
|-
| ListItem.Property(Role.Mixer)
| <code>ListItem.Property(Role.Lyricist)</code>
| Returns the name of the person who mixed the selected song
| '''Returns'''
:The name of the person who wrote the lyrics of the selected song.
|
|
|-
|-
| ListItem.Property(Role.Orchestra)
| <code>ListItem.Property(Role.Mixer)</code>
| Returns the name of the orchestra performing the selected song
| '''Returns'''
:The name of the person who mixed the selected song.
|
|
|-
|-
| ListItem.Property(Role.Producer)
| <code>ListItem.Property(Role.Orchestra)</code>
| Returns the name of the person who produced the selected song
| '''Returns'''
:The name of the orchestra performing the selected song.
|
|
|-
|-
| ListItem.Property(Role.Remixer)
| <code>ListItem.Property(Role.Producer)</code>
| Returns the name of the person who remixed the selected song
| '''Returns'''
:The name of the person who produced the selected song.
|
|
|}
=== Musicpartymode labels ===
{| class="prettytable" width="100%"
! InfoLabels
! style="80%" | Definition
! Version
|-
|-
| MusicPartyMode.SongsPlayed
| <code>ListItem.Property(Role.Remixer)</code>
Number of songs played during Party Mode
'''Returns'''
:The name of the person who remixed the selected song.
|
|
|-
|-
| MusicPartyMode.MatchingSongs
| <code>ListItem.Property(Stream.Bitrate)</code>
Number of songs available to Party Mode
'''Returns'''
|
:The video bitrate (kbps) of the currently playing video.
| v22
|-
|-
| MusicPartyMode.MatchingSongsPicked
| <code>ListItem.Property(Stream.Channels)</code>
Number of songs picked already for Party Mode
'''Returns'''
|
:The number of audio channels of the currently playing video.
| v22
|-
|-
| MusicPartyMode.MatchingSongsLeft
| <code>ListItem.Property(Stream.Codec)</code>
Number of songs left to be picked from for Party Mode
'''Returns'''
|
:The audio, video, or subtitle codec of the currently playing video.
| v22
|-
|-
| MusicPartyMode.RelaxedSongsPicked
| <code>ListItem.Property(Stream.CodecDesc)</code>
Not currently used
'''Returns'''
|
:The audio description of the currently playing video.
| v22
|-
|-
MusicPartyMode.RandomSongsPicked
| <code>ListItem.Property(Stream.Description)</code>
Number of unique random songs picked during Party Mode
'''Returns'''
|
:The audio, video, or subtitle title/name of the currently playing video.
|}
| v22
 
|-
=== Network labels ===
| <code>ListItem.Property(Stream.FPS)</code>
 
'''Returns'''
{| class="prettytable" width="100%"
:The Frames per Second of the currently playing video.
! InfoLabels
| v22
! style="80%" | Definition
|-
! Version
| <code>ListItem.Property(Stream.HDRType)</code>
|  '''Returns'''
:The HDR type of the currently playing video (e.g. hdr10, dolbyvision, or hlg).
| v22
|-
| <code>ListItem.Property(Stream.Language)</code>
| '''Returns'''
:The audio language of the currently playing video as an ISO 639-2 three character code (e.g. eng, epo, deu, etc).
| v22
|-
| <code>ListItem.Property(Stream.Resolution)</code>
|  '''Returns'''
:The video resolution of the currently playing video.
| v22
|-
| <code>ListItem.Property(Stream.StereoMode)</code>
|  '''Returns'''
:The 3D stereo mode of the playing video (e.g. mono, split_vertical, split_horizontal, row_interleaved, anaglyph_cyan_red, or anaglyph_green_magenta).
| v22
|-
|-
| Network.IsDHCP
| <code>ListItem.Property(SubtitleLanguage.[n])</code>
Network type is DHCP or FIXED
'''Returns'''
:The subtitle language of the currently selected stream, 'n' defines the number of the subtitle (values: see ListItem.SubtitleLanguage).
|
|
|-
|-
| Network.IPAddress
| <code>ListItem.Property(TotalEpisodes)</code>
The system's IP Address (formatted as IP: <ipaddress>)
|  '''Returns'''
:The total number of episodes for the currently selected TV show or season.
|
|
|-
|-
| Network.LinkState
| <code>ListItem.Property(TotalSeasons)</code>
Network linkstate e.g. 10mbit/100mbit etc.
'''Returns'''
:The total number of seasons for the currently selected TV show.
|
|
|-
|-
| Network.MacAddress
| <code>ListItem.Property(UnWatchedEpisodes)</code>
|  The system's  mac address
'''Returns'''
:The number of unwatched episodes for the currently selected TV show or season.
|
|
|-
|-
| Network.SubnetMask
| <code>ListItem.Property(WatchedEpisodes)</code>
Network subnet mask
'''Returns'''
:The number of watched episodes for the currently selected TV show or season.
|
|
|-
|-
Network.GatewayAddress
| <code>ListItem.PVRClientName</code>
Network gateway address
'''Returns'''
:The name of the PVR client addon for the selected PVR list item.
| v22
|-
| <code>ListItem.PVRInstanceName</code>
'''Returns'''
:The name of the instance of the PVR client addon for the selected PVR list item.
| v22
|-
| <code>ListItem.Rating[(name)]</code>
|  '''Returns'''
:The scraped rating of the currently selected item in a container. Optionally you can specify the name of the scraper to retrieve a specific rating, for use in dialogvideoinfo.xml.
|
|
|-
|-
| Network.DNS1Address
| <code>ListItem.RatingAndVotes[(name)]</code>
Network dns 1 address
'''Returns'''
:The IMDB rating and votes of the currently selected movie in a container. Optionally you can specify the name of the scraper to retrieve a specific rating and votes, for use in dialogvideoinfo.xml.
|
|
|-
|-
Network.DNS2Address
| <code>ListItem.ReleaseDate</code>
Network dns 2 address
'''Returns'''
:The release date of the current item.
| v19
|-
| <code>ListItem.SampleRate</code>
'''Returns'''
:The sample rate of a song / 1000.0 (e.g. 44.1, 48, 96 etc).
| v19
|-
| <code>ListItem.Season</code>
|  '''Returns'''
:The season value for the currently selected TV show.
|
|
|-
|-
| Network.DHCPAddress
| <code>ListItem.Set</code>
DHCP ip address
'''Returns'''
:The name of the set the movie is part of.
|
|
|}
=== Player labels ===
{| class="prettytable" width="100%"
! InfoLabels
! style="80%" | Definition
! Version
|-
|-
| Player.FinishTime
| <code>ListItem.SetId</code>
Time playing media will end
'''Returns'''
:The id of the set the movie is part of.
|
|
|-
|-
| Player.FinishTime(format)
| <code>ListItem.Size</code>
Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).
'''Returns'''
:The file size of the currently selected song or movie in a container.
|
|
|-
|-
| Player.Chapter
| <code>ListItem.SortLetter</code>
Current chapter of current playing media
'''Returns'''
:The first letter of the current file in a container.
|
|
|-
|-
| Player.ChapterCount
| <code>ListItem.StartDate</code>
Total number of chapters of current playing media
'''Returns'''
:The start date of current selected TV programme in a container.
|
|
|-
|-
| Player.Time
| <code>ListItem.StartDate</code>
Elapsed time of current playing media
'''Returns'''
:The start date of the selected item (PVR).
|
|
|-
|-
| Player.Time(format)
| <code>ListItem.StartTime</code>
Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).
'''Returns'''
:The start time of current selected TV programme in a container.
|
|
|-
|-
| Player.TimeRemaining
| <code>ListItem.StartTime</code>
Remaining time of current playing media
'''Returns'''
:The start time of the selected item (PVR).
|
|
|-
|-
| Player.TimeRemaining(format)
| <code>ListItem.Status</code>
Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).
'''Returns'''
:The status of the selected TV show (e.g. 'returning series','in production','planned','cancelled' or 'ended').
|
|
|-
|-
| Player.Duration
| <code>ListItem.StereoscopicMode</code>
Total duration of the current playing media
'''Returns'''
:The stereomode of the selected video (ie.g. mono, split_vertical, split_horizontal, row_interleaved, anaglyph_cyan_red, or anaglyph_green_magenta).
|
|
|-
|-
| Player.Duration(format)
| <code>ListItem.Studio</code>
Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).
'''Returns'''
:The studio of current selected music video in a container.
|
|
|-
|-
| Player.SeekTime
| <code>ListItem.SubtitleLanguage</code>
Time to which the user is seeking
'''Returns'''
:The subtitle language of the currently selected video as an ISO 639-2 three character code (e.g. eng, epo, deu).
|
|
|-
|-
| Player.SeekOffset
| <code>ListItem.Tag</code>
Indicates the seek offset after a seek press (eg user presses BigStepForward, player.seekoffset returns +10:00)
'''Returns'''
:The name of the 'tag' this movie is part of.
|
|
|-
|-
| Player.SeekOffset(format)
| <code>ListItem.Tagline</code>
Shows hours (hh), minutes (mm) or seconds (ss). Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).
'''Returns'''
:The small summary of current video in a container.
|
|
|-
|-
| Player.SeekStepSize
| <code>ListItem.Title</code>
Displays the seek step size. (v15 addition)
'''Returns'''
:The title of the currently selected song or movie in a container.
|
|
|-
|-
| Player.ProgressCache
| <code>ListItem.Top250</code>
Shows how much of the file is cached above current play percentage
'''Returns'''
:The IMDB top 250 position of the currently selected ListItem in a container.
|
|
|-
|-
Player.Folderpath
| <code>ListItem.TotalDiscs</code>
Shows the full path of the currently playing song or movie
'''Returns'''
:The total amount of discs belonging to an album.
| v19
|-
| <code>ListItem.TrackNumber</code>
'''Returns'''
:The track number of the currently selected song in a container.
|
|
|-
|-
| Player.Filenameandpath
| <code>ListItem.Trailer</code>
Shows the full path with filename of the currently playing song or movie
'''Returns'''
:The full trailer path with filename of the currently selected movie in a container.
|
|
|-
|-
Player.StartTime
| <code>ListItem.TVShowDBID</code>
|  Returns the starttime (from the epg) of a tv program, for all other videos it will return the time you started watching this video.
'''Returns'''
:The TV show DBID of the selected season or episode a container.
| v19
|-
| <code>ListItem.TVShowTitle</code>
'''Returns'''
:The name value for the currently selected TV show in the season and episode depth of the video library.
|
|
|-
|-
| Player.StartTime(format)
| <code>ListItem.UniqueID()</code>
Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).
'''Returns'''
:The UniqueID of the selected item in a container.
| v19
|-
| <code>ListItem.UserRating</code>
|  '''Returns'''
:The user rating of the currently selected item in a container.
|
|
|-
|-
Player.Title
| <code>ListItem.VideoAspect</code>
|  Returns the musicplayer title for audio and the videoplayer title for videos.
'''Returns'''
:The aspect ratio of the currently selected video.<br>
:Possible values:
:*1.00*
:*1.19*
:*1.33
:*1.37
:*1.66
:*1.78
:*1.85
:*2.00*
:*2.20
:*2.35
:*2.40
:*2.55
:*2.76
| *v20
|-
| <code>ListItem.VideoCodec</code>
'''Returns'''
:The video codec of the currently selected video.<br>
:Possible values:
:*3iv2
:*av1
:*avc1
:*div2
:*div3
:*divx
:*divx 4
:*dx50
:*flv
:*h264
:*hev1
:*hevc
:*hvc1
:*microsoft
:*mp42
:*mp43
:*mp4v
:*mpeg1
:*mpeg1video
:*mpeg2
:*mpeg2video
:*mpeg4
:*mpg4
:*rv40
:*svq1
:*svq3
:*theora
:*vc-1
:*vc1
:*vp6f
:*vp8
:*vp9
:*wmv
:*wmv2
:*wmv3
:*wvc1
:*xvid
|
|
|-
|-
| Player.Filename
| <code>ListItem.VideoResolution</code>
|  Returns the filename of the currently playing media.
'''Returns'''
|
:The resolution of the currently selected video.<br>
:Possible values:
:*480
:*576
:*540
:*720
:*1080
:*4K
:*8K*
{{highlight|'''Note'''<br>
That 540 usually means a widescreen format (around 960x540) while 576 means PAL resolutions (normally 720x576), therefore 540 is actually better resolution than 576.}}
| *v18
|-
|-
| Player.Process(AudioBitsPerSample)
| <code>ListItem.VideoVersionName</code>
| Bits per sample of the currently playing item
| '''Returns'''
|
:The name of the video version.
| v21
|-
|-
| Player.Process(AudioChannels)
| <code>ListItem.Votes[(name)]</code>
| Number of audiochannels of the currently playing item
| '''Returns'''
:The IMDB votes of the currently selected movie in a container. Optionally you can specify the name of the scraper to retrieve specific votes, for use in dialogvideoinfo.xml.
|
|
|-
|-
| Player.Process(AudioDecoder)
| <code>ListItem.Writer</code>
| Audiodecoder name of the currently playing item
| '''Returns'''
:The name of Writer of current video in a container.
|
|
|-
|-
Player.Process(AudioSamplerate)
<code>ListItem.Writer(separator)</code>
| Samplerate f the currently playing item
'''Returns'''
|
:A list of writers, separated by given separator, or if no separator was given separated by the advanced settings value “itemseparator” for video items. Possible values for separator: comma, pipe, slash, cr, dash, colon, semicolon, fullstop.
| [https://forum.kodi.tv/showthread.php?tid=377306&pid=3230987#pid3230987 v22]
|-
|-
| Player.Process(DeintMethod)
| <code>ListItem.Year</code>
| Deinterlace method of the currently playing video
| '''Returns'''
|
:The year of the currently selected song, album, or movie in a container.
|}
 
=== MusicPartyMode ===
 
{| class="wikitable sortable" width="100%"
! InfoLabels
! style="80%" | Description
! Version
|-
|-
Player.Process(PixFormat)
<code>MusicPartyMode.SongsPlayed</code>
| Pixel format of the currently playing video
| '''Returns'''
:The number of songs played during Party Mode.
|
|
|-
|-
Player.Process(VideoDAR)
<code>MusicPartyMode.MatchingSongs</code>
| Display aspect ratio of the currently playing video
| '''Returns'''
:The number of songs available to Party Mode.
|
|
|-
|-
Player.Process(VideoFPS)
<code>MusicPartyMode.MatchingSongsPicked</code>
| Video framerate of the currently playing video
| '''Returns'''
:The number of songs picked already for Party Mode.
|
|
|-
|-
Player.Process(VideoHeight)
<code>MusicPartyMode.MatchingSongsLeft</code>
| Height of the currently playing video
| '''Returns'''
:The number of songs left to be picked from for Party Mode.
|
|
|-
|-
Player.Process(VideoDecoder)
<code>MusicPartyMode.RelaxedSongsPicked</code>
| Videodecoder name of the currently playing video
| '''Returns'''
:The number of relaxed songs picked during Party Mode.
|
|
|-
|-
Player.Process(VideoWidth)
<code>MusicPartyMode.RandomSongsPicked</code>
| Width of the currently playing video
| '''Returns'''
:The number of unique random songs picked during Party Mode.
|
|
|}
|}


==== Music player ====
=== Network ===


{| class="prettytable" width="100%"
{| class="wikitable sortable" width="100%"
! InfoLabels
! InfoLabels
! style="80%" | Definition
! style="80%" | Description
! Version
! Version
|-
|-
MusicPlayer.Title
<code>Network.LinkState</code>
Title of the currently playing song,  also available are "MusicPlayer.offset(number).Title" offset is relative to the current playing item and "MusicPlayer.Position(number).Title" position is relative to the start of the playlist
'''Returns'''
:The network linkstate (e.g. 10mbit/100mbit etc).
|
|
|-
|-
MusicPlayer.Album
<code>Network.MacAddress</code>
Album from which the current song is from,  also available are "MusicPlayer.offset(number).Album" offset is relative to the current playing item and "MusicPlayer.Position(number).Album" position is relative to the start of the playlist
'''Returns'''
:The system's  mac address.
|
|
|-
|-
MusicPlayer.Property(Album_Mood)
<code>Network.SubnetMask</code>
Shows the moods of the currently playing Album
'''Returns'''
:The network subnet mask.
|
|
|-
|-
MusicPlayer.Property(Album_Style)
<code>Network.GatewayAddress</code>
Shows the styles of the currently playing Album
'''Returns'''
:The network gateway address.
|
|
|-
|-
MusicPlayer.Property(Album_Theme)
<code>Network.DNS1Address</code>
Shows the themes of the currently playing Album
'''Returns'''
:The network dns server 1 address.
|
|
|-
|-
MusicPlayer.Property(Album_Type)
<code>Network.DNS2Address</code>
Shows the Album Type (e.g. compilation, enhanced, explicit lyrics) of the currently playing Album
'''Returns'''
:The network dns server 2 address.
|
|
|-
|-
MusicPlayer.Property(Album_Label)
<code>Network.DHCPAddress</code>
Shows the record label of the currently playing Album
'''Returns'''
:The DHCP server ip address.
|
|
|}
=== Player labels ===
{|  class="wikitable sortable" width="100%"
! InfoLabels
! style="80%" | Description
! Version
|-
|-
MusicPlayer.Property(Album_Description)
<code>Player.FinishTime</code>
Shows a review of the currently playing Album
Time playing media will end
|
|
|-
|-
MusicPlayer.Artist
<code>Player.FinishTime(format)</code>
Artist(s) of current song, also available are "MusicPlayer.offset(number).Artist" offset is relative to the current playing item and "MusicPlayer.Position(number).Artist" position is relative to the start of the playlist
Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).
|
|
|-
|-
MusicPlayer.Property(Artist_Born)
<code>Player.Chapter</code>
Date of Birth of the currently playing Artist
Current chapter of current playing media
|
|
|-
|-
MusicPlayer.Property(Artist_Died)
<code>Player.ChapterCount</code>
Date of Death of the currently playing Artist
Total number of chapters of current playing media
|
|
|-
|-
MusicPlayer.Property(Artist_Formed)
<code>Player.Time</code>
Formation date of the currently playing Artist/Band
Elapsed time of current playing media
|
|
|-
|-
MusicPlayer.Property(Artist_Disbanded)
<code>Player.Time(format)</code>
Disbanding date of the currently playing Artist/Band
Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).
|
|
|-
|-
MusicPlayer.Property(Artist_YearsActive)
<code>Player.TimeRemaining</code>
Years the currently Playing artist has been active
Remaining time of current playing media
|
|
|-
|-
MusicPlayer.Property(Artist_Instrument)
<code>Player.TimeRemaining(format)</code>
Instruments played by the currently playing artist
Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).
|
|
|-
|-
MusicPlayer.Property(Artist_Description)
<code>Player.Duration</code>
Shows a biography of the currently playing artist
Total duration of the current playing media
|
|
|-
|-
MusicPlayer.Property(Artist_Mood)
<code>Player.Duration(format)</code>
|  Shows the moods of the currently playing artist
|  Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).
|
|
|-
|-
MusicPlayer.Property(Artist_Style)
<code>Player.SeekTime</code>
Shows the styles of the currently playing artist
Time to which the user is seeking
|
|
|-
|-
MusicPlayer.Property(Artist_Genre)
<code>Player.SeekBar</code>
Shows the genre of the currently playing artist
Time to which the user is seeking as a percentage (for use in slider controls)
|
|
|-
|-
MusicPlayer.Genre
<code>Player.SeekOffset</code>
Genre(s) of current song,  also available are "MusicPlayer.offset(number).Genre" offset is relative to the current playing item and "MusicPlayer.Position(number).Genre" position is relative to the start of the playlist
Indicates the seek offset after a seek press (e.g. user presses BigStepForward, player.seekoffset returns +10:00)
|
|
|-
|-
MusicPlayer.Lyrics
<code>Player.SeekOffset(format)</code>
Lyrics of current song stored in ID tag info
Shows hours (hh), minutes (mm) or seconds (ss). Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).
|
|
|-
|-
MusicPlayer.Year
<code>Player.SeekStepSize</code>
Year of release of current song,  also available are "MusicPlayer.offset(number).Year" offset is relative to the current playing item and "MusicPlayer.Position(number).Year" position is relative to the start of the playlist
Displays the seek step size. (v15 addition)
|
|
|-
|-
MusicPlayer.Rating
<code>Player.Progress</code>
Numeric Rating of current song,  also available are "MusicPlayer.offset(number).Rating" offset is relative to the current playing item and "MusicPlayer.Position(number).Rating" position is relative to the start of the playlist
Shows how much (percentage) of the file has been played
|
|
|-
|-
MusicPlayer.DiscNumber
<code>Player.ProgressCache</code>
Disc Number of current song stored in ID tag info,  also available are "MusicPlayer.offset(number).DiscNumber" offset is relative to the current playing item and "MusicPlayer.Position(number).DiscNumber" position is relative to the start of the playlist
Shows how much of the file is cached above current play percentage
|
|
|-
|-
MusicPlayer.Comment
<code>Player.Folderpath</code>
Comment of current song stored in ID tag info,  also available are "MusicPlayer.offset(number).Comment" offset is relative to the current playing item and "MusicPlayer.Position(number).Comment" position is relative to the start of the playlist
Shows the full path of the currently playing song or movie. (supports .offset() and .position())
|
|
|-
|-
MusicPlayer.Time
<code>Player.Filenameandpath</code>
Current time in song
Shows the full path with filename of the currently playing song or movie. (supports .offset() and .position())
|
|
|-
|-
MusicPlayer.TimeRemaining
<code>Player.StartTime</code>
Current remaining time in song
Returns the starttime (from the epg) of a tv program, for all other videos it will return the time you started watching this video.
|
|
|-
|-
MusicPlayer.TimeSpeed
<code>Player.StartTime(format)</code>
Both the time and the playspeed formatted up. eg 1:23 (2x)
Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).
|
|
|-
|-
MusicPlayer.TrackNumber
<code>Player.Title</code>
Track number of current song,  also available are "MusicPlayer.offset(number).TrackNumber" offset is relative to the current playing item and "MusicPlayer.Position(number).TrackNumber" position is relative to the start of the playlist
Returns the musicplayer title for audio and the videoplayer title for videos. (supports .offset() and .position())
|
|
|-
|-
MusicPlayer.Duration
<code>Player.Filename</code>
Duration of current song,  also available are "MusicPlayer.offset(number).Duration" offset is relative to the current playing item and "MusicPlayer.Position(number).Duration" position is relative to the start of the playlist
Returns the filename of the currently playing media. (supports .offset() and .position())
|
|
|-
|-
MusicPlayer.BitRate
<code>Player.Volume</code>
Bitrate of current song
Returns the volume level in dB
|
|
|-
|-
MusicPlayer.Channels
<code>Player.PlaySpeed</code>
Number of channels of current song
Current playspeed. (range:0.8 to 1.5)
|
|
|-
|-
MusicPlayer.BitsPerSample
<code>Player.Process(AudioBitsPerSample)</code>
Number of bits per sample of current song
Bits per sample of the currently playing item
|
|
|-
|-
MusicPlayer.SampleRate
<code>Player.Process(AudioChannels)</code>
Samplerate of current song
List of audio channels of the currently playing item (e.g. FL+FR)
|
|
|-
|-
MusicPlayer.Codec
<code>Player.Process(AudioDecoder)</code>
Codec of current song
Audiodecoder name of the currently playing item
|
|
|-
|-
MusicPlayer.PlaylistPosition
<code>Player.Process(AudioSamplerate)</code>
Position of the current song in the current music playlist
Samplerate  f the currently playing item
|
|
|-
|-
MusicPlayer.PlaylistLength
<code>Player.Process(DeintMethod)</code>
Total size of the current music playlist
Deinterlace method of the currently playing video
|
|
|-
|-
MusicPlayer.ChannelName
<code>Player.Process(PixFormat)</code>
Channel name of the radio programme that's currently playing (PVR).
Pixel format of the currently playing video
|
|
|-
|-
MusicPlayer.ChannelNumber
<code>Player.Process(VideoDAR)</code>
Channel number of the radio programme that's currently playing (PVR).
Display aspect ratio of the currently playing video
|
|
|-
|-
MusicPlayer.SubChannelNumber
<code>Player.Process(VideoFPS)</code>
Subchannel number of the radio channel that's currently playing (PVR).
Video framerate of the currently playing video
|
|
|-
|-
MusicPlayer.ChannelNumberLabel
<code>Player.Process(VideoHeight)</code>
Channel and subchannel number of the radio channel that's currently playing (PVR).
Height of the currently playing video
|
|
|-
|-
MusicPlayer.ChannelGroup
<code>Player.Process(VideoDecoder)</code>
Channel group of  of the radio programme that's currently playing (PVR).
Videodecoder name of the currently playing video
|
|
|-
|-
MusicPlayer.Contributors
<code>Player.Process(VideoWidth)</code>
| List of all people who've contributed to the currently playing song
| Width of the currently playing video
|
|
|-
|-
MusicPlayer.ContributorAndRole
<code>Player.Process(VideoScanType)</code>
| List of all people and their role who've contributed to the currently playing song
| The scan type identifier of the currently playing video '''p''' (for progressive) or '''i''' (for interlaced)
|
| v20
|-
|-
|  MusicPlayer.Mood
<code>Player.CutList</code>
| Mood of the currently playing song
|  this infolabel can be used with the [[Ranges Control]], as EDL and chapter markers
|  v19
|-
|  <code>Player.Chapters</code>
|  this infolabel can be used with the [[Ranges Control]], as EDL and chapter markers
|  v19
|}
 
==== Music player ====
 
{|  class="wikitable sortable" width="100%"
! InfoLabels
! style="80%" | Description
! Version
|-
|  <code>MusicPlayer.ParentalRatingCode</code>
|  Shows the parental rating code
|  v22
|-
|  <code>MusicPlayer.ParentalRatingIcon</code>
| Shows the parental rating icon
|  v22
|-
|  <code>MusicPlayer.ParentalRatingSource</code>
|  Shows the parental rating source
|  v22
|-
|  <code>MusicPlayer.ChannelLogo</code>
|  Shows the logo of the currently selected radio or TV channel
|  v22
|-
|  <code>MusicPlayer.Title</code>
|  Title of the currently playing song,  also available are "MusicPlayer.offset(number).Title" offset is relative to the current playing item and "MusicPlayer.Position(number).Title" position is relative to the start of the playlist
|
|
|-
|-
|  MusicPlayer.Property(Role.Arranger)
<code>MusicPlayer.Album</code>
| Returns the name of the person who arranged the selected song
|  Album from which the current song is from,  also available are "MusicPlayer.offset(number).Album" offset is relative to the current playing item and "MusicPlayer.Position(number).Album" position is relative to the start of the playlist
|
|
|-
|-
|  MusicPlayer.Property(Role.Composer)
<code>MusicPlayer.Property(Album_Mood)</code>
| Returns the name of the person who composed the selected song
| Shows the moods of the currently playing Album
|
|
|-
|-
|  MusicPlayer.Property(Role.Conductor)
<code>MusicPlayer.Property(Album_Style)</code>
| Returns the name of the person who conducted the selected song
| Shows the styles of the currently playing Album
|
|
|-
|-
|  MusicPlayer.Property(Role.DJMixer)
<code>MusicPlayer.Property(Album_Theme)</code>
| Returns the name of the dj who remixed the selected song
| Shows the themes of the currently playing Album
|
|
|-
|-
|  MusicPlayer.Property(Role.Engineer)
<code>MusicPlayer.Property(Album_Type)</code>
| Returns the name of the person who was the engineer of the selected song
| Shows the Album Type (e.g. compilation, enhanced, explicit lyrics) of the currently playing Album
|
|
|-
|-
|  MusicPlayer.Property(Role.Lyricist)
<code>MusicPlayer.Property(Album_Label)</code>
| Returns the name of the person who wrote the lyrics of the selected song
| Shows the record label of the currently playing Album
|
|
|-
|-
|  MusicPlayer.Property(Role.Mixer)
<code>MusicPlayer.Property(Album_Description)</code>
| Returns the name of the person who mixed the selected song
| Shows a review of the currently playing Album
|
|
|-
|-
|  MusicPlayer.Property(Role.Orchestra)
<code>MusicPlayer.Artist</code>
| Returns the name of the orchestra performing the selected song
|  Artist(s) of current song,  also available are "MusicPlayer.offset(number).Artist" offset is relative to the current playing item and "MusicPlayer.Position(number).Artist" position is relative to the start of the playlist
|
|
|-
|-
|  MusicPlayer.Property(Role.Producer)
<code>MusicPlayer.Property(Artist_Born)</code>
| Returns the name of the person who produced the selected song
| Date of Birth of the currently playing Artist
|
|
|-
|-
|  MusicPlayer.Property(Role.Remixer)
<code>MusicPlayer.Property(Artist_Died)</code>
| Returns the name of the person who remixed the selected song
| Date of Death of the currently playing Artist
|
|
|-
|-
|  MusicPlayer.UserRating
<code>MusicPlayer.Property(Artist_Formed)</code>
| The rating the user gave to the currently playing song
| Formation date of the currently playing Artist/Band
|
|
|-
|-
|  MusicPlayer.DBID
<code>MusicPlayer.Property(Artist_Disbanded)</code>
| The database id of the currently playing song
| Disbanding date of the currently playing Artist/Band
| v17 Addition
|
|}
 
==== Video player ====
 
{| class="prettytable" width="100%"
! InfoLabels
! style="80%" | Definition
! Version
|-
|-
VideoPlayer.Time
<code>MusicPlayer.Property(Artist_YearsActive)</code>
Current time in movie
Years the currently Playing artist has been active
|
|
|-
|-
VideoPlayer.TimeRemaining
<code>MusicPlayer.Property(Artist_Instrument)</code>
Current remaining time in movie
Instruments played by the currently playing artist
|
|
|-
|-
VideoPlayer.TimeSpeed
<code>MusicPlayer.Property(Artist_Description)</code>
Current time + playspeed. eg 1:23:14 (-4x)
Shows a biography of the currently playing artist
|
|
|-
|-
VideoPlayer.Duration
<code>MusicPlayer.Property(Artist_Mood)</code>
Length of current movie
Shows the moods of the currently playing artist
|
|
|-
|-
VideoPlayer.Title
<code>MusicPlayer.Property(Artist_Style)</code>
Title of currently playing video. If it's in the database it will return the database title, else the filename
Shows the styles of the currently playing artist
|
|
|-
|-
VideoPlayer.TVShowTitle
<code>MusicPlayer.Property(Artist_Genre)</code>
Title of currently playing episode's tvshow name
Shows the genre of the currently playing artist
|
|
|-
|-
VideoPlayer.Season
<code>MusicPlayer.Property(Artist_Sortname)</code>
Season number of the currently playing episode, if it's in the database
Sortname of the currently playing Artist
|
|  v18
|-
|  <code>MusicPlayer.Property(Artist_Type)</code>
|  Type of the currently playing Artist - person, group, orchestra, choir, etc.
|  v18
|-
|  <code>MusicPlayer.Property(Artist_Gender)</code>
|  Gender of the currently playing Artist - male, female, other
| v18
|-
|-
VideoPlayer.Episode
<code>MusicPlayer.Property(Artist_Disambiguation)</code>
Episode number of the currently playing episode
Brief description of the currently playing Artist that differentiates them from others with the same name
|
| v18
|-
|-
VideoPlayer.Genre
<code>MusicPlayer.Genre</code>
|  Genre(s) of current movie, if it's in the database
|  Genre(s) of current song, also available are "MusicPlayer.offset(number).Genre" offset is relative to the current playing item and "MusicPlayer.Position(number).Genre" position is relative to the start of the playlist
|
|
|-
|-
VideoPlayer.Director
<code>MusicPlayer.Genre(separator)</code>
Director of current movie, if it's in the database
'''Returns'''
|
: A list of genres of current song, separated by given separator, or if no separator was given separated by the advanced settings value “itemseparator” for music. Possible values for separator: comma, pipe, slash, cr, dash, colon, semicolon, fullstop.
| [https://forum.kodi.tv/showthread.php?tid=377306&pid=3230987#pid3230987 v22]
|-
|-
VideoPlayer.Country
<code>MusicPlayer.Lyrics</code>
Production country of current movie, if it's in the database
Lyrics of current song stored in ID tag info
|
|
|-
|-
VideoPlayer.Year
<code>MusicPlayer.Year</code>
|  Year of release of current movie, if it's in the database
|  Year of release of current song, also available are "MusicPlayer.offset(number).Year" offset is relative to the current playing item and "MusicPlayer.Position(number).Year" position is relative to the start of the playlist
|
|
|-
|-
VideoPlayer.Rating
<code>MusicPlayer.Rating</code>
IMDb user rating of current movie, if it's in the database
Numeric Rating of current song, also available are "MusicPlayer.offset(number).Rating" offset is relative to the current playing item and "MusicPlayer.Position(number).Rating" position is relative to the start of the playlist
|
|
|-
|-
VideoPlayer.UserRating
<code>MusicPlayer.DiscNumber</code>
Shows the user rating of the currently playing item
Disc Number of current song stored in ID tag info,  also available are "MusicPlayer.offset(number).DiscNumber" offset is relative to the current playing item and "MusicPlayer.Position(number).DiscNumber" position is relative to the start of the playlist
|
|
|-
|-
VideoPlayer.Votes
<code>MusicPlayer.Comment</code>
IMDb votes of current movie, if it's in the database
Comment of current song stored in ID tag info, also available are "MusicPlayer.offset(number).Comment" offset is relative to the current playing item and "MusicPlayer.Position(number).Comment" position is relative to the start of the playlist
|
|
|-
|-
VideoPlayer.RatingAndVotes
<code>MusicPlayer.Time</code>
IMDb user rating and votes of current movie, if it's in the database
Current time in song
|
|
|-
|-
VideoPlayer.mpaa
<code>MusicPlayer.TimeRemaining</code>
MPAA rating of current movie, if it's in the database
Current remaining time in song
|
|
|-
|-
VideoPlayer.IMDBNumber
<code>MusicPlayer.TimeSpeed</code>
The IMDB iD of the current video, if it's in the database
Both the time and the playspeed formatted up. e.g. 1:23 (2x)
|
|
|-
|-
VideoPlayer.EpisodeName
<code>MusicPlayer.TrackNumber</code>
|  (PVR only) The name of the episode if the playing video is a TV Show, if it's in the database
Track number of current song,  also available are "MusicPlayer.offset(number).TrackNumber" offset is relative to the current playing item and "MusicPlayer.Position(number).TrackNumber" position is relative to the start of the playlist
|
|
|-
|-
VideoPlayer.PlaylistPosition
<code>MusicPlayer.Duration</code>
Position of the current song in the current video playlist
Duration of current song,  also available are "MusicPlayer.offset(number).Duration" offset is relative to the current playing item and "MusicPlayer.Position(number).Duration" position is relative to the start of the playlist
|
|
|-
|-
VideoPlayer.PlaylistLength
<code>MusicPlayer.BitRate</code>
Total size of the current video playlist
Bitrate of current song
|
|
|-
|-
VideoPlayer.Cast
<code>MusicPlayer.Channels</code>
A concatenated string of cast members of the current movie, if it's in the database
Number of channels of current song
|
|
|-
|-
VideoPlayer.CastAndRole
<code>MusicPlayer.BitsPerSample</code>
A concatenated string of cast members and roles of the current movie, if it's in the database
Number of bits per sample of current song
|
|
|-
|-
VideoPlayer.Album
<code>MusicPlayer.SampleRate</code>
Album from which the current Music Video is from, if it's in the database
Samplerate of current song
|
|
|-
|-
VideoPlayer.Artist
<code>MusicPlayer.Codec</code>
Artist(s) of current Music Video, if it's in the database
Codec of current song
|
|
|-
|-
VideoPlayer.Studio
<code>MusicPlayer.PlaylistPosition</code>
Studio of current Music Video, if it's in the database
Position of the current song in the current music playlist
|
|
|-
|-
VideoPlayer.Writer
<code>MusicPlayer.PlaylistLength</code>
Name of Writer of current playing Video, if it's in the database
Total size of the current music playlist
|
|
|-
|-
VideoPlayer.Tagline
<code>MusicPlayer.ChannelName</code>
Small Summary of current playing Video, if it's in the database
Channel name of the radio programme that's currently playing (PVR).
|
|
|-
|-
VideoPlayer.PlotOutline
<code>MusicPlayer.ChannelNumberLabel</code>
Small Summary of current playing Video, if it's in the database
Channel and subchannel number of the radio channel that's currently playing (PVR).
|
|
|-
|-
VideoPlayer.Plot
<code>MusicPlayer.ChannelGroup</code>
Complete Text Summary of current playing Video, if it's in the database
Channel group of of the radio programme that's currently playing (PVR).
|
|
|-
|-
VideoPlayer.LastPlayed
<code>MusicPlayer.Contributors</code>
Last play date of current playing Video, if it's in the database
List of all people who've contributed to the currently playing song
|
|- class="userrow
|  VideoPlayer.PlayCount
|  Playcount of current playing Video, if it's in the database
|
|- class="userrow
|  VideoPlayer.VideoCodec
|  Shows the video codec of the currently playing video (common values: see ListItem.VideoCodec)
|
|
|-
|-
VideoPlayer.VideoResolution
<code>MusicPlayer.ContributorAndRole</code>
Shows the video resolution of the currently playing video (possible values: see ListItem.VideoResolution)
List of all people and their role who've contributed to the currently playing song
|
|
|-
|-
VideoPlayer.VideoAspect
<code>MusicPlayer.Mood</code>
Shows the aspect ratio of the currently playing video (possible values: see ListItem.VideoAspect)
Mood of the currently playing song
|
|
|-
|-
VideoPlayer.AudioCodec
<code>MusicPlayer.Property(Role.Arranger)</code>
Shows the audio codec of the currently playing video, optionally 'n' defines the number of the audiostream (common values: see ListItem.AudioCodec)
Returns the name of the person who arranged the selected song
|
|
|-
|-
VideoPlayer.AudioChannels
<code>MusicPlayer.Property(Role.Composer)</code>
Shows the number of audio channels of the currently playing video (possible values: see ListItem.AudioChannels)
Returns the name of the person who composed the selected song
|
|
|-
|-
VideoPlayer.AudioLanguage
<code>MusicPlayer.Property(Role.Conductor)</code>
Shows the language of the audio of the currently playing video(possible values: see ListItem.AudioLanguage)
Returns the name of the person who conducted the selected song
|
|
|-
|-
VideoPlayer.SubtitlesLanguage
<code>MusicPlayer.Property(Role.DJMixer)</code>
Shows the language of the subtitle of the currently playing video (possible values: see ListItem.SubtitlesLanguage)
Returns the name of the dj who remixed the selected song
|
|
|-
|-
VideoPlayer.StereoscopicMode
<code>MusicPlayer.Property(Role.Engineer)</code>
Shows the stereoscopic mode of the currently playing video (possible values: see ListItem.StereoscopicMode)
Returns the name of the person who was the engineer of the selected song
|
|
|-
|-
VideoPlayer.EndTime
<code>MusicPlayer.Property(Role.Lyricist)</code>
End date of the currently playing programme (PVR).
Returns the name of the person who wrote the lyrics of the selected song
|
|
|-
|-
VideoPlayer.NextTitle
<code>MusicPlayer.Property(Role.Mixer)</code>
Title of the programme that will be played next (PVR).
Returns the name of the person who mixed the selected song
|
|
|-
|-
VideoPlayer.NextGenre
<code>MusicPlayer.Property(Role.Orchestra)</code>
Genre of the programme that will be played next (PVR).
Returns the name of the orchestra performing the selected song
|
|
|-
|-
VideoPlayer.NextPlot
<code>MusicPlayer.Property(Role.Producer)</code>
Plot of the programme that will be played next (PVR).
Returns the name of the person who produced the selected song
|
|
|-
|-
VideoPlayer.NextPlotOutline
<code>MusicPlayer.Property(Role.Remixer)</code>
Plot outline of the programme that will be played next (PVR).
Returns the name of the person who remixed the selected song
|
|
|-
|-
VideoPlayer.NextStartTime
<code>MusicPlayer.UserRating</code>
Start time of the programme that will be played next (PVR).
The rating the user gave to the currently playing song
|
|
|-
|-
|  VideoPlayer.NextEndTime
<code>MusicPlayer.DBID</code>
End time of the programme that will be played next (PVR).
|  The database id of the currently playing song
|  v17
|-
|  <code>MusicPlayer.DiscTitle</code>
|  The title of the disc currently playing
|  v19
|-
|  <code>MusicPlayer.ReleaseDate</code>
|  Returns the release date of the song currently playing
|  v19
|-
|  <code>MusicPlayer.OriginalDate</code>
|  Returns the original release date of the song currently playing
|  v19
|-
|  <code>MusicPlayer.BPM</code>
|  Returns the Beats Per Minute of the currently playing song
|  v19
|-
|  <code>MusicPlayer.TotalDiscs</code>
|  Returns the number of discs associated with the album of the currently playing song
|  v19
|}
 
==== Video player ====
 
{|  class="wikitable sortable" width="100%"
! InfoLabels
! style="80%" | Description
! Version
|-
|  <code>VideoPlayer.AudioStreamCount</code>
Returns the number of audio streams of the currently playing video
|  v21
|-
|  <code>VideoPlayer.VideoStreamCount</code>
|  Returns the number of video streams of the currently playing video
|  v22
|-
|  <code>VideoPlayer.ParentalRatingCode</code>
|  Shows the parental rating code
|  v22
|-
|  <code>VideoPlayer.ParentalRatingIcon</code>
|  Shows the parental rating icon
|  v22
|-
|  <code>VideoPlayer.ParentalRatingSource</code>
|  Shows the parental rating source
|  v22
|-
|  <code>VideoPlayer.ChannelLogo</code>
|  Shows the logo of the currently selected radio or TV channel
|  v22
|-
|  <code>VideoPlayer.VideoVersionName</code>
|  Show the name of the video version
|  v21
|-
|  <code>VideoPlayer.Time</code>
|  Current time in movie
|
|
|-
|-
|  VideoPlayer.NextDuration
<code>VideoPlayer.TimeRemaining</code>
Duration of the programme that will be played next (PVR).
Current remaining time in movie
|
|
|-
|-
|  VideoPlayer.ChannelName
<code>VideoPlayer.TimeSpeed</code>
Name of the curently tuned channel (PVR).
Current time + playspeed. e.g. 1:23:14 (-4x)
|
|
|-
|-
|  VideoPlayer.ChannelNumber
<code>VideoPlayer.Duration</code>
Number of the curently tuned channel (PVR).
Length of current movie
|
|
|-
|-
|  VideoPlayer.SubChannelNumber
<code>VideoPlayer.Title</code>
Subchannel number of the tv channel that's currently playing (PVR).
Title of currently playing video. If it's in the database it will return the database title, else the filename. (supports .offset() and .position())
|
|
|-
|-
|  VideoPlayer.ChannelNumberLabel
<code>VideoPlayer.OriginalTitle</code>
Channel and subchannel number of the tv channel that's currently playing (PVR).
The original title of currently playing video. (supports .offset() and .position())
|
|
|-
|-
|  VideoPlayer.ChannelGroup
<code>VideoPlayer.TVShowTitle</code>
Group of the curently tuned channel (PVR).
Title of currently playing episode's tvshow name. (supports .offset() and .position())
|
|
|-
|-
|  VideoPlayer.ParentalRating
<code>VideoPlayer.Season</code>
Parental rating of the currently playing programme (PVR).
Season number of the currently playing episode, if it's in the database. (supports .offset() and .position())
|
|
|}
=== Playlist ===
{| class="prettytable" width="100%"
! InfoLabels
! style="80%" | Definition
! Version
|-
|-
Playlist.Length(media)
<code>VideoPlayer.Episode</code>
Total size of the current playlist. optional parameter media is either video or music.
Episode number of the currently playing episode. (supports .offset() and .position())
|
|
|-
|-
Playlist.Position(media)
<code>VideoPlayer.Genre</code>
Position of the current item in the current playlist. optional parameter media is either video or music.
Genre(s) of current movie, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
Playlist.Random
<code>VideoPlayer.Genre(separator)</code>
|  Returns string ID's 590 (Randomize Play Enabled) or 591 (Disabled)
'''Returns'''
:A list of genres of current movie, separated by given separator, or if no separator was given separated by the advanced settings value “itemseparator” for videos. Possible values for separator: comma, pipe, slash, cr, dash, colon, semicolon, fullstop.
| [https://forum.kodi.tv/showthread.php?tid=377306&pid=3230987#pid3230987 v22]
|-
|  <code>VideoPlayer.Director</code>
|  Director of current movie, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
Playlist.Repeat
<code>VideoPlayer.Director(separator)</code>
|  Returns string ID's 592 (Repeat One), 593 (Repeat All), or 594 (Repeat Off)
'''Returns'''
:A list of directors of the currently playing video, separated by given separator, or if no separator was given separated by the advanced settings value \“itemseparator\” for video items. Possible values for separator: comma, pipe, slash, cr, dash, colon, semicolon, fullstop.
| [https://forum.kodi.tv/showthread.php?tid=377306&pid=3230987#pid3230987 v22]
|-
|  <code>VideoPlayer.Country</code>
|  Production country of current movie, if it's in the database. (supports .offset() and .position())
|
|
|}
=== PVR ===
{| class="prettytable" width="100%"
! InfoLabels
! style="80%" | Definition
! Version
|-
|-
Pvr.NowRecordingTitle
<code>VideoPlayer.Year</code>
Title of the programme being recorded
Year of release of current movie, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
Pvr.NowRecordingDateTime
<code>VideoPlayer.Premiered</code>
Start date and time of the current recording
The release/aired date of the currently selected episode, show, movie or EPG item. (supports .offset() and .position())
|
|
|-
|-
Pvr.NowRecordingChannel
<code>VideoPlayer.Rating</code>
Channel number that's being recorded
IMDb user rating of current movie, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
Pvr.NextRecordingTitle
<code>VideoPlayer.UserRating</code>
Title of the next programme that will be recorded
Shows the user rating of the currently playing item. (supports .offset() and .position())
|
|
|-
|-
Pvr.NextRecordingDateTime
<code>VideoPlayer.Votes</code>
Start date and time of the next recording
IMDb votes of current movie, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
Pvr.NextRecordingChannel
<code>VideoPlayer.RatingAndVotes</code>
Channel name of the next recording
IMDb user rating and votes of current movie, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
Pvr.BackendName
<code>VideoPlayer.mpaa</code>
Name of the backend being used
MPAA rating of current movie, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
Pvr.BackendVersion
<code>VideoPlayer.IMDBNumber</code>
Version of the backend that's being used
The IMDB iD of the current video, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
Pvr.BackendHost
<code>VideoPlayer.EpisodeName</code>
Backend hostname
(PVR only) The name of the episode if the playing video is a TV Show, if it's in the database
|
|
|-
|-
Pvr.BackendDiskSpace
<code>VideoPlayer.PlaylistPosition</code>
Available diskspace on the backend
Position of the current song in the current video playlist
|
|
|-
|-
Pvr.BackendChannels
<code>VideoPlayer.PlaylistLength</code>
Number of available channels the backend provides
Total size of the current video playlist
|
|
|-
|-
Pvr.BackendTimers
<code>VideoPlayer.Cast</code>
Number of timers set for the backend
A list of cast members, separated by carriage returns, if it's in the database
|
|
|-
|-
Pvr.BackendRecordings
<code>VideoPlayer.Cast(separator)</code>
Number of recording available on the backend
'''Returns'''
:A list of cast members of the currently playing video, separated by given separator, or if no separator was given separated by carriage returns. Possible values for separator: comma, pipe, slash, cr, dash, colon, semicolon, fullstop.
| [https://forum.kodi.tv/showthread.php?tid=377306&pid=3230987#pid3230987 v22]
|-
|  <code>VideoPlayer.CastAndRole</code>
|  A list of cast members and roles, separated by carriage returns. Every cast/role combination is formatted 'cast' as 'role' where 'as' is localised, if it's in the database
|
|
|-  
|-
Pvr.BackendDiskspace
<code>VideoPlayer.CastAndRole(separator)</code>
Free diskspace available for recordings on the backend
'''Returns'''
:A list of cast members and roles of the currently playing video, pairs separated by given separator, or if no separator was given separated by carriage returns. Possible values for separator: comma, pipe, slash, cr, dash, colon, semicolon, fullstop.
| [https://forum.kodi.tv/showthread.php?tid=377306&pid=3230987#pid3230987 v22]
|-
|  <code>VideoPlayer.Trailer</code>
|  The trailer of the current movie. (supports .offset() and .position())
|
|
|-
|-
Pvr.BackendNumber
<code>VideoPlayer.Album</code>
Backend number
Album from which the current Music Video is from, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
Pvr.TotalDiscSpace
<code>VideoPlayer.Artist</code>
Total diskspace available for recordings
Artist(s) of current Music Video, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
Pvr.NextTimer
<code>VideoPlayer.Studio</code>
Next timer date
Studio of current Music Video, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
Pvr.Duration
<code>VideoPlayer.Writer</code>
Returns the duration of the currently played title on TV
Name of Writer of current playing Video, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
Pvr.Time
<code>VideoPlayer.Writer(separator)</code>
|  Returns the time position of the currently played title on TV
'''Returns'''
|
:A list of writers of the currently playing video, separated by given separator, or if no separator was given separated by the advanced settings value “itemseparator” for video items. Possible values for separator: comma, pipe, slash, cr, dash, colon, semicolon, fullstop.
| [https://forum.kodi.tv/showthread.php?tid=377306&pid=3230987#pid3230987 v22]
|-
|-
Pvr.Progress
<code>VideoPlayer.Tagline</code>
Returns the position of currently played title on TV as integer
Small Summary of current playing Video, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
Pvr.TimeShiftStart
<code>VideoPlayer.PlotOutline</code>
Start position of the timeshift
Small Summary of current playing Video, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
Pvr.TimeShiftEnd
<code>VideoPlayer.Plot</code>
End position of the timeshift
Complete Text Summary of current playing Video, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
Pvr.TimeShiftCur
<code>VideoPlayer.Top250</code>
Current position of the timeshift
Shows the IMDb top250 position of the current playing Video. (supports .offset() and .position())
|
|
|-
|-
Pvr.TimeShiftProgress
<code>VideoPlayer.LastPlayed</code>
Returns the position of currently timeshifted title on TV as interger
Last play date of current playing Video, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
| Pvr.ActStreamClient
| <code>VideoPlayer.PlayCount</code>
| Stream client name
| Playcount of current playing Video, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
| Pvr.ActStreamDevice
| <code>VideoPlayer.HdrType</code>
| Stream device name
| Shows the HDR type of the currently playing video (possible values: hdr10, dolbyvision and hlg)
|
| v20
|-
|-
| Pvr.ActStreamStatus
| <code>VideoPlayer.VideoCodec</code>
| Status of the stream
| Shows the video codec of the currently playing video (common values: see ListItem.VideoCodec)
|
|
|-
|-
| Pvr.ActStreamSignal
| <code>VideoPlayer.VideoResolution</code>
| Signal quality of the stream
| Shows the video resolution of the currently playing video (possible values: see ListItem.VideoResolution)
|
|
|-
|-
| Pvr.ActStreamSnr
| <code>VideoPlayer.VideoAspect</code>
| Signal to noise ratio of the stream
| Shows the aspect ratio of the currently playing video (possible values: see ListItem.VideoAspect)
|
|
|-
|-
| Pvr.ActStreamBer
| <code>VideoPlayer.AudioCodec</code>
| Bit error rate of the stream
| Shows the audio codec of the currently playing video, optionally 'n' defines the number of the audiostream (common values: see ListItem.AudioCodec)
|
|
|-
|-
| Pvr.ActStreamUnc
| <code>VideoPlayer.AudioChannels</code>
| UNC value of the stream
| Shows the number of audio channels of the currently playing video (possible values: see ListItem.AudioChannels)
|
|
|-
|-
| Pvr.ActStreamVideoBitRate
| <code>VideoPlayer.AudioLanguage</code>
| Video bitrate of the stream
| Shows the language of the audio of the currently playing video (possible values: see ListItem.AudioLanguage)
|
|
|-
|-
| Pvr.ActStreamAudioBitRate
| <code>VideoPlayer.SubtitlesLanguage</code>
| Audio bitrate of the stream
| Shows the language of the subtitle of the currently playing video (possible values: see ListItem.SubtitlesLanguage)
|
|
|-
|-
| Pvr.ActStreamDolbyBitRate
| <code>VideoPlayer.StereoscopicMode</code>
| Dolby bitrate of the stream
| Shows the stereoscopic mode of the currently playing video (possible values: see ListItem.StereoscopicMode)
|
|
|-
|-
| Pvr.ActStreamProgrSignal
| <code>VideoPlayer.EndTime</code>
| Signal quality of the programme
| End date of the currently playing programme (PVR).
|
|
|-
|-
| Pvr.ActStreamProgrSnr
| <code>VideoPlayer.NextTitle</code>
| Signal to noise ratio of the programme
| Title of the programme that will be played next (PVR).
|
|
|-
|-
| Pvr.ActStreamEncryptionName
| <code>VideoPlayer.NextGenre</code>
| Encryption used on the stream
| Genre of the programme that will be played next (PVR).
|
|
|-
|-
| Pvr.TVNowRecordingTitle
| <code>VideoPlayer.NextGenre(separator)</code>
| Title of the tv programme being recorded
| '''Returns'''
| {{nowrap|v17 Addition}}
:A list of genres of the programme that will be played next (PVR), separated by given separator, or if no separator was given separated by the advanced settings value \“itemseparator\” for videos. Possible values for separator: comma, pipe, slash, cr, dash, colon, semicolon, fullstop.
| [https://forum.kodi.tv/showthread.php?tid=377306&pid=3230987#pid3230987 v22]
|-
|-
| Pvr.TVNowRecordingDateTime
| <code>VideoPlayer.NextPlot</code>
| Start date and time of the current tv recording
| Plot of the programme that will be played next (PVR).
| {{nowrap|v17 Addition}}
|
|-
|-
| Pvr.TVNowRecordingChannel
| <code>VideoPlayer.NextPlotOutline</code>
| Channel name of the current tv recording
| Plot outline of the programme that will be played next (PVR).
| {{nowrap|v17 Addition}}
|
|-
|-
| Pvr.TVNowRecordingChannelIcon
| <code>VideoPlayer.NextStartTime</code>
| Icon of the current recording TV channel
| Start time of the programme that will be played next (PVR).
| {{nowrap|v17 Addition}}
|
|-
|-
| Pvr.TVNextRecordingTitle
| <code>VideoPlayer.NextEndTime</code>
| Title of the next tv programme that will be recorded
| End time of the programme that will be played next (PVR).
| {{nowrap|v17 Addition}}
|
|-
|-
| Pvr.TVNextRecordingDateTime
| <code>VideoPlayer.NextDuration</code>
| Start date and time of the next tv recording
| Duration of the programme that will be played next (PVR).
| {{nowrap|v17 Addition}}
|
|-
|-
| Pvr.TVNextRecordingChannel
| <code>VideoPlayer.ChannelName</code>
| Channel name of the next tv recording
| Name of the curently tuned channel (PVR).
| {{nowrap|v17 Addition}}
|
|-
|-
| Pvr.TVNextRecordingChannelIcon
| <code>VideoPlayer.ChannelNumberLabel</code>
| Icon of the next recording tv channel
| Channel and subchannel number of the tv channel that's currently playing (PVR).
| {{nowrap|v17 Addition}}
|
|-
|-
| Pvr.RadioNowRecordingTitle
| <code>VideoPlayer.ChannelGroup</code>
| Title of the radio programme being recorded
| Group of the curently tuned channel (PVR).
| {{nowrap|v17 Addition}}
|
|-
|-
| Pvr.RadioNowRecordingDateTime
| <code>VideoPlayer.ParentalRating</code>
| Start date and time of the current radio recording
| Parental rating of the currently playing programme (PVR).
| {{nowrap|v17 Addition}}
|
|-
| Pvr.RadioNowRecordingChannel
| Channel name of the current radio recording
| {{nowrap|v17 Addition}}
|-
| Pvr.RadioNowRecordingChannelIcon
| Icon of the current recording radio channel
| {{nowrap|v17 Addition}}
|-
|-
| Pvr.RadioNextRecordingTitle
| <code>VideoPlayer.DBID</code>
| Title of the next radio programme that will be recorded
| The database id of the currently playing video. (supports .offset() and .position())
| {{nowrap|v17 Addition}}
| v17
|-
|-
| Pvr.RadioNextRecordingDateTime
| <code>VideoPlayer.UniqueID()</code>
| Start date and time of the next radio recording
| Returns the UniqueID of the currently playing video
| {{nowrap|v17 Addition}}
| v19
|-
|-
| Pvr.RadioNextRecordingChannel
| <code>VideoPlayer.TvShowDBID</code>
| Channel name of the next radio recording
| Returns the tv show DBID of the currently playing episode
| {{nowrap|v17 Addition}}
| v19
|}
|}


=== RDS ===
=== Playlist ===
{| class="prettytable" width="100%"
 
{| class="wikitable sortable" width="100%"
! InfoLabels
! InfoLabels
! style="80%" | Definition
! style="80%" | Description
! Version
! Version
|-
|-
RDS.AudioLanguage
<code>Playlist.Length(media)</code>
The from RDS reported audio language of channel
Total size of the current playlist. optional parameter media is either video or music.
|
|
|-
|-
RDS.ChannelCountry
<code>Playlist.Position(media)</code>
Country where the radio channel is sended
Position of the current item in the current playlist. optional parameter media is either video or music.
|
|
|-
|-
RDS.GetLine(number)
<code>Playlist.Random</code>
|  Returns the last sended RDS text messages on givern number, 0 is thelast and 4 rows are supported (0-3)
|  Returns 'On' or 'Off'
|
|
|-
|-
RDS.Title
<code>Playlist.Repeat</code>
Title of item; e.g. track title of an album (Only be available on RadiotextPlus)
Returns string ID's 592 (Repeat One), 593 (Repeat All), or 594 (Repeat Off)
|   
|
|}
 
=== PVR ===
 
{class="wikitable sortable" width="100%"
! InfoLabels
! style="80%" | Description
! Version
|-
|-
RDS.Artist
<code>PVR.NowRecordingTitle</code>
A person or band/collective generally considered responsible for the work (Only be available on RadiotextPlus)
Title of the programme being recorded
|
|
|-
|-
RDS.Band
<code>PVR.NowRecordingDateTime</code>
Band/orchestra/accompaniment/musician (Only be available on RadiotextPlus)
Start date and time of the current recording
|
|
|-
|-
RDS.Composer
<code>PVR.NowRecordingChannel</code>
Name of the original composer/author (Only be available on RadiotextPlus)
Channel number that's being recorded
|
|
|-
|-
RDS.Conductor
<code>PVR.NextRecordingTitle</code>
The artist(s) who performed the work. In classical music this would bethe conductor (Only be available on RadiotextPlus)
Title of the next programme that will be recorded
|
|
|-
|-
RDS.Album
<code>PVR.NextRecordingDateTime</code>
The collection name to which this track belongs (Only be available on RadiotextPlus)
Start date and time of the next recording
|
|
|-
|-
RDS.TrackNumber
<code>PVR.NextRecordingChannel</code>
The track number of the item on the album on which it was originallyreleased. (Only be available on RadiotextPlus)
Channel name of the next recording
|
|
|-
|-
RDS.RadioStyle
<code>PVR.BackendName</code>
The from radio channel used style of currently played part, e.g "popmusic", "news" or "weather"
Name of the backend being used
|
|
|-
|-
RDS.Comment
<code>PVR.BackendVersion</code>
Radio station comment string if available (Only be available on RadiotextPlus)
version of the backend that's being used
|
|
|-
|-
RDS.InfoNews
<code>PVR.BackendHost</code>
Message / headline (if available) (Only be available on RadiotextPlus)
Backend hostname
|
|
|-
|-
RDS.InfoNewsLocal
<code>PVR.BackendDiskSpace</code>
Local information news sended from radio channel (if available) (Only be available on RadiotextPlus)
Available diskspace on the backend
|
|
|-
|-
RDS.InfoStock
<code>PVR.BackendChannels</code>
Quote information; either as one part or as several distinct parts:"name 99latest value 99change 99high 99low 99volume" (if available) (Only be available on RadiotextPlus)
Number of available channels the backend provides
|
|
|-
|-
RDS.InfoStockSize
<code>PVR.BackendTimers</code>
|  Number of rows present in stock information (Only be available on RadiotextPlus)
|  Number of timers set for the backend
|
|
|-
|-
RDS.InfoSport
<code>PVR.BackendRecordings</code>
Result of a game; either as one part or as several distinct parts:"match 99result", e.g. "Bayern München : Borussia 995:5"  (if available) (Only be available on RadiotextPlus)
Number of recording available on the backend
|
|
|-
|-
RDS.InfoSportSize
<code>PVR.BackendDiskspace</code>
Number of rows present in sport information (Only be available on RadiotextPlus)
Free diskspace available for recordings on the backend
|
|
|-
|-
RDS.InfoLottery
<code>PVR.BackendNumber</code>
Raffle / lottery: "key word 99values" (if available) (Only be available on RadiotextPlus)
Backend number
|
|
|-
|-
RDS.InfoLotterySize
<code>PVR.ClientCount</code>
|  Number of rows present in lottery information (Only be available on RadiotextPlus)
|  Number of PVR clients enabled
|   
v22
|-
|-
RDS.InfoWeather
<code>PVR.TotalDiscSpace</code>
Weather informations sended from radio channel (if available) (Only be available on RadiotextPlus)
Total diskspace available for recordings
|
|
|-
|-
RDS.InfoWeatherSize
<code>PVR.NextTimer</code>
Number of rows present in weather information (Only be available on RadiotextPlus)
Next timer date
|
|
|-
|-
RDS.InfoCinema
<code>PVR.EpgEventDuration[(format)]</code>
Information about movies in cinema (if available) (Only be available on RadiotextPlus)
Returns the duration of the currently played title on TV. See ListItem.Duration for optinional formatting options
|
|
|-
|-
RDS.InfoCinemaSize
<code>PVR.EpgEventElapsedTime[(format)]</code>
Number of rows present in cinema information (Only be available on RadiotextPlus)
Returns the time position of the currently played title on TV. See ListItem.Duration for optinional formatting options
|
|
|-
|-
RDS.InfoHoroscope
<code>PVR.EpgEventRemainingTime[(format)]</code>
Horoscope; either as one part or as two distinct parts:"key word 99text", e.g. "sign of the zodiac 99blablabla" (if available) (Only be available on RadiotextPlus)
Returns the remaining time for currently playing epg event. See ListItem.Duration for optinional formatting options
|   
v18
|-
|-
RDS.InfoHoroscopeSize
<code>PVR.EpgEventFinishTime[(format)]</code>
Number of rows present in horoscope information (Only be available on RadiotextPlus)
Returns the time the currently playing epg event will end. See ListItem.Duration for optinional formatting options
|   
v18
|-
|-
RDS.InfoOther
<code>PVR.EpgEventSeekTime[(format)]</code>
Other information, not especially specified: "key word 99info" (if available) (Only be available on RadiotextPlus)
Returns the seek time of the currently playing epg event. See ListItem.Duration for optinional formatting options
|   
v18
|-
|-
RDS.InfoOtherSize
<code>PVR.EpgEventProgress</code>
Number of rows present with other informations (Only be available on RadiotextPlus)
Returns the position of currently played title on TV as integer
|
|
|-
|-
RDS.ProgStation
<code>PVR.TimeShiftStart[(format)]</code>
Name of the radio channel@note becomes also be set from epg if from RDS not available
Start position of the timeshift. See ListItem.Duration for optinional formatting options
|
|
|-
|-
RDS.ProgNow
<code>PVR.TimeShiftEnd[(format)]</code>
Now played program name@note becomes also be set from epg if from RDS not available
End position of the timeshift. See ListItem.Duration for optinional formatting options
|
|
|-
|-
RDS.ProgNext
<code>PVR.TimeShiftCur[(format)]</code>
|  Next played program name (if available)@note becomes also be set from epg if from RDS not available
Current position of the timeshift. See ListItem.Duration for optinional formatting options
|   
|-
|-
RDS.ProgHost
<code>PVR.TimeShiftOffset[(format)]</code>
Name of the host of the radio show
Current offset of the timeshift. See ListItem.Duration for optinional formatting options
|
|
|-
|-
RDS.ProgEditStaff
<code>PVR.TimeShiftProgress</code>
Name of the editorial staff; e.g. name of editorial journalist (Only be available on RadiotextPlus)
Returns the position of currently timeshifted title on TV as interger
|
|
|-
|-
RDS.ProgHomepage
<code>PVR.ActStreamClient</code>
Link to radio station homepage (Only be available on RadiotextPlus)
Stream client name
|
|
|-
|-
RDS.ProgStyle
<code>PVR.ActStreamDevice</code>
Human readable string about radiostyle defined from RDS or RBDS
Stream device name
|
|
|-
|-
RDS.PhoneHotline
<code>PVR.ActStreamStatus</code>
The telephone number of the radio station's hotline (Only be available on RadiotextPlus)
Status of the stream
|
|
|-
|-
RDS.PhoneStudio
<code>PVR.ActStreamSignal</code>
The telephone number of the radio station's studio (Only be available on RadiotextPlus)
Signal quality of the stream
|
|
|-
|-
RDS.SmsStudio
<code>PVR.ActStreamSnr</code>
The sms number of the radio stations studio (to send directly a sms to the studio) (if available) (Only be available on RadiotextPlus)
Signal to noise ratio of the stream
|
|
|-
|-
RDS.EmailHotline
<code>PVR.ActStreamBer</code>
The email adress of the radio stations hotline (if available) (Only be available on RadiotextPlus)
Bit error rate of the stream
|
|
|-
|-
RDS.EmailStudio
<code>PVR.ActStreamUnc</code>
The email adress of the radio stations studio (if available) (Only be available on RadiotextPlus)
UNC value of the stream
|
|
|}
 
=== Skin ===
 
{| class="prettytable" width="100%"
! InfoLabels
! style="80%" | Definition
! Version
|-
|-
Skin.CurrentTheme
<code>PVR.ActStreamVideoBitRate</code>
Returns the current selected skin theme.
Video bitrate of the stream
|
|
|-
|-
Skin.CurrentColourTheme
<code>PVR.ActStreamAudioBitRate</code>
Returns the current selected colour theme of the skin.
Audio bitrate of the stream
|
|
|-
|-
Skin.String(name)
|  <code>PVR.ActStreamDolbyBitRate</code>
| Returns the <span class="nobr">user-set</span> skin string, set via the Skin.SetString(name) '''[[List of Built In Functions]]'''. Allows skinners to have <span class="nobr">user-customisable</span> labels.
|  Dolby bitrate of the stream
|
|
|-
|-
Skin.AspectRatio
<code>PVR.ActStreamProgrSignal</code>
Returns the closest aspect ratio match using the resolution info from the skin's addon.xml file.
Signal quality of the programme
|}
 
=== Slideshow ===
 
{| class="prettytable" width="100%"
! InfoLabels
! style="80%" | Definition
! Version
|- 
|  Slideshow.Altitude
|  Shows the altitude in meters where the current picture was taken. This is the value of the EXIF GPSInfo.GPSAltitude tag.
|
|
|-
|-
Slideshow.Aperture
<code>PVR.ActStreamProgrSnr</code>
Shows the F-stop used to take the current picture. This is the value of the EXIF FNumber tag (hex code 0x829D).
Signal to noise ratio of the programme
|
|
|-
|-
Slideshow.Author
<code>PVR.ActStreamEncryptionName</code>
Shows the name of the person involved in writing about the current picture. This is the value of the IPTC Writer tag (hex code 0x7A).
Encryption used on the stream
|
|
|-
|-
Slideshow.Byline
<code>PVR.TVNowRecordingTitle</code>
Shows the name of the person who created the current picture.  This is the value of the IPTC Byline tag (hex code 0x50).
Title of the tv programme being recorded
|
| v17
|-
|-
Slideshow.BylineTitle
<code>PVR.TVNowRecordingDateTime</code>
Shows the title of the person who created the current picture. This is the value of the IPTC BylineTitle tag (hex code 0x55).
Start date and time of the current tv recording
|
| v17
|-
|-
Slideshow.CameraMake
<code>PVR.TVNowRecordingChannel</code>
Shows the manufacturer of the camera used to take the current picture. This is the value of the EXIF Make tag (hex code 0x010F).
Channel name of the current tv recording
|
| v17
|-
|-
Slideshow.CameraModel
<code>PVR.TVNowRecordingChannelIcon</code>
Shows the manufacturer's model name or number of the camera used to take the current picture. This is the value of the EXIF Model tag (hex code 0x0110).
Icon of the current recording TV channel
|
| v17
|-
|-
Slideshow.Caption
<code>PVR.TVNextRecordingTitle</code>
Shows a description of the current picture. This is the value of the IPTC Caption tag (hex code 0x78).
Title of the next tv programme that will be recorded
|
| v17
|-
|-
Slideshow.Category
<code>PVR.TVNextRecordingDateTime</code>
Shows the subject of the current picture as a category code. This is the value of the IPTC Category tag (hex code 0x0F).
Start date and time of the next tv recording
|
| v17
|-
|-
Slideshow.CCDWidth
<code>PVR.TVNextRecordingChannel</code>
Shows the width of the CCD in the camera used to take the current picture. This is calculated from three EXIF tags (0xA002 * 0xA210 / 0xA20e).
Channel name of the next tv recording
|
| v17
|-
|-
Slideshow.City
<code>PVR.TVNextRecordingChannelIcon</code>
Shows the city where the current picture was taken. This is the value of the IPTC City tag (hex code 0x5A).
Icon of the next recording tv channel
|
| v17
|-
|-
Slideshow.Colour
<code>PVR.RadioNowRecordingTitle</code>
Shows whether the current picture is "Colour" or "Black and White".
Title of the radio programme being recorded
|
| v17
|-
|-
Slideshow.CopyrightNotice
<code>PVR.RadioNowRecordingDateTime</code>
Shows the copyright notice of the current picture. This is the value of the IPTC Copyright tag (hex code 0x74).
Start date and time of the current radio recording
|
| v17
|-
|-
Slideshow.Country
<code>PVR.RadioNowRecordingChannel</code>
Shows the full name of the country where the current picture was taken. This is the value of the IPTC CountryName tag (hex code 0x65).
Channel name of the current radio recording
|
| v17
|-
|-
Slideshow.CountryCode
<code>PVR.RadioNowRecordingChannelIcon</code>
Shows the country code of the country where the current picture was taken. This is the value of the IPTC CountryCode tag (hex code 0x64).
Icon of the current recording radio channel
|
| v17
|-
|-
Slideshow.Credit
<code>PVR.RadioNextRecordingTitle</code>
Shows who provided the current picture. This is the value of the IPTC Credit tag (hex code 0x6E).
Title of the next radio programme that will be recorded
|
| v17
|-
|-
Slideshow.DigitalZoom
<code>PVR.RadioNextRecordingDateTime</code>
Shows the digital zoom ratio when the current picture was taken. This is the value of the EXIF .DigitalZoomRatio tag (hex code 0xA404). 
Start date and time of the next radio recording
|
| v17
|-
|-
Slideshow.EXIFComment
<code>PVR.RadioNextRecordingChannel</code>
Shows a description of the current picture. This is the value of the EXIF User Comment tag (hex code 0x9286). This is the same value as Slideshow.SlideComment.
Channel name of the next radio recording
|
| v17
|-
|-
Slideshow.EXIFDate
<code>PVR.ChannelNumberInput</code>
Shows the localized date of the current picture. The short form of the date is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.
Label displaying the number the user entered on remote or keyboard
|
| v18
|-
|-
Slideshow.EXIFDescription
<code>PVR.TimeshiftProgressDuration</code>
Shows a short description of the current picture. The SlideComment, EXIFComment, or Caption values might contain a longer description. This is the value of the EXIF ImageDescription tag (hex code 0x010E).
Returns the duration of the PVR timeshift progress in the format hh:mm:ss. hh: will be omitted if hours value is zero
|
| v18
|-
|-
Slideshow.EXIFSoftware
<code>PVR.TimeshiftProgressDuration(format)</code>
Shows the name and version of the firmware used by the camera that took the current picture. This is the value of the EXIF Software tag (hex code 0x0131).
Returns the duration of the PVR timeshift progress in different formats, hours (hh), minutes (mm) or seconds (ss)
|
| v18
|-
|-
Slideshow.EXIFTime
<code>PVR.TimeshiftProgressStartTime</code>
Shows the date/timestamp of the current picture. The localized short form of the date and time is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.
Returns the start time of the PVR timeshift progress in the format hh:mm:ss. hh: will be omitted if hours value is zero
|
| v18
|-
|-
Slideshow.Exposure
<code>PVR.TimeshiftProgressStartTime(format)</code>
Shows the class of the program used by the camera to set exposure when the current picture was taken. Values include "Manual", "Program (Auto)", "Aperture priority (Semi-Auto)", "Shutter priority (semi-auto)", etc. This is the value of the EXIF ExposureProgram tag (hex code 0x8822).
Returns the start time of the PVR timeshift progress in different formats, hours (hh), minutes (mm) or seconds (ss)
|
| v18
|-
|-
Slideshow.ExposureBias
<code>PVR.TimeshiftProgressEndTime</code>
Shows the exposure bias of the current picture. Typically this is a number between -99.99 and 99.99. This is the value of the EXIF ExposureBiasValue tag (hex code 0x9204).
Returns the end time of the PVR timeshift progress in the format hh:mm:ss. hh: will be omitted if hours value is zero
|
| v18
|-
|-
Slideshow.ExposureMode
<code>PVR.TimeshiftProgressEndTime(format)</code>
Shows the exposure mode of the current picture. The possible values are "Automatic", "Manual", and "Auto bracketing". This is the value of the EXIF ExposureMode tag (hex code 0xA402).
Returns the end time of the PVR timeshift progress in different formats, hours (hh), minutes (mm) or seconds (ss)
|
| v18
|-
|-
Slideshow.ExposureTime
<code>PVR.TimeshiftProgressPlayPos</code>
Shows the exposure time of the current picture, in seconds. This is the value of the EXIF ExposureTime tag (hex code 0x829A). If the ExposureTime tag is not found, the ShutterSpeedValue tag (hex code 0x9201) might be used.
Returns the percentage of the current play position within the PVR timeshift progress
|
|  v18
|-
|  <code>PVR.TimeshiftProgressEpgStart</code>
|  Returns the percentage of the start of the currently playing epg event within the PVR timeshift progress
|  v18
|-
|  <code>PVR.TimeshiftProgressEpgEnd</code>
|  Returns the percentage of the end of the currently playing epg event within the PVR timeshift progress
|  v18
|-
|  <code>PVR.TimeshiftProgressBufferStart</code>
| Returns the percentage of the start of the timeshift buffer within the PVR timeshift progress
|  v18
|-
|-
Slideshow.Filedate
<code>PVR.TimeshiftProgressBufferEnd</code>
Shows the file date of the current picture
Returns the percentage of the end of the timeshift buffer within the PVR timeshift progress
|
| v18
|-
|-
Slideshow.Filename
<code>PVR.TimeShiftSeekbar</code>
Shows the file name of the current picture
This is the equivalent of Player.Seekbar, but for LiveTV (can be used in a slider control and indicates the position being seeked to)
|
|  v19
|}
 
=== RDS ===
{|  class="wikitable sortable" width="100%"
! InfoLabels
! style="80%" | Description
! Version
|-
|-
Slideshow.Filesize
<code>RDS.AudioLanguage</code>
Shows the file size of the current picture
The from RDS reported audio language of channel
|
|
|-
|-
Slideshow.FlashUsed
<code>RDS.ChannelCountry</code>
Shows the status of flash when the current picture was taken. The value will be either "Yes" or "No", and might include additional information. This is the value of the EXIF Flash tag (hex code 0x9209). 
Country where the radio channel is sended
|
|
|-
|-
Slideshow.FocalLength
<code>RDS.GetLine(number)</code>
Shows the focal length of the lens, in mm. This is the value of the EXIF FocalLength tag (hex code 0x920A).
Returns the last sended RDS text messages on givern number, 0 is thelast and 4 rows are supported (0-3)
|
|
|-
|-
Slideshow.FocusDistance
<code>RDS.Title</code>
Shows the distance to the subject, in meters. This is the value of the EXIF SubjectDistance tag (hex code 0x9206).
Title of item; e.g. track title of an album (Only be available on RadiotextPlus)
|
|
|-
|-
Slideshow.Headline
<code>RDS.Artist</code>
Shows a synopsis of the contents of the current picture. This is the value of the IPTC Headline tag (hex code 0x69).
A person or band/collective generally considered responsible for the work (Only be available on RadiotextPlus)
|
|
|-
|-
Slideshow.ImageType
<code>RDS.Band</code>
Shows the color components of the current picture. This is the value of the IPTC ImageType tag (hex code 0x82).
Band/orchestra/accompaniment/musician (Only be available on RadiotextPlus)
|
|
|-
|-
Slideshow.IPTCDate
<code>RDS.Composer</code>
Shows the date when the intellectual content of the current picture was created, rather than when the picture was created. This is the value of the IPTC DateCreated tag (hex code 0x37).
Name of the original composer/author (Only be available on RadiotextPlus)
|
|
|-
|-
Slideshow.ISOEquivalence
<code>RDS.Conductor</code>
Shows the ISO speed of the camera when the current picture was taken. This is the value of the EXIF ISOSpeedRatings tag (hex code 0x8827).
The artist(s) who performed the work. In classical music this would bethe conductor (Only be available on RadiotextPlus)
|
|
|-
|-
Slideshow.Keywords
<code>RDS.Album</code>
Shows keywords assigned to the current picture. This is the value of the IPTC Keywords tag (hex code 0x19).
The collection name to which this track belongs (Only be available on RadiotextPlus)
|
|
|-
|-
Slideshow.Latitude
<code>RDS.TrackNumber</code>
Shows the latitude where the current picture was taken (degrees, minutes, seconds North or South). This is the value of the EXIF GPSInfo.GPSLatitude and GPSInfo.GPSLatitudeRef tags.
The track number of the item on the album on which it was originallyreleased. (Only be available on RadiotextPlus)
|
|
|-
|-
Slideshow.LightSource
<code>RDS.RadioStyle</code>
Shows the kind of light source when the picture was taken. Possible values include "Daylight", "Fluorescent", "Incandescent", etc. This is the value of the EXIF LightSource tag (hex code 0x9208).
The from radio channel used style of currently played part, e.g "popmusic", "news" or "weather"
|
|
|-
|-
Slideshow.LongEXIFDate
<code>RDS.Comment</code>
Shows only the localized date of the current picture. The long form of the date is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.
Radio station comment string if available (Only be available on RadiotextPlus)
|
|
|-
|-
Slideshow.LongEXIFTime
<code>RDS.InfoNews</code>
Shows the date/timestamp of the current picture. The localized long form of the date and time is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. if the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.
Message / headline (if available) (Only be available on RadiotextPlus)
|
|
|-
|-
Slideshow.Longitude
<code>RDS.InfoNewsLocal</code>
Shows the longitude where the current picture was taken (degrees, minutes, seconds East or West). This is the value of the EXIF GPSInfo.GPSLongitude and GPSInfo.GPSLongitudeRef tags.
Local information news sended from radio channel (if available) (Only be available on RadiotextPlus)
|
|
|-
|-
Slideshow.MeteringMode
<code>RDS.InfoStock</code>
Shows the metering mode used when the current picture was taken. The possible values are "Center weight", "Spot", or "Matrix". This is the value of the EXIF MeteringMode tag (hex code 0x9207).
Quote information; either as one part or as several distinct parts:"name 99latest value 99change 99high 99low 99volume" (if available) (Only be available on RadiotextPlus)
|
|
|-
|-
Slideshow.ObjectName
<code>RDS.InfoStockSize</code>
Shows a shorthand reference for the current picture. This is the value of the IPTC ObjectName tag (hex code 0x05).
Number of rows present in stock information (Only be available on RadiotextPlus)
|
|
|-
|-
Slideshow.Orientation
<code>RDS.InfoSport</code>
Shows the orientation of the current picture. Possible values are "Top Left", "Top Right", "Left Top", "Right Bottom", etc. This is the value of the EXIF Orientation tag (hex code 0x0112).
Result of a game; either as one part or as several distinct parts:"match 99result", e.g. "Bayern München : Borussia 995:5" (if available) (Only be available on RadiotextPlus)
|
|
|-
|-
Slideshow.Path
<code>RDS.InfoSportSize</code>
Shows the file path of the current picture
Number of rows present in sport information (Only be available on RadiotextPlus)
|
|
|-
|-
Slideshow.Process
<code>RDS.InfoLottery</code>
Shows the process used to compress the current picture
Raffle / lottery: "key word 99values" (if available) (Only be available on RadiotextPlus)
|
|
|-
|-
Slideshow.ReferenceService
<code>RDS.InfoLotterySize</code>
Shows the Service Identifier of a prior envelope to which the current picture refers. This is the value of the IPTC ReferenceService tag (hex code 0x2D).
Number of rows present in lottery information (Only be available on RadiotextPlus)
|
|
|-
|-
Slideshow.Resolution
<code>RDS.InfoWeather</code>
Shows the dimensions of the current picture (Width x Height)
Weather informations sended from radio channel (if available) (Only be available on RadiotextPlus)
|
|
|-
|-
Slideshow.SlideComment
<code>RDS.InfoWeatherSize</code>
Shows a description of the current picture. This is the value of the EXIF User Comment tag (hex code 0x9286). This is the same value as Slideshow.EXIFComment.
Number of rows present in weather information (Only be available on RadiotextPlus)
|
|
|-
|-
Slideshow.SlideIndex
<code>RDS.InfoCinema</code>
Shows the slide index of the current picture
Information about movies in cinema (if available) (Only be available on RadiotextPlus)
|
|
|-
|-
Slideshow.Source
<code>RDS.InfoCinemaSize</code>
Shows the original owner of the current picture. This is the value of the IPTC Source tag (hex code 0x73).
Number of rows present in cinema information (Only be available on RadiotextPlus)
|
|
|-
|-
Slideshow.SpecialInstructions
<code>RDS.InfoHoroscope</code>
Shows other editorial instructions concerning the use of the current picture. This is the value of the IPTC SpecialInstructions tag (hex code 0x28).
Horoscope; either as one part or as two distinct parts:"key word 99text", e.g. "sign of the zodiac 99blablabla" (if available) (Only be available on RadiotextPlus)
|
|
|-
|-
Slideshow.State
<code>RDS.InfoHoroscopeSize</code>
Shows the State/Province where the current picture was taken. This is the value of the IPTC ProvinceState tag (hex code 0x5F).
Number of rows present in horoscope information (Only be available on RadiotextPlus)
|
|
|-
|-
Slideshow.Sublocation
<code>RDS.InfoOther</code>
Shows the location within a city where the current picture was taken - might indicate the nearest landmark. This is the value of the IPTC SubLocation tag (hex code 0x5C).
Other information, not especially specified: "key word 99info" (if available) (Only be available on RadiotextPlus)
|
|
|-
|-
Slideshow.SupplementalCategories
<code>RDS.InfoOtherSize</code>
Shows supplemental category codes to further refine the subject of the current picture. This is the value of the IPTC SuppCategory tag (hex code 0x14).
Number of rows present with other informations (Only be available on RadiotextPlus)
|
|
|-
|-
Slideshow.TimeCreated
<code>RDS.ProgStation</code>
Shows the time when the intellectual content of the current picture was created, rather than when the picture was created. This is the value of the IPTC TimeCreated tag (hex code 0x3C).
Name of the radio channel@note becomes also be set from epg if from RDS not available
|
|
|-
|-
Slideshow.TransmissionReference
<code>RDS.ProgNow</code>
Shows a code representing the location of original transmission of the current picture. This is the value of the IPTC TransmissionReference tag (hex code 0x67).
Now played program name@note becomes also be set from epg if from RDS not available
|
|
|-
|-
Slideshow.Urgency
<code>RDS.ProgNext</code>
Shows the urgency of the current picture. Values are 1-9. The 1 is most urgent. Some image management programs use urgency to indicate picture rating, where urgency 1 is 5 stars and urgency 5 is 1 star. Urgencies 6-9 are not used for rating. This is the value of the IPTC Urgency tag (hex code 0x0A).
Next played program name (if available)@note becomes also be set from epg if from RDS not available
|
|
|-
|-
Slideshow.WhiteBalance
<code>RDS.ProgHost</code>
Shows the white balance mode set when the current picture was taken. The possible values are "Manual" and "Auto". This is the value of the EXIF WhiteBalance tag (hex code 0xA403).
Name of the host of the radio show
|
|
|}
=== System ===
{| class="prettytable" width="100%"
! InfoLabels
! style="80%" | Definition
! Version
|-
|-
System.Time
<code>RDS.ProgEditStaff</code>
Current time
Name of the editorial staff; e.g. name of editorial journalist (Only be available on RadiotextPlus)
|
|
|-
|-
System.Time(format)
<code>RDS.ProgHomepage</code>
Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss). (xx) option added after dharma
Link to radio station homepage (Only be available on RadiotextPlus)
|
|
|-
|-
System.Date
<code>RDS.ProgStyle</code>
Current date
Human readable string about radiostyle defined from RDS or RBDS
|
|
|-
|-
System.Date(format)
<code>RDS.PhoneHotline</code>
Show current date using format, available markings: d (day of month 1-31), dd (day of month 01-31), ddd (short day of the week Mon-Sun), DDD (long day of the week Monday-Sunday), m (month 1-12), mm (month 01-12), mmm (short month name Jan-Dec), MMM (long month name January-December), yy (2-digit year), yyyy (4-digit year). Added after dharma.
The telephone number of the radio station's hotline (Only be available on RadiotextPlus)
|
|
|-
|-
System.AlarmPos
<code>RDS.PhoneStudio</code>
Shutdown Timer position
The telephone number of the radio station's studio (Only be available on RadiotextPlus)
|
|
|-
|-
System.BatteryLevel
<code>RDS.SmsStudio</code>
Returns the remaining battery level in range 0-100
The sms number of the radio stations studio (to send directly a sms to the studio) (if available) (Only be available on RadiotextPlus)
|
|
|-
|-
System.FreeSpace
<code>RDS.EmailHotline</code>
Total Freespace on the drive
The email adress of the radio stations hotline (if available) (Only be available on RadiotextPlus)
|
|
|-
|-
System.UsedSpace
<code>RDS.EmailStudio</code>
Total Usedspace on the drive
The email adress of the radio stations studio (if available) (Only be available on RadiotextPlus)
|
|}
 
=== Skin ===
 
{|  class="wikitable sortable" width="100%"
! InfoLabels
! style="80%" | Description
! Version
|-
|-
System.TotalSpace
<code>Skin.CurrentTheme</code>
Totalspace on the drive
Returns the current selected skin theme.
|
|
|-
|-
System.UsedSpacePercent
<code>Skin.CurrentColourTheme</code>
Total Usedspace Percent on the drive
Returns the current selected colour theme of the skin.
|
|
|-
|-
System.FreeSpacePercent
<code>Skin.Font</code>
Total Freespace Percent on the drive
Returns the current fontset from Font.xml.
|
| v18 addition
|-
|-
System.CPUTemperature
<code>Skin.String(name)</code>
Current CPU temperature
Returns the <span class="nobr">user-set</span> skin string, set via the Skin.SetString(name) '''[[List of Built In Functions]]'''. Allows skinners to have <span class="nobr">user-customisable</span> labels.
|
|
|-
|-
System.CpuUsage
<code>Skin.AspectRatio</code>
Displays the cpu usage for each individual cpu core.
Returns the closest aspect ratio match using the resolution info from the skin's addon.xml file.
|
|
|}
=== Slideshow ===
{|  class="wikitable sortable" width="100%"
! InfoLabels
! style="80%" | Description
! Version
|-
|-
System.CoreUsage(id)
<code>Slideshow.Altitude</code>
Displays the usage of the cpu core with the given 'id'
Shows the altitude in meters where the current picture was taken. This is the value of the EXIF GPSInfo.GPSAltitude tag.
|
|
|-
|-
System.GPUTemperature
<code>Slideshow.Aperture</code>
Current GPU temperature
Shows the F-stop used to take the current picture. This is the value of the EXIF FNumber tag (hex code 0x829D).
|
|
|-
|-
System.FanSpeed
<code>Slideshow.Author</code>
Current fan speed
Shows the name of the person involved in writing about the current picture. This is the value of the IPTC Writer tag (hex code 0x7A).
|
|
|-
|-
System.BuildVersion
<code>Slideshow.Byline</code>
Version of build
Shows the name of the person who created the current picture.  This is the value of the IPTC Byline tag (hex code 0x50).
|
|
|-
|-
System.BuildDate
<code>Slideshow.BylineTitle</code>
Date of build
Shows the title of the person who created the current picture. This is the value of the IPTC BylineTitle tag (hex code 0x55).
|
|
|-
|-
System.FriendlyName
<code>Slideshow.CameraMake</code>
Returns the Kodi instance name. It will auto append (%hostname%) in case the device name was not changed. eg. "Kodi (htpc)"
Shows the manufacturer of the camera used to take the current picture. This is the value of the EXIF Make tag (hex code 0x010F).
|
|
|-
|-
System.FPS
<code>Slideshow.CameraModel</code>
Current rendering speed (frames per second)
Shows the manufacturer's model name or number of the camera used to take the current picture. This is the value of the EXIF Model tag (hex code 0x0110).
|
|
|-
|-
System.FreeMemory
<code>Slideshow.Caption</code>
Amount of free memory in Mb
Shows a description of the current picture. This is the value of the IPTC Caption tag (hex code 0x78).
|
|
|-
|-
System.Memory(format)
<code>Slideshow.Category</code>
Available formats: used, used.percent, free, free.percent, total
Shows the subject of the current picture as a category code. This is the value of the IPTC Category tag (hex code 0x0F).
|
|
|-
|-
System.ScreenMode
<code>Slideshow.CCDWidth</code>
Screenmode (eg windowed / fullscreen)
Shows the width of the CCD in the camera used to take the current picture. This is calculated from three EXIF tags (0xA002 * 0xA210 / 0xA20e).
|
|
|-
|-
System.ScreenWidth
<code>Slideshow.City</code>
Width of screen in pixels
Shows the city where the current picture was taken. This is the value of the IPTC City tag (hex code 0x5A).
|
|
|-
|-
System.ScreenHeight
<code>Slideshow.Colour</code>
Height of screen in pixels
Shows whether the current picture is "Colour" or "Black and White".
|
|
|-
|-
System.StartupWindow
<code>Slideshow.CopyrightNotice</code>
The Window Kodi will load on startup
Shows the copyright notice of the current picture. This is the value of the IPTC Copyright tag (hex code 0x74).
|
|
|-
|-
System.CurrentWindow
<code>Slideshow.Country</code>
Current Window we are in
Shows the full name of the country where the current picture was taken. This is the value of the IPTC CountryName tag (hex code 0x65).
|
|
|-
|-
System.CurrentControl
<code>Slideshow.CountryCode</code>
Current focused control
Shows the country code of the country where the current picture was taken. This is the value of the IPTC CountryCode tag (hex code 0x64).
|
|
|-
|-
System.DVDLabel
<code>Slideshow.Credit</code>
Label of the disk in the <span class="nobr">DVD-ROM</span> drive
Shows who provided the current picture. This is the value of the IPTC Credit tag (hex code 0x6E).
|
|
|-
|-
System.HddTemperature
<code>Slideshow.DigitalZoom</code>
Hdd temperature
Shows the digital zoom ratio when the current picture was taken. This is the value of the EXIF .DigitalZoomRatio tag (hex code 0xA404). 
|
|
|-
|-
System.KernelVersion
<code>Slideshow.EXIFComment</code>
System kernel version
Shows a description of the current picture. This is the value of the EXIF User Comment tag (hex code 0x9286). This is the same value as Slideshow.SlideComment.
|
|
|-
|-
System.Uptime
<code>Slideshow.EXIFDate</code>
System current uptime
Shows the localized date of the current picture. The short form of the date is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.
|
|
|-
|-
System.TotalUptime
<code>Slideshow.EXIFDescription</code>
System total uptime
Shows a short description of the current picture. The SlideComment, EXIFComment, or Caption values might contain a longer description. This is the value of the EXIF ImageDescription tag (hex code 0x010E).
|
|
|-
|-
System.CpuFrequency
<code>Slideshow.EXIFSoftware</code>
System cpu frequency
Shows the name and version of the firmware used by the camera that took the current picture. This is the value of the EXIF Software tag (hex code 0x0131).
|
|
|-
|-
System.ScreenResolution
<code>Slideshow.EXIFTime</code>
Screen resolution
Shows the date/timestamp of the current picture. The localized short form of the date and time is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.
|
|
|-
|-
System.VideoEncoderInfo
<code>Slideshow.Exposure</code>
Video encoder info
Shows the class of the program used by the camera to set exposure when the current picture was taken. Values include "Manual", "Program (Auto)", "Aperture priority (Semi-Auto)", "Shutter priority (semi-auto)", etc. This is the value of the EXIF ExposureProgram tag (hex code 0x8822).
|
|
|-
|-
System.InternetState
<code>Slideshow.ExposureBias</code>
Will return the internet state, connected or not connected
Shows the exposure bias of the current picture. Typically this is a number between -99.99 and 99.99. This is the value of the EXIF ExposureBiasValue tag (hex code 0x9204).
and for Conditional use: Connected->TRUE, not Connected->FALSE, do not use to check status in a pythonscript since it is threaded.
|
|
|-
|-
System.Language
<code>Slideshow.ExposureMode</code>
|  Shows the current language
|  Shows the exposure mode of the current picture. The possible values are "Automatic", "Manual", and "Auto bracketing". This is the value of the EXIF ExposureMode tag (hex code 0xA402).
|
|
|-
|-
System.GetBool(boolean)
<code>Slideshow.ExposureTime</code>
Returns the value of any standard system boolean setting. Will not work with settings in advancedsettings.xml
Shows the exposure time of the current picture, in seconds. This is the value of the EXIF ExposureTime tag (hex code 0x829A). If the ExposureTime tag is not found, the ShutterSpeedValue tag (hex code 0x9201) might be used.
|
|
|-
|-
System.ProfileName
<code>Slideshow.Filedate</code>
|  Shows the User name of the currently logged in Kodi user
|  Shows the file date of the current picture
|
|
|-
|-
System.ProfileCount
<code>Slideshow.Filename</code>
|  Shows the number of defined profiles
|  Shows the file name of the current picture
|
|
|-
|-
System.ProfileAutoLogin
<code>Slideshow.Filesize</code>
The profile Kodi will auto login to
Shows the file size of the current picture
|
|
|-
|-
System.StereoscopicMode
<code>Slideshow.FlashUsed</code>
|  The prefered stereoscopic mode (settings > video > playback)
Shows the status of flash when the current picture was taken. The value will be either "Yes" or "No", and might include additional information. This is the value of the EXIF Flash tag (hex code 0x9209)
|
|
|-
|-
System.TemperatureUnits
<code>Slideshow.FocalLength</code>
|  Shows Celsius or Fahrenheit symbol
|  Shows the focal length of the lens, in mm. This is the value of the EXIF FocalLength tag (hex code 0x920A).
|
|
|-
|-
System.AddonTitle(id)
<code>Slideshow.FocusDistance</code>
Returns the title of the addon with the given id
Shows the distance to the subject, in meters. This is the value of the EXIF SubjectDistance tag (hex code 0x9206).
|
|
|-
|-
System.AddonVersion(id)
<code>Slideshow.Headline</code>
Returns the version of the addon with the given id
Shows a synopsis of the contents of the current picture. This is the value of the IPTC Headline tag (hex code 0x69).
|}
|
 
=== Visualisation ===
 
{| class="prettytable" width="100%"
! InfoLabels
! style="80%" | Definition
! Version
|-
|-
Visualisation.Preset
<code>Slideshow.ImageType</code>
|  Shows the current preset of the visualisation.
|  Shows the color components of the current picture. This is the value of the IPTC ImageType tag (hex code 0x82).
|
|
|-
|-
Visualisation.Name
<code>Slideshow.IPTCDate</code>
|  Shows the name of the visualisation.
|  Shows the date when the intellectual content of the current picture was created, rather than when the picture was created. This is the value of the IPTC DateCreated tag (hex code 0x37).
|
|
|}
|-
 
<code>Slideshow.ISOEquivalence</code>
=== Weather labels ===
Shows the ISO speed of the camera when the current picture was taken. This is the value of the EXIF ISOSpeedRatings tag (hex code 0x8827).
 
{| class="prettytable" width="100%"
! InfoLabels
! style="80%" | Definition
! Version
|-
Weather.Conditions
Current weather conditions – this is looked up in a background process.
|
|
|-
|-
Weather.Temperature
<code>Slideshow.Keywords</code>
Current weather temperature
Shows keywords assigned to the current picture. This is the value of the IPTC Keywords tag (hex code 0x19).
|
|
|-
|-
Weather.Location
<code>Slideshow.Latitude</code>
City/town which the above two items are for
Shows the latitude where the current picture was taken (degrees, minutes, seconds North or South). This is the value of the EXIF GPSInfo.GPSLatitude and GPSInfo.GPSLatitudeRef tags.
|
|
|-
|-
Weather.fanartcode
<code>Slideshow.LightSource</code>
Current weather fanartcode.
Shows the kind of light source when the picture was taken. Possible values include "Daylight", "Fluorescent", "Incandescent", etc. This is the value of the EXIF LightSource tag (hex code 0x9208).
|
|
|-
|-
Weather.plugin
<code>Slideshow.LongEXIFDate</code>
Current weather plugin.
Shows only the localized date of the current picture. The long form of the date is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.
|
|
|}
=== Window ===
{| class="prettytable" width="100%"
! InfoLabels
! style="80%" | Definition
! Version
|-
|-
Window([window]).Property(key)
<code>Slideshow.LongEXIFTime</code>
Window property. (key can be any value, optional window can be id or name)
Shows the date/timestamp of the current picture. The localized long form of the date and time is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. if the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.
|
|
|-
|-
Window.Property(xmlfile)
<code>Slideshow.Longitude</code>
Displays the name of the xml file currently shown
Shows the longitude where the current picture was taken (degrees, minutes, seconds East or West). This is the value of the EXIF GPSInfo.GPSLongitude and GPSInfo.GPSLongitudeRef tags.
|
|
|-
|-
Window(AddonBrowser).Property(Updated)
<code>Slideshow.MeteringMode</code>
|  Shows the date and time the addon repo was last checked for updates
|  Shows the metering mode used when the current picture was taken. The possible values are "Center weight", "Spot", or "Matrix". This is the value of the EXIF MeteringMode tag (hex code 0x9207).
|
|
|-
|-
Window.Property(Addon.ID)
<code>Slideshow.ObjectName</code>
| Returns the id of the selected addon, in DialogAddonSettings.xml
| Shows a shorthand reference for the current picture. This is the value of the IPTC ObjectName tag (hex code 0x05).
|
|
|-
|-
Window(Home).Property(key)
<code>Slideshow.Orientation</code>
The home window has the following info labels.
Shows the orientation of the current picture. Possible values are "Top Left", "Top Right", "Left Top", "Right Bottom", etc. This is the value of the EXIF Orientation tag (hex code 0x0112).
Movies.Count, Movies.Watched, Movies.UnWatched, TVShows.Count, TVShows.Watched, TVShows.UnWatched, Episodes.Count, Episodes.Watched, Episodes.UnWatched, MusicVideos.Count, MusicVideos.Watched, MusicVideos.UnWatched, Music.SongsCount, Music.AlbumsCount, Music.ArtistsCount
 
LatestMovie.[1-10].Title, LatestMovie.[1-10].Year, LatestMovie.[1-10].RunningTime, LatestMovie.[1-10].Rating, LatestMovie.[1-10].Plot, LatestMovie.[1-10].Trailer, LatestMovie.[1-10].Thumb, LatestMovie.[1-10].Fanart, LatestMovie.[1-10].Path
 
LatestEpisode.[1-10].ShowTitle, LatestEpisode.[1-10].EpisodeTitle, LatestEpisode.[1-10].EpisodeNo, LatestEpisode.[1-10].EpisodeSeason, LatestEpisode.[1-10].EpisodeNumber, LatestEpisode.[1-10].Rating, LatestEpisode.[1-10].Plot, LatestEpisode.[1-10].Thumb, LatestEpisode.[1-10].ShowThumb, LatestEpisode.[1-10].SeasonThumb, LatestEpisode.[1-10].Fanart, LatestEpisode.[1-10].Path
 
LatestMusicVideo.[1-10].Title, LatestMusicVideo.[1-10].Thumb, LatestMusicVideo.[1-10].Year, LatestMusicVideo.[1-10].Plot, LatestMusicVideo.[1-10].RunningTime, LatestMusicVideo.[1-10].Path, LatestMusicVideo.[1-10].Artist, LatestMusicVideo.[1-10].Fanart
 
LatestSong.[1-10].Title, LatestSong.[1-10].Artist, LatestSong.[1-10].Album, LatestSong.[1-10].Year, LatestSong.[1-10].Rating, LatestSong.[1-10].Thumb, LatestSong.[1-10].Fanart, LatestSong.[1-10].Path
 
LatestAlbum.[1-10].Title, LatestAlbum.[1-10].Artist, LatestAlbum.[1-10].Year, LatestAlbum.[1-10].Rating, LatestAlbum.[1-10].Thumb, LatestAlbum.[1-10].Fanart, LatestAlbum.[1-10].Path
|
|
|-
|-
Window(Weather).Property(key)
<code>Slideshow.Path</code>
The weather window has the following info labels.
Shows the file path of the current picture
Location, Updated, Current.Condition, Current.Temperature, Current.FeelsLike, Current.UVIndex, Current.Wind (From <wind dir.> at <speed> <unit>), Current.WindSpeed, Current.WindDirection, Current.DewPoint, Current.Humidity, Day[0-6].Title, Day[0-6].HighTemp, Day[0-6].LowTemp, Day[0-6].Outlook, WeatherProvider
 
 
Data set in Current.Temperature, Current.FeelsLike, Day[0-6].HighTemp, Day[0-6].LowTemp should be provided in Celsius, and will be autoconverted according to System.TemperatureUnits
|
|
|}
=== Images Available in Kodi ===
{| class="prettytable" width="100%"
! InfoLabels
! style="80%" | Definition
! Version
|-
|-
Container.Art(tvshow.fanart)
<code>Slideshow.Process</code>
Fanart Image of the parent TV show
Shows the process used to compress the current picture
|
|
|-
|-
Container.Art(season.poster)
<code>Slideshow.ReferenceService</code>
Thumbnail Image of the parent season
Shows the Service Identifier of a prior envelope to which the current picture refers. This is the value of the IPTC ReferenceService tag (hex code 0x2D).
|
|
|-
|-
Container.Art(artist.fanart)
<code>Slideshow.Resolution</code>
Fanart Image of the parent album artist
Shows the dimensions of the current picture (Width x Height)
|
|
|-
|-
Container.Art(artist.thumb)
<code>Slideshow.SlideComment</code>
Thumbnail Image of the parent album artist
Shows a description of the current picture. This is the value of the EXIF User Comment tag (hex code 0x9286). This is the same value as Slideshow.EXIFComment.
|
|
|-
|-
Fanart.Image
<code>Slideshow.SlideIndex</code>
Fanart image for the parent TV Show
Shows the slide index of the current picture
|
|
|-
|-
ListItem.Thumb
<code>Slideshow.Source</code>
|  Shows the thumbnail (if it exists) of the currently selected item in a list or thumb control. Note: Deprecated but still available, returns the same as ListItem.Art(thumb).
|  Shows the original owner of the current picture. This is the value of the IPTC Source tag (hex code 0x73).
|
|
|-
|-
ListItem.Icon
<code>Slideshow.SpecialInstructions</code>
|  Shows the thumbnail (if it exists) of the currently selected item in a list or thumb control. If no thumbnail image exists, it will show the icon.
|  Shows other editorial instructions concerning the use of the current picture. This is the value of the IPTC SpecialInstructions tag (hex code 0x28).
|
|
|-
|-
ListItem.ActualIcon
<code>Slideshow.State</code>
|  Shows the icon of the currently selected item in a list or thumb control.
|  Shows the State/Province where the current picture was taken. This is the value of the IPTC ProvinceState tag (hex code 0x5F).
|
|
|-
|-
ListItem.Art(clearart)
<code>Slideshow.Sublocation</code>
Returns the clearart (if it exists) of the currently selected movie or tv show.
Shows the location within a city where the current picture was taken - might indicate the nearest landmark. This is the value of the IPTC SubLocation tag (hex code 0x5C).
|
|
|-
|-
ListItem.Art(clearlogo)
<code>Slideshow.SupplementalCategories</code>
Returns the clearlogo (if it exists) of the currently selected movie or tv show.
Shows supplemental category codes to further refine the subject of the current picture. This is the value of the IPTC SuppCategory tag (hex code 0x14).
|
|
|-
|-
ListItem.Art(thumb)
<code>Slideshow.TimeCreated</code>
Returns the thumbnail of the currently selected item.
Shows the time when the intellectual content of the current picture was created, rather than when the picture was created. This is the value of the IPTC TimeCreated tag (hex code 0x3C).
|
|
|-
|-
ListItem.Art(poster)
<code>Slideshow.TransmissionReference</code>
Returns the poster of the currently selected movie or tv show.
Shows a code representing the location of original transmission of the current picture. This is the value of the IPTC TransmissionReference tag (hex code 0x67).
|
|
|-
|-
ListItem.Art(banner)
<code>Slideshow.Urgency</code>
Returns the banner of the currently selected tv show.
Shows the urgency of the current picture. Values are 1-9. The 1 is most urgent. Some image management programs use urgency to indicate picture rating, where urgency 1 is 5 stars and urgency 5 is 1 star. Urgencies 6-9 are not used for rating. This is the value of the IPTC Urgency tag (hex code 0x0A).
|
|
|-
|-
ListItem.Art(fanart)
<code>Slideshow.WhiteBalance</code>
Returns the fanart image of the currently selected item.
Shows the white balance mode set when the current picture was taken. The possible values are "Manual" and "Auto". This is the value of the EXIF WhiteBalance tag (hex code 0xA403).
|
|
|}
=== System ===
{|  class="wikitable sortable" width="100%"
! InfoLabels
! style="80%" | Description
! Version
|-
|-
ListItem.Art(set.fanart)
<code>System.Time</code>
Returns the fanart image of the currently selected movieset.
Current time
|
|
|-
|-
ListItem.Art(landscape)
<code>System.Time(format)</code>
Returns the landscape art of the currently selected item.
Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss). (xx) option added after dharma
|
|
|-
|-
ListItem.Art(tvshow.poster)
<code>System.Date</code>
Returns the tv show poster of the parent container.
Current date
|
|
|-
|-
ListItem.Art(tvshow.banner)
<code>System.Date(format)</code>
Returns the tv show banner of the parent container.
Show current date using format, available markings: d (day of month 1-31), dd (day of month 01-31), ddd (short day of the week Mon-Sun), DDD (long day of the week Monday-Sunday), m (month 1-12), mm (month 01-12), mmm (short month name Jan-Dec), MMM (long month name January-December), yy (2-digit year), yyyy (4-digit year). Added after dharma.
|
|
|-
|-
ListItem.Art(season.poster)
<code>System.AlarmPos</code>
Returns the season poster of the currently selected season. (Only available in DialogVideoInfo.xml)
Shutdown Timer position
|
|
|-
|-
ListItem.Art(season.banner)
<code>System.BatteryLevel</code>
|  Returns the season banner of the currently selected season. (Only available in DialogVideoInfo.xml)
|  Returns the remaining battery level in range 0-100
|
|
|-
|-
ListItem.Art(season.fanart)
<code>System.FreeSpace</code>
Returns the fanart image of the currently selected season. (Only available in DialogVideoInfo.xml)
Total Freespace on the drive
|
|
|-
|-
ListItem.Overlay
<code>System.UsedSpace</code>
Shows the Overlay Icon status (compressed file [OverlayRAR.png], watched [OverlayWatched.png], unwatched [OverlayUnwatched.png], locked [OverlayLocked.png]) of the currently selected item in a list or thumb control.
Total Usedspace on the drive
|
|
|-
|-
ListItem.Property(ArtistThumb)
<code>System.TotalSpace</code>
Thumbnail Image of the parent artist, for use in dialogalbuminfo.xml and dialogsonginfo.xml
Totalspace on the drive
|
|
|-
|-
ListItem.Property(Addon.StarRating)
<code>System.UsedSpacePercent</code>
Returns a value of rating0.png to rating5.png for the currently selected addon
Total Usedspace Percent on the drive
|
|
|-
|-
ListItem.Property(Fanart_Image)
<code>System.FreeSpacePercent</code>
Fanart Image currently selected item or of the parent TV show
Total Freespace Percent on the drive
|
|
|-
|-
ListItem.Property(SeasonThumb)
<code>System.CPUTemperature</code>
Thumbnail Image of the parent TV show season, for use in dialogvideoinfo.xml
Current CPU temperature
|
|
|-
|-
ListItem.Property(TVShowThumb)
<code>System.CpuUsage</code>
Thumbnail Image of the parent TV show, for use in dialogvideoinfo.xml (available anywhere)
Displays the cpu usage for each individual cpu core.
|
|
|-
|-
MusicPlayer.Cover
<code>System.CoreUsage(id)</code>
Cover of currently playing album
Displays the usage of the cpu core with the given 'id'
|
|
|-
|-
MusicPlayer.Property(Fanart_Image)
<code>System.GPUTemperature</code>
Fanart image of the currently playing artist
Current GPU temperature
|
|
|-
|-
Player.Art(fanart)
<code>System.FanSpeed</code>
Fanart Image of the currently playing episode's parent TV show
Current fan speed
|
|
|-
|-
Player.Art(thumb)
<code>System.BuildVersion</code>
Returns the thumbnail image of the currently playing item.
version of build
|
|
|-
|-
Player.Art(poster)
<code>System.BuildDate</code>
Returns the poster of the currently playing movie.
Date of build
|
|
|-
|-
Player.Art(tvshow.poster)
<code>System.FriendlyName</code>
|  Returns the tv show poster of the currently playing episode's parent TV show.
|  Returns the Kodi instance name. It will auto append (%hostname%) in case the device name was not changed. e.g. "Kodi (htpc)"
|
|
|-
|-
Player.Art(tvshow.banner)
<code>System.FPS</code>
Returns the tv show banner of the currently playing episode's parent TV show.
Current rendering speed (frames per second)
|
|
|-
|-
Player.StarRating
<code>System.FreeMemory</code>
Returns a value of 0 to 5 as a graphical display from images named rating0.png to rating5.png of the skin
Amount of free memory in Mb
|
|
|-
|-
Pvr.NowRecordingChannelIcon
<code>System.Memory(format)</code>
Channel icon of the programme currently being recorded.
Available formats: used, used.percent, free, free.percent, total
|
|
|-
|-
Pvr.NextRecordingChannelIcon
<code>System.ScreenMode</code>
Channel icon of the programme that will be recorded next.
Screenmode (e.g. windowed / fullscreen)
|
|
|-
|-
Skin.String(name)
|  <code>System.ScreenWidth</code>
| Returns the image or image folder set by the user via a Skin.SetPath(name) or Skin.SetImage(name) '''[[List of Built In Functions]]'''. Allows skinners to have <span class="nobr">user-customisable</span> images and multiimages.
|  Width of screen in pixels
|
|
|-
|-
|  System.AddonIcon(id)
<code>System.ScreenHeight</code>
Returns the Icon of the specified addon. Instead of specifying the id directly, one can also use an infolabel (eg. $INFO[Skin.String(Foo)])
Height of screen in pixels
|
|
|-
|-
|  System.ProfileThumb
<code>System.StartupWindow</code>
Shows the Thumbnail image of the currently logged in Kodi user
The Window Kodi will load on startup
|
|
|-
|-
VideoPlayer.Cover
<code>System.CurrentWindow</code>
Cover of currently playing movie
Current Window we are in
|
|
|-
|-
Weather.Conditions
<code>System.CurrentControl</code>
Image of current weather conditions (NOTE: Can be used to load/refresh weather conditions)
Current focused control
|
|
|-
|-
Window([window]).Property(key)
<code>System.CurrentControlID</code>
Window property. (key can be any value, optional window can be id or name)
ID of the currently focused control.
|
|
|-
|-
Window(Weather).Property(key)
<code>System.DVDLabel</code>
The weather window has the following info images.
Label of the disk in the <span class="nobr">DVD-ROM</span> drive
Current.ConditionIcon, Day[0-6].OutlookIcon, Current.FanartCode, Day[0-6].FanartCode, WeatherProviderLogo
|
|
|}
|-
|  <code>System.HddTemperature</code>
|  Hdd temperature
|
|-
|  <code>System.OSVersionInfo</code>
|  System name + kernel version
|
|-
|  <code>System.KernelVersion (deprecated)</code>
|  System name + kernel version
|
|-
|  <code>System.Uptime</code>
|  System current uptime
|
|-
|  <code>System.TotalUptime</code>
|  System total uptime
|
|-
|  <code>System.CpuFrequency</code>
|  System cpu frequency
|
|-
|  <code>System.ScreenResolution</code>
|  Screen resolution
|
|-
|  <code>System.VideoEncoderInfo</code>
|  video encoder info
|
|-
|  <code>System.InternetState</code>
|  Will return the internet state, 'connected' or 'not connected' (localized)
|
|-
|  <code>System.Language</code>
|  Shows the current language
|
|-
|  <code>System.ProfileName</code>
|  Shows the User name of the currently logged in Kodi user
|
|-
|  <code>System.ProfileCount</code>
|  Shows the number of defined profiles
|
|-
|  <code>System.ProfileAutoLogin</code>
|  The profile Kodi will auto login to
|
|-
|  <code>System.Progressbar</code>
|  The percentage of the currently active progress.
|
|-
|  <code>System.StereoscopicMode</code>
|  The prefered stereoscopic mode (settings > video > playback)
|
|-
|  <code>System.TemperatureUnits</code>
|  Shows Celsius or Fahrenheit symbol
|
|-
|  <code>System.AddonTitle(id)</code>
|  Returns the title of the addon with the given id
|
|-
|  <code>System.AddonVersion(id)</code>
|  Returns the version of the addon with the given id
|
|-
|  <code>System.BuildVersionCode</code>
|  The internal version of the kodi build
|  v19
|-
|  <code>System.BuildVersionGit</code>
|  The git version (sha) of the kodi build
|  v19
|-
|  <code>System.AddonUpdateCount</code>
|  The number of available addon updates
|  v19
|}
 
=== Visualisation ===
 
{|  class="wikitable sortable" width="100%"
! InfoLabels
! style="80%" | Description
! Version
|-
|  <code>Visualisation.Preset</code>
|  Shows the current preset of the visualisation.
|
|-
|  <code>Visualisation.Name</code>
|  Shows the name of the visualisation.
|
|}
 
=== Weather labels ===
 
{|  class="wikitable sortable" width="100%"
! InfoLabels
! style="80%" | Description
! Version
|-
|  <code>Weather.Conditions</code>
|  Current weather conditions – this is looked up in a background process.
|
|-
|  <code>Weather.Temperature</code>
|  Current weather temperature
|
|-
|  <code>Weather.Location</code>
|  City/town which the above two items are for
|
|-
|  <code>Weather.fanartcode</code>
|  Current weather fanartcode.
|
|-
|  <code>Weather.plugin</code>
|  Current weather plugin.
|
|}
 
=== Window ===
 
{|  class="wikitable sortable" width="100%"
! InfoLabels
! style="80%" | Description
! Version
|-
|  <code>Window([window]).Property(key)</code>
|  Window property. (key can be any value, optional window can be id or name)
|
|-
|  <code>Window.Property(xmlfile)</code>
|  Displays the name of the xml file currently shown
|
|-
|  <code>Window.Property(IsRadio)</code>
|  Returns "true" if the window is a radio window, empty string otherwise (for use in the PVR windows)
|
|-
|  <code>Window(AddonBrowser).Property(Updated)</code>
|  Shows the date and time the addon repo was last checked for updates
|
|-
|  <code>Window.Property(Addon.ID)</code>
|  Returns the id of the selected addon, in DialogAddonSettings.xml
|
|-
|  <code>Window(Home).Property(key)</code>
|  The home window has the following info labels.
Movies.Count, Movies.Watched, Movies.UnWatched, TVShows.Count, TVShows.Watched, TVShows.UnWatched, Episodes.Count, Episodes.Watched, Episodes.UnWatched, MusicVideos.Count, MusicVideos.Watched, MusicVideos.UnWatched, Music.SongsCount, Music.AlbumsCount, Music.ArtistsCount
 
LatestMovie.[1-10].Title, LatestMovie.[1-10].Year, LatestMovie.[1-10].RunningTime, LatestMovie.[1-10].Rating, LatestMovie.[1-10].Plot, LatestMovie.[1-10].Trailer, LatestMovie.[1-10].Thumb, LatestMovie.[1-10].Fanart, LatestMovie.[1-10].Path
 
LatestEpisode.[1-10].ShowTitle, LatestEpisode.[1-10].EpisodeTitle, LatestEpisode.[1-10].EpisodeNo, LatestEpisode.[1-10].EpisodeSeason, LatestEpisode.[1-10].EpisodeNumber, LatestEpisode.[1-10].Rating, LatestEpisode.[1-10].Plot, LatestEpisode.[1-10].Thumb, LatestEpisode.[1-10].ShowThumb, LatestEpisode.[1-10].SeasonThumb, LatestEpisode.[1-10].Fanart, LatestEpisode.[1-10].Path
 
LatestMusicVideo.[1-10].Title, LatestMusicVideo.[1-10].Thumb, LatestMusicVideo.[1-10].Year, LatestMusicVideo.[1-10].Plot, LatestMusicVideo.[1-10].RunningTime, LatestMusicVideo.[1-10].Path, LatestMusicVideo.[1-10].Artist, LatestMusicVideo.[1-10].Fanart
 
LatestSong.[1-10].Title, LatestSong.[1-10].Artist, LatestSong.[1-10].Album, LatestSong.[1-10].Year, LatestSong.[1-10].Rating, LatestSong.[1-10].Thumb, LatestSong.[1-10].Fanart, LatestSong.[1-10].Path
 
LatestAlbum.[1-10].Title, LatestAlbum.[1-10].Artist, LatestAlbum.[1-10].Year, LatestAlbum.[1-10].Rating, LatestAlbum.[1-10].Thumb, LatestAlbum.[1-10].Fanart, LatestAlbum.[1-10].Path
|
|-
|  <code>Window(Weather).Property(key)</code>
|  The weather window has the following info labels.
Location, Updated, Current.Condition, Current.Temperature, Current.FeelsLike, Current.UVIndex, Current.Wind (From <wind dir.> at <speed> <unit>), Current.WindSpeed, Current.WindDirection, Current.DewPoint, Current.Humidity, Day[0-6].Title, Day[0-6].HighTemp, Day[0-6].LowTemp, Day[0-6].Outlook, WeatherProvider
 
 
Data set in Current.Temperature, Current.FeelsLike, Day[0-6].HighTemp, Day[0-6].LowTemp should be provided in Celsius, and will be autoconverted according to System.TemperatureUnits
|
|}
 
=== Images Available in Kodi ===
 
See '''[[Artwork/Accessing with skins and JSON-RPC]]''' for the general pattern of accessing artwork for media items. Below is a list of other possible images available as InfoLabels.
 
{|  class="wikitable sortable" width="100%"
! InfoLabels
! style="80%" | Description
! Version
|-
|  <code>ListItem.Art(type)</code>
|  Artwork for the current listitem.
|
|-
|  <code>Fanart.Image</code>
|  Fanart image for the parent TV Show. Note: Deprecated, use ListItem.Art(tvshow.fanart) instead.
|
|-
|  <code>ListItem.Thumb</code>
|  Shows the thumbnail (if it exists) of the currently selected item in a list or thumb control. Note: Deprecated but still available, returns the same as ListItem.Art(thumb).
|
|-
|  <code>ListItem.Icon</code>
|  Shows the thumbnail (if it exists) of the currently selected item in a list or thumb control. If no thumbnail image exists, it will show the default icon.
|
|-
|  <code>ListItem.ActualIcon</code>
|  Shows the default icon of the currently selected item in a list or thumb control.
|
|-
|  <code>ListItem.Overlay</code>
|  Shows the Overlay Icon status (compressed file [OverlayRAR.png], watched [OverlayWatched.png], unwatched [OverlayUnwatched.png], locked [OverlayLocked.png]) of the currently selected item in a list or thumb control.
|
|-
|  <code>ListItem.EPGEventIcon</code>
|  Returns the icon of the EPG programme (if available).
|  v18
|-
|  <code>ListItem.Property(Fanart_Image)</code>
|  Fanart Image currently selected item or of the parent TV show. Note: Deprecated, use ListItem.Art(fanart) or ListItem.Art(tvshow.fanart) instead.
|
|-
|  <code>MusicPlayer.Cover</code>
|  Cover of currently playing album
|
|-
|  <code>MusicPlayer.Property(Fanart_Image)</code>
|  Fanart image of the currently playing artist
|
|-
|  <code>Player.Art(type)</code>
|  Artwork for the currently playing item.
|
|-
|  <code>Player.Icon</code>
|  Shows the thumbnail (if it exists) of the currently playing item. If no thumbnail image exists, it will show the icon.
|  v18
|-
|  <code>Player.StarRating</code>
|  Returns a value of 0 to 5 as a graphical display from images named rating0.png to rating5.png of the skin
|
|-
|  <code>Pvr.NowRecordingChannelIcon</code>
|  Channel icon of the programme currently being recorded.
|
|-
|  <code>Pvr.NextRecordingChannelIcon</code>
|  Channel icon of the programme that will be recorded next.
|
|-
|  <code>Pvr.EPGEventIcon</code>
|  Returns the icon of the currently playing EPG programme (if available).
|  v18
|-
|  <code>Skin.String(name)</code>
|  Returns the image or image folder set by the user via a Skin.SetPath(name) or Skin.SetImage(name) '''[[List of Built In Functions]]'''. Allows skinners to have <span class="nobr">user-customisable</span> images and multiimages.
|
|-
|  <code>System.AddonIcon(id)</code>
|  Returns the Icon of the specified addon. Instead of specifying the id directly, one can also use an infolabel (e.g. $INFO[Skin.String(Foo)])
|
|-
|  <code>System.ProfileThumb</code>
|  Shows the Thumbnail image of the currently logged in Kodi user
|
|-
|  <code>VideoPlayer.Cover</code>
|  Cover of currently playing movie.  Note: Deprecated, use Player.Art(type) instead.
|
|-
|  <code>Weather.ConditionsIcon</code>
|  Image of current weather conditions (NOTE: Can be used to load/refresh weather conditions)
|
|-
|  <code>Window([window]).Property(key)</code>
|  Window property. (key can be any value, optional window can be id or name)
|
|-
|  <code>Window(Weather).Property(key)</code>
|  The weather window has the following info images.
Current.ConditionIcon, Day[0-6].OutlookIcon, Current.FanartCode, Day[0-6].FanartCode, WeatherProviderLogo
|
|}


<section end="main content" />
<section end="main content" />


== See also ==
 
'''Development:'''
{{top}}
* [[Add-on development]]
* [[Skinning]]


[[Category:Skin development]]
[[Category:Skin development]]
[[Category:Add-on development]]
[[Category:Add-on development]]

Latest revision as of 13:39, 13 October 2025

  ▶ Development ▶ Add-on development ▶ Skinning ▶ InfoLabels


Skins can use infolabels with $INFO[infolabel] or the <info> tag. Scripts can read infolabels with xbmc.getInfoLabel('infolabel').

Addon

InfoLabels Description Version
Addon.SettingInt(addon_id,setting_id) Returns
The integer value of the setting setting_id belonging to the addon with the id addon_id.

Parameters

addon_id - The id of the addon
setting_id - The addon setting

Note
The provided setting with setting_id must be an integer setting type.
Otherwise it will return the integer info default value (which is 0).

v20
Addon.SettingStr(addon_id,setting_id) Returns
The string value of the setting setting_id belonging to the addon with the id addon_id.

Parameters

addon_id - The id of the addon
setting_id - The addon setting
v20

Container

Note
If no id is specified it grabs the current container.

InfoLabels Description Version
Container(id).Column Returns
The column number of the focused position in a panel container.
Container(id).CurrentItem Returns
The current item in the container or grouplist with given id.
Container(id).CurrentPage Returns
The current page in the container with given id.
Container(id).ListItem(offset).Property Returns
The property of the ListItem with a given offset.

Parameters

offset - The offset for the listitem.

Note
Property has to be replaced with Label, Label2, Icon, etc.
Example: Container(50).Listitem(2).Label

Container(id).ListItemAbsolute(x).[infolabel] Returns
The infolabel for an item in a container.

Parameters

x - The absolute position in the container.

Note
Example: Container(50).ListItemAbsolute(4).Genre

Container(id).ListItemNoWrap(offset).Property Returns
The same as Container(id).ListItemNoWrap(offset).Property but it won't wrap.
This means if the last item of a list is focused, ListItemNoWrap(1) will be empty while ListItem(1) will return the first item of the list.

Parameters

offset - The offset for the listitem.

Note
Property has to be replaced with Label, Label2, Icon, etc.
Example: Container(50).ListitemNoWrap(1).Plot

Container(id).ListItemPosition(x).[infolabel] Returns
The infolabel for an item in a container.

Parameters

x - The position in the container relative to the cursor position.

Note
Example: Container(50).ListItemAbsolute(4).Genre

Container(id).NumAllItems Returns
The number of all items in the container or grouplist with given id including parent folder item.
v18
Container(id).NumItems Returns
The number of items in the container or grouplist with given id excluding parent folder item.
Container(id).NumNonFolderItems Returns
The number of items in the container or grouplist with given id excluding all folder items (e.g. pvr recordings folders, parent ".." folder, "All albums", etc).
v18
Container(id).NumPages Returns
The number of pages in the container with given id.
Container(id).Position Returns
The current focused position of container / grouplist (id) as a numeric label.
Container(id).Row Returns
The row number of the focused position in a panel container.
Container.Art(type) Returns
The path to the art image file for the given type of the current container.

Parameters

type - The art type to request.

Todo
List of all art types.

v16

v15

Container.Content Returns
The content of the current container.
v16
Container.FolderName Returns
The top most folder in currently displayed folder.
Container.FolderPath Returns
The complete path of currently displayed folder.
Container.PluginCategory Returns
The current plugins category (set by the scripter).
v17
Container.PluginName Returns
The current plugins base folder name.
Container.Property(addoncategory) Returns
The current add-on category.
Container.Property(reponame) Returns
The current add-on repository name.
Container.ShowPlot Returns
The TV Show plot of the current container and can be used at season and episode level.
Container.ShowTitle Returns
The TV Show title of the current container and can be used at season and episode level.
v17
Container.SortMethod Returns
The current sort method (returns a localized value).
Container.SortOrder Returns
The current sort order (Ascending/Descending).
v16
Container(id).TotalUnWatched Returns
The number of unwatched items in the container.
v16
Container(id).TotalWatched Returns
The number of watched items in the container.
v16
Container.Totaltime Returns
The total time of all items in the current container.
Container.ViewCount Returns
The number of available skin view modes for the current container listing.
v17
Container.Viewmode Returns
The current viewmode (e.g. list, icons, etc).

Control

InfoLabels Description Version
Control.GetLabel(id)[.index()] Returns
The label value or texture name of the control with the given id.

Parameters

id - The id of the control.
index - [opt] Optionally you can specify index(1) to retrieve label2 from an Edit control.
v15

Fanart

Note
Colors are arranged Lightest to Darkest.

InfoLabels Description Version
Fanart.Color1 Returns the first of three colors included in the currently selected Fanart theme for the parent TV Show.
Fanart.Color2 Returns the second of three colors included in the currently selected Fanart theme for the parent TV Show.
Fanart.Color3 Returns the third of three colors included in the currently selected Fanart theme for the parent TV Show.

Game

InfoLabels Description Version
Game.Developer Returns
The developer of the game (e.g. Activision).
v18
Game.GameClient Returns
The add-on ID of the emulator used to play the game.
v18
Game.Genres Returns
The genre of the game (e.g. Action).
v18
Game.Overview Returns
The game description.
v18
Game.Platform Returns
The platform the game runs on (e.g. Atari 2600).
v18
Game.Publisher Returns
The publishing company of the game (e.g. Nintendo).
v18
Game.Title Returns
The name of the game.
v18
Game.Year Returns
The year the game was released.
v18

ListItem

InfoLabels Description Version
ListItem.AddonBroken Deprecated! use ListItem.AddonLifecycleDesc instead.
ListItem.AddonCreator Returns
The name of the author the currently selected addon.
ListItem.AddonDescription Returns
The full description of the currently selected addon.
ListItem.AddonDisclaimer Returns
The disclaimer of the currently selected addon.
ListItem.AddonInstallDate Returns
The date the addon was installed.
ListItem.AddonLastUpdated Returns
The date the addon was last updated.
ListItem.AddonLastUsed Returns
The date the addon was used last.
ListItem.AddonLifecycleDesc Returns
The description of the lifecycle type (e.g. broken due to website changes).
v19
ListItem.AddonLifecycleType Returns
The lifecycle type of the addon as a localized string (e.g. normal, broken, or deprecated).
v19
ListItem.AddonName Returns
The name of the currently selected addon.
ListItem.AddonNews Returns
A brief changelog, taken from the addons' addon.xml file.
ListItem.AddonSize Returns
The filesize of the addon.
ListItem.AddonSummary Returns
A short description of the currently selected addon.
ListItem.AddonType Returns
The type of the currently selected addon (e.g. screensaver, script, skin, etc).
ListItem.AddonVersion Returns
The version of the currently selected addon.
ListItem.Album Returns
The album of the currently selected song in a container.
ListItem.AlbumArtist Returns
The artist of the currently selected album in a list.
ListItem.AlbumStatus Returns
The Musicbrainz release status of the album (e.g. offical, bootleg, promotion, etc).
v19
ListItem.Appearances Returns
The number of movies featuring the selected actor or directed by the selected director.
v17
ListItem.Artist Returns
The artist of the currently selected song in a container.
ListItem.AudioChannels Returns
The number of audio channels of the currently selected video (e.g. 1, 2, 4, 5, 6, 7, 8, 10, etc).
ListItem.AudioCodec Returns
The audio codec of the currently selected video.
Possible values:
  • aac
  • aac_latm
  • aac_lc*
  • aac_ltp*
  • aac_ssr*
  • ac3
  • aif
  • aifc
  • aiff
  • alac
  • ape
  • avc
  • cdda
  • dca**
  • dolbydigital
  • dtshd_hra
  • dtshd_ma
  • dtshd_ma_x*
  • dtshd_ma_x_imax*
  • dtsma
  • eac3
  • eac3_ddp_atmos*
  • flac
  • he_aac*
  • he_aac_v2*
  • mp1
  • mp2
  • mp3
  • mp3float
  • ogg
  • opus
  • pcm
  • pcm_bluray
  • pcm_s16le
  • pcm_s24le
  • truehd
  • truehd_atmos*
  • vorbis
  • wav
  • wavpack
  • wmapro
  • wmav2
** note: dca replaced dts in 2011
*v22
ListItem.AudioLanguage Returns
The audio language of the currently selected video as an ISO 639-2 three character code (e.g. eng, epo, deu).
ListItem.BitRate Returns
The actual bitrate for CBR or average bitrate for VBR of the currently selected song.
v19
ListItem.BPM Returns
The Beats Per Minute of the currently selected song.
v19
ListItem.Cast Returns
The list of cast members, separated by carriage returns, for use in dialogvideoinfo.xml.
ListItem.Cast(separator) Returns
A list of cast members, separated by given separator, or if no separator was given separated by carriage returns. Possible values for separator: comma, pipe, slash, cr, dash, colon, semicolon, fullstop.
v22
ListItem.CastAndRole Returns
The list of cast members and roles, separated by carriage returns. Every cast/role combination is formatted 'cast' as 'role' where 'as' is localised, for use in dialogvideoinfo.xml.
ListItem.CastAndRole(separator) Returns
A list of cast members and roles, separated by given separator, or if no separator was given separated by carriage returns. Possible values for separator: comma, pipe, slash, cr, dash, colon, semicolon, fullstop.
v22
ListItem.ChannelLogo Returns
The logo of the currently selected radio or TV channel (PVR).
v22
ListItem.ChannelName Returns
The name of current selected TV channel in a container (PVR).
ListItem.ChannelName Returns
The channel name of the selected item (PVR).
ListItem.ChannelNumber Returns
The channel number of the selected item (PVR).
ListItem.ChannelNumberLabel Returns
The channel and subchannel number of the currently selected channel that's currently playing (PVR).
ListItem.Comment Returns
The comment assigned to the item (PVR/MUSIC).
ListItem.ContributorAndRole Returns
The list of all people and their role who've contributed to the selected song.
ListItem.Contributors Returns
The list of all people who've contributed to the selected song.
ListItem.Country Returns
The production country of the currently selected movie in a container.
ListItem.CurrentItem Returns
The current index of the item in a container starting at 1.
v19
ListItem.Date Returns
The file date of the currently selected song or movie in a container, the aired date of an episode, or the day, start time, and end time of the currently selected TV programme (PVR).
ListItem.DateAdded Returns
The date the currently selected item was added to the library or date and time of an event in the EventLog window.
ListItem.DBID Returns
The database id of the currently selected ListItem in a container.
ListItem.DBTYPE Returns
The database type of the ListItem.DBID for videos (video, movie, set, tvshow, season, episode, musicvideo) or for audio (music, song, album, artist).

Note
With season, the "*all seasons" entry does give a DBTYPE "season" and a DBID, but you can't get the details of that entry since it's a virtual entry in the Video Library.

ListItem.DecodedFileNameAndPath Returns
The full path with filename of the currently selected song or movie in a container decoded.
ListItem.Director Returns
The director of the currently selected movie in a container.
ListItem.Director(separator) Returns
A list of directors, separated by given separator, or if no separator was given separated by the advanced settings value “itemseparator” for video items. Possible values for separator: comma, pipe, slash, cr, dash, colon, semicolon, fullstop.
v22
ListItem.DiscNumber Returns
The disc number of the currently selected song in a container.
ListItem.DiscTitle Returns
The disc title of the currently selected album or song.
v19
ListItem.Duration[(format)] Returns
The song or movie duration of the currently selected movie in a container. Optionally specify a time format, hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).
ListItem.EndDate Returns
The end date of the selected item (PVR).
ListItem.EndTime Returns
The end time of current selected TV programme in a container (PVR).
ListItem.EndTimeResume Returns
The time a video will end if you resume it, instead of playing it from the beginning.
ListItem.Episode Returns
The episode number value for the currently selected episode. It also shows the number of total, watched or unwatched episodes for the currently selected TV show or season, based on the the current watched filter.
ListItem.EpisodeName Returns
The name of the episode if the selected EPG item is a TV Show (PVR).
ListItem.FileExtension Returns
The file extension (without leading dot) of the currently selected item in a container.
ListItem.FileName Returns
The filename of the currently selected song or movie in a container.
ListItem.FileNameAndPath Returns
The full path with filename of the currently selected song or movie in a container.
ListItem.FileNameNoExtension Returns
The filename without its extension.
v19
ListItem.FolderName Returns
The top most folder of the path of the currently selected song or movie in a container.
ListItem.FolderPath Returns
The complete path of the currently selected song or movie in a container (without user details).
ListItem.Genre Returns
The genre of the currently selected song, album, or movie in a container.
ListItem.Genre(separator) Returns
A list of genres, separated by given separator, or if no separator was given separated by the advanced settings value “itemseparator” for videos or music. Possible values for separator: comma, pipe, slash, cr, dash, colon, semicolon, fullstop.
v22
ListItem.HdrType Returns
The HDR type of the currently selected video (e.g. hdr10, dolbyvision, or hlg).
v20
ListItem.IMDBNumber Returns
The IMDB iD of the selected Video in a container.
ListItem.Label Returns
The left label of the currently selected item in a container.
ListItem.Label2 Returns
The right label of the currently selected item in a container.
ListItem.LastPlayed Returns
The last play date of video in a container.
ListItem.Mood Returns
The mood of the selected song.
ListItem.Mpaa Returns
The MPAA rating of the currently selected movie in a container.
ListItem.MusicChannels Returns
The number of audio channels for a song.
v19
ListItem.NextDuration Returns
The duration of the next item (PVR).
v18
ListItem.NextEndDate Returns
The end date of the next item (PVR).
ListItem.NextEndTime Returns
The end of the next item (PVR).
ListItem.NextGenre Returns
The genre of the next item (PVR).
ListItem.NextGenre(separator) Returns
A list of genres of the the next item (PVR), separated by given separator, or if no separator was given separated by the advanced settings value “itemseparator” for videos. Possible values for separator: comma, pipe, slash, cr, dash, colon, semicolon, fullstop.
v22
ListItem.NextPlot Returns
The plot of the next item (PVR).
ListItem.NextPlotOutline Returns
The plot outline of the next item (PVR).
ListItem.NextStartDate Returns
The start date of the next item (PVR).
ListItem.NextStartTime Returns
The start time of the next item (PVR).
ListItem.NextTitle Returns
The title of the next item (PVR).
ListItem.OriginalDate Returns
The original release date of the item.
v19
ListItem.OriginalTitle Returns
The original title of the currently selected movie in a container.
ListItem.ParentalRatingCode Returns
The parental rating code.
v22
ListItem.ParentalRatingIcon Returns
The parental rating icon.
v22
ListItem.ParentalRatingSource Returns
The parental rating source.
v22
ListItem.Path Returns
The complete path of the currently selected song or movie in a container.
ListItem.PercentPlayed Returns
The returns percentage value [0-100] of how far the selected video has been played.
ListItem.PictureAperture Returns
The f-stop used to take the selected picture. This is the value of the EXIF FNumber tag (hex code 0x829D).
ListItem.PictureAuthor Returns
The name of the person involved in writing about the selected picture. This is the value of the IPTC Writer tag (hex code 0x7A).
ListItem.PictureByline Returns
The name of the person who created the selected picture. This is the value of the IPTC Byline tag (hex code 0x50).
ListItem.PictureBylineTitle Returns
The title of the person who created the selected picture. This is the value of the IPTC BylineTitle tag (hex code 0x55).
ListItem.PictureCamMake Returns
The manufacturer of the camera used to take the selected picture. This is the value of the EXIF Make tag (hex code 0x010F).
ListItem.PictureCamModel Returns
The manufacturer's model name or number of the camera used to take the selected picture. This is the value of the EXIF Model tag (hex code 0x0110).
ListItem.PictureCaption Returns
The description of the selected picture. This is the value of the IPTC Caption tag (hex code 0x78).
ListItem.PictureCategory Returns
The subject of the selected picture as a category code. This is the value of the IPTC Category tag (hex code 0x0F).
ListItem.PictureCCDWidth Returns
The width of the CCD in the camera used to take the selected picture. This is calculated from three EXIF tags (0xA002 * 0xA210 / 0xA20e).
ListItem.PictureCity Returns
The city where the selected picture was taken. This is the value of the IPTC City tag (hex code 0x5A).
ListItem.PictureColour Returns
Whether the selected picture is "Colour" or "Black and White".
ListItem.PictureComment Returns
The description of the selected picture. This is the value of the EXIF User Comment tag (hex code 0x9286). This is the same value as Slideshow.SlideComment.
ListItem.PictureCopyrightNotice Returns
The copyright notice of the selected picture. This is the value of the IPTC Copyright tag (hex code 0x74).
ListItem.PictureCountry Returns
The full name of the country where the selected picture was taken. This is the value of the IPTC CountryName tag (hex code 0x65).
ListItem.PictureCountryCode Returns
The country code of the country where the selected picture was taken. This is the value of the IPTC CountryCode tag (hex code 0x64).
ListItem.PictureCredit Returns
The provider of the selected picture. This is the value of the IPTC Credit tag (hex code 0x6E).
ListItem.PictureDate Returns
The localized date of the selected picture. The short form of the date is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.
ListItem.PictureDatetime Returns
The date/timestamp of the selected picture. The localized short form of the date and time is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.
ListItem.PictureDesc Returns
The short description of the selected picture. The SlideComment, EXIFComment, or Caption values might contain a longer description. This is the value of the EXIF ImageDescription tag (hex code 0x010E).
ListItem.PictureDigitalZoom Returns
The digital zoom ratio when the selected picture was taken. This is the value of the EXIF DigitalZoomRatio tag (hex code 0xA404).
ListItem.PictureExpMode Returns
The exposure mode of the selected picture. The possible values are "Automatic", "Manual", and "Auto bracketing". This is the value of the EXIF ExposureMode tag (hex code 0xA402).
ListItem.PictureExposure Returns
The class of the program used by the camera to set exposure when the selected picture was taken. Values include "Manual", "Program (Auto)", "Aperture priority (Semi-Auto)", "Shutter priority (semi-auto)", etc. This is the value of the EXIF ExposureProgram tag (hex code 0x8822).
ListItem.PictureExposureBias Returns
The exposure bias of the selected picture. Typically this is a number between -99.99 and 99.99. This is the value of the EXIF ExposureBiasValue tag (hex code 0x9204).
ListItem.PictureExpTime Returns
The exposure time of the selected picture, in seconds. This is the value of the EXIF ExposureTime tag (hex code 0x829A). If the ExposureTime tag is not found, the ShutterSpeedValue tag (hex code 0x9201) might be used.
ListItem.PictureFlashUsed Returns
The status of flash when the selected picture was taken. The value will be either "Yes" or "No", and might include additional information. This is the value of the EXIF Flash tag (hex code 0x9209).
ListItem.PictureFocalLen Returns
The lens focal length of the selected picture.
ListItem.PictureFocusDist Returns
The focal length of the lens, in mm. This is the value of the EXIF FocalLength tag (hex code 0x920A).
ListItem.PictureGPSAlt Returns
The altitude in meters where the selected picture was taken. This is the value of the EXIF GPSInfo.GPSAltitude tag.
ListItem.PictureGPSLat Returns
The latitude where the selected picture was taken (degrees, minutes, seconds North or South). This is the value of the EXIF GPSInfo.GPSLatitude and GPSInfo.GPSLatitudeRef tags.
ListItem.PictureGPSLon Returns
The longitude where the selected picture was taken (degrees, minutes, seconds East or West). This is the value of the EXIF GPSInfo.GPSLongitude and GPSInfo.GPSLongitudeRef tags.
ListItem.PictureHeadline Returns
The synopsis of the contents of the selected picture. This is the value of the IPTC Headline tag (hex code 0x69).
ListItem.PictureImageType Returns
The color components of the selected picture. This is the value of the IPTC ImageType tag (hex code 0x82).
ListItem.PictureIPTCDate Returns
The date when the intellectual content of the selected picture was created, rather than when the picture was created. This is the value of the IPTC DateCreated tag (hex code 0x37).
ListItem.PictureIPTCTime Returns
The time when the intellectual content of the selected picture was created, rather than when the picture was created. This is the value of the IPTC TimeCreated tag (hex code 0x3C).
ListItem.PictureISO Returns
The ISO speed of the camera when the selected picture was taken. This is the value of the EXIF ISOSpeedRatings tag (hex code 0x8827).
ListItem.PictureKeywords Returns
The keywords assigned to the selected picture. This is the value of the IPTC Keywords tag (hex code 0x19).
ListItem.PictureLightSource Returns
The kind of light source when the picture was taken. Possible values include "Daylight", "Fluorescent", "Incandescent", etc. This is the value of the EXIF LightSource tag (hex code 0x9208).
ListItem.PictureLongDate Returns
The localized date of the selected picture. The long form of the date is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.
ListItem.PictureLongDatetime Returns
The date/timestamp of the selected picture. The localized long form of the date and time is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. if the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.
ListItem.PictureMeteringMode Returns
The metering mode used when the selected picture was taken. The possible values are "Center weight", "Spot", or "Matrix". This is the value of the EXIF MeteringMode tag (hex code 0x9207).
ListItem.PictureObjectName Returns
The shorthand reference for the selected picture. This is the value of the IPTC ObjectName tag (hex code 0x05).
ListItem.PictureOrientation Returns
The orientation of the selected picture. Possible values are "Top Left", "Top Right", "Left Top", "Right Bottom", etc. This is the value of the EXIF Orientation tag (hex code 0x0112).
ListItem.PicturePath Returns
The filename and path of the selected picture.
ListItem.PictureProcess Returns
The process used to compress the selected picture.
ListItem.PictureReferenceService Returns
The service identifier of a prior envelope to which the selected picture refers. This is the value of the IPTC ReferenceService tag (hex code 0x2D).
ListItem.PictureResolution Returns
The dimensions of the selected picture.
ListItem.PictureSource Returns
The original owner of the selected picture. This is the value of the IPTC Source tag (hex code 0x73).
ListItem.PictureSpecialInstructions Returns
The editorial instructions concerning the use of the selected picture. This is the value of the IPTC SpecialInstructions tag (hex code 0x28).
ListItem.PictureState Returns
The State/Province where the selected picture was taken. This is the value of the IPTC ProvinceState tag (hex code 0x5F).
ListItem.PictureSublocation Returns
The location within a city where the selected picture was taken - might indicate the nearest landmark. This is the value of the IPTC SubLocation tag (hex code 0x5C).
ListItem.PictureSupplementalCategories Returns
The supplemental category codes to further refine the subject of the selected picture. This is the value of the IPTC SuppCategory tag (hex code 0x14).
ListItem.PictureTransmissionReference Returns
The code representing the location of original transmission of the selected picture. This is the value of the IPTC TransmissionReference tag (hex code 0x67).
ListItem.PictureUrgency Returns
The urgency of the selected picture. Values are 1-9. The "1" is most urgent. Some image management programs use urgency to indicate picture rating, where urgency "1" is 5 stars and urgency "5" is 1 star. Urgencies 6-9 are not used for rating. This is the value of the IPTC Urgency tag (hex code 0x0A).
ListItem.PictureWhiteBalance Returns
The white balance mode set when the selected picture was taken. The possible values are "Manual" and "Auto". This is the value of the EXIF WhiteBalance tag (hex code 0xA403).
ListItem.PlayCount Returns
The playcount of video in a container.
ListItem.Plot Returns
The complete text summary of video in a container.
ListItem.PlotOutline Returns
The small summary of current video in a container.
ListItem.Premiered Returns
The release/aired date of the currently selected episode, show, movie, or EPG item in a container.
ListItem.PrivacyPolicy Returns
The official Kodi privacy-policy.
v17
ListItem.ProgramCount Returns
The number of times an xbe has been run from "my programs".
ListItem.Progress Returns
The part of the programme that's being played (PVR).
ListItem.Property(Addon.Changelog) Returns
The changelog of the currently selected addon.
ListItem.Property(Addon.ID) Returns
The identifier of the currently selected addon.
ListItem.Property(Addon.Path) Returns
The path of the currently selected addon.
ListItem.Property(Addon.Status) Returns
The status of the currently selected addon.
ListItem.Property(Album_Description) Returns
The review of the currently selected album.
ListItem.Property(Album_Duration) Returns
The duration of an album in HH:MM:SS.
v19
ListItem.Property(Album_Label) Returns
The record label of the currently selected album.
ListItem.Property(Album_Mood) Returns
The moods of the currently selected album.
ListItem.Property(Album_Rating) Returns
The scraped rating of the currently selected album.
ListItem.Property(Album_Style) Returns
The styles of the currently selected album.
ListItem.Property(Album_Theme) Returns
The themes of the currently selected album.
ListItem.Property(Album_Type) Returns
The album type of the currently selected album (e.g. compilation, enhanced, or explicit lyrics).
ListItem.Property(Album_UserRating) Returns
The user rating of the currently selected album.
ListItem.Property(Artist_Born) Returns
The Date of Birth of the currently selected artist.
ListItem.Property(Artist_Description) Returns
The biography of the currently selected artist.
ListItem.Property(Artist_Died) Returns
The Date of Death of the currently selected artist.
ListItem.Property(Artist_Disambiguation) Returns
The brief description of the currently selected artist that differentiates them from others with the same name.
v18
ListItem.Property(Artist_Disbanded) Returns
The disbanding date of the currently selected band.
ListItem.Property(Artist_Formed) Returns
The formation date of the currently selected band.
ListItem.Property(Artist_Gender) Returns
The gender of the currently selected artist (e.g.male, female, or other).
v18
ListItem.Property(Artist_Genre) Returns
The genre of the currently selected artist.
ListItem.Property(Artist_Instrument) Returns
The instruments played by the currently selected artist.
ListItem.Property(Artist_Mood) Returns
The moods of the currently selected artist.
ListItem.Property(Artist_Sortname) Returns
The sortname of the currently selected artist.
v18
ListItem.Property(Artist_Style) Returns
The styles of the currently selected artist.
ListItem.Property(Artist_Type) Returns
The type of the currently selected artist (person, group, orchestra, choir, etc).
v18
ListItem.Property(Artist_YearsActive) Returns
The years the currently selected artist has been active.
ListItem.Property(AudioChannels.[n]) Returns
The number of audio channels of the currently selected video, 'n' defines the number of the audiostream (values: see ListItem.AudioChannels).
ListItem.Property(AudioCodec.[n]) Returns
The audio codec of the currently selected video, 'n' defines the number of the audiostream (values: see ListItem.AudioCodec).
ListItem.Property(AudioLanguage.[n]) Returns
The audio language of the currently selected video, 'n' defines the number of the audiostream (values: see ListItem.AudioLanguage).
ListItem.Property(game.stretchmode) Returns
The name of the stretch mode (e.g. Stretch 4:3).
v18
ListItem.Property(game.videofilter) Returns
The name of the video filter (e.g. Bilinear).
v18
ListItem.Property(game.videorotation) Returns
The angle of the rotation.
v18
ListItem.Property(NumEpisodes) Returns
The number of total, watched, or unwatched episodes for the currently selected TV show or season, based on the the current watched filter.
ListItem.Property(Role.Arranger) Returns
The name of the person who arranged the selected song.
ListItem.Property(Role.Composer) Returns
The name of the person who composed the selected song.
ListItem.Property(Role.Conductor) Returns
The name of the person who conducted the selected song.
ListItem.Property(Role.DJMixer) Returns
The name of the DJ who remixed the selected song.
ListItem.Property(Role.Engineer) Returns
The name of the person who was the engineer of the selected song.
ListItem.Property(Role.Lyricist) Returns
The name of the person who wrote the lyrics of the selected song.
ListItem.Property(Role.Mixer) Returns
The name of the person who mixed the selected song.
ListItem.Property(Role.Orchestra) Returns
The name of the orchestra performing the selected song.
ListItem.Property(Role.Producer) Returns
The name of the person who produced the selected song.
ListItem.Property(Role.Remixer) Returns
The name of the person who remixed the selected song.
ListItem.Property(Stream.Bitrate) Returns
The video bitrate (kbps) of the currently playing video.
v22
ListItem.Property(Stream.Channels) Returns
The number of audio channels of the currently playing video.
v22
ListItem.Property(Stream.Codec) Returns
The audio, video, or subtitle codec of the currently playing video.
v22
ListItem.Property(Stream.CodecDesc) Returns
The audio description of the currently playing video.
v22
ListItem.Property(Stream.Description) Returns
The audio, video, or subtitle title/name of the currently playing video.
v22
ListItem.Property(Stream.FPS) Returns
The Frames per Second of the currently playing video.
v22
ListItem.Property(Stream.HDRType) Returns
The HDR type of the currently playing video (e.g. hdr10, dolbyvision, or hlg).
v22
ListItem.Property(Stream.Language) Returns
The audio language of the currently playing video as an ISO 639-2 three character code (e.g. eng, epo, deu, etc).
v22
ListItem.Property(Stream.Resolution) Returns
The video resolution of the currently playing video.
v22
ListItem.Property(Stream.StereoMode) Returns
The 3D stereo mode of the playing video (e.g. mono, split_vertical, split_horizontal, row_interleaved, anaglyph_cyan_red, or anaglyph_green_magenta).
v22
ListItem.Property(SubtitleLanguage.[n]) Returns
The subtitle language of the currently selected stream, 'n' defines the number of the subtitle (values: see ListItem.SubtitleLanguage).
ListItem.Property(TotalEpisodes) Returns
The total number of episodes for the currently selected TV show or season.
ListItem.Property(TotalSeasons) Returns
The total number of seasons for the currently selected TV show.
ListItem.Property(UnWatchedEpisodes) Returns
The number of unwatched episodes for the currently selected TV show or season.
ListItem.Property(WatchedEpisodes) Returns
The number of watched episodes for the currently selected TV show or season.
ListItem.PVRClientName Returns
The name of the PVR client addon for the selected PVR list item.
v22
ListItem.PVRInstanceName Returns
The name of the instance of the PVR client addon for the selected PVR list item.
v22
ListItem.Rating[(name)] Returns
The scraped rating of the currently selected item in a container. Optionally you can specify the name of the scraper to retrieve a specific rating, for use in dialogvideoinfo.xml.
ListItem.RatingAndVotes[(name)] Returns
The IMDB rating and votes of the currently selected movie in a container. Optionally you can specify the name of the scraper to retrieve a specific rating and votes, for use in dialogvideoinfo.xml.
ListItem.ReleaseDate Returns
The release date of the current item.
v19
ListItem.SampleRate Returns
The sample rate of a song / 1000.0 (e.g. 44.1, 48, 96 etc).
v19
ListItem.Season Returns
The season value for the currently selected TV show.
ListItem.Set Returns
The name of the set the movie is part of.
ListItem.SetId Returns
The id of the set the movie is part of.
ListItem.Size Returns
The file size of the currently selected song or movie in a container.
ListItem.SortLetter Returns
The first letter of the current file in a container.
ListItem.StartDate Returns
The start date of current selected TV programme in a container.
ListItem.StartDate Returns
The start date of the selected item (PVR).
ListItem.StartTime Returns
The start time of current selected TV programme in a container.
ListItem.StartTime Returns
The start time of the selected item (PVR).
ListItem.Status Returns
The status of the selected TV show (e.g. 'returning series','in production','planned','cancelled' or 'ended').
ListItem.StereoscopicMode Returns
The stereomode of the selected video (ie.g. mono, split_vertical, split_horizontal, row_interleaved, anaglyph_cyan_red, or anaglyph_green_magenta).
ListItem.Studio Returns
The studio of current selected music video in a container.
ListItem.SubtitleLanguage Returns
The subtitle language of the currently selected video as an ISO 639-2 three character code (e.g. eng, epo, deu).
ListItem.Tag Returns
The name of the 'tag' this movie is part of.
ListItem.Tagline Returns
The small summary of current video in a container.
ListItem.Title Returns
The title of the currently selected song or movie in a container.
ListItem.Top250 Returns
The IMDB top 250 position of the currently selected ListItem in a container.
ListItem.TotalDiscs Returns
The total amount of discs belonging to an album.
v19
ListItem.TrackNumber Returns
The track number of the currently selected song in a container.
ListItem.Trailer Returns
The full trailer path with filename of the currently selected movie in a container.
ListItem.TVShowDBID Returns
The TV show DBID of the selected season or episode a container.
v19
ListItem.TVShowTitle Returns
The name value for the currently selected TV show in the season and episode depth of the video library.
ListItem.UniqueID() Returns
The UniqueID of the selected item in a container.
v19
ListItem.UserRating Returns
The user rating of the currently selected item in a container.
ListItem.VideoAspect Returns
The aspect ratio of the currently selected video.
Possible values:
  • 1.00*
  • 1.19*
  • 1.33
  • 1.37
  • 1.66
  • 1.78
  • 1.85
  • 2.00*
  • 2.20
  • 2.35
  • 2.40
  • 2.55
  • 2.76
*v20
ListItem.VideoCodec Returns
The video codec of the currently selected video.
Possible values:
  • 3iv2
  • av1
  • avc1
  • div2
  • div3
  • divx
  • divx 4
  • dx50
  • flv
  • h264
  • hev1
  • hevc
  • hvc1
  • microsoft
  • mp42
  • mp43
  • mp4v
  • mpeg1
  • mpeg1video
  • mpeg2
  • mpeg2video
  • mpeg4
  • mpg4
  • rv40
  • svq1
  • svq3
  • theora
  • vc-1
  • vc1
  • vp6f
  • vp8
  • vp9
  • wmv
  • wmv2
  • wmv3
  • wvc1
  • xvid
ListItem.VideoResolution Returns
The resolution of the currently selected video.
Possible values:
  • 480
  • 576
  • 540
  • 720
  • 1080
  • 4K
  • 8K*

Note
That 540 usually means a widescreen format (around 960x540) while 576 means PAL resolutions (normally 720x576), therefore 540 is actually better resolution than 576.

*v18
ListItem.VideoVersionName Returns
The name of the video version.
v21
ListItem.Votes[(name)] Returns
The IMDB votes of the currently selected movie in a container. Optionally you can specify the name of the scraper to retrieve specific votes, for use in dialogvideoinfo.xml.
ListItem.Writer Returns
The name of Writer of current video in a container.
ListItem.Writer(separator) Returns
A list of writers, separated by given separator, or if no separator was given separated by the advanced settings value “itemseparator” for video items. Possible values for separator: comma, pipe, slash, cr, dash, colon, semicolon, fullstop.
v22
ListItem.Year Returns
The year of the currently selected song, album, or movie in a container.

MusicPartyMode

InfoLabels Description Version
MusicPartyMode.SongsPlayed Returns
The number of songs played during Party Mode.
MusicPartyMode.MatchingSongs Returns
The number of songs available to Party Mode.
MusicPartyMode.MatchingSongsPicked Returns
The number of songs picked already for Party Mode.
MusicPartyMode.MatchingSongsLeft Returns
The number of songs left to be picked from for Party Mode.
MusicPartyMode.RelaxedSongsPicked Returns
The number of relaxed songs picked during Party Mode.
MusicPartyMode.RandomSongsPicked Returns
The number of unique random songs picked during Party Mode.

Network

InfoLabels Description Version
Network.LinkState Returns
The network linkstate (e.g. 10mbit/100mbit etc).
Network.MacAddress Returns
The system's mac address.
Network.SubnetMask Returns
The network subnet mask.
Network.GatewayAddress Returns
The network gateway address.
Network.DNS1Address Returns
The network dns server 1 address.
Network.DNS2Address Returns
The network dns server 2 address.
Network.DHCPAddress Returns
The DHCP server ip address.

Player labels

InfoLabels Description Version
Player.FinishTime Time playing media will end
Player.FinishTime(format) Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).
Player.Chapter Current chapter of current playing media
Player.ChapterCount Total number of chapters of current playing media
Player.Time Elapsed time of current playing media
Player.Time(format) Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).
Player.TimeRemaining Remaining time of current playing media
Player.TimeRemaining(format) Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).
Player.Duration Total duration of the current playing media
Player.Duration(format) Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).
Player.SeekTime Time to which the user is seeking
Player.SeekBar Time to which the user is seeking as a percentage (for use in slider controls)
Player.SeekOffset Indicates the seek offset after a seek press (e.g. user presses BigStepForward, player.seekoffset returns +10:00)
Player.SeekOffset(format) Shows hours (hh), minutes (mm) or seconds (ss). Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).
Player.SeekStepSize Displays the seek step size. (v15 addition)
Player.Progress Shows how much (percentage) of the file has been played
Player.ProgressCache Shows how much of the file is cached above current play percentage
Player.Folderpath Shows the full path of the currently playing song or movie. (supports .offset() and .position())
Player.Filenameandpath Shows the full path with filename of the currently playing song or movie. (supports .offset() and .position())
Player.StartTime Returns the starttime (from the epg) of a tv program, for all other videos it will return the time you started watching this video.
Player.StartTime(format) Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).
Player.Title Returns the musicplayer title for audio and the videoplayer title for videos. (supports .offset() and .position())
Player.Filename Returns the filename of the currently playing media. (supports .offset() and .position())
Player.Volume Returns the volume level in dB
Player.PlaySpeed Current playspeed. (range:0.8 to 1.5)
Player.Process(AudioBitsPerSample) Bits per sample of the currently playing item
Player.Process(AudioChannels) List of audio channels of the currently playing item (e.g. FL+FR)
Player.Process(AudioDecoder) Audiodecoder name of the currently playing item
Player.Process(AudioSamplerate) Samplerate f the currently playing item
Player.Process(DeintMethod) Deinterlace method of the currently playing video
Player.Process(PixFormat) Pixel format of the currently playing video
Player.Process(VideoDAR) Display aspect ratio of the currently playing video
Player.Process(VideoFPS) Video framerate of the currently playing video
Player.Process(VideoHeight) Height of the currently playing video
Player.Process(VideoDecoder) Videodecoder name of the currently playing video
Player.Process(VideoWidth) Width of the currently playing video
Player.Process(VideoScanType) The scan type identifier of the currently playing video p (for progressive) or i (for interlaced) v20
Player.CutList this infolabel can be used with the Ranges Control, as EDL and chapter markers v19
Player.Chapters this infolabel can be used with the Ranges Control, as EDL and chapter markers v19

Music player

InfoLabels Description Version
MusicPlayer.ParentalRatingCode Shows the parental rating code v22
MusicPlayer.ParentalRatingIcon Shows the parental rating icon v22
MusicPlayer.ParentalRatingSource Shows the parental rating source v22
MusicPlayer.ChannelLogo Shows the logo of the currently selected radio or TV channel v22
MusicPlayer.Title Title of the currently playing song, also available are "MusicPlayer.offset(number).Title" offset is relative to the current playing item and "MusicPlayer.Position(number).Title" position is relative to the start of the playlist
MusicPlayer.Album Album from which the current song is from, also available are "MusicPlayer.offset(number).Album" offset is relative to the current playing item and "MusicPlayer.Position(number).Album" position is relative to the start of the playlist
MusicPlayer.Property(Album_Mood) Shows the moods of the currently playing Album
MusicPlayer.Property(Album_Style) Shows the styles of the currently playing Album
MusicPlayer.Property(Album_Theme) Shows the themes of the currently playing Album
MusicPlayer.Property(Album_Type) Shows the Album Type (e.g. compilation, enhanced, explicit lyrics) of the currently playing Album
MusicPlayer.Property(Album_Label) Shows the record label of the currently playing Album
MusicPlayer.Property(Album_Description) Shows a review of the currently playing Album
MusicPlayer.Artist Artist(s) of current song, also available are "MusicPlayer.offset(number).Artist" offset is relative to the current playing item and "MusicPlayer.Position(number).Artist" position is relative to the start of the playlist
MusicPlayer.Property(Artist_Born) Date of Birth of the currently playing Artist
MusicPlayer.Property(Artist_Died) Date of Death of the currently playing Artist
MusicPlayer.Property(Artist_Formed) Formation date of the currently playing Artist/Band
MusicPlayer.Property(Artist_Disbanded) Disbanding date of the currently playing Artist/Band
MusicPlayer.Property(Artist_YearsActive) Years the currently Playing artist has been active
MusicPlayer.Property(Artist_Instrument) Instruments played by the currently playing artist
MusicPlayer.Property(Artist_Description) Shows a biography of the currently playing artist
MusicPlayer.Property(Artist_Mood) Shows the moods of the currently playing artist
MusicPlayer.Property(Artist_Style) Shows the styles of the currently playing artist
MusicPlayer.Property(Artist_Genre) Shows the genre of the currently playing artist
MusicPlayer.Property(Artist_Sortname) Sortname of the currently playing Artist v18
MusicPlayer.Property(Artist_Type) Type of the currently playing Artist - person, group, orchestra, choir, etc. v18
MusicPlayer.Property(Artist_Gender) Gender of the currently playing Artist - male, female, other v18
MusicPlayer.Property(Artist_Disambiguation) Brief description of the currently playing Artist that differentiates them from others with the same name v18
MusicPlayer.Genre Genre(s) of current song, also available are "MusicPlayer.offset(number).Genre" offset is relative to the current playing item and "MusicPlayer.Position(number).Genre" position is relative to the start of the playlist
MusicPlayer.Genre(separator) Returns
A list of genres of current song, separated by given separator, or if no separator was given separated by the advanced settings value “itemseparator” for music. Possible values for separator: comma, pipe, slash, cr, dash, colon, semicolon, fullstop.
v22
MusicPlayer.Lyrics Lyrics of current song stored in ID tag info
MusicPlayer.Year Year of release of current song, also available are "MusicPlayer.offset(number).Year" offset is relative to the current playing item and "MusicPlayer.Position(number).Year" position is relative to the start of the playlist
MusicPlayer.Rating Numeric Rating of current song, also available are "MusicPlayer.offset(number).Rating" offset is relative to the current playing item and "MusicPlayer.Position(number).Rating" position is relative to the start of the playlist
MusicPlayer.DiscNumber Disc Number of current song stored in ID tag info, also available are "MusicPlayer.offset(number).DiscNumber" offset is relative to the current playing item and "MusicPlayer.Position(number).DiscNumber" position is relative to the start of the playlist
MusicPlayer.Comment Comment of current song stored in ID tag info, also available are "MusicPlayer.offset(number).Comment" offset is relative to the current playing item and "MusicPlayer.Position(number).Comment" position is relative to the start of the playlist
MusicPlayer.Time Current time in song
MusicPlayer.TimeRemaining Current remaining time in song
MusicPlayer.TimeSpeed Both the time and the playspeed formatted up. e.g. 1:23 (2x)
MusicPlayer.TrackNumber Track number of current song, also available are "MusicPlayer.offset(number).TrackNumber" offset is relative to the current playing item and "MusicPlayer.Position(number).TrackNumber" position is relative to the start of the playlist
MusicPlayer.Duration Duration of current song, also available are "MusicPlayer.offset(number).Duration" offset is relative to the current playing item and "MusicPlayer.Position(number).Duration" position is relative to the start of the playlist
MusicPlayer.BitRate Bitrate of current song
MusicPlayer.Channels Number of channels of current song
MusicPlayer.BitsPerSample Number of bits per sample of current song
MusicPlayer.SampleRate Samplerate of current song
MusicPlayer.Codec Codec of current song
MusicPlayer.PlaylistPosition Position of the current song in the current music playlist
MusicPlayer.PlaylistLength Total size of the current music playlist
MusicPlayer.ChannelName Channel name of the radio programme that's currently playing (PVR).
MusicPlayer.ChannelNumberLabel Channel and subchannel number of the radio channel that's currently playing (PVR).
MusicPlayer.ChannelGroup Channel group of of the radio programme that's currently playing (PVR).
MusicPlayer.Contributors List of all people who've contributed to the currently playing song
MusicPlayer.ContributorAndRole List of all people and their role who've contributed to the currently playing song
MusicPlayer.Mood Mood of the currently playing song
MusicPlayer.Property(Role.Arranger) Returns the name of the person who arranged the selected song
MusicPlayer.Property(Role.Composer) Returns the name of the person who composed the selected song
MusicPlayer.Property(Role.Conductor) Returns the name of the person who conducted the selected song
MusicPlayer.Property(Role.DJMixer) Returns the name of the dj who remixed the selected song
MusicPlayer.Property(Role.Engineer) Returns the name of the person who was the engineer of the selected song
MusicPlayer.Property(Role.Lyricist) Returns the name of the person who wrote the lyrics of the selected song
MusicPlayer.Property(Role.Mixer) Returns the name of the person who mixed the selected song
MusicPlayer.Property(Role.Orchestra) Returns the name of the orchestra performing the selected song
MusicPlayer.Property(Role.Producer) Returns the name of the person who produced the selected song
MusicPlayer.Property(Role.Remixer) Returns the name of the person who remixed the selected song
MusicPlayer.UserRating The rating the user gave to the currently playing song
MusicPlayer.DBID The database id of the currently playing song v17
MusicPlayer.DiscTitle The title of the disc currently playing v19
MusicPlayer.ReleaseDate Returns the release date of the song currently playing v19
MusicPlayer.OriginalDate Returns the original release date of the song currently playing v19
MusicPlayer.BPM Returns the Beats Per Minute of the currently playing song v19
MusicPlayer.TotalDiscs Returns the number of discs associated with the album of the currently playing song v19

Video player

InfoLabels Description Version
VideoPlayer.AudioStreamCount Returns the number of audio streams of the currently playing video v21
VideoPlayer.VideoStreamCount Returns the number of video streams of the currently playing video v22
VideoPlayer.ParentalRatingCode Shows the parental rating code v22
VideoPlayer.ParentalRatingIcon Shows the parental rating icon v22
VideoPlayer.ParentalRatingSource Shows the parental rating source v22
VideoPlayer.ChannelLogo Shows the logo of the currently selected radio or TV channel v22
VideoPlayer.VideoVersionName Show the name of the video version v21
VideoPlayer.Time Current time in movie
VideoPlayer.TimeRemaining Current remaining time in movie
VideoPlayer.TimeSpeed Current time + playspeed. e.g. 1:23:14 (-4x)
VideoPlayer.Duration Length of current movie
VideoPlayer.Title Title of currently playing video. If it's in the database it will return the database title, else the filename. (supports .offset() and .position())
VideoPlayer.OriginalTitle The original title of currently playing video. (supports .offset() and .position())
VideoPlayer.TVShowTitle Title of currently playing episode's tvshow name. (supports .offset() and .position())
VideoPlayer.Season Season number of the currently playing episode, if it's in the database. (supports .offset() and .position())
VideoPlayer.Episode Episode number of the currently playing episode. (supports .offset() and .position())
VideoPlayer.Genre Genre(s) of current movie, if it's in the database. (supports .offset() and .position())
VideoPlayer.Genre(separator) Returns
A list of genres of current movie, separated by given separator, or if no separator was given separated by the advanced settings value “itemseparator” for videos. Possible values for separator: comma, pipe, slash, cr, dash, colon, semicolon, fullstop.
v22
VideoPlayer.Director Director of current movie, if it's in the database. (supports .offset() and .position())
VideoPlayer.Director(separator) Returns
A list of directors of the currently playing video, separated by given separator, or if no separator was given separated by the advanced settings value \“itemseparator\” for video items. Possible values for separator: comma, pipe, slash, cr, dash, colon, semicolon, fullstop.
v22
VideoPlayer.Country Production country of current movie, if it's in the database. (supports .offset() and .position())
VideoPlayer.Year Year of release of current movie, if it's in the database. (supports .offset() and .position())
VideoPlayer.Premiered The release/aired date of the currently selected episode, show, movie or EPG item. (supports .offset() and .position())
VideoPlayer.Rating IMDb user rating of current movie, if it's in the database. (supports .offset() and .position())
VideoPlayer.UserRating Shows the user rating of the currently playing item. (supports .offset() and .position())
VideoPlayer.Votes IMDb votes of current movie, if it's in the database. (supports .offset() and .position())
VideoPlayer.RatingAndVotes IMDb user rating and votes of current movie, if it's in the database. (supports .offset() and .position())
VideoPlayer.mpaa MPAA rating of current movie, if it's in the database. (supports .offset() and .position())
VideoPlayer.IMDBNumber The IMDB iD of the current video, if it's in the database. (supports .offset() and .position())
VideoPlayer.EpisodeName (PVR only) The name of the episode if the playing video is a TV Show, if it's in the database
VideoPlayer.PlaylistPosition Position of the current song in the current video playlist
VideoPlayer.PlaylistLength Total size of the current video playlist
VideoPlayer.Cast A list of cast members, separated by carriage returns, if it's in the database
VideoPlayer.Cast(separator) Returns
A list of cast members of the currently playing video, separated by given separator, or if no separator was given separated by carriage returns. Possible values for separator: comma, pipe, slash, cr, dash, colon, semicolon, fullstop.
v22
VideoPlayer.CastAndRole A list of cast members and roles, separated by carriage returns. Every cast/role combination is formatted 'cast' as 'role' where 'as' is localised, if it's in the database
VideoPlayer.CastAndRole(separator) Returns
A list of cast members and roles of the currently playing video, pairs separated by given separator, or if no separator was given separated by carriage returns. Possible values for separator: comma, pipe, slash, cr, dash, colon, semicolon, fullstop.
v22
VideoPlayer.Trailer The trailer of the current movie. (supports .offset() and .position())
VideoPlayer.Album Album from which the current Music Video is from, if it's in the database. (supports .offset() and .position())
VideoPlayer.Artist Artist(s) of current Music Video, if it's in the database. (supports .offset() and .position())
VideoPlayer.Studio Studio of current Music Video, if it's in the database. (supports .offset() and .position())
VideoPlayer.Writer Name of Writer of current playing Video, if it's in the database. (supports .offset() and .position())
VideoPlayer.Writer(separator) Returns
A list of writers of the currently playing video, separated by given separator, or if no separator was given separated by the advanced settings value “itemseparator” for video items. Possible values for separator: comma, pipe, slash, cr, dash, colon, semicolon, fullstop.
v22
VideoPlayer.Tagline Small Summary of current playing Video, if it's in the database. (supports .offset() and .position())
VideoPlayer.PlotOutline Small Summary of current playing Video, if it's in the database. (supports .offset() and .position())
VideoPlayer.Plot Complete Text Summary of current playing Video, if it's in the database. (supports .offset() and .position())
VideoPlayer.Top250 Shows the IMDb top250 position of the current playing Video. (supports .offset() and .position())
VideoPlayer.LastPlayed Last play date of current playing Video, if it's in the database. (supports .offset() and .position())
VideoPlayer.PlayCount Playcount of current playing Video, if it's in the database. (supports .offset() and .position())
VideoPlayer.HdrType Shows the HDR type of the currently playing video (possible values: hdr10, dolbyvision and hlg) v20
VideoPlayer.VideoCodec Shows the video codec of the currently playing video (common values: see ListItem.VideoCodec)
VideoPlayer.VideoResolution Shows the video resolution of the currently playing video (possible values: see ListItem.VideoResolution)
VideoPlayer.VideoAspect Shows the aspect ratio of the currently playing video (possible values: see ListItem.VideoAspect)
VideoPlayer.AudioCodec Shows the audio codec of the currently playing video, optionally 'n' defines the number of the audiostream (common values: see ListItem.AudioCodec)
VideoPlayer.AudioChannels Shows the number of audio channels of the currently playing video (possible values: see ListItem.AudioChannels)
VideoPlayer.AudioLanguage Shows the language of the audio of the currently playing video (possible values: see ListItem.AudioLanguage)
VideoPlayer.SubtitlesLanguage Shows the language of the subtitle of the currently playing video (possible values: see ListItem.SubtitlesLanguage)
VideoPlayer.StereoscopicMode Shows the stereoscopic mode of the currently playing video (possible values: see ListItem.StereoscopicMode)
VideoPlayer.EndTime End date of the currently playing programme (PVR).
VideoPlayer.NextTitle Title of the programme that will be played next (PVR).
VideoPlayer.NextGenre Genre of the programme that will be played next (PVR).
VideoPlayer.NextGenre(separator) Returns
A list of genres of the programme that will be played next (PVR), separated by given separator, or if no separator was given separated by the advanced settings value \“itemseparator\” for videos. Possible values for separator: comma, pipe, slash, cr, dash, colon, semicolon, fullstop.
v22
VideoPlayer.NextPlot Plot of the programme that will be played next (PVR).
VideoPlayer.NextPlotOutline Plot outline of the programme that will be played next (PVR).
VideoPlayer.NextStartTime Start time of the programme that will be played next (PVR).
VideoPlayer.NextEndTime End time of the programme that will be played next (PVR).
VideoPlayer.NextDuration Duration of the programme that will be played next (PVR).
VideoPlayer.ChannelName Name of the curently tuned channel (PVR).
VideoPlayer.ChannelNumberLabel Channel and subchannel number of the tv channel that's currently playing (PVR).
VideoPlayer.ChannelGroup Group of the curently tuned channel (PVR).
VideoPlayer.ParentalRating Parental rating of the currently playing programme (PVR).
VideoPlayer.DBID The database id of the currently playing video. (supports .offset() and .position()) v17
VideoPlayer.UniqueID() Returns the UniqueID of the currently playing video v19
VideoPlayer.TvShowDBID Returns the tv show DBID of the currently playing episode v19

Playlist

InfoLabels Description Version
Playlist.Length(media) Total size of the current playlist. optional parameter media is either video or music.
Playlist.Position(media) Position of the current item in the current playlist. optional parameter media is either video or music.
Playlist.Random Returns 'On' or 'Off'
Playlist.Repeat Returns string ID's 592 (Repeat One), 593 (Repeat All), or 594 (Repeat Off)

PVR

InfoLabels Description Version
PVR.NowRecordingTitle Title of the programme being recorded
PVR.NowRecordingDateTime Start date and time of the current recording
PVR.NowRecordingChannel Channel number that's being recorded
PVR.NextRecordingTitle Title of the next programme that will be recorded
PVR.NextRecordingDateTime Start date and time of the next recording
PVR.NextRecordingChannel Channel name of the next recording
PVR.BackendName Name of the backend being used
PVR.BackendVersion version of the backend that's being used
PVR.BackendHost Backend hostname
PVR.BackendDiskSpace Available diskspace on the backend
PVR.BackendChannels Number of available channels the backend provides
PVR.BackendTimers Number of timers set for the backend
PVR.BackendRecordings Number of recording available on the backend
PVR.BackendDiskspace Free diskspace available for recordings on the backend
PVR.BackendNumber Backend number
PVR.ClientCount Number of PVR clients enabled v22
PVR.TotalDiscSpace Total diskspace available for recordings
PVR.NextTimer Next timer date
PVR.EpgEventDuration[(format)] Returns the duration of the currently played title on TV. See ListItem.Duration for optinional formatting options
PVR.EpgEventElapsedTime[(format)] Returns the time position of the currently played title on TV. See ListItem.Duration for optinional formatting options
PVR.EpgEventRemainingTime[(format)] Returns the remaining time for currently playing epg event. See ListItem.Duration for optinional formatting options v18
PVR.EpgEventFinishTime[(format)] Returns the time the currently playing epg event will end. See ListItem.Duration for optinional formatting options v18
PVR.EpgEventSeekTime[(format)] Returns the seek time of the currently playing epg event. See ListItem.Duration for optinional formatting options v18
PVR.EpgEventProgress Returns the position of currently played title on TV as integer
PVR.TimeShiftStart[(format)] Start position of the timeshift. See ListItem.Duration for optinional formatting options
PVR.TimeShiftEnd[(format)] End position of the timeshift. See ListItem.Duration for optinional formatting options
PVR.TimeShiftCur[(format)] Current position of the timeshift. See ListItem.Duration for optinional formatting options
PVR.TimeShiftOffset[(format)] Current offset of the timeshift. See ListItem.Duration for optinional formatting options
PVR.TimeShiftProgress Returns the position of currently timeshifted title on TV as interger
PVR.ActStreamClient Stream client name
PVR.ActStreamDevice Stream device name
PVR.ActStreamStatus Status of the stream
PVR.ActStreamSignal Signal quality of the stream
PVR.ActStreamSnr Signal to noise ratio of the stream
PVR.ActStreamBer Bit error rate of the stream
PVR.ActStreamUnc UNC value of the stream
PVR.ActStreamVideoBitRate Video bitrate of the stream
PVR.ActStreamAudioBitRate Audio bitrate of the stream
PVR.ActStreamDolbyBitRate Dolby bitrate of the stream
PVR.ActStreamProgrSignal Signal quality of the programme
PVR.ActStreamProgrSnr Signal to noise ratio of the programme
PVR.ActStreamEncryptionName Encryption used on the stream
PVR.TVNowRecordingTitle Title of the tv programme being recorded v17
PVR.TVNowRecordingDateTime Start date and time of the current tv recording v17
PVR.TVNowRecordingChannel Channel name of the current tv recording v17
PVR.TVNowRecordingChannelIcon Icon of the current recording TV channel v17
PVR.TVNextRecordingTitle Title of the next tv programme that will be recorded v17
PVR.TVNextRecordingDateTime Start date and time of the next tv recording v17
PVR.TVNextRecordingChannel Channel name of the next tv recording v17
PVR.TVNextRecordingChannelIcon Icon of the next recording tv channel v17
PVR.RadioNowRecordingTitle Title of the radio programme being recorded v17
PVR.RadioNowRecordingDateTime Start date and time of the current radio recording v17
PVR.RadioNowRecordingChannel Channel name of the current radio recording v17
PVR.RadioNowRecordingChannelIcon Icon of the current recording radio channel v17
PVR.RadioNextRecordingTitle Title of the next radio programme that will be recorded v17
PVR.RadioNextRecordingDateTime Start date and time of the next radio recording v17
PVR.RadioNextRecordingChannel Channel name of the next radio recording v17
PVR.ChannelNumberInput Label displaying the number the user entered on remote or keyboard v18
PVR.TimeshiftProgressDuration Returns the duration of the PVR timeshift progress in the format hh:mm:ss. hh: will be omitted if hours value is zero v18
PVR.TimeshiftProgressDuration(format) Returns the duration of the PVR timeshift progress in different formats, hours (hh), minutes (mm) or seconds (ss) v18
PVR.TimeshiftProgressStartTime Returns the start time of the PVR timeshift progress in the format hh:mm:ss. hh: will be omitted if hours value is zero v18
PVR.TimeshiftProgressStartTime(format) Returns the start time of the PVR timeshift progress in different formats, hours (hh), minutes (mm) or seconds (ss) v18
PVR.TimeshiftProgressEndTime Returns the end time of the PVR timeshift progress in the format hh:mm:ss. hh: will be omitted if hours value is zero v18
PVR.TimeshiftProgressEndTime(format) Returns the end time of the PVR timeshift progress in different formats, hours (hh), minutes (mm) or seconds (ss) v18
PVR.TimeshiftProgressPlayPos Returns the percentage of the current play position within the PVR timeshift progress v18
PVR.TimeshiftProgressEpgStart Returns the percentage of the start of the currently playing epg event within the PVR timeshift progress v18
PVR.TimeshiftProgressEpgEnd Returns the percentage of the end of the currently playing epg event within the PVR timeshift progress v18
PVR.TimeshiftProgressBufferStart Returns the percentage of the start of the timeshift buffer within the PVR timeshift progress v18
PVR.TimeshiftProgressBufferEnd Returns the percentage of the end of the timeshift buffer within the PVR timeshift progress v18
PVR.TimeShiftSeekbar This is the equivalent of Player.Seekbar, but for LiveTV (can be used in a slider control and indicates the position being seeked to) v19

RDS

InfoLabels Description Version
RDS.AudioLanguage The from RDS reported audio language of channel
RDS.ChannelCountry Country where the radio channel is sended
RDS.GetLine(number) Returns the last sended RDS text messages on givern number, 0 is thelast and 4 rows are supported (0-3)
RDS.Title Title of item; e.g. track title of an album (Only be available on RadiotextPlus)
RDS.Artist A person or band/collective generally considered responsible for the work (Only be available on RadiotextPlus)
RDS.Band Band/orchestra/accompaniment/musician (Only be available on RadiotextPlus)
RDS.Composer Name of the original composer/author (Only be available on RadiotextPlus)
RDS.Conductor The artist(s) who performed the work. In classical music this would bethe conductor (Only be available on RadiotextPlus)
RDS.Album The collection name to which this track belongs (Only be available on RadiotextPlus)
RDS.TrackNumber The track number of the item on the album on which it was originallyreleased. (Only be available on RadiotextPlus)
RDS.RadioStyle The from radio channel used style of currently played part, e.g "popmusic", "news" or "weather"
RDS.Comment Radio station comment string if available (Only be available on RadiotextPlus)
RDS.InfoNews Message / headline (if available) (Only be available on RadiotextPlus)
RDS.InfoNewsLocal Local information news sended from radio channel (if available) (Only be available on RadiotextPlus)
RDS.InfoStock Quote information; either as one part or as several distinct parts:"name 99latest value 99change 99high 99low 99volume" (if available) (Only be available on RadiotextPlus)
RDS.InfoStockSize Number of rows present in stock information (Only be available on RadiotextPlus)
RDS.InfoSport Result of a game; either as one part or as several distinct parts:"match 99result", e.g. "Bayern München : Borussia 995:5" (if available) (Only be available on RadiotextPlus)
RDS.InfoSportSize Number of rows present in sport information (Only be available on RadiotextPlus)
RDS.InfoLottery Raffle / lottery: "key word 99values" (if available) (Only be available on RadiotextPlus)
RDS.InfoLotterySize Number of rows present in lottery information (Only be available on RadiotextPlus)
RDS.InfoWeather Weather informations sended from radio channel (if available) (Only be available on RadiotextPlus)
RDS.InfoWeatherSize Number of rows present in weather information (Only be available on RadiotextPlus)
RDS.InfoCinema Information about movies in cinema (if available) (Only be available on RadiotextPlus)
RDS.InfoCinemaSize Number of rows present in cinema information (Only be available on RadiotextPlus)
RDS.InfoHoroscope Horoscope; either as one part or as two distinct parts:"key word 99text", e.g. "sign of the zodiac 99blablabla" (if available) (Only be available on RadiotextPlus)
RDS.InfoHoroscopeSize Number of rows present in horoscope information (Only be available on RadiotextPlus)
RDS.InfoOther Other information, not especially specified: "key word 99info" (if available) (Only be available on RadiotextPlus)
RDS.InfoOtherSize Number of rows present with other informations (Only be available on RadiotextPlus)
RDS.ProgStation Name of the radio channel@note becomes also be set from epg if from RDS not available
RDS.ProgNow Now played program name@note becomes also be set from epg if from RDS not available
RDS.ProgNext Next played program name (if available)@note becomes also be set from epg if from RDS not available
RDS.ProgHost Name of the host of the radio show
RDS.ProgEditStaff Name of the editorial staff; e.g. name of editorial journalist (Only be available on RadiotextPlus)
RDS.ProgHomepage Link to radio station homepage (Only be available on RadiotextPlus)
RDS.ProgStyle Human readable string about radiostyle defined from RDS or RBDS
RDS.PhoneHotline The telephone number of the radio station's hotline (Only be available on RadiotextPlus)
RDS.PhoneStudio The telephone number of the radio station's studio (Only be available on RadiotextPlus)
RDS.SmsStudio The sms number of the radio stations studio (to send directly a sms to the studio) (if available) (Only be available on RadiotextPlus)
RDS.EmailHotline The email adress of the radio stations hotline (if available) (Only be available on RadiotextPlus)
RDS.EmailStudio The email adress of the radio stations studio (if available) (Only be available on RadiotextPlus)

Skin

InfoLabels Description Version
Skin.CurrentTheme Returns the current selected skin theme.
Skin.CurrentColourTheme Returns the current selected colour theme of the skin.
Skin.Font Returns the current fontset from Font.xml. v18 addition
Skin.String(name) Returns the user-set skin string, set via the Skin.SetString(name) List of Built In Functions. Allows skinners to have user-customisable labels.
Skin.AspectRatio Returns the closest aspect ratio match using the resolution info from the skin's addon.xml file.

Slideshow

InfoLabels Description Version
Slideshow.Altitude Shows the altitude in meters where the current picture was taken. This is the value of the EXIF GPSInfo.GPSAltitude tag.
Slideshow.Aperture Shows the F-stop used to take the current picture. This is the value of the EXIF FNumber tag (hex code 0x829D).
Slideshow.Author Shows the name of the person involved in writing about the current picture. This is the value of the IPTC Writer tag (hex code 0x7A).
Slideshow.Byline Shows the name of the person who created the current picture. This is the value of the IPTC Byline tag (hex code 0x50).
Slideshow.BylineTitle Shows the title of the person who created the current picture. This is the value of the IPTC BylineTitle tag (hex code 0x55).
Slideshow.CameraMake Shows the manufacturer of the camera used to take the current picture. This is the value of the EXIF Make tag (hex code 0x010F).
Slideshow.CameraModel Shows the manufacturer's model name or number of the camera used to take the current picture. This is the value of the EXIF Model tag (hex code 0x0110).
Slideshow.Caption Shows a description of the current picture. This is the value of the IPTC Caption tag (hex code 0x78).
Slideshow.Category Shows the subject of the current picture as a category code. This is the value of the IPTC Category tag (hex code 0x0F).
Slideshow.CCDWidth Shows the width of the CCD in the camera used to take the current picture. This is calculated from three EXIF tags (0xA002 * 0xA210 / 0xA20e).
Slideshow.City Shows the city where the current picture was taken. This is the value of the IPTC City tag (hex code 0x5A).
Slideshow.Colour Shows whether the current picture is "Colour" or "Black and White".
Slideshow.CopyrightNotice Shows the copyright notice of the current picture. This is the value of the IPTC Copyright tag (hex code 0x74).
Slideshow.Country Shows the full name of the country where the current picture was taken. This is the value of the IPTC CountryName tag (hex code 0x65).
Slideshow.CountryCode Shows the country code of the country where the current picture was taken. This is the value of the IPTC CountryCode tag (hex code 0x64).
Slideshow.Credit Shows who provided the current picture. This is the value of the IPTC Credit tag (hex code 0x6E).
Slideshow.DigitalZoom Shows the digital zoom ratio when the current picture was taken. This is the value of the EXIF .DigitalZoomRatio tag (hex code 0xA404).
Slideshow.EXIFComment Shows a description of the current picture. This is the value of the EXIF User Comment tag (hex code 0x9286). This is the same value as Slideshow.SlideComment.
Slideshow.EXIFDate Shows the localized date of the current picture. The short form of the date is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.
Slideshow.EXIFDescription Shows a short description of the current picture. The SlideComment, EXIFComment, or Caption values might contain a longer description. This is the value of the EXIF ImageDescription tag (hex code 0x010E).
Slideshow.EXIFSoftware Shows the name and version of the firmware used by the camera that took the current picture. This is the value of the EXIF Software tag (hex code 0x0131).
Slideshow.EXIFTime Shows the date/timestamp of the current picture. The localized short form of the date and time is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.
Slideshow.Exposure Shows the class of the program used by the camera to set exposure when the current picture was taken. Values include "Manual", "Program (Auto)", "Aperture priority (Semi-Auto)", "Shutter priority (semi-auto)", etc. This is the value of the EXIF ExposureProgram tag (hex code 0x8822).
Slideshow.ExposureBias Shows the exposure bias of the current picture. Typically this is a number between -99.99 and 99.99. This is the value of the EXIF ExposureBiasValue tag (hex code 0x9204).
Slideshow.ExposureMode Shows the exposure mode of the current picture. The possible values are "Automatic", "Manual", and "Auto bracketing". This is the value of the EXIF ExposureMode tag (hex code 0xA402).
Slideshow.ExposureTime Shows the exposure time of the current picture, in seconds. This is the value of the EXIF ExposureTime tag (hex code 0x829A). If the ExposureTime tag is not found, the ShutterSpeedValue tag (hex code 0x9201) might be used.
Slideshow.Filedate Shows the file date of the current picture
Slideshow.Filename Shows the file name of the current picture
Slideshow.Filesize Shows the file size of the current picture
Slideshow.FlashUsed Shows the status of flash when the current picture was taken. The value will be either "Yes" or "No", and might include additional information. This is the value of the EXIF Flash tag (hex code 0x9209).
Slideshow.FocalLength Shows the focal length of the lens, in mm. This is the value of the EXIF FocalLength tag (hex code 0x920A).
Slideshow.FocusDistance Shows the distance to the subject, in meters. This is the value of the EXIF SubjectDistance tag (hex code 0x9206).
Slideshow.Headline Shows a synopsis of the contents of the current picture. This is the value of the IPTC Headline tag (hex code 0x69).
Slideshow.ImageType Shows the color components of the current picture. This is the value of the IPTC ImageType tag (hex code 0x82).
Slideshow.IPTCDate Shows the date when the intellectual content of the current picture was created, rather than when the picture was created. This is the value of the IPTC DateCreated tag (hex code 0x37).
Slideshow.ISOEquivalence Shows the ISO speed of the camera when the current picture was taken. This is the value of the EXIF ISOSpeedRatings tag (hex code 0x8827).
Slideshow.Keywords Shows keywords assigned to the current picture. This is the value of the IPTC Keywords tag (hex code 0x19).
Slideshow.Latitude Shows the latitude where the current picture was taken (degrees, minutes, seconds North or South). This is the value of the EXIF GPSInfo.GPSLatitude and GPSInfo.GPSLatitudeRef tags.
Slideshow.LightSource Shows the kind of light source when the picture was taken. Possible values include "Daylight", "Fluorescent", "Incandescent", etc. This is the value of the EXIF LightSource tag (hex code 0x9208).
Slideshow.LongEXIFDate Shows only the localized date of the current picture. The long form of the date is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.
Slideshow.LongEXIFTime Shows the date/timestamp of the current picture. The localized long form of the date and time is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. if the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.
Slideshow.Longitude Shows the longitude where the current picture was taken (degrees, minutes, seconds East or West). This is the value of the EXIF GPSInfo.GPSLongitude and GPSInfo.GPSLongitudeRef tags.
Slideshow.MeteringMode Shows the metering mode used when the current picture was taken. The possible values are "Center weight", "Spot", or "Matrix". This is the value of the EXIF MeteringMode tag (hex code 0x9207).
Slideshow.ObjectName Shows a shorthand reference for the current picture. This is the value of the IPTC ObjectName tag (hex code 0x05).
Slideshow.Orientation Shows the orientation of the current picture. Possible values are "Top Left", "Top Right", "Left Top", "Right Bottom", etc. This is the value of the EXIF Orientation tag (hex code 0x0112).
Slideshow.Path Shows the file path of the current picture
Slideshow.Process Shows the process used to compress the current picture
Slideshow.ReferenceService Shows the Service Identifier of a prior envelope to which the current picture refers. This is the value of the IPTC ReferenceService tag (hex code 0x2D).
Slideshow.Resolution Shows the dimensions of the current picture (Width x Height)
Slideshow.SlideComment Shows a description of the current picture. This is the value of the EXIF User Comment tag (hex code 0x9286). This is the same value as Slideshow.EXIFComment.
Slideshow.SlideIndex Shows the slide index of the current picture
Slideshow.Source Shows the original owner of the current picture. This is the value of the IPTC Source tag (hex code 0x73).
Slideshow.SpecialInstructions Shows other editorial instructions concerning the use of the current picture. This is the value of the IPTC SpecialInstructions tag (hex code 0x28).
Slideshow.State Shows the State/Province where the current picture was taken. This is the value of the IPTC ProvinceState tag (hex code 0x5F).
Slideshow.Sublocation Shows the location within a city where the current picture was taken - might indicate the nearest landmark. This is the value of the IPTC SubLocation tag (hex code 0x5C).
Slideshow.SupplementalCategories Shows supplemental category codes to further refine the subject of the current picture. This is the value of the IPTC SuppCategory tag (hex code 0x14).
Slideshow.TimeCreated Shows the time when the intellectual content of the current picture was created, rather than when the picture was created. This is the value of the IPTC TimeCreated tag (hex code 0x3C).
Slideshow.TransmissionReference Shows a code representing the location of original transmission of the current picture. This is the value of the IPTC TransmissionReference tag (hex code 0x67).
Slideshow.Urgency Shows the urgency of the current picture. Values are 1-9. The 1 is most urgent. Some image management programs use urgency to indicate picture rating, where urgency 1 is 5 stars and urgency 5 is 1 star. Urgencies 6-9 are not used for rating. This is the value of the IPTC Urgency tag (hex code 0x0A).
Slideshow.WhiteBalance Shows the white balance mode set when the current picture was taken. The possible values are "Manual" and "Auto". This is the value of the EXIF WhiteBalance tag (hex code 0xA403).

System

InfoLabels Description Version
System.Time Current time
System.Time(format) Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss). (xx) option added after dharma
System.Date Current date
System.Date(format) Show current date using format, available markings: d (day of month 1-31), dd (day of month 01-31), ddd (short day of the week Mon-Sun), DDD (long day of the week Monday-Sunday), m (month 1-12), mm (month 01-12), mmm (short month name Jan-Dec), MMM (long month name January-December), yy (2-digit year), yyyy (4-digit year). Added after dharma.
System.AlarmPos Shutdown Timer position
System.BatteryLevel Returns the remaining battery level in range 0-100
System.FreeSpace Total Freespace on the drive
System.UsedSpace Total Usedspace on the drive
System.TotalSpace Totalspace on the drive
System.UsedSpacePercent Total Usedspace Percent on the drive
System.FreeSpacePercent Total Freespace Percent on the drive
System.CPUTemperature Current CPU temperature
System.CpuUsage Displays the cpu usage for each individual cpu core.
System.CoreUsage(id) Displays the usage of the cpu core with the given 'id'
System.GPUTemperature Current GPU temperature
System.FanSpeed Current fan speed
System.BuildVersion version of build
System.BuildDate Date of build
System.FriendlyName Returns the Kodi instance name. It will auto append (%hostname%) in case the device name was not changed. e.g. "Kodi (htpc)"
System.FPS Current rendering speed (frames per second)
System.FreeMemory Amount of free memory in Mb
System.Memory(format) Available formats: used, used.percent, free, free.percent, total
System.ScreenMode Screenmode (e.g. windowed / fullscreen)
System.ScreenWidth Width of screen in pixels
System.ScreenHeight Height of screen in pixels
System.StartupWindow The Window Kodi will load on startup
System.CurrentWindow Current Window we are in
System.CurrentControl Current focused control
System.CurrentControlID ID of the currently focused control.
System.DVDLabel Label of the disk in the DVD-ROM drive
System.HddTemperature Hdd temperature
System.OSVersionInfo System name + kernel version
System.KernelVersion (deprecated) System name + kernel version
System.Uptime System current uptime
System.TotalUptime System total uptime
System.CpuFrequency System cpu frequency
System.ScreenResolution Screen resolution
System.VideoEncoderInfo video encoder info
System.InternetState Will return the internet state, 'connected' or 'not connected' (localized)
System.Language Shows the current language
System.ProfileName Shows the User name of the currently logged in Kodi user
System.ProfileCount Shows the number of defined profiles
System.ProfileAutoLogin The profile Kodi will auto login to
System.Progressbar The percentage of the currently active progress.
System.StereoscopicMode The prefered stereoscopic mode (settings > video > playback)
System.TemperatureUnits Shows Celsius or Fahrenheit symbol
System.AddonTitle(id) Returns the title of the addon with the given id
System.AddonVersion(id) Returns the version of the addon with the given id
System.BuildVersionCode The internal version of the kodi build v19
System.BuildVersionGit The git version (sha) of the kodi build v19
System.AddonUpdateCount The number of available addon updates v19

Visualisation

InfoLabels Description Version
Visualisation.Preset Shows the current preset of the visualisation.
Visualisation.Name Shows the name of the visualisation.

Weather labels

InfoLabels Description Version
Weather.Conditions Current weather conditions – this is looked up in a background process.
Weather.Temperature Current weather temperature
Weather.Location City/town which the above two items are for
Weather.fanartcode Current weather fanartcode.
Weather.plugin Current weather plugin.

Window

InfoLabels Description Version
Window([window]).Property(key) Window property. (key can be any value, optional window can be id or name)
Window.Property(xmlfile) Displays the name of the xml file currently shown
Window.Property(IsRadio) Returns "true" if the window is a radio window, empty string otherwise (for use in the PVR windows)
Window(AddonBrowser).Property(Updated) Shows the date and time the addon repo was last checked for updates
Window.Property(Addon.ID) Returns the id of the selected addon, in DialogAddonSettings.xml
Window(Home).Property(key) The home window has the following info labels.

Movies.Count, Movies.Watched, Movies.UnWatched, TVShows.Count, TVShows.Watched, TVShows.UnWatched, Episodes.Count, Episodes.Watched, Episodes.UnWatched, MusicVideos.Count, MusicVideos.Watched, MusicVideos.UnWatched, Music.SongsCount, Music.AlbumsCount, Music.ArtistsCount

LatestMovie.[1-10].Title, LatestMovie.[1-10].Year, LatestMovie.[1-10].RunningTime, LatestMovie.[1-10].Rating, LatestMovie.[1-10].Plot, LatestMovie.[1-10].Trailer, LatestMovie.[1-10].Thumb, LatestMovie.[1-10].Fanart, LatestMovie.[1-10].Path

LatestEpisode.[1-10].ShowTitle, LatestEpisode.[1-10].EpisodeTitle, LatestEpisode.[1-10].EpisodeNo, LatestEpisode.[1-10].EpisodeSeason, LatestEpisode.[1-10].EpisodeNumber, LatestEpisode.[1-10].Rating, LatestEpisode.[1-10].Plot, LatestEpisode.[1-10].Thumb, LatestEpisode.[1-10].ShowThumb, LatestEpisode.[1-10].SeasonThumb, LatestEpisode.[1-10].Fanart, LatestEpisode.[1-10].Path

LatestMusicVideo.[1-10].Title, LatestMusicVideo.[1-10].Thumb, LatestMusicVideo.[1-10].Year, LatestMusicVideo.[1-10].Plot, LatestMusicVideo.[1-10].RunningTime, LatestMusicVideo.[1-10].Path, LatestMusicVideo.[1-10].Artist, LatestMusicVideo.[1-10].Fanart

LatestSong.[1-10].Title, LatestSong.[1-10].Artist, LatestSong.[1-10].Album, LatestSong.[1-10].Year, LatestSong.[1-10].Rating, LatestSong.[1-10].Thumb, LatestSong.[1-10].Fanart, LatestSong.[1-10].Path

LatestAlbum.[1-10].Title, LatestAlbum.[1-10].Artist, LatestAlbum.[1-10].Year, LatestAlbum.[1-10].Rating, LatestAlbum.[1-10].Thumb, LatestAlbum.[1-10].Fanart, LatestAlbum.[1-10].Path

Window(Weather).Property(key) The weather window has the following info labels.

Location, Updated, Current.Condition, Current.Temperature, Current.FeelsLike, Current.UVIndex, Current.Wind (From <wind dir.> at <speed> <unit>), Current.WindSpeed, Current.WindDirection, Current.DewPoint, Current.Humidity, Day[0-6].Title, Day[0-6].HighTemp, Day[0-6].LowTemp, Day[0-6].Outlook, WeatherProvider


Data set in Current.Temperature, Current.FeelsLike, Day[0-6].HighTemp, Day[0-6].LowTemp should be provided in Celsius, and will be autoconverted according to System.TemperatureUnits

Images Available in Kodi

See Artwork/Accessing with skins and JSON-RPC for the general pattern of accessing artwork for media items. Below is a list of other possible images available as InfoLabels.

InfoLabels Description Version
ListItem.Art(type) Artwork for the current listitem.
Fanart.Image Fanart image for the parent TV Show. Note: Deprecated, use ListItem.Art(tvshow.fanart) instead.
ListItem.Thumb Shows the thumbnail (if it exists) of the currently selected item in a list or thumb control. Note: Deprecated but still available, returns the same as ListItem.Art(thumb).
ListItem.Icon Shows the thumbnail (if it exists) of the currently selected item in a list or thumb control. If no thumbnail image exists, it will show the default icon.
ListItem.ActualIcon Shows the default icon of the currently selected item in a list or thumb control.
ListItem.Overlay Shows the Overlay Icon status (compressed file [OverlayRAR.png], watched [OverlayWatched.png], unwatched [OverlayUnwatched.png], locked [OverlayLocked.png]) of the currently selected item in a list or thumb control.
ListItem.EPGEventIcon Returns the icon of the EPG programme (if available). v18
ListItem.Property(Fanart_Image) Fanart Image currently selected item or of the parent TV show. Note: Deprecated, use ListItem.Art(fanart) or ListItem.Art(tvshow.fanart) instead.
MusicPlayer.Cover Cover of currently playing album
MusicPlayer.Property(Fanart_Image) Fanart image of the currently playing artist
Player.Art(type) Artwork for the currently playing item.
Player.Icon Shows the thumbnail (if it exists) of the currently playing item. If no thumbnail image exists, it will show the icon. v18
Player.StarRating Returns a value of 0 to 5 as a graphical display from images named rating0.png to rating5.png of the skin
Pvr.NowRecordingChannelIcon Channel icon of the programme currently being recorded.
Pvr.NextRecordingChannelIcon Channel icon of the programme that will be recorded next.
Pvr.EPGEventIcon Returns the icon of the currently playing EPG programme (if available). v18
Skin.String(name) Returns the image or image folder set by the user via a Skin.SetPath(name) or Skin.SetImage(name) List of Built In Functions. Allows skinners to have user-customisable images and multiimages.
System.AddonIcon(id) Returns the Icon of the specified addon. Instead of specifying the id directly, one can also use an infolabel (e.g. $INFO[Skin.String(Foo)])
System.ProfileThumb Shows the Thumbnail image of the currently logged in Kodi user
VideoPlayer.Cover Cover of currently playing movie. Note: Deprecated, use Player.Art(type) instead.
Weather.ConditionsIcon Image of current weather conditions (NOTE: Can be used to load/refresh weather conditions)
Window([window]).Property(key) Window property. (key can be any value, optional window can be id or name)
Window(Weather).Property(key) The weather window has the following info images.

Current.ConditionIcon, Day[0-6].OutlookIcon, Current.FanartCode, Day[0-6].FanartCode, WeatherProviderLogo



Return to top