InfoLabels: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
No edit summary
(111 intermediate revisions by 16 users not shown)
Line 4: Line 4:


An up-to-date list can be found here [https://github.com/xbmc/xbmc/blob/master/xbmc/GUIInfoManager.cpp GUIInfoManager.cpp]
An up-to-date list can be found here [https://github.com/xbmc/xbmc/blob/master/xbmc/GUIInfoManager.cpp GUIInfoManager.cpp]
=== ADSP ===
{| class="prettytable" width="100%"
! InfoLabels
! style="80%" | Definition
|-
|  ADSP.ActiveStreamType
|-
|  ADSP.DetectedStreamType
|-
|  ADSP.MasterName
|-
|  ADSP.MasterInfo
|-
|  ADSP.MasterOwnIcon
|-
|  ADSP.MasterOverrideIcon
|}


=== Container ===
=== Container ===


{| class="prettytable" width="100%"
{| class="wikitable sortable" width="100%"
! InfoLabels
! InfoLabels
! style="80%" | Definition
! style="80%" | Definition
! Version
|-
|  Container.Content
|  Shows content of the current container
|
|-
|-
|  Container.FolderPath
|  Container.FolderPath
|  Shows complete path of currently displayed folder
|  Shows complete path of currently displayed folder
|
|-
|-
|  Container.FolderName
|  Container.FolderName
|  Shows top most folder in currently displayed folder
|  Shows top most folder in currently displayed folder
|
|-
|-
|  Container.Viewmode
|  Container.Viewmode
|  Returns the current viewmode (list, icons etc.)
|  Returns the current viewmode (list, icons etc.)
|
|-
|-
|  Container.SortMethod
|  Container.SortMethod
|  Returns the current sort method (name, year, rating, etc.)
|  Returns the current sort method (returns the localized name of: title, year, rating, etc.)
|
|-
|-
|  Container.SortOrer
|  Container.SortOrder
|  Returns the current sort order (Ascending/Descending)
|  Returns the current sort order (Ascending/Descending)
|
|-
|-
|  Container.PluginName
|  Container.PluginName
|  Returns the current plugins base folder name
|  Returns the current plugins base folder name
|
|-
|-
|  Container.PluginCategory
|  Container.PluginCategory
|  Returns the current plugins category (set by the scripter)
|  Returns the current plugins category (set by the scripter)
|
|-
|-
|  Container.ShowPlot
|  Container.ShowPlot
|  Returns the TV Show Plot of the current container and can be used at season and episode level
|  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 addition
|-
|-
|  Container(id).NumPages
|  Container(id).NumPages
|  Number of pages in the container with given id.  If no id is specified it grabs the current container.
|  Number of pages in the container with given id.  If no id is specified it grabs the current container.
|
|-
|-
|  Container(id).NumItems
|  Container(id).NumItems
|  Number of items in the container or grouplist with given id.  If no id is specified it grabs the current container.
|  Number of items in the container or grouplist with given id.  If no id is specified it grabs the current container.
|
|-
|  Container(id).NumAllItems
|  Number of all items in the container or grouplist with given id including parent folder item.
|  v18
|-
|  Container(id).NumNonFolderItems
|  Number of items in the container or grouplist with given id excluding all folder items.
|  v18
|-
|-
|  Container(id).CurrentPage
|  Container(id).CurrentPage
|  Current page in the container with given id.  If no id is specified it grabs the current container.
|  Current page in the container with given id.  If no id is specified it grabs the current container.
|
|-
|-
|  Container(id).CurrentItem
|  Container(id).CurrentItem
|  Current item in the container or grouplist with given id.  If no id is specified it grabs the current container.
|  Current absolute item in the container or grouplist with given id.  If no id is specified it grabs the current container.
|
|-
|-
|  Container(id).Position
|  Container(id).Position
|  Returns the current focused position of Container (id) as a numeric label.
|  Returns the current focused position of the container / grouplist (id) as a numeric label.
|
|-
|  Container(id).Column
|  Returns the column number of the focused position in a panel container.
|
|-
|  Container(id).Row
|  Returns the row number of the focused position in a panel container.
|
|-
|-
|  Container(id).Totaltime
|  Container.Totaltime
|  Returns the total time of all items in the current container
|  Returns the total time of all items in the current container
|
|-
|-
|  Container(id).TotalWatched
|  Container.TotalWatched
|  Returns the number of watched items in the current container
|  Returns the number of watched items in the current container
|
|-
|-
|  Container(id).TotalUnWatched
|  Container.TotalUnWatched
|  Returns the number of unwatched items in the current container
|  Returns the number of unwatched items in the current container
|
|-
|-
|  Container(id).ListItem(offset).Label
|  Container(id).ListItem(offset).Label
|  Shows ListItem.Label for a specific List or Panel Container with a offset ''( eg: Container(50).Listitem(2).Label )''
|  Shows ListItem.Label for a specific List or Panel Container with a offset ''( eg: Container(50).Listitem(2).Label )''
|
|-
|-
|  Container(id).ListItem(offset).Label2
|  Container(id).ListItem(offset).Label2
|  Shows ListItem.Label2 for a specific List or Panel Container with a offset ''( eg: Container(50).Listitem(-2).Label2 )''
|  Shows ListItem.Label2 for a specific List or Panel Container with a offset ''( eg: Container(50).Listitem(-2).Label2 )''
|
|-
|-
|  Container(id).ListItem(offset).Icon
|  Container(id).ListItem(offset).Icon
|  Shows ListItem.Icon for a specific List or Panel Container with a offset ''( eg: Container(52).Listitem(1).Icon)''
|  Shows ListItem.Icon for a specific List or Panel Container with a offset ''( eg: Container(52).Listitem(1).Icon)''
|
|-
|-
|  Container(id).ListItem(offset).ActualIcon
|  Container(id).ListItem(offset).ActualIcon
|  Shows ListItem.ActualIcon for a specific List or Panel Container with a offset ''( eg: Container(50).Listitem(0).ActualIcon )''
|  Shows ListItem.ActualIcon for a specific List or Panel Container with a offset ''( eg: Container(50).Listitem(0).ActualIcon )''
|
|-
|-
|  Container(id).ListItem(offset).Thumb
|  Container(id).ListItem(offset).Thumb
|  Shows ListItem.Thumb for a specific List or Panel Container with a offset ''( eg: Container(50).Listitem(0).Thumb )''
|  Shows ListItem.Thumb for a specific List or Panel Container with a offset ''( eg: Container(50).Listitem(0).Thumb )''
|
|-
|-
|  Container(id).ListItemNoWrap(offset).Property
|  Container(id).ListItemNoWrap(offset).Property
|  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 )''
|  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 )''
|
|-
|-
|  Container(id).ListItemPosition(id).[infolabel]
|  Container(id).ListItemPosition(id).[infolabel]
|  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 )''
|  Shows the infolabel for an item at position 'id' in a Container. the id is an offset to the first *visible* item of the container. ''( eg: Container(50).ListItemPosition(4).Genre )''
|
|-
|-
|  Container(id).ListItemAbsolute(id).[infolabel]
|  Container(id).ListItemAbsolute(id).[infolabel]
|  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 )''
|  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 )''
|
|-
|-
|  Container.Property(addoncategory)
|  Container.Property(addoncategory)
|  Returns the current add-on category
|  Returns the current add-on category
|
|-
|-
|  Container.Property(reponame)
|  Container.Property(reponame)
|  Returns the current add-on repository name
|  Returns the current add-on repository name
|
|-
|  Container.ViewCount
| The number of available skin view modes for the current container listing.
|
|}
|}


Line 119: Line 150:
! InfoLabels
! InfoLabels
! style="80%" | Definition
! style="80%" | Definition
! Version
|-
|-
|  Control.GetLabel(id)[.index()]
|  Control.GetLabel(id)[.index()]
|  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. Optionally you can specify index(1) to retrieve label2 from an Edit control.
|
|}
|}


=== Fanart ===
=== Fanart ===


{| class="prettytable" width="100%"
{| class="wikitable sortable" width="100%"
! InfoLabels
! InfoLabels
! style="80%" | Definition
! style="80%" | Definition
! Version
|-
|-
|  Fanart.Color1
|  Fanart.Color1
|  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.  Colors are arranged Lightest to Darkest.
|
|-
|-
|  Fanart.Color2
|  Fanart.Color2
|  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.  Colors are arranged Lightest to Darkest.
|
|-
|-
|  Fanart.Color3
|  Fanart.Color3
|  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.  Colors are arranged Lightest to Darkest.
|
|}
|}


=== Listitem ===
=== Game ===


{| class="prettytable" width="100%"
{| class="wikitable sortable" width="100%"
! InfoLabels
! InfoLabels
! style="80%" | Definition
! style="80%" | Definition
! Version
|-
|-
Listitem.Label
Game.Title
|  Shows the left label of the currently selected item in a container
|  Name of the game
| v18
|-
|  Game.Platform
|  Platform the game runs on (eg. Atari 2600)
| v18
|-
|  Game.Genres
|  Gerne of the game (eg. Action)
| v18
|-
|  Game.Publisher
|  Publishing company of the game (eg. Nintendo)
| v18
|-
|  Game.Developer
|  Developer of the game
| v18
|-
|  Game.Overview
|  Game description
| v18
|-
|  Game.Year
|  Year the game was released
| v18
|-
|  Game.GameClient
|  Name of the used emulator
| v18
|}
 
=== ListItem ===
 
{| class="wikitable sortable" width="100%"
! InfoLabels
! style="80%" | Definition
! Version
|-
|  ListItem.Label
|  Shows the left label of the currently selected item in a container
|
|-
|-
|  ListItem.Label2
|  ListItem.Label2
|  Shows the right label of the currently selected item in a container
|  Shows the right label of the currently selected item in a container
|
|-
|-
|  ListItem.Title
|  ListItem.Title
|  Shows the title of the currently selected song or movie in a container
|  Shows the title of the currently selected song or movie in a container
|
|-
|-
|  ListItem.OriginalTitle
|  ListItem.OriginalTitle
|  Shows the original title of the currently selected movie in a container
|  Shows the original title of the currently selected movie in a container
|
|-
|-
|  ListItem.SortLetter
|  ListItem.SortLetter
|  Shows the first letter of the current file in a container
|  Shows the first letter of the current file in a container
|
|-
|-
|  ListItem.TrackNumber
|  ListItem.TrackNumber
|  Shows the track number of the currently selected song in a container
|  Shows the track number of the currently selected song in a container
|
|-
|-
|  ListItem.Artist
|  ListItem.Artist
|  Shows the artist of the currently selected song in a container
|  Shows the artist of the currently selected song in a container
|
|-
|-
|  ListItem.AlbumArtist
|  ListItem.AlbumArtist
|  Shows the artist of the currently selected album in a list
|  Shows the artist of the currently selected album in a list
|
|-
|-
|  ListItem.Property(Artist_Born)
|  ListItem.Property(Artist_Born)
|  Date of Birth of the currently selected Artist
|  Date of Birth of the currently selected Artist
|
|-
|-
|  ListItem.Property(Artist_Died)
|  ListItem.Property(Artist_Died)
|  Date of Death of the currently selected Artist
|  Date of Death of the currently selected Artist
|
|-
|-
|  ListItem.Property(Artist_Formed)
|  ListItem.Property(Artist_Formed)
|  Formation date of the currently selected Band
|  Formation date of the currently selected Band
|
|-
|-
|  ListItem.Property(Artist_Disbanded)
|  ListItem.Property(Artist_Disbanded)
|  Disbanding date of the currently selected Band
|  Disbanding date of the currently selected Band
|
|-
|-
|  ListItem.Property(Artist_YearsActive)
|  ListItem.Property(Artist_YearsActive)
|  Years the currently selected artist has been active
|  Years the currently selected artist has been active
|
|-
|-
|  ListItem.Property(Artist_Instrument)
|  ListItem.Property(Artist_Instrument)
|  Instruments played by the currently selected artist
|  Instruments played by the currently selected artist
|
|-
|-
|  ListItem.Property(Artist_Description)
|  ListItem.Property(Artist_Description)
|  Shows a biography of the currently selected artist
|  Shows a biography of the currently selected artist
|
|-
|-
|  ListItem.Property(Artist_Mood)
|  ListItem.Property(Artist_Mood)
|  Shows the moods of the currently selected artist
|  Shows the moods of the currently selected artist
|
|-
|-
|  ListItem.Property(Artist_Style)
|  ListItem.Property(Artist_Style)
|  Shows the styles of the currently selected artist
|  Shows the styles of the currently selected artist
|
|-
|-
|  ListItem.Property(Artist_Genre)
|  ListItem.Property(Artist_Genre)
|  Shows the genre of the currently selected artist
|  Shows the genre of the currently selected artist
|
|-
|  Listitem.Property(Artist_Sortname)
|  Sortname of the currently selected Artist
|  v18
|-
|  Listitem.Property(Artist_Type)
|  Type of the currently selected Artist - person, group, orchestra, choir etc.
|  v18
|-
|  Listitem.Property(Artist_Gender)
|  Gender of the currently selected Artist - male, female, other
|  v18
|-
|  Listitem.Property(Artist_Disambiguation)
|  Brief description of the currently selected Artist that differentiates them from others with the same name
|  v18
|-
|-
|  ListItem.Album
|  ListItem.Album
|  Shows the album of the currently selected song in a container
|  Shows the album of the currently selected song in a container
|
|-
|-
|  ListItem.Property(Album_Mood)
|  ListItem.Property(Album_Mood)
|  Shows the moods of the currently selected Album
|  Shows the moods of the currently selected Album
|
|-
|-
|  ListItem.Property(Album_Style)
|  ListItem.Property(Album_Style)
|  Shows the styles of the currently selected Album
|  Shows the styles of the currently selected Album
|
|-
|-
|  ListItem.Property(Album_Theme)
|  ListItem.Property(Album_Theme)
|  Shows the themes of the currently selected Album
|  Shows the themes of the currently selected Album
|
|-
|-
|  ListItem.Property(Album_Type)
|  ListItem.Property(Album_Type)
|  Shows the Album Type (e.g. compilation, enhanced, explicit lyrics) of the currently selected Album
|  Shows the Album Type (e.g. compilation, enhanced, explicit lyrics) of the currently selected Album
|
|-
|-
|  ListItem.Property(Album_Label)
|  ListItem.Property(Album_Label)
|  Shows the record label of the currently selected Album
|  Shows the record label of the currently selected Album
|
|-
|-
|  ListItem.Property(Album_Description)
|  ListItem.Property(Album_Description)
|  Shows a review of the currently selected Album
|  Shows a review of the currently selected Album
|
|-
|  ListItem.Property(Album_Rating)
|  Shows the scraped rating of the currently selected Album
|
|-
|  ListItem.Property(Album_UserRating)
|  Shows the user rating of the currently selected Album
|
|-
|-
|  ListItem.DiscNumber
|  ListItem.DiscNumber
|  Shows the disc number of the currently selected song in a container
|  Shows the disc number of the currently selected song in a container
|
|-
|-
|  ListItem.Year
|  ListItem.Year
|  Shows the year of the currently selected song, album or movie in a container
|  Shows the year of the currently selected song, album or movie in a container
|
|-
|-
|  ListItem.Premiered
|  ListItem.Premiered
|  Shows the release/aired date of the currently selected episode, show, movie or EPG item in a container
|  Shows the release/aired date of the currently selected episode, show, movie or EPG item in a container
|
|-
|-
|  ListItem.Genre
|  ListItem.Genre
|  Shows the genre of the currently selected song, album or movie in a container
|  Shows the genre of the currently selected song, album or movie in a container
|
|-
|-
|  ListItem.Director
|  ListItem.Director
|  Shows the director of the currently selected movie in a container
|  Shows the director of the currently selected movie in a container
|
|-
|-
|  ListItem.Country
|  ListItem.Country
|  Shows the production country of the currently selected movie in a container
|  Shows the production country of the currently selected movie in a container
|
|-
|-
|  ListItem.Episode
|  ListItem.Episode
|  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.
|  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.
|
|-
|-
|  ListItem.Season
|  ListItem.Season
|  Shows the season value for the currently selected tvshow
|  Shows the season value for the currently selected tvshow
|
|-
|-
|  ListItem.TVShowTitle
|  ListItem.TVShowTitle
|  Shows the name value for the currently selected tvshow in the season and episode depth of the video library
|  Shows the name value for the currently selected tvshow in the season and episode depth of the video library
|
|-
|-
|  ListItem.Property(TotalSeasons)
|  ListItem.Property(TotalSeasons)
|  Shows the total number of seasons for the currently selected tvshow
|  Shows the total number of seasons for the currently selected tvshow
|
|-
|-
|  ListItem.Property(TotalEpisodes)
|  ListItem.Property(TotalEpisodes)
|  Shows the total number of episodes for the currently selected tvshow or season
|  Shows the total number of episodes for the currently selected tvshow or season
|
|-
|-
|  ListItem.Property(WatchedEpisodes)
|  ListItem.Property(WatchedEpisodes)
|  Shows the number of watched episodes for the currently selected tvshow or season
|  Shows the number of watched episodes for the currently selected tvshow or season
|
|-
|-
|  ListItem.Property(UnWatchedEpisodes)
|  ListItem.Property(UnWatchedEpisodes)
|  Shows the number of unwatched episodes for the currently selected tvshow or season
|  Shows the number of unwatched episodes for the currently selected tvshow or season
|
|-
|-
|  ListItem.Property(NumEpisodes)
|  ListItem.Property(NumEpisodes)
|  Shows the number of total, watched or unwatched episodes for the currently selected tvshow or season, based on the the current watched filter.
|  Shows the number of total, watched or unwatched episodes for the currently selected tvshow or season, based on the the current watched filter.
|
|-
|-
|  ListItem.PictureAperture
|  ListItem.PictureAperture
|  Shows the F-stop used to take the selected picture. This is the value of the EXIF FNumber tag (hex code 0x829D).
|  Shows the F-stop used to take the selected picture. This is the value of the EXIF FNumber tag (hex code 0x829D).
|
|-
|-
|  ListItem.PictureAuthor
|  ListItem.PictureAuthor
|  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).
|  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).
|
|-
|-
|  ListItem.PictureByline
|  ListItem.PictureByline
|  Shows the name of the person who created the selected picture.  This is the value of the IPTC Byline tag (hex code 0x50).
|  Shows the name of the person who created the selected picture.  This is the value of the IPTC Byline tag (hex code 0x50).
|
|-
|-
|  ListItem.PictureBylineTitle
|  ListItem.PictureBylineTitle
|  Shows the title of the person who created the selected picture. This is the value of the IPTC BylineTitle tag (hex code 0x55).
|  Shows the title of the person who created the selected picture. This is the value of the IPTC BylineTitle tag (hex code 0x55).
|
|-
|-
|  ListItem.PictureCamMake
|  ListItem.PictureCamMake
|  Shows the manufacturer of the camera used to take the selected picture. This is the value of the EXIF Make tag (hex code 0x010F).
|  Shows 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
|  ListItem.PictureCamModel
|  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).
|  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).
|
|-
|-
|  ListItem.PictureCaption
|  ListItem.PictureCaption
|  Shows a description of the selected picture. This is the value of the IPTC Caption tag (hex code 0x78).
|  Shows a description of the selected picture. This is the value of the IPTC Caption tag (hex code 0x78).
|
|-
|-
|  ListItem.PictureCategory
|  ListItem.PictureCategory
|  Shows the subject of the selected picture as a category code. This is the value of the IPTC Category tag (hex code 0x0F).
|  Shows the subject of the selected picture as a category code. This is the value of the IPTC Category tag (hex code 0x0F).
|
|-
|-
|  ListItem.PictureCCDWidth
|  ListItem.PictureCCDWidth
|  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).
|  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).
|
|-
|-
|  ListItem.PictureCity
|  ListItem.PictureCity
|  Shows the city where the selected picture was taken. This is the value of the IPTC City tag (hex code 0x5A).
|  Shows the city where the selected picture was taken. This is the value of the IPTC City tag (hex code 0x5A).
|
|-
|-
|  ListItem.PictureColour
|  ListItem.PictureColour
|  Shows whether the selected picture is "Colour" or "Black and White".
|  Shows whether the selected picture is "Colour" or "Black and White".
|
|-
|-
|  ListItem.PictureComment
|  ListItem.PictureComment
|  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.
|  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.
|
|-
|-
|  ListItem.PictureCopyrightNotice
|  ListItem.PictureCopyrightNotice
|  Shows the copyright notice of the selected picture. This is the value of the IPTC Copyright tag (hex code 0x74).
|  Shows the copyright notice of the selected picture. This is the value of the IPTC Copyright tag (hex code 0x74).
|
|-
|-
|  ListItem.PictureCountry
|  ListItem.PictureCountry
|  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).
|  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).
|
|-
|-
|  ListItem.PictureCountryCode
|  ListItem.PictureCountryCode
|  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).
|  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).
|
|-
|-
|  ListItem.PictureCredit
|  ListItem.PictureCredit
|  Shows who provided the selected picture. This is the value of the IPTC Credit tag (hex code 0x6E).
|  Shows who provided the selected picture. This is the value of the IPTC Credit tag (hex code 0x6E).
|
|-
|-
|  ListItem.PictureDate
|  ListItem.PictureDate
|  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.
|  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.
|
|-
|-
|  ListItem.PictureDatetime
|  ListItem.PictureDatetime
|  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.
|  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.
|
|-
|-
|  ListItem.PictureDesc
|  ListItem.PictureDesc
|  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).
|  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).
|
|-
|-
|  ListItem.PictureDigitalZoom
|  ListItem.PictureDigitalZoom
|  Shows the digital zoom ratio when the selected picture was taken. This is the value of the EXIF DigitalZoomRatio tag (hex code 0xA404).
|  Shows the digital zoom ratio when the selected picture was taken. This is the value of the EXIF DigitalZoomRatio tag (hex code 0xA404).
|
|-
|-
|  ListItem.PictureExpMode
|  ListItem.PictureExpMode
|  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).
|  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).
|
|-
|-
|  ListItem.PictureExposure
|  ListItem.PictureExposure
|  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).
|  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).
|
|-
|-
|  ListItem.PictureExposureBias
|  ListItem.PictureExposureBias
|  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).
|  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).
|
|-
|-
|  ListItem.PictureExpTime
|  ListItem.PictureExpTime
|  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.
|  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.
|
|-
|-
|  ListItem.PictureFlashUsed
|  ListItem.PictureFlashUsed
|  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).
|  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).
|
|-
|-
|  ListItem.PictureFocalLen
|  ListItem.PictureFocalLen
|  Shows the lens focal length of the selected picture
|  Shows the lens focal length of the selected picture
|
|-
|-
|  ListItem.PictureFocusDist
|  ListItem.PictureFocusDist
|  Shows the focal length of the lens, in mm. This is the value of the EXIF FocalLength tag (hex code 0x920A).
|  Shows the focal length of the lens, in mm. This is the value of the EXIF FocalLength tag (hex code 0x920A).
|
|-
|-
|  ListItem.PictureGPSLat
|  ListItem.PictureGPSLat
|  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.
|  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.
|
|-
|-
|  ListItem.PictureGPSLon
|  ListItem.PictureGPSLon
|  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.
|  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.
|
|-
|-
|  ListItem.PictureGPSAlt
|  ListItem.PictureGPSAlt
|  Shows the altitude in meters where the selected picture was taken. This is the value of the EXIF GPSInfo.GPSAltitude tag.
|  Shows the altitude in meters where the selected picture was taken. This is the value of the EXIF GPSInfo.GPSAltitude tag.
|
|-
|-
|  ListItem.PictureHeadline
|  ListItem.PictureHeadline
|  Shows a synopsis of the contents of the selected picture. This is the value of the IPTC Headline tag (hex code 0x69).
|  Shows a synopsis of the contents of the selected picture. This is the value of the IPTC Headline tag (hex code 0x69).
|
|-
|-
|  ListItem.PictureImageType
|  ListItem.PictureImageType
|  Shows the color components of the selected picture. This is the value of the IPTC ImageType tag (hex code 0x82).
|  Shows the color components of the selected picture. This is the value of the IPTC ImageType tag (hex code 0x82).
|
|-
|-
|  ListItem.PictureIPTCDate
|  ListItem.PictureIPTCDate
|  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).
|  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).
|
|-
|-
|  ListItem.PictureIPTCTime
|  ListItem.PictureIPTCTime
|  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).
|  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).
|
|-
|-
|  ListItem.PictureISO
|  ListItem.PictureISO
|  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).
|  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).
|
|-
|-
|  ListItem.PictureKeywords
|  ListItem.PictureKeywords
|  Shows keywords assigned to the selected picture. This is the value of the IPTC Keywords tag (hex code 0x19).
|  Shows keywords assigned to the selected picture. This is the value of the IPTC Keywords tag (hex code 0x19).
|
|-
|-
|  ListItem.PictureLightSource
|  ListItem.PictureLightSource
|  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).
|  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).
|
|-
|-
|  ListItem.PictureLongDate
|  ListItem.PictureLongDate
|  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.
|  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.
|
|-
|-
|  ListItem.PictureLongDatetime
|  ListItem.PictureLongDatetime
|  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.
|  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.
|
|-
|-
|  ListItem.PictureMeteringMode
|  ListItem.PictureMeteringMode
|  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).
|  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).
|
|-
|-
|  ListItem.PictureObjectName
|  ListItem.PictureObjectName
|  Shows a shorthand reference for the selected picture. This is the value of the IPTC ObjectName tag (hex code 0x05).
|  Shows a shorthand reference for the selected picture. This is the value of the IPTC ObjectName tag (hex code 0x05).
|
|-
|-
|  ListItem.PictureOrientation
|  ListItem.PictureOrientation
|  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).
|  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).
|
|-     
|-     
|  ListItem.PicturePath
|  ListItem.PicturePath
|  Shows the filename and path of the selected picture
|  Shows the filename and path of the selected picture
|
|-
|-
|  ListItem.PictureProcess
|  ListItem.PictureProcess
|  Shows the process used to compress the selected picture
|  Shows the process used to compress the selected picture
|
|-
|-
|  ListItem.PictureReferenceService
|  ListItem.PictureReferenceService
|  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).
|  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).
|
|-
|-
|  ListItem.PictureResolution
|  ListItem.PictureResolution
|  Shows the dimensions of the selected picture
|  Shows the dimensions of the selected picture
|
|-
|-
|  ListItem.PictureSource
|  ListItem.PictureSource
|  Shows the original owner of the selected picture. This is the value of the IPTC Source tag (hex code 0x73).
|  Shows the original owner of the selected picture. This is the value of the IPTC Source tag (hex code 0x73).
|
|-
|-
|  ListItem.PictureSpecialInstructions
|  ListItem.PictureSpecialInstructions
|  Shows other editorial instructions concerning the use of the selected picture. This is the value of the IPTC SpecialInstructions tag (hex code 0x28).
|  Shows other editorial instructions concerning the use of the selected picture. This is the value of the IPTC SpecialInstructions tag (hex code 0x28).
|
|-
|-
|  ListItem.PictureState
|  ListItem.PictureState
|  Shows the State/Province where the selected picture was taken. This is the value of the IPTC ProvinceState tag (hex code 0x5F).
|  Shows the State/Province where the selected picture was taken. This is the value of the IPTC ProvinceState tag (hex code 0x5F).
|
|-
|-
|  ListItem.PictureSublocation
|  ListItem.PictureSublocation
|  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).
|  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).
|
|-
|-
|  ListItem.PictureSupplementalCategories
|  ListItem.PictureSupplementalCategories
|  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).
|  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).
|
|-
|-
|  ListItem.PictureTransmissionReference
|  ListItem.PictureTransmissionReference
|  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).
|  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).
|
|-
|-
|  ListItem.PictureUrgency
|  ListItem.PictureUrgency
|  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).
|  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).
|
|-
|-
|  ListItem.PictureWhiteBalance
|  ListItem.PictureWhiteBalance
|  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).
|  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).
|
|-
|-
|  ListItem.FileName
|  ListItem.FileName
|  Shows the filename of the currently selected song or movie in a container
|  Shows the filename of the currently selected song or movie in a container
|
|-
|  ListItem.FileNameNoExtension
|  Returns the filename without its extension.
|  v19
|-
|-
|  ListItem.Path
|  ListItem.Path
|  Shows the complete path of the currently selected song or movie in a container
|  Shows the complete path of the currently selected song or movie in a container
|
|-
|-
|  ListItem.FolderName
|  ListItem.FolderName
|  Shows top most folder of the path of the currently selected song or movie in a container
|  Shows top most folder of the path of the currently selected song or movie in a container
|
|-
|-
|  ListItem.FolderPath
|  ListItem.FolderPath
|  Shows the complete path of the currently selected song or movie in a container (without user details).
|  Shows the complete path of the currently selected song or movie in a container (without user details).
|
|-
|-
|  ListItem.FileNameAndPath
|  ListItem.FileNameAndPath
|  Shows the full path with filename of the currently selected song or movie in a container
|  Shows the full path with filename of the currently selected song or movie in a container
|
|-
|-
|  ListItem.FileExtension
|  ListItem.FileExtension
|  Shows the file extension (without leading dot) of the currently selected item in a container
|  Shows the file extension (without leading dot) of the currently selected item in a container
|
|-
|-
|  ListItem.Date
|  ListItem.Date
|  Shows the file date of the currently selected song or movie in a container
|  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)
|
|-
|-
|  ListItem.DateAdded
|  ListItem.DateAdded
|  Shows the date the currently selected item was added to the library
|  Shows the date the currently selected item was added to the library / Date and time of an event in the EventLog window.
|
|-
|-
|  ListItem.Size
|  ListItem.Size
|  Shows the file size of the currently selected song or movie in a container
|  Shows the file size of the currently selected song or movie in a container
|
|-
|  ListItem.Rating[(name)]
|  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, for use in dialogvideoinfo.xml.
|
|-
|  ListItem.Set
|  Shows the name of the set the movie is part of
|
|-
|  ListItem.SetId
|  Shows the id of the set the movie is part of
|
|-
|-
|  ListItem.Rating
|  ListItem.UserRating
|  Shows the IMDB rating of the currently selected movie in a container
|  Shows the user rating of the currently selected item in a container
|
|-
|-
|  ListItem.Votes
|  ListItem.Votes[(name)]
|  Shows the IMDB votes of the currently selected movie in a container
|  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, for use in dialogvideoinfo.xml.
|
|-
|-
|  ListItem.RatingAndVotes
|  ListItem.RatingAndVotes[(name)]
|  Shows the IMDB rating and votes of the currently selected movie in a container
|  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, for use in dialogvideoinfo.xml.
|
|-
|-
|  ListItem.Mpaa
|  ListItem.Mpaa
|  Show the MPAA rating of the currently selected movie in a container
|  Show the MPAA rating of the currently selected movie in a container
|
|-
|-
|  ListItem.ProgramCount
|  ListItem.ProgramCount
|  Shows the number of times an xbe has been run from "my programs"
|  Shows the number of times an xbe has been run from "my programs"
|
|-
|-
|  ListItem.Duration
|  ListItem.Duration[(format)]
|  Shows the song or movie duration of the currently selected movie in a container
|  Shows 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.DBTYPE
|  ListItem.DBTYPE
|  Shows the database type of the ListItem.DBID for videos (movie, set, genre, actor, tvshow, season, episode). It does not return any value for the music library. 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.
|  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.
|
|-
|-
|  ListItem.DBID
|  ListItem.DBID
|  Shows the database id of the currently selected listitem in a container
|  Shows the database id of the currently selected listitem in a container
|
|-
|-
|  ListItem.Cast
|  ListItem.Cast
|  Shows a concatenated string of cast members of the currently selected movie, for use in dialogvideoinfo.xml
|  Shows a concatenated string of cast members of the currently selected movie, for use in dialogvideoinfo.xml
|
|-
|-
|  ListItem.CastAndRole
|  ListItem.CastAndRole
|  Shows a concatenated string of cast members and roles of the currently selected movie, for use in dialogvideoinfo.xml
|  Shows a concatenated string of cast members and roles of the currently selected movie, for use in dialogvideoinfo.xml
|
|-
|-
|  ListItem.Studio
|  ListItem.Studio
|  Studio of current selected Music Video in a container
|  Studio of current selected Music Video in a container
|
|-
|-
|  ListItem.Top250
|  ListItem.Top250
|  Shows the IMDb top250 position of the currently selected listitem in a container.
|  Shows the IMDb top250 position of the currently selected listitem in a container.
|
|-
|-
|  ListItem.Trailer
|  ListItem.Trailer
|  Shows the full trailer path with filename of the currently selected movie in a container
|  Shows the full trailer path with filename of the currently selected movie in a container
|
|-
|-
|  ListItem.Writer
|  ListItem.Writer
|  Name of Writer of current Video in a container
|  Name of Writer of current Video in a container
|
|-
|-
|  ListItem.Tagline
|  ListItem.Tagline
|  Small Summary of current Video in a container
|  Small Summary of current Video in a container
|
|-
|-
|  ListItem.PlotOutline
|  ListItem.PlotOutline
|  Small Summary of current Video in a container
|  Small Summary of current Video in a container
|
|-
|-
|  ListItem.Plot
|  ListItem.Plot
|  Complete Text Summary of Video in a container
|  Complete Text Summary of Video in a container
|
|-
|-
|  ListItem.IMDBNumber
|  ListItem.IMDBNumber
|  The IMDB iD of the selected Video in a container
|  The IMDB iD of the selected Video in a container
|
|-
|-
|  ListItem.EpisodeName
|  ListItem.EpisodeName
|  (PVR only) The name of the episode if the selected EPG item is a TV Show
|  (PVR only) The name of the episode if the selected EPG item is a TV Show
|
|-
|-
|  ListItem.PercentPlayed
|  ListItem.PercentPlayed
|  Returns percentage value [0-100] of how far the selected video has been played
|  Returns percentage value [0-100] of how far the selected video has been played
|
|-
|-
|  ListItem.LastPlayed
|  ListItem.LastPlayed
|  Last play date of Video in a container
|  Last play date of Video in a container
|
|-
|-
|  ListItem.PlayCount
|  ListItem.PlayCount
|  Playcount of Video in a container
|  Playcount of Video in a container
|
|-
|-
|  ListItem.StartTime
|  ListItem.StartTime
|  Start time of current selected TV programme in a container
|  Start time of current selected TV programme in a container
|
|-
|-
|  ListItem.EndTime
|  ListItem.EndTime
|  End time of current selected TV programme in a container
|  End time of current selected TV programme in a container
|
|-
|-
|  ListItem.StartDate
|  ListItem.StartDate
|  Start date of current selected TV programme in a container
|  Start date of current selected TV programme in a container
|-
|
|  ListItem.Date
|  Day, start time and end time of current selected TV programme in a container
|-
|  ListItem.ChannelNumber
|  Number of current selected TV channel in a container
|-
|-
|  ListItem.ChannelName
|  ListItem.ChannelName
|  Name of current selected TV channel in a container
|  Name of current selected TV channel in a container
|
|-
|-
|  ListItem.VideoCodec
|  ListItem.VideoCodec
|  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)
|  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)
|
|-
|-
|  ListItem.VideoResolution
|  ListItem.VideoResolution
|  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.
|  Shows the resolution of the currently selected video (possible values: 480, 576, 540, 720, 1080, 4K, 8K [Note: v18 addition]). 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.VideoAspect
|  ListItem.VideoAspect
|  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)
|  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, {{note|Kodi v20: 1.00, 1.19, 2.00 }})
|
|-
|-
|  ListItem.AudioCodec
|  ListItem.AudioCodec
|  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)
|  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)
|
|-
|-
|  ListItem.AudioChannels
|  ListItem.AudioChannels
|  Shows the number of audio channels of the currently selected video. (possible values: 0, 1, 2, 4, 5, 6, 8, 10)
|  Shows the number of audio channels of the currently selected video (possible values: 1, 2, 4, 5, 6, 7, 8, 10)
|
|-
|-
|  ListItem.AudioLanguage
|  ListItem.AudioLanguage
|  Shows the audio language of the currently selected video (returns an ISO 639-2 three character code, e.g. eng, epo, deu)
|  Shows the audio language of the currently selected video (returns an ISO 639-2 three character code, e.g. eng, epo, deu)
|
|-
|-
|  ListItem.SubtitleLanguage
|  ListItem.SubtitleLanguage
|  Shows the subtitle language of the currently selected video (returns an ISO 639-2 three character code, e.g. eng, epo, deu)
|  Shows the subtitle language of the currently selected video (returns an ISO 639-2 three character code, e.g. eng, epo, deu)
|
|-
|-
|  ListItem.Property(Addon.Name)
|  ListItem.Property(AudioCodec.[n])
|  Shows the audio codec of the currently selected video, 'n' defines the number of the audiostream (values: see ListItem.AudioCodec)
|
|-
|  ListItem.Property(AudioChannels.[n])
|  Shows the number of audio channels of the currently selected video, 'n' defines the number of the audiostream (values: see ListItem.AudioChannels)
|
|-
|  ListItem.Property(AudioLanguage.[n])
|  Shows the audio language of the currently selected video, 'n' defines the number of the audiostream (values: see ListItem.AudioLanguage)
|
|-
|  ListItem.Property(SubtitleLanguage.[n])
|  Shows the subtitle language of the currently selected video, 'n' defines the number of the subtitle (values: see ListItem.SubtitleLanguage)
|
|-
|  ListItem.AddonName
|  Shows the name of the currently selected addon
|  Shows the name of the currently selected addon
|
|-
|-
|  ListItem.Property(Addon.Version)
|  ListItem.AddonVersion
|  Shows the version of the currently selected addon
|  Shows the version of the currently selected addon
|
|-
|-
|  ListItem.Property(Addon.Summary)
|  ListItem.AddonSummary
|  Shows a short description of the currently selected addon
|  Shows a short description of the currently selected addon
|
|-
|-
|  ListItem.Property(Addon.Description)
|  ListItem.AddonDescription
|  Shows the full description of the currently selected addon
|  Shows the full description of the currently selected addon
|
|-
|-
|  ListItem.Property(Addon.Type)
|  ListItem.AddonType
|  Shows the type (screensaver, script, skin, etc...) of the currently selected addon
|  Shows the type (screensaver, script, skin, etc...) of the currently selected addon
|
|-
|-
|  ListItem.Property(Addon.Creator)
|  ListItem.AddonCreator
|  Shows the name of the author the currently selected addon
|  Shows the name of the author the currently selected addon
|
|-
|-
|  ListItem.Property(Addon.Disclaimer)
|  ListItem.AddonDisclaimer
|  Shows the disclaimer of the currently selected addon
|  Shows the disclaimer of the currently selected addon
|
|-
|  ListItem.AddonBroken
|  Deprecated! use ListItem.AddonLifecycleDesc instead
|
|-
|-
|  ListItem.Property(Addon.Changelog)
|  ListItem.Property(Addon.Changelog)
|  Shows the changelog of the currently selected addon
|  Shows the changelog of the currently selected addon
|
|-
|-
|  ListItem.Property(Addon.ID)
|  ListItem.Property(Addon.ID)
|  Shows the identifier of the currently selected addon
|  Shows the identifier of the currently selected addon
|
|-
|-
|  ListItem.Property(Addon.Status)
|  ListItem.Property(Addon.Status)
|  Shows the status of the currently selected addon
|  Shows the status of the currently selected addon
|-
|
|  ListItem.Property(Addon.Broken)
|  Shows a message when the addon is marked as broken in the repo
|-
|-
|  ListItem.Property(Addon.Path)
|  ListItem.Property(Addon.Path)
|  Shows the path of the currently selected addon
|  Shows the path of the currently selected addon
|
|-
|-
|  ListItem.StartTime
|  ListItem.StartTime
|  Start time of the selected item (PVR).
|  Start time of the selected item (PVR).
|
|-
|-
|  ListItem.EndTime
|  ListItem.EndTime
|  End time of the selected item (PVR).
|  End time of the selected item (PVR).
|
|-
|-
|  ListItem.StartDate
|  ListItem.StartDate
|  Start date of the selected item (PVR).
|  Start date of the selected item (PVR).
|
|-
|-
|  ListItem.EndDate
|  ListItem.EndDate
|  End date of the selected item (PVR).
|  End date of the selected item (PVR).
|
|-
|-
|  ListItem.NextTitle
|  ListItem.NextTitle
|  Title of the next item (PVR).
|  Title of the next item (PVR).
|
|-
|-
|  ListItem.NextGenre
|  ListItem.NextGenre
|  Genre of the next item (PVR).
|  Genre of the next item (PVR).
|
|-
|-
|  ListItem.NextPlot
|  ListItem.NextPlot
|  Plot of the next item (PVR).
|  Plot of the next item (PVR).
|
|-
|-
|  ListItem.NextPlotOutline
|  ListItem.NextPlotOutline
|  Plot outline of the next item (PVR).
|  Plot outline of the next item (PVR).
|
|-
|-
|  ListItem.NextStartTime
|  ListItem.NextStartTime
|  Start time of the next item (PVR).
|  Start time of the next item (PVR).
|
|-
|-
|  ListItem.NextEndTime
|  ListItem.NextEndTime
|  End of the next item (PVR).
|  End of the next item (PVR).
|
|-
|-
|  ListItem.NextStartDate
|  ListItem.NextStartDate
|  Start date of the next item (PVR).
|  Start date of the next item (PVR).
|
|-
|-
|  ListItem.NextEndDate
|  ListItem.NextEndDate
|  End date of the next item (PVR).
|  End date of the next item (PVR).
|
|-
|  Listitem.NextDuration
|  Duration of the next item (PVR).
|  v18
|-
|-
|  ListItem.ChannelName
|  ListItem.ChannelName
|  Channelname of the selected item (PVR).
|  Channelname of the selected item (PVR).
|
|-
|-
|  ListItem.ChannelNumber
|  ListItem.ChannelNumber
|  Channel number of the selected item (PVR).
|  Channel number of the selected item (PVR).
|-
|
|  ListItem.ChannelGroup
|  Channel group of the selected item (PVR).
|-
|  ListItem.SubChannelNumber
|  Subchannel number of the currently selected channel that's currently playing (PVR).
|-
|-
|  ListItem.ChannelNumberLabel
|  ListItem.ChannelNumberLabel
|  Channel and subchannel number of the currently selected channel that's currently playing (PVR).
|  Channel and subchannel number of the currently selected channel that's currently playing (PVR).
|
|-
|-
|  ListItem.Progress
|  ListItem.Progress
|  Part of the programme that's been played (PVR).
|  Part of the programme that's been played (PVR).
|
|-
|-
|  ListItem.StereoscopicMode
|  ListItem.StereoscopicMode
|  Returns the stereomode of the selected video (i.e. mono, split_vertical, split_horizontal, row_interleaved, anaglyph_cyan_red, anaglyph_green_magenta)
|  Returns the stereomode of the selected video (i.e. mono, split_vertical, split_horizontal, row_interleaved, anaglyph_cyan_red, anaglyph_green_magenta)
|
|-
|-
|  ListItem.IsSelected
|  ListItem.Comment
Whether the item is selected.
Comment assigned to the item (PVR/MUSIC).
|
|-
|-
|  ListItem.IsPlaying
|  ListItem.AddonInstallDate
| Whether the item is playing.
| Date the addon was installed
|
|-
|-
|  ListItem.IsResumable
|  ListItem.AddonLastUpdated
| Whether the item has a resume point set.
| Date the addon was last updated
|
|-
|-
|  ListItem.IsFolder
|  ListItem.AddonLastUsed
| Whether the item is a folder.
| Date the addon was used last
|
|-
|-
|  ListItem.IsCollection
|  ListItem.AddonNews
| Whether the item is a movie collection.
| Returns a brief changelog, taken from the addons' addon.xml file
|
|-
|-
|  ListItem.IsRecording
|  ListItem.AddonSize
| Whether the item is a recording (PVR).
| Filesize of the addon
|
|-
|-
|  ListItem.Comment
|  ListItem.Contributors
| Comment assigned to the item (PVR/MUSIC).
| List of all people who've contributed to the selected song
|}
|
 
=== Musicpartymode labels ===
 
{| class="prettytable" width="100%"
! InfoLabels
! style="80%" | Definition
|-
|-
MusicPartyMode.SongsPlayed
ListItem.ContributorAndRole
| Number of songs played during Party Mode
| List of all people and their role who've contributed to the selected song
|
|-
|-
MusicPartyMode.MatchingSongs
ListItem.EndTimeResume
| Number of songs available to Party Mode
| Returns the time a video will end if you resume it, instead of playing it from the beginning.
|
|-
|-
MusicPartyMode.MatchingSongsPicked
ListItem.Mood
| Number of songs picked already for Party Mode
| Mood of the selected song
|
|-
|-
MusicPartyMode.MatchingSongsLeft
ListItem.Status
| Number of songs left to be picked from for Party Mode
| For use with tv shows. It can return one of the following: 'returning series','in production','planned','cancelled' or 'ended'
|
|-
|-
MusicPartyMode.RelaxedSongsPicked
ListItem.Tag
Not currently used
| Will return the name of the 'tag' this movie is part of.
|
|-
|  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
|
|-
|-
MusicPartyMode.RandomSongsPicked
ListItem.Property(Role.Conductor)
| Number of unique random songs picked during Party Mode
| Returns the name of the person who conducted the selected song
|}
|
 
=== Network labels ===
 
{| class="prettytable" width="100%"
! InfoLabels
! style="80%" | Definition
|-
|-
Network.IsDHCP
ListItem.Property(Role.DJMixer)
| Network type is DHCP or FIXED
| Returns the name of the dj who remixed the selected song
|
|-
|-
Network.IPAddress
ListItem.Property(Role.Engineer)
| The system's IP Address (formatted as IP: <ipaddress>)
| Returns the name of the person who was the engineer of the selected song
|
|-
|-
Network.LinkState
ListItem.Property(Role.Lyricist)
| Network linkstate e.g. 10mbit/100mbit etc.
| Returns the name of the person who wrote the lyrics of the selected song
|
|-
|-
Network.MacAddress
ListItem.Property(Role.Mixer)
| The system's  mac address
| Returns the name of the person who mixed the selected song
|
|-
|-
Network.SubnetMask
ListItem.Property(Role.Orchestra)
| Network subnet mask
| Returns the name of the orchestra performing the selected song
|
|-
|-
Network.GatewayAddress
ListItem.Property(Role.Producer)
| Network gateway address
| Returns the name of the person who produced the selected song
|
|-
|-
Network.DNS1Address
ListItem.Property(Role.Remixer)
| Network dns 1 address
| Returns the name of the person who remixed the selected song
|
|-
|-
Network.DNS2Address
ListItem.Property(Album_Duration)
| Network dns 2 address
| Returns the duration of an album in HH:MM:SS
| v19
|-
|-
Network.DHCPAddress
ListItem.Appearances
| DHCP ip address
| Returns the number of movies featuring the selected actor / directed by the selected director
|}
| v17 addition
 
=== Player labels ===
 
{| class="prettytable" width="100%"
! InfoLabels
! style="80%" | Definition
|-
|-
Player.FinishTime
ListItem.PrivacyPolicy
| Time playing media will end
| Returns the official Kodi privacy-policy
| v17 addition
|-
|-
Player.FinishTime(format)
Listitem.Property(game.videofilter)
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).
Name of the video filter (eg. Bilinear)
|  v18
|-
|-
Player.Chapter
Listitem.Property(game.stretchmode)
Current chapter of current playing media
Name of the stretch mode (eg. Stretch 4:3)
|  v18
|-
|-
Player.ChapterCount
Listitem.Property(game.videorotation)
Total number of chapters of current playing media
Angle of the rotation
|  v18
|-
|-
| Player.Time
| ListItem.CurrentItem
| Elapsed time of current playing media
| will return the current index of the item in a container starting at 1.
| v19
|-
|-
Player.Time(format)
ListItem.DiscTitle
| 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).
| The disc title of the currently selected album or song
| v19
|-
|-
Player.TimeRemaining
ListItem.TotalDiscs
| Remaining time of current playing media
| The total amount of discs belonging to an album
| v19
|-
|-
Player.TimeRemaining(format)
ListItem.IsBoxset
| 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 true if the item is part of a boxset
| v19
|-
|-
Player.Duration
ListItem.ReleaseDate
| Total duration of the current playing media
| Returns the release date of the current item
| v19
|-
|-
Player.Duration(format)
ListItem.OriginalDate
| 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 original release date of the item
|v19
|-
|-
Player.SeekTime
ListItem.BPM
| Time to which the user is seeking
| Returns the Beats Per Minute for a song
| v19
|-
|-
Player.SeekOffset
ListItem.BitRate
| Indicates the seek offset after a seek press (eg user presses BigStepForward, player.seekoffset returns +10:00)
| Returns the bitrate of the current song (Actual rate for CBR, average rate for VBR)
|-
| v19
|  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.ProgressCache
ListItem.SampleRate
| Shows how much of the file is cached above current play percentage
| Returns the sample rate of a song / 1000.0 eg 44.1, 48, 96 etc
| v19
|-
|-
Player.Folderpath
ListItem.MusicChannels
| Shows the full path of the currently playing song or movie
| Returns the number of audio channels for a song
| v19
|-
|-
Player.Filenameandpath
ListItem.AlbumStatus
| Shows the full path with filename of the currently playing song or movie
| Returns the Musicbrainz release status of the album (offical, bootleg, promotion etc)
| v19
|-
|-
| Player.StartTime
| ListItem.UniqueID()
| 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 UniqueID of the selected item in a container
| v19
|-
|-
| Player.StartTime(format)
| ListItem.TvShowDBID
| 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 tv show DBID of the selected season or episode a container
| v19
|-
|-
| Player.Title
| ListItem.AddonLifecycleType
| Returns the musicplayer title for audio and the videoplayer title for videos.
| The Lifecycle type of the addon (returns a localized string: normal / broken / deprecated)
| v19
|-
|-
| Player.Filename
| ListItem.AddonLifecycleDesc
| Returns the filename of the currently playing media.
| Description of the Lifecycle type (example: broken due to website changes)
| v19
|}
|}


==== Music player ====
=== Musicpartymode labels ===


{| class="prettytable" width="100%"
{| class="wikitable sortable" width="100%"
! InfoLabels
! InfoLabels
! style="80%" | Definition
! style="80%" | Definition
! Version
|-
|-
MusicPlayer.Title
MusicPartyMode.SongsPlayed
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
Number of songs played during Party Mode
|
|-
|-
MusicPlayer.Album
MusicPartyMode.MatchingSongs
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
Number of songs available to Party Mode
|
|-
|-
MusicPlayer.Property(Album_Mood)
MusicPartyMode.MatchingSongsPicked
Shows the moods of the currently playing Album
Number of songs picked already for Party Mode
|
|-
|-
MusicPlayer.Property(Album_Style)
MusicPartyMode.MatchingSongsLeft
Shows the styles of the currently playing Album
Number of songs left to be picked from for Party Mode
|
|-
|-
MusicPlayer.Property(Album_Theme)
MusicPartyMode.RelaxedSongsPicked
Shows the themes of the currently playing Album
Not currently used
|
|-
|-
MusicPlayer.Property(Album_Type)
MusicPartyMode.RandomSongsPicked
Shows the Album Type (e.g. compilation, enhanced, explicit lyrics) of the currently playing Album
Number of unique random songs picked during Party Mode
|
|}
 
=== Network labels ===
 
{| class="wikitable sortable" width="100%"
! InfoLabels
! style="80%" | Definition
! Version
|-
|-
MusicPlayer.Property(Album_Label)
Network.IsDHCP
Shows the record label of the currently playing Album
Network type is DHCP or FIXED
|
|-
|-
MusicPlayer.Property(Album_Description)
Network.IPAddress
| Shows a review of the currently playing Album
|  The system's IP Address (<ipaddress> is returned as a string)
|
|-
|-
MusicPlayer.Artist
Network.LinkState
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
Network linkstate e.g. 10mbit/100mbit etc.
|
|-
|-
MusicPlayer.Property(Artist_Born)
Network.MacAddress
Date of Birth of the currently playing Artist
The system's  mac address
|
|-
|-
MusicPlayer.Property(Artist_Died)
Network.SubnetMask
Date of Death of the currently playing Artist
Network subnet mask
|
|-
|-
MusicPlayer.Property(Artist_Formed)
Network.GatewayAddress
Formation date of the currently playing Artist/Band
Network gateway address
|
|-
|-
MusicPlayer.Property(Artist_Disbanded)
Network.DNS1Address
Disbanding date of the currently playing Artist/Band
Network dns server 1 address
|
|-
|-
MusicPlayer.Property(Artist_YearsActive)
Network.DNS2Address
Years the currently Playing artist has been active
Network dns server 2 address
|
|-
|-
MusicPlayer.Property(Artist_Instrument)
Network.DHCPAddress
Instruments played by the currently playing artist
DHCP server ip address
|
|}
 
=== Player labels ===
 
{| class="wikitable sortable" width="100%"
! InfoLabels
! style="80%" | Definition
! Version
|-
|-
MusicPlayer.Property(Artist_Description)
Player.FinishTime
Shows a biography of the currently playing artist
Time playing media will end
|
|-
|-
MusicPlayer.Property(Artist_Mood)
Player.FinishTime(format)
|  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)
Player.Chapter
Shows the styles of the currently playing artist
Current chapter of current playing media
|
|-
|-
MusicPlayer.Property(Artist_Genre)
Player.ChapterCount
Shows the genre of the currently playing artist
Total number of chapters of current playing media
|
|-
|-
MusicPlayer.Genre
Player.Time
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
Elapsed time of current playing media
|
|-
|-
MusicPlayer.Lyrics
Player.Time(format)
Lyrics of current song stored in ID tag info
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.Year
Player.TimeRemaining
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
Remaining time of current playing media
|
|-
|-
MusicPlayer.Rating
Player.TimeRemaining(format)
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 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.DiscNumber
Player.Duration
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
Total duration of the current playing media
|
|-
|-
MusicPlayer.Comment
Player.Duration(format)
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 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.Time
Player.SeekTime
| Current time in song
Time to which the user is seeking
|
|-
|-
MusicPlayer.TimeRemaining
Player.SeekBar
Current remaining time in song
Time to which the user is seeking as a percentage (for use in slider controls)
|
|-
|-
MusicPlayer.TimeSpeed
Player.SeekOffset
Both the time and the playspeed formatted up. eg 1:23 (2x)
Indicates the seek offset after a seek press (eg user presses BigStepForward, player.seekoffset returns +10:00)
|
|-
|-
MusicPlayer.TrackNumber
Player.SeekOffset(format)
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
Shows hours (hh), minutes (mm) or seconds (ss). Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).
|
|-
|-
MusicPlayer.Duration
Player.SeekStepSize
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
Displays the seek step size. (v15 addition)
|
|-
|-
MusicPlayer.BitRate
Player.Progress
Bitrate of current song
Shows how much (percentage) of the file has been played
|
|-
|-
MusicPlayer.Channels
Player.ProgressCache
Number of channels of current song
Shows how much of the file is cached above current play percentage
|
|-
|-
MusicPlayer.BitsPerSample
Player.Folderpath
Number of bits per sample of current song
Shows the full path of the currently playing song or movie. (supports .offset() and .position())
|
|-
|-
MusicPlayer.SampleRate
Player.Filenameandpath
Samplerate of current song
Shows the full path with filename of the currently playing song or movie. (supports .offset() and .position())
|
|-
|-
MusicPlayer.Codec
Player.StartTime
Codec of current 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.PlaylistPosition
Player.StartTime(format)
Position of the current song in the current music 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.PlaylistLength
Player.Title
Total size of the current music playlist
Returns the musicplayer title for audio and the videoplayer title for videos. (supports .offset() and .position())
|
|-
|-
MusicPlayer.ChannelName
Player.Filename
Channel name of the radio programme that's currently playing (PVR).
Returns the filename of the currently playing media. (supports .offset() and .position())
|
|-
|-
MusicPlayer.ChannelNumber
Player.Volume
| Channel number of the radio programme that's currently playing (PVR).
| Returns the volume level in dB
|
|-
|-
MusicPlayer.SubChannelNumber
Player.PlaySpeed
Subchannel number of the radio channel that's currently playing (PVR).
Current playspeed. (range:0.8 to 1.5)
|
|-
|-
MusicPlayer.ChannelNumberLabel
Player.Process(AudioBitsPerSample)
| Channel and subchannel number of the radio channel that's currently playing (PVR).
| Bits per sample of the currently playing item
|
|-
|-
MusicPlayer.ChannelGroup
Player.Process(AudioChannels)
| Channel group of of the radio programme that's currently playing (PVR).
| Number of audiochannels of the currently playing item
|}
|
 
==== Video player ====
 
{| class="prettytable" width="100%"
! InfoLabels
! style="80%" | Definition
|-
|-
VideoPlayer.Time
Player.Process(AudioDecoder)
| Current time in movie
| Audiodecoder name of the currently playing item
|
|-
|-
VideoPlayer.TimeRemaining
Player.Process(AudioSamplerate)
Current remaining time in movie
| Samplerate f the currently playing item
|
|-
|-
VideoPlayer.TimeSpeed
Player.Process(DeintMethod)
| Current time + playspeed. eg 1:23:14 (-4x)
| Deinterlace method of the currently playing video
|
|-
|-
VideoPlayer.Duration
Player.Process(PixFormat)
| Length of current movie
| Pixel format of the currently playing video
|
|-
|-
VideoPlayer.Title
Player.Process(VideoDAR)
| Title of currently playing video. If it's in the database it will return the database title, else the filename
| Display aspect ratio of the currently playing video
|
|-
|-
VideoPlayer.TVShowTitle
Player.Process(VideoFPS)
| Title of currently playing episode's tvshow name
| Video framerate of the currently playing video
|
|-
|-
VideoPlayer.Season
Player.Process(VideoHeight)
| Season number of the currently playing episode, if it's in the database
| Height of the currently playing video
|
|-
|-
VideoPlayer.Episode
Player.Process(VideoDecoder)
| Episode number of the currently playing episode
| Videodecoder name of the currently playing video
|
|-
|-
VideoPlayer.Genre
Player.Process(VideoWidth)
| Genre(s) of current movie, if it's in the database
| Width of the currently playing video
|
|-
|-
| VideoPlayer.Director
| Player.Process(VideoScanType)
| Director of current movie, if it's in the database
| The scan type identifier of the currently playing video '''p''' (for progressive) or '''i''' (for interlaced)
| v20
|-
|-
| VideoPlayer.Country
| Player.CutList
| Production country of current movie, if it's in the database
| this infolabel can be used with the [[Ranges Control]], as EDL and chapter markers
| v19
|-
|-
| VideoPlayer.Year
| Player.Chapters
| Year of release of current movie, if it's in the database
| 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%" | Definition
! Version
|-
|-
VideoPlayer.Rating
MusicPlayer.Title
IMDb user rating of current movie, if it's in the database
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
|
|-
|-
VideoPlayer.Votes
MusicPlayer.Album
IMDb votes of current movie, if it's in the database
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
|
|-
|-
VideoPlayer.RatingAndVotes
MusicPlayer.Property(Album_Mood)
IMDb user rating and votes of current movie, if it's in the database
Shows the moods of the currently playing Album
|
|-
|-
VideoPlayer.mpaa
MusicPlayer.Property(Album_Style)
MPAA rating of current movie, if it's in the database
Shows the styles of the currently playing Album
|
|-
|-
VideoPlayer.IMDBNumber
MusicPlayer.Property(Album_Theme)
The IMDB iD of the current video, if it's in the database
Shows the themes of the currently playing Album
|
|-
|-
VideoPlayer.EpisodeName
MusicPlayer.Property(Album_Type)
|  (PVR only) The name of the episode if the playing video is a TV Show, if it's in the database
Shows the Album Type (e.g. compilation, enhanced, explicit lyrics) of the currently playing Album
|
|-
|-
VideoPlayer.PlaylistPosition
MusicPlayer.Property(Album_Label)
Position of the current song in the current video playlist
Shows the record label of the currently playing Album
|
|-
|-
VideoPlayer.PlaylistLength
MusicPlayer.Property(Album_Description)
Total size of the current video playlist
Shows a review of the currently playing Album
|
|-
|-
VideoPlayer.Cast
MusicPlayer.Artist
A concatenated string of cast members of the current movie, if it's in the database
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
|
|-
|-
VideoPlayer.CastAndRole
MusicPlayer.Property(Artist_Born)
A concatenated string of cast members and roles of the current movie, if it's in the database
Date of Birth of the currently playing Artist
|
|-
|-
VideoPlayer.Album
MusicPlayer.Property(Artist_Died)
Album from which the current Music Video is from, if it's in the database
Date of Death of the currently playing Artist
|
|-
|-
VideoPlayer.Artist
MusicPlayer.Property(Artist_Formed)
Artist(s) of current Music Video, if it's in the database
Formation date of the currently playing Artist/Band
|
|-
|-
VideoPlayer.Studio
MusicPlayer.Property(Artist_Disbanded)
Studio of current Music Video, if it's in the database
Disbanding date of the currently playing Artist/Band
|
|-
|-
VideoPlayer.Writer
MusicPlayer.Property(Artist_YearsActive)
Name of Writer of current playing Video, if it's in the database
Years the currently Playing artist has been active
|
|-
|-
VideoPlayer.Tagline
MusicPlayer.Property(Artist_Instrument)
Small Summary of current playing Video, if it's in the database
Instruments played by the currently playing artist
|
|-
|-
VideoPlayer.PlotOutline
MusicPlayer.Property(Artist_Description)
Small Summary of current playing Video, if it's in the database
Shows a biography of the currently playing artist
|
|-
|-
VideoPlayer.Plot
MusicPlayer.Property(Artist_Mood)
Complete Text Summary of current playing Video, if it's in the database
Shows the moods of the currently playing artist
|
|-
|-
VideoPlayer.LastPlayed
MusicPlayer.Property(Artist_Style)
|  Last play date of current playing Video, if it's in the database
|  Shows the styles of the currently playing artist
|- 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
MusicPlayer.Property(Artist_Genre)
|  Shows the video resolution of the currently playing video (possible values: see ListItem.VideoResolution)
|  Shows the genre of the currently playing artist
|
|-
|-
VideoPlayer.VideoAspect
MusicPlayer.Property(Artist_Sortname)
Shows the aspect ratio of the currently playing video (possible values: see ListItem.VideoAspect)
Sortname of the currently playing Artist
|  v18
|-
|-
VideoPlayer.AudioCodec
MusicPlayer.Property(Artist_Type)
Shows the audio codec of the currently playing video (common values: see ListItem.AudioCodec)
Type of the currently playing Artist - person, group, orchestra, choir etc.
|  v18
|-
|-
VideoPlayer.AudioChannels
MusicPlayer.Property(Artist_Gender)
Shows the number of audio channels of the currently playing video (possible values: see ListItem.AudioChannels)
Gender of the currently playing Artist - male, female, other
|  v18
|-
|-
VideoPlayer.AudioLanguage
MusicPlayer.Property(Artist_Disambiguation)
Shows the language of the audio of the currently playing video (possible values: see ListItem.AudioLanguage)
Brief description of the currently playing Artist that differentiates them from others with the same name
|  v18
|-
|-
VideoPlayer.SubtitlesLanguage
MusicPlayer.Genre
Shows the language of the subtitle of the currently playing video (possible values: see ListItem.SubtitlesLanguage)
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.StereoscopicMode
MusicPlayer.Lyrics
Shows the stereoscopic mode of the currently playing video (possible values: see ListItem.StereoscopicMode)
Lyrics of current song stored in ID tag info
|
|-
|-
VideoPlayer.EndTime
MusicPlayer.Year
End date of the currently playing programme (PVR).
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.NextTitle
MusicPlayer.Rating
Title of the programme that will be played next (PVR).
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.NextGenre
MusicPlayer.DiscNumber
Genre of the programme that will be played next (PVR).
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.NextPlot
MusicPlayer.Comment
Plot of the programme that will be played next (PVR).
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.NextPlotOutline
MusicPlayer.Time
Plot outline of the programme that will be played next (PVR).
Current time in song
|
|-
|-
VideoPlayer.NextStartTime
MusicPlayer.TimeRemaining
Start time of the programme that will be played next (PVR).
Current remaining time in song
|
|-
|-
VideoPlayer.NextEndTime
MusicPlayer.TimeSpeed
End time of the programme that will be played next (PVR).
Both the time and the playspeed formatted up. eg 1:23 (2x)
|
|-
|-
VideoPlayer.NextDuration
MusicPlayer.TrackNumber
Duration of the programme that will be played next (PVR).
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.ChannelName
MusicPlayer.Duration
Name of the curently tuned channel (PVR).
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.ChannelNumber
MusicPlayer.BitRate
Number of the curently tuned channel (PVR).
Bitrate of current song
|
|-
|-
VideoPlayer.SubChannelNumber
MusicPlayer.Channels
Subchannel number of the tv channel that's currently playing (PVR).
Number of channels of current song
|
|-
|-
VideoPlayer.ChannelNumberLabel
MusicPlayer.BitsPerSample
Channel and subchannel number of the tv channel that's currently playing (PVR).
Number of bits per sample of current song
|
|-
|-
VideoPlayer.ChannelGroup
MusicPlayer.SampleRate
Group of the curently tuned channel (PVR).
Samplerate of current song
|
|-
|-
VideoPlayer.ParentalRating
MusicPlayer.Codec
Parental rating of the currently playing programme (PVR).
Codec of current song
|}
|
 
|-
=== Playlist ===
|  MusicPlayer.PlaylistPosition
 
| Position of the current song in the current music playlist
{| class="prettytable" width="100%"
|
! InfoLabels
! style="80%" | Definition
|-
|-
Playlist.Length(media)
MusicPlayer.PlaylistLength
|  Total size of the current playlist. optional parameter media is either video or music.
|  Total size of the current music playlist
|
|-
|-
Playlist.Position(media)
MusicPlayer.ChannelName
Position of the current item in the current playlist. optional parameter media is either video or music.
Channel name of the radio programme that's currently playing (PVR).
|
|-
|-
Playlist.Random
MusicPlayer.ChannelNumberLabel
Returns string ID's 590 (Randomize Play Enabled) or 591 (Disabled)
Channel and subchannel number of the radio channel that's currently playing (PVR).
|
|-
|-
Playlist.Repeat
MusicPlayer.ChannelGroup
Returns string ID's 592 (Repeat One), 593 (Repeat All), or 594 (Repeat Off)
Channel group of  of the radio programme that's currently playing (PVR).
|}
|
 
=== PVR ===
 
{| class="prettytable" width="100%"
! InfoLabels
! style="80%" | Definition
|-
|  Pvr.NowRecordingTitle
| Title of the programme being recorded
|-
|-
Pvr.NowRecordingDateTime
MusicPlayer.Contributors
| Start date and time of the current recording
| List of all people who've contributed to the currently playing song
|
|-
|-
Pvr.NowRecordingChannel
MusicPlayer.ContributorAndRole
| Channel number that's being recorded
| List of all people and their role who've contributed to the currently playing song
|
|-
|-
Pvr.NextRecordingTitle
MusicPlayer.Mood
| Title of the next programme that will be recorded
| Mood of the currently playing song
|
|-
|-
Pvr.NextRecordingDateTime
MusicPlayer.Property(Role.Arranger)
| Start date and time of the next recording
| Returns the name of the person who arranged the selected song
|-
|
|  Pvr.NextRecordingChannel
| Channel name of the next recording
|-
|-
Pvr.BackendName
MusicPlayer.Property(Role.Composer)
| Name of the backend being used
| Returns the name of the person who composed the selected song
|
|-
|-
Pvr.BackendVersion
MusicPlayer.Property(Role.Conductor)
| Version of the backend that's being used
| Returns the name of the person who conducted the selected song
|
|-
|-
Pvr.BackendHost
MusicPlayer.Property(Role.DJMixer)
| Backend hostname
| Returns the name of the dj who remixed the selected song
|
|-
|-
Pvr.BackendDiskSpace
MusicPlayer.Property(Role.Engineer)
| Available diskspace on the backend
| Returns the name of the person who was the engineer of the selected song
|
|-
|-
Pvr.BackendChannels
MusicPlayer.Property(Role.Lyricist)
| Number of available channels the backend provides
| Returns the name of the person who wrote the lyrics of the selected song
|
|-
|-
Pvr.BackendTimers
MusicPlayer.Property(Role.Mixer)
| Number of timers set for the backend
| Returns the name of the person who mixed the selected song
|
|-
|-
Pvr.BackendRecordings
MusicPlayer.Property(Role.Orchestra)
| Number of recording available on the backend
| Returns the name of the orchestra performing the selected song
|-
|
|  Pvr.BackendDiskspace
|  Free diskspace available for recordings on the backend
|-
|-
Pvr.BackendNumber
MusicPlayer.Property(Role.Producer)
| Backend number
| Returns the name of the person who produced the selected song
|
|-
|-
Pvr.TotalDiscSpace
MusicPlayer.Property(Role.Remixer)
| Total diskspace available for recordings
| Returns the name of the person who remixed the selected song
|
|-
|-
Pvr.NextTimer
MusicPlayer.UserRating
| Next timer date
| The rating the user gave to the currently playing song
|
|-
|-
Pvr.Duration
MusicPlayer.DBID
| {{?}}
| The database id of the currently playing song
| v17 Addition
|-
|-
Pvr.Time
MusicPlayer.DiscTitle
| {{?}}
| The title of the disc currently playing
| v19
|-
|-
Pvr.Progress
MusicPlayer.ReleaseDate
| {{?}}
| Returns the release date of the song currently playing
| v19
|-
|-
Pvr.TimeShiftStart
MusicPlayer.OriginalDate
| Start position of the timeshift
| Returns the original release date of the song currently playing
| v19
|-
|-
Pvr.TimeShiftEnd
MusicPlayer.BPM
| End position of the timeshift
| Returns the Beats Per Minute of the currently playing song
| v19
|-
|-
Pvr.TimeShiftCur
MusicPlayer.TotalDiscs
| Current position of the timeshift
| 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%" | Definition
! Version
|-
|-
Pvr.TimeShiftProgress
VideoPlayer.Time
{{?}}
Current time in movie
|
|-
|-
| Pvr.ActStreamClient
| VideoPlayer.TimeRemaining
| Stream client name
|  Current remaining time in movie
|
|-
|-
| Pvr.ActStreamDevice
| VideoPlayer.TimeSpeed
| Stream device name
|  Current time + playspeed. eg 1:23:14 (-4x)
|
|-
|-
| Pvr.ActStreamStatus
| VideoPlayer.Duration
| Status of the stream
| Length of current movie
|
|-
|-
| Pvr.ActStreamSignal
| VideoPlayer.Title
| Signal quality of the stream
| Title of currently playing video. If it's in the database it will return the database title, else the filename. (supports .offset() and .position())
|
|-
|-
| Pvr.ActStreamSnr
| VideoPlayer.OriginalTitle
| Signal to noise ratio of the stream
| The original title of currently playing video. (supports .offset() and .position())
|
|-
|-
| Pvr.ActStreamBer
| VideoPlayer.TVShowTitle
| Bit error rate of the stream
| Title of currently playing episode's tvshow name. (supports .offset() and .position())
|
|-
|-
| Pvr.ActStreamUnc
| VideoPlayer.Season
| UNC value of the stream
| Season number of the currently playing episode, if it's in the database. (supports .offset() and .position())
|
|-
|-
| Pvr.ActStreamVideoBitRate
| VideoPlayer.Episode
| Video bitrate of the stream
| Episode number of the currently playing episode. (supports .offset() and .position())
|
|-
|-
| Pvr.ActStreamAudioBitRate
| VideoPlayer.Genre
| Audio bitrate of the stream
| Genre(s) of current movie, if it's in the database. (supports .offset() and .position())
|
|-
|-
| Pvr.ActStreamDolbyBitRate
| VideoPlayer.Director
| Dolby bitrate of the stream
| Director of current movie, if it's in the database. (supports .offset() and .position())
|
|-
|-
| Pvr.ActStreamProgrSignal
| VideoPlayer.Country
| Signal quality of the programme
| 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())
|
|-
|-
| Pvr.ActStreamProgrSnr
| VideoPlayer.Rating
| Signal to noise ratio of the programme
| IMDb user rating of current movie, if it's in the database. (supports .offset() and .position())
|
|-
|-
| Pvr.ActStreamEncryptionName
| VideoPlayer.UserRating
| Encryption used on the stream
| Shows the user rating of the currently playing item. (supports .offset() and .position())
|}
|
 
=== Skin ===
 
{| class="prettytable" width="100%"
! InfoLabels
! style="80%" | Definition
|-
|-
Skin.CurrentTheme
VideoPlayer.Votes
Returns the current selected skin theme.
IMDb votes of current movie, if it's in the database. (supports .offset() and .position())
|
|-
|-
Skin.CurrentColourTheme
VideoPlayer.RatingAndVotes
Returns the current selected colour theme of the skin.
IMDb user rating and votes of current movie, if it's in the database. (supports .offset() and .position())
|
|-
|-
Skin.String(name)
VideoPlayer.mpaa
| 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.
| MPAA rating of current movie, if it's in the database. (supports .offset() and .position())
|
|-
|-
Skin.AspectRatio
VideoPlayer.IMDBNumber
Returns the closest aspect ratio match using the resolution info from the skin's addon.xml file.
The IMDB iD of the current video, if it's in the database. (supports .offset() and .position())
|}
|
 
=== Slideshow ===
 
{| class="prettytable" width="100%"
! InfoLabels
! style="80%" | Definition
|- 
|  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
VideoPlayer.EpisodeName
Shows the F-stop used to take the current picture. This is the value of the EXIF FNumber tag (hex code 0x829D).
(PVR only) The name of the episode if the playing video is a TV Show, if it's in the database
|
|-
|-
Slideshow.Author
VideoPlayer.PlaylistPosition
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).
Position of the current song in the current video playlist
|
|-
|-
Slideshow.Byline
VideoPlayer.PlaylistLength
Shows the name of the person who created the current picture.  This is the value of the IPTC Byline tag (hex code 0x50).
Total size of the current video playlist
|
|-
|-
Slideshow.BylineTitle
VideoPlayer.Cast
Shows the title of the person who created the current picture. This is the value of the IPTC BylineTitle tag (hex code 0x55).
A concatenated string of cast members of the current movie, if it's in the database
|
|-
|-
Slideshow.CameraMake
VideoPlayer.CastAndRole
Shows the manufacturer of the camera used to take the current picture. This is the value of the EXIF Make tag (hex code 0x010F).
A concatenated string of cast members and roles of the current movie, if it's in the database
|
|-
|-
Slideshow.CameraModel
VideoPlayer.Trailer
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).
The trailer of the current movie. (supports .offset() and .position())
|
|-
|-
Slideshow.Caption
VideoPlayer.Album
Shows a description of the current picture. This is the value of the IPTC Caption tag (hex code 0x78).
Album from which the current Music Video is from, if it's in the database. (supports .offset() and .position())
|
|-
|-
Slideshow.Category
VideoPlayer.Artist
Shows the subject of the current picture as a category code. This is the value of the IPTC Category tag (hex code 0x0F).
Artist(s) of current Music Video, if it's in the database. (supports .offset() and .position())
|
|-
|-
Slideshow.CCDWidth
VideoPlayer.Studio
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).
Studio of current Music Video, if it's in the database. (supports .offset() and .position())
|
|-
|-
Slideshow.City
VideoPlayer.Writer
Shows the city where the current picture was taken. This is the value of the IPTC City tag (hex code 0x5A).
Name of Writer of current playing Video, if it's in the database. (supports .offset() and .position())
|
|-
|-
Slideshow.Colour
VideoPlayer.Tagline
Shows whether the current picture is "Colour" or "Black and White".
Small Summary of current playing Video, if it's in the database. (supports .offset() and .position())
|
|-
|-
Slideshow.CopyrightNotice
VideoPlayer.PlotOutline
Shows the copyright notice of the current picture. This is the value of the IPTC Copyright tag (hex code 0x74).
Small Summary of current playing Video, if it's in the database. (supports .offset() and .position())
|
|-
|-
Slideshow.Country
VideoPlayer.Plot
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).
Complete Text Summary of current playing Video, if it's in the database. (supports .offset() and .position())
|
|-
|-
Slideshow.CountryCode
VideoPlayer.Top250
|  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).
|  Shows the IMDb top250 position of the current playing Video. (supports .offset() and .position())
|
|-
|-
Slideshow.Credit
VideoPlayer.LastPlayed
Shows who provided the current picture. This is the value of the IPTC Credit tag (hex code 0x6E).
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.VideoCodec
|  Shows the video codec of the currently playing video (common values: see ListItem.VideoCodec)
|
|-
|-
Slideshow.DigitalZoom
VideoPlayer.VideoResolution
|  Shows the digital zoom ratio when the current picture was taken. This is the value of the EXIF .DigitalZoomRatio tag (hex code 0xA404)
|  Shows the video resolution of the currently playing video (possible values: see ListItem.VideoResolution)
|
|-
|-
Slideshow.EXIFComment
VideoPlayer.VideoAspect
|  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.
|  Shows the aspect ratio of the currently playing video (possible values: see ListItem.VideoAspect)
|
|-
|-
Slideshow.EXIFDate
VideoPlayer.AudioCodec
|  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.
|  Shows the audio codec of the currently playing video, optionally 'n' defines the number of the audiostream (common values: see ListItem.AudioCodec)
|
|-
|-
Slideshow.EXIFDescription
VideoPlayer.AudioChannels
|  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).
|  Shows the number of audio channels of the currently playing video (possible values: see ListItem.AudioChannels)
|
|-
|-
Slideshow.EXIFSoftware
VideoPlayer.AudioLanguage
|  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).
|  Shows the language of the audio of the currently playing video(possible values: see ListItem.AudioLanguage)
|
|-
|-
Slideshow.EXIFTime
VideoPlayer.SubtitlesLanguage
|  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.
|  Shows the language of the subtitle of the currently playing video (possible values: see ListItem.SubtitlesLanguage)
|
|-
|-
Slideshow.Exposure
VideoPlayer.StereoscopicMode
|  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).
|  Shows the stereoscopic mode of the currently playing video (possible values: see ListItem.StereoscopicMode)
|
|-
|-
Slideshow.ExposureBias
VideoPlayer.EndTime
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).
End date of the currently playing programme (PVR).
|
|-
|-
Slideshow.ExposureMode
VideoPlayer.NextTitle
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).
Title of the programme that will be played next (PVR).
|
|-
|-
Slideshow.ExposureTime
VideoPlayer.NextGenre
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.
Genre of the programme that will be played next (PVR).
|
|-
|-
Slideshow.Filedate
VideoPlayer.NextPlot
Shows the file date of the current picture
Plot of the programme that will be played next (PVR).
|
|-
|-
Slideshow.Filename
VideoPlayer.NextPlotOutline
Shows the file name of the current picture
Plot outline of the programme that will be played next (PVR).
|
|-
|-
Slideshow.Filesize
VideoPlayer.NextStartTime
Shows the file size of the current picture
Start time of the programme that will be played next (PVR).
|
|-
|-
Slideshow.FlashUsed
VideoPlayer.NextEndTime
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).
End time of the programme that will be played next (PVR).
|
|-
|-
Slideshow.FocalLength
VideoPlayer.NextDuration
Shows the focal length of the lens, in mm. This is the value of the EXIF FocalLength tag (hex code 0x920A).
Duration of the programme that will be played next (PVR).
|
|-
|-
Slideshow.FocusDistance
VideoPlayer.ChannelName
Shows the distance to the subject, in meters. This is the value of the EXIF SubjectDistance tag (hex code 0x9206).
Name of the curently tuned channel (PVR).
|
|-
|-
Slideshow.Headline
VideoPlayer.ChannelNumberLabel
Shows a synopsis of the contents of the current picture. This is the value of the IPTC Headline tag (hex code 0x69).
Channel and subchannel number of the tv channel that's currently playing (PVR).
|
|-
|-
Slideshow.ImageType
VideoPlayer.ChannelGroup
Shows the color components of the current picture. This is the value of the IPTC ImageType tag (hex code 0x82).
Group of the curently tuned channel (PVR).
|
|-
|-
Slideshow.IPTCDate
VideoPlayer.ParentalRating
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).
Parental rating of the currently playing programme (PVR).
|
|-
|-
Slideshow.ISOEquivalence
VideoPlayer.DBID
| 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 database id of the currently playing video. (supports .offset() and .position())
| v17 Addition
|-
|-
| Slideshow.Keywords
| VideoPlayer.UniqueID()
| Shows keywords assigned to the current picture. This is the value of the IPTC Keywords tag (hex code 0x19).
| Returns the UniqueID of the currently playing video
| v19
|-
|-
| Slideshow.Latitude
| VideoPlayer.TvShowDBID
| 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.
| Returns the tv show DBID of the currently playing episode
| v19
|}
 
=== Playlist ===
 
{| class="wikitable sortable" width="100%"
! InfoLabels
! style="80%" | Definition
! Version
|-
|-
Slideshow.LightSource
Playlist.Length(media)
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).
Total size of the current playlist. optional parameter media is either video or music.
|
|-
|-
Slideshow.LongEXIFDate
Playlist.Position(media)
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.
Position of the current item in the current playlist. optional parameter media is either video or music.
|
|-
|-
Slideshow.LongEXIFTime
Playlist.Random
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.
Returns 'On' or 'Off'
|
|-
|-
Slideshow.Longitude
Playlist.Repeat
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.
Returns string ID's 592 (Repeat One), 593 (Repeat All), or 594 (Repeat Off)
|-
|
| 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).
 
=== PVR ===
 
{| class="wikitable sortable" width="100%"
! InfoLabels
! style="80%" | Definition
! Version
|-
|-
Slideshow.ObjectName
PVR.NowRecordingTitle
Shows a shorthand reference for the current picture. This is the value of the IPTC ObjectName tag (hex code 0x05).
Title of the programme being recorded
|
|-
|-
Slideshow.Orientation
PVR.NowRecordingDateTime
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).
Start date and time of the current recording
|
|-
|-
Slideshow.Path
PVR.NowRecordingChannel
Shows the file path of the current picture
Channel number that's being recorded
|
|-
|-
Slideshow.Process
PVR.NextRecordingTitle
Shows the process used to compress the current picture
Title of the next programme that will be recorded
|
|-
|-
Slideshow.ReferenceService
PVR.NextRecordingDateTime
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).
Start date and time of the next recording
|
|-
|-
Slideshow.Resolution
PVR.NextRecordingChannel
Shows the dimensions of the current picture (Width x Height)
Channel name of the next recording
|
|-
|-
Slideshow.SlideComment
PVR.BackendName
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.
Name of the backend being used
|
|-
|-
Slideshow.SlideIndex
PVR.BackendVersion
Shows the slide index of the current picture
Version of the backend that's being used
|
|-
|-
Slideshow.Source
PVR.BackendHost
Shows the original owner of the current picture. This is the value of the IPTC Source tag (hex code 0x73).
Backend hostname
|
|-
|  PVR.BackendDiskSpace
|  Available diskspace on the backend
|
|-
|-
Slideshow.SpecialInstructions
PVR.BackendChannels
Shows other editorial instructions concerning the use of the current picture. This is the value of the IPTC SpecialInstructions tag (hex code 0x28).
Number of available channels the backend provides
|
|-
|-
Slideshow.State
PVR.BackendTimers
Shows the State/Province where the current picture was taken. This is the value of the IPTC ProvinceState tag (hex code 0x5F).
Number of timers set for the backend
|
|-
|-
Slideshow.Sublocation
PVR.BackendRecordings
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).
Number of recording available on the backend
|
|-  
|  PVR.BackendDiskspace
|  Free diskspace available for recordings on the backend
|
|-
|-
Slideshow.SupplementalCategories
PVR.BackendNumber
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).
Backend number
|
|-
|-
Slideshow.TimeCreated
PVR.TotalDiscSpace
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).
Total diskspace available for recordings
|
|-
|-
Slideshow.TransmissionReference
PVR.NextTimer
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).
Next timer date
|
|-
|-
Slideshow.Urgency
PVR.EpgEventDuration[(format)]
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).
Returns the duration of the currently played title on TV. See ListItem.Duration for optinional formatting options
|
|-
|-
Slideshow.WhiteBalance
PVR.EpgEventElapsedTime[(format)]
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).
Returns the time position of the currently played title on TV. See ListItem.Duration for optinional formatting options
|}
|
 
=== System ===
 
{| class="prettytable" width="100%"
! InfoLabels
! style="80%" | Definition
|-
|-
System.Time
PVR.EpgEventRemainingTime[(format)]
Current time
Returns the remaining time for currently playing epg event. See ListItem.Duration for optinional formatting options
|  v18
|-
|-
System.Time(format)
PVR.EpgEventFinishTime[(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
Returns the time the currently playing epg event will end. See ListItem.Duration for optinional formatting options
|  v18
|-
|-
System.Date
PVR.EpgEventSeekTime[(format)]
Current date
Returns the seek time of the currently playing epg event. See ListItem.Duration for optinional formatting options
|  v18
|-
|-
System.Date(format)
PVR.EpgEventProgress
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.
Returns the position of currently played title on TV as integer
|
|-
|-
System.AlarmPos
PVR.TimeShiftStart[(format)]
Shutdown Timer position
Start position of the timeshift. See ListItem.Duration for optinional formatting options
|
|-
|-
System.BatteryLevel
PVR.TimeShiftEnd[(format)]
Returns the remaining battery level in range 0-100
End position of the timeshift. See ListItem.Duration for optinional formatting options
|
|-
|-
System.FreeSpace
PVR.TimeShiftCur[(format)]
Total Freespace on the drive
Current position of the timeshift. See ListItem.Duration for optinional formatting options
|-
|-
System.UsedSpace
PVR.TimeShiftOffset[(format)]
Total Usedspace on the drive
Current offset of the timeshift. See ListItem.Duration for optinional formatting options
|
|-
|-
System.TotalSpace
PVR.TimeShiftProgress
Totalspace on the drive
Returns the position of currently timeshifted title on TV as interger
|
|-
|-
| System.UsedSpacePercent
| PVR.ActStreamClient
| Total Usedspace Percent on the drive
| Stream client name
|
|-
|-
| System.FreeSpacePercent
| PVR.ActStreamDevice
| Total Freespace Percent on the drive
| Stream device name
|
|-
|-
| System.CPUTemperature
| PVR.ActStreamStatus
| Current CPU temperature
| Status of the stream
|
|-
|-
| System.CpuUsage
| PVR.ActStreamSignal
| Displays the cpu usage for each individual cpu core.
| Signal quality of the stream
|
|-
|-
| System.CoreUsage(id)
| PVR.ActStreamSnr
| Displays the usage of the cpu core with the given 'id'
| Signal to noise ratio of the stream
|
|-
|-
| System.GPUTemperature
| PVR.ActStreamBer
| Current GPU temperature
| Bit error rate of the stream
|
|-
|-
| System.FanSpeed
| PVR.ActStreamUnc
| Current fan speed
| UNC value of the stream
|
|-
|-
| System.BuildVersion
| PVR.ActStreamVideoBitRate
| Version of build
| Video bitrate of the stream
|
|-
|-
| System.BuildDate
| PVR.ActStreamAudioBitRate
| Date of build
| Audio bitrate of the stream
|
|-
|-
| System.FriendlyName
| PVR.ActStreamDolbyBitRate
| Returns the Kodi instance name. It will auto append (%hostname%) in case the device name was not changed. eg. "Kodi (htpc)"
| Dolby bitrate of the stream
|
|-
|-
| System.FPS
| PVR.ActStreamProgrSignal
| Current rendering speed (frames per second)
| Signal quality of the programme
|
|-
| PVR.ActStreamProgrSnr
| Signal to noise ratio of the programme
|
|-
|-
| System.FreeMemory
| PVR.ActStreamEncryptionName
| Amount of free memory in Mb
| Encryption used on the stream
|
|-
|-
| System.Memory(format)
| PVR.TVNowRecordingTitle
| Available formats: used, used.percent, free, free.percent, total
| Title of the tv programme being recorded
| {{nowrap|v17 Addition}}
|-
|-
| System.ScreenMode
| PVR.TVNowRecordingDateTime
| Screenmode (eg windowed / fullscreen)
| Start date and time of the current tv recording
| {{nowrap|v17 Addition}}
|-
|-
| System.ScreenWidth
| PVR.TVNowRecordingChannel
| Width of screen in pixels
| Channel name of the current tv recording
| {{nowrap|v17 Addition}}
|-
|-
| System.ScreenHeight
| PVR.TVNowRecordingChannelIcon
| Height of screen in pixels
| Icon of the current recording TV channel
| {{nowrap|v17 Addition}}
|-
|-
| System.StartupWindow
| PVR.TVNextRecordingTitle
| The Window Kodi will load on startup
| Title of the next tv programme that will be recorded
| {{nowrap|v17 Addition}}
|-
|-
| System.CurrentWindow
| PVR.TVNextRecordingDateTime
| Current Window we are in
| Start date and time of the next tv recording
| {{nowrap|v17 Addition}}
|-
|-
| System.CurrentControl
| PVR.TVNextRecordingChannel
| Current focused control
| Channel name of the next tv recording
| {{nowrap|v17 Addition}}
|-
|-
| System.DVDLabel
| PVR.TVNextRecordingChannelIcon
| Label of the disk in the <span class="nobr">DVD-ROM</span> drive
| Icon of the next recording tv channel
| {{nowrap|v17 Addition}}
|-
|-
| System.HddTemperature
| PVR.RadioNowRecordingTitle
| Hdd temperature
| Title of the radio programme being recorded
| {{nowrap|v17 Addition}}
|-
|-
| System.KernelVersion
| PVR.RadioNowRecordingDateTime
| System kernel version
| Start date and time of the current radio recording
| {{nowrap|v17 Addition}}
|-
|-
| System.Uptime
| PVR.RadioNowRecordingChannel
| System current uptime
| Channel name of the current radio recording
| {{nowrap|v17 Addition}}
|-
|-
| System.TotalUptime
| PVR.RadioNowRecordingChannelIcon
| System total uptime
| Icon of the current recording radio channel
| {{nowrap|v17 Addition}}
|-
| PVR.RadioNextRecordingTitle
| Title of the next radio programme that will be recorded
| {{nowrap|v17 Addition}}
|-
| PVR.RadioNextRecordingDateTime
| Start date and time of the next radio recording
| {{nowrap|v17 Addition}}
|-
| PVR.RadioNextRecordingChannel
| Channel name of the next radio recording
| {{nowrap|v17 Addition}}
|-
|-
System.CpuFrequency
PVR.ChannelNumberInput
System cpu frequency
Label displaying the number the user entered on remote or keyboard
|  v18
|-
|-
System.ScreenResolution
PVR.TimeshiftProgressDuration
Screen resolution
Returns the duration of the PVR timeshift progress in the format hh:mm:ss. hh: will be omitted if hours value is zero
|  v18
|-
|-
System.VideoEncoderInfo
PVR.TimeshiftProgressDuration(format)
Video encoder info
Returns the duration of the PVR timeshift progress in different formats, hours (hh), minutes (mm) or seconds (ss)
|  v18
|-
|-
System.InternetState
PVR.TimeshiftProgressStartTime
Will return the internet state, connected or not connected
Returns the start time of the PVR timeshift progress in the format hh:mm:ss. hh: will be omitted if hours value is zero
and for Conditional use: Connected->TRUE, not Connected->FALSE, do not use to check status in a pythonscript since it is threaded.
|  v18
|-
|-
System.Language
PVR.TimeshiftProgressStartTime(format)
Shows the current language
Returns the start time of the PVR timeshift progress in different formats, hours (hh), minutes (mm) or seconds (ss)
|  v18
|-
|-
System.GetBool(boolean)
PVR.TimeshiftProgressEndTime
|  Returns the value of any standard system boolean settingWill not work with settings in advancedsettings.xml
|  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
|-
|-
System.ProfileName
PVR.TimeshiftProgressEndTime(format)
Shows the User name of the currently logged in Kodi user
Returns the end time of the PVR timeshift progress in different formats, hours (hh), minutes (mm) or seconds (ss)
|  v18
|-
|-
System.ProfileCount
PVR.TimeshiftProgressPlayPos
Shows the number of defined profiles
Returns the percentage of the current play position within the PVR timeshift progress
|  v18
|-
|-
System.ProfileAutoLogin
PVR.TimeshiftProgressEpgStart
The profile Kodi will auto login to
Returns the percentage of the start of the currently playing epg event within the PVR timeshift progress
|  v18
|-
|-
System.StereoscopicMode
PVR.TimeshiftProgressEpgEnd
The prefered stereoscopic mode (settings > video > playback)
Returns the percentage of the end of the currently playing epg event within the PVR timeshift progress
|  v18
|-
|-
System.TemperatureUnits
PVR.TimeshiftProgressBufferStart
Shows Celsius or Fahrenheit symbol
Returns the percentage of the start of the timeshift buffer within the PVR timeshift progress
|  v18
|-
|-
System.AddonTitle(id)
PVR.TimeshiftProgressBufferEnd
|  Returns the title of the addon with the given id
|  Returns the percentage of the end of the timeshift buffer within the PVR timeshift progress
|  v18
|-
|-
| System.AddonVersion(id)
| PVR.TimeShiftSeekbar
| Returns the version of the addon with the given id
| 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
|}
|}


=== Visualisation ===
=== RDS ===
 
{| class="wikitable sortable" width="100%"
{| class="prettytable" width="100%"
! InfoLabels
! InfoLabels
! style="80%" | Definition
! style="80%" | Definition
! Version
|-
|-
Visualisation.Preset
RDS.AudioLanguage
Shows the current preset of the visualisation.
The from RDS reported audio language of channel
|-
|-
Visualisation.Name
RDS.ChannelCountry
Shows the name of the visualisation.
Country where the radio channel is sended
|}
|
 
=== Weather labels ===
 
{| class="prettytable" width="100%"
! InfoLabels
! style="80%" | Definition
|-
|-
Weather.Conditions
RDS.GetLine(number)
Current weather conditions – this is looked up in a background process.
Returns the last sended RDS text messages on givern number, 0 is thelast and 4 rows are supported (0-3)
|-
|-
Weather.Temperature
RDS.Title
Current weather temperature
|  Title of item; e.g. track title of an album (Only be available on RadiotextPlus)
|   
|-
|-
Weather.Location
RDS.Artist
City/town which the above two items are for
A person or band/collective generally considered responsible for the work (Only be available on RadiotextPlus)
|-
|-
Weather.fanartcode
RDS.Band
Current weather fanartcode.
|  Band/orchestra/accompaniment/musician (Only be available on RadiotextPlus)
|-
|   
Weather.plugin
|-
Current weather plugin.
RDS.Composer
|}
Name of the original composer/author (Only be available on RadiotextPlus)
 
|
=== Window ===
|-
 
|  RDS.Conductor
{| class="prettytable" width="100%"
|  The artist(s) who performed the work. In classical music this would bethe conductor (Only be available on RadiotextPlus)
! InfoLabels
|
! style="80%" | Definition
|-
|-
|  RDS.Album
Window([window]).Property(key)
|  The collection name to which this track belongs (Only be available on RadiotextPlus)
Window property. (key can be any value, optional window can be id or name)
|
|-
|-
Window.Property(xmlfile)
RDS.TrackNumber
Displays the name of the xml file currently shown
The track number of the item on the album on which it was originallyreleased. (Only be available on RadiotextPlus)
|-
|  Window(AddonBrowser).Property(Updated)
|-
|  Shows the date and time the addon repo was last checked for updates
RDS.RadioStyle
|-
The from radio channel used style of currently played part, e.g "popmusic", "news" or "weather"
|  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
|  RDS.Comment
 
|  Radio station comment string if available (Only be available on RadiotextPlus)
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
|  RDS.InfoNews
 
|  Message / headline (if available) (Only be available on RadiotextPlus)
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
|  RDS.InfoNewsLocal
 
|  Local information news sended from radio channel (if available) (Only be available on RadiotextPlus)
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
|-
|  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 ===
 
{| class="wikitable sortable" width="100%"
! InfoLabels
! style="80%" | Definition
! 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 <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.
|
|-
|  Skin.AspectRatio
|  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%" | 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
|  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 ===
 
{| class="wikitable sortable" width="100%"
! InfoLabels
! style="80%" | Definition
! 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. eg. "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 (eg 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 <span class="nobr">DVD-ROM</span> 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 ===
 
{| class="wikitable sortable" width="100%"
! InfoLabels
! style="80%" | Definition
! Version
|-
|  Visualisation.Preset
|  Shows the current preset of the visualisation.
|
|-
|  Visualisation.Name
|  Shows the name of the visualisation.
|
|}
 
=== Weather labels ===
 
{| class="wikitable sortable" width="100%"
! InfoLabels
! style="80%" | Definition
! 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 ===
 
{| class="wikitable sortable" width="100%"
! InfoLabels
! style="80%" | Definition
! 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)
|  Window(Weather).Property(key)
Line 1,659: Line 2,915:


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
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 ===
=== Images Available in Kodi ===


{| class="prettytable" width="100%"
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
! InfoLabels
! style="80%" | Definition
! style="80%" | Definition
! Version
|-
|-
Container.Art(tvshow.fanart)
ListItem.Art(type)
|  Fanart Image of the parent TV show
Artwork for the current listitem.
|-
|
|  Container.Art(season.poster)
|  Thumbnail Image of the parent season
|-
|  Container.Art(artist.fanart)
Fanart Image of the parent album artist
|-
|  Container.Art(artist.thumb)
| Thumbnail Image of the parent album artist
|-
|-
|  Fanart.Image
|  Fanart.Image
|  Fanart image for the parent TV Show
|  Fanart image for the parent TV Show. Note: Deprecated, use ListItem.Art(tvshow.fanart) instead.
|
|-
|-
|  ListItem.Thumb
|  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).
|  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
|  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 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
|  ListItem.ActualIcon
|  Shows the icon of the currently selected item in a list or thumb control.
|  Shows the default icon of the currently selected item in a list or thumb control.
|
|-
|-
|  ListItem.Art(clearart)
|  ListItem.Overlay
Returns the clearart (if it exists) of the currently selected movie or tv show.
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.Art(clearlogo)
|  ListItem.EPGEventIcon
|  Returns the clearlogo (if it exists) of the currently selected movie or tv show.
|  Returns the icon of the EPG programme (if available).
|  v18
|-
|-
|  ListItem.Art(thumb)
|  ListItem.Property(Fanart_Image)
Returns the thumbnail of the currently selected item.
Fanart Image currently selected item or of the parent TV show. Note: Deprecated, use ListItem.Art(fanart) or ListItem.Art(tvshow.fanart) instead.
|
|-
|-
ListItem.Art(poster)
MusicPlayer.Cover
Returns the poster of the currently selected movie or tv show.
Cover of currently playing album
|
|-
|-
ListItem.Art(banner)
MusicPlayer.Property(Fanart_Image)
Returns the banner of the currently selected tv show.
Fanart image of the currently playing artist
|
|-
|-
ListItem.Art(fanart)
Player.Art(type)
Returns the fanart image of the currently selected item.
Artwork for the currently playing item.
|
|-
|-
ListItem.Art(landscape)
Player.Icon
Returns the landscape art of the currently selected item.
Shows the thumbnail (if it exists) of the currently playing item. If no thumbnail image exists, it will show the icon.
|  v18
|-
|-
ListItem.Art(tvshow.poster)
Player.StarRating
|  Returns the tv show poster of the parent container.
|  Returns a value of 0 to 5 as a graphical display from images named rating0.png to rating5.png of the skin
|
|-
|-
ListItem.Art(tvshow.banner)
Pvr.NowRecordingChannelIcon
Returns the tv show banner of the parent container.
Channel icon of the programme currently being recorded.
|
|-
|-
ListItem.Art(season.poster)
Pvr.NextRecordingChannelIcon
|  Returns the season poster of the currently selected season. (Only available in DialogVideoInfo.xml)
Channel icon of the programme that will be recorded next.
|-
|
|  ListItem.Art(season.banner)
|  Returns the season banner of the currently selected season. (Only available in DialogVideoInfo.xml)
|-
|  ListItem.Art(season.fanart)
|  Returns the fanart image of the currently selected season. (Only available in DialogVideoInfo.xml)
|-
|  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.StarRating
|  Returns a value of 0 to 5 as a graphical display from images named rating0.png to rating5.png of the skin
|-
|  ListItem.Property(ArtistThumb)
|  Thumbnail Image of the parent artist, for use in dialogalbuminfo.xml and dialogsonginfo.xml
|-
|  ListItem.Property(Addon.StarRating)
|  Returns a value of rating0.png to rating5.png for the currently selected addon
|-
|  ListItem.Property(Fanart_Image)
|  Fanart Image currently selected item or of the parent TV show
|-
|  ListItem.Property(SeasonThumb)
|  Thumbnail Image of the parent TV show season, for use in dialogvideoinfo.xml
|-
|  ListItem.Property(TVShowThumb)
|  Thumbnail Image of the parent TV show, for use in dialogvideoinfo.xml (available anywhere)
|-
|  MusicPlayer.Cover
|  Cover of currently playing album
|-
|  MusicPlayer.Property(Fanart_Image)
|  Fanart image of the currently playing artist
|-
|  Player.Art(fanart)
|  Fanart Image of the currently playing episode's parent TV show
|-
|  Player.Art(thumb)
|  Returns the thumbnail image of the currently playing item.
|-
|  Player.Art(poster)
|  Returns the poster of the currently playing movie.
|-
|  Player.Art(tvshow.poster)
|  Returns the tv show poster of the currently playing episode's parent TV show.
|-
|  Player.Art(tvshow.banner)
Returns the tv show banner of the currently playing episode's parent TV show.
|-
|  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
|  Pvr.EPGEventIcon
Channel icon of the programme currently being recorded.
Returns the icon of the currently playing EPG programme (if available).
|-
v18
|  Pvr.NextRecordingChannelIcon
Channel icon of the programme that will be recorded next.
|-
|-
|  Skin.String(name)
|  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 <span class="nobr">user-customisable</span> images and multiimages.
| 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.
|
|-
|-
|  System.AddonIcon(id)
|  System.AddonIcon(id)
|  Returns the Icon of the specified addon. Instead of specifying the id directly, one can also use an infolabel (eg. $INFO[Skin.String(Foo)])
|  Returns the Icon of the specified addon. Instead of specifying the id directly, one can also use an infolabel (eg. $INFO[Skin.String(Foo)])
|
|-
|-
|  System.ProfileThumb
|  System.ProfileThumb
|  Shows the Thumbnail image of the currently logged in Kodi user
|  Shows the Thumbnail image of the currently logged in Kodi user
|
|-
|-
|  VideoPlayer.Cover
|  VideoPlayer.Cover
|  Cover of currently playing movie
|  Cover of currently playing movie.  Note: Deprecated, use Player.Art(type) instead.
|
|-
|-
|  Weather.Conditions
|  Weather.ConditionsIcon
|  Image of current weather conditions (NOTE: Can be used to load/refresh weather conditions)
|  Image of current weather conditions (NOTE: Can be used to load/refresh weather conditions)
|
|-
|-
|  Window([window]).Property(key)
|  Window([window]).Property(key)
|  Window property. (key can be any value, optional window can be id or name)
|  Window property. (key can be any value, optional window can be id or name)
|
|-
|-
|  Window(Weather).Property(key)
|  Window(Weather).Property(key)
|  The weather window has the following info images.
|  The weather window has the following info images.
Current.ConditionIcon, Day[0-6].OutlookIcon, Current.FanartCode, Day[0-6].FanartCode, WeatherProviderLogo
Current.ConditionIcon, Day[0-6].OutlookIcon, Current.FanartCode, Day[0-6].FanartCode, WeatherProviderLogo
|
|}
|}


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


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


{{top}}
{{updated|19}}
[[Category:Skin development]]
[[Category:Skin development]]
[[Category:Add-on development]]
[[Category:Add-on development]]

Revision as of 08:07, 21 January 2022

Home icon grey.png   ▶ 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').

An up-to-date list can be found here GUIInfoManager.cpp

Container

InfoLabels Definition Version
Container.Content Shows content of the current container
Container.FolderPath Shows complete path of currently displayed folder
Container.FolderName Shows top most folder in currently displayed folder
Container.Viewmode Returns the current viewmode (list, icons etc.)
Container.SortMethod Returns the current sort method (returns the localized name of: title, year, rating, etc.)
Container.SortOrder Returns the current sort order (Ascending/Descending)
Container.PluginName Returns the current plugins base folder name
Container.PluginCategory Returns the current plugins category (set by the scripter)
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 addition
Container(id).NumPages Number of pages in the container with given id. If no id is specified it grabs the current container.
Container(id).NumItems Number of items in the container or grouplist with given id. If no id is specified it grabs the current container.
Container(id).NumAllItems Number of all items in the container or grouplist with given id including parent folder item. v18
Container(id).NumNonFolderItems Number of items in the container or grouplist with given id excluding all folder items. v18
Container(id).CurrentPage Current page in the container with given id. If no id is specified it grabs the current container.
Container(id).CurrentItem Current absolute item in the container or grouplist with given id. If no id is specified it grabs the current container.
Container(id).Position Returns the current focused position of the container / grouplist (id) as a numeric label.
Container(id).Column Returns the column number of the focused position in a panel container.
Container(id).Row Returns the row number of the focused position in a panel container.
Container.Totaltime Returns the total time of all items in the current container
Container.TotalWatched Returns the number of watched items in the current container
Container.TotalUnWatched Returns the number of unwatched items in the current container
Container(id).ListItem(offset).Label Shows ListItem.Label for a specific List or Panel Container with a offset ( eg: Container(50).Listitem(2).Label )
Container(id).ListItem(offset).Label2 Shows ListItem.Label2 for a specific List or Panel Container with a offset ( eg: Container(50).Listitem(-2).Label2 )
Container(id).ListItem(offset).Icon Shows ListItem.Icon for a specific List or Panel Container with a offset ( eg: Container(52).Listitem(1).Icon)
Container(id).ListItem(offset).ActualIcon Shows ListItem.ActualIcon for a specific List or Panel Container with a offset ( eg: Container(50).Listitem(0).ActualIcon )
Container(id).ListItem(offset).Thumb Shows ListItem.Thumb for a specific List or Panel Container with a offset ( eg: Container(50).Listitem(0).Thumb )
Container(id).ListItemNoWrap(offset).Property 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 )
Container(id).ListItemPosition(id).[infolabel] Shows the infolabel for an item at position 'id' in a Container. the id is an offset to the first *visible* item of the container. ( eg: Container(50).ListItemPosition(4).Genre )
Container(id).ListItemAbsolute(id).[infolabel] 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 )
Container.Property(addoncategory) Returns the current add-on category
Container.Property(reponame) Returns the current add-on repository name
Container.ViewCount The number of available skin view modes for the current container listing.

Control

InfoLabels Definition Version
Control.GetLabel(id)[.index()] 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.

Fanart

InfoLabels Definition Version
Fanart.Color1 Returns the first of three colors included in the currently selected Fanart theme for the parent TV Show. Colors are arranged Lightest to Darkest.
Fanart.Color2 Returns the second of three colors included in the currently selected Fanart theme for the parent TV Show. Colors are arranged Lightest to Darkest.
Fanart.Color3 Returns the third of three colors included in the currently selected Fanart theme for the parent TV Show. Colors are arranged Lightest to Darkest.

Game

InfoLabels Definition Version
Game.Title Name of the game v18
Game.Platform Platform the game runs on (eg. Atari 2600) v18
Game.Genres Gerne of the game (eg. Action) v18
Game.Publisher Publishing company of the game (eg. Nintendo) v18
Game.Developer Developer of the game v18
Game.Overview Game description v18
Game.Year Year the game was released v18
Game.GameClient Name of the used emulator v18

ListItem

InfoLabels Definition Version
ListItem.Label Shows the left label of the currently selected item in a container
ListItem.Label2 Shows the right label of the currently selected item in a container
ListItem.Title Shows the title of the currently selected song or movie in a container
ListItem.OriginalTitle Shows the original title of the currently selected movie in a container
ListItem.SortLetter Shows the first letter of the current file in a container
ListItem.TrackNumber Shows the track number of the currently selected song in a container
ListItem.Artist Shows the artist of the currently selected song in a container
ListItem.AlbumArtist Shows the artist of the currently selected album in a list
ListItem.Property(Artist_Born) Date of Birth of the currently selected Artist
ListItem.Property(Artist_Died) Date of Death of the currently selected Artist
ListItem.Property(Artist_Formed) Formation date of the currently selected Band
ListItem.Property(Artist_Disbanded) Disbanding date of the currently selected Band
ListItem.Property(Artist_YearsActive) Years the currently selected artist has been active
ListItem.Property(Artist_Instrument) Instruments played by the currently selected artist
ListItem.Property(Artist_Description) Shows a biography of the currently selected artist
ListItem.Property(Artist_Mood) Shows the moods of the currently selected artist
ListItem.Property(Artist_Style) Shows the styles of the currently selected artist
ListItem.Property(Artist_Genre) Shows the genre of the currently selected artist
Listitem.Property(Artist_Sortname) Sortname of the currently selected Artist v18
Listitem.Property(Artist_Type) Type of the currently selected Artist - person, group, orchestra, choir etc. v18
Listitem.Property(Artist_Gender) Gender of the currently selected Artist - male, female, other v18
Listitem.Property(Artist_Disambiguation) Brief description of the currently selected Artist that differentiates them from others with the same name v18
ListItem.Album Shows the album of the currently selected song in a container
ListItem.Property(Album_Mood) Shows the moods of the currently selected Album
ListItem.Property(Album_Style) Shows the styles of the currently selected Album
ListItem.Property(Album_Theme) Shows the themes of the currently selected Album
ListItem.Property(Album_Type) Shows the Album Type (e.g. compilation, enhanced, explicit lyrics) of the currently selected Album
ListItem.Property(Album_Label) Shows the record label of the currently selected Album
ListItem.Property(Album_Description) Shows a review of the currently selected Album
ListItem.Property(Album_Rating) Shows the scraped rating of the currently selected Album
ListItem.Property(Album_UserRating) Shows the user rating of the currently selected Album
ListItem.DiscNumber Shows the disc number of the currently selected song in a container
ListItem.Year Shows the year of the currently selected song, album or movie in a container
ListItem.Premiered Shows the release/aired date of the currently selected episode, show, movie or EPG item in a container
ListItem.Genre Shows the genre of the currently selected song, album or movie in a container
ListItem.Director Shows the director of the currently selected movie in a container
ListItem.Country Shows the production country of the currently selected movie in a container
ListItem.Episode 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.
ListItem.Season Shows the season value for the currently selected tvshow
ListItem.TVShowTitle Shows the name value for the currently selected tvshow in the season and episode depth of the video library
ListItem.Property(TotalSeasons) Shows the total number of seasons for the currently selected tvshow
ListItem.Property(TotalEpisodes) Shows the total number of episodes for the currently selected tvshow or season
ListItem.Property(WatchedEpisodes) Shows the number of watched episodes for the currently selected tvshow or season
ListItem.Property(UnWatchedEpisodes) Shows the number of unwatched episodes for the currently selected tvshow or season
ListItem.Property(NumEpisodes) Shows the number of total, watched or unwatched episodes for the currently selected tvshow or season, based on the the current watched filter.
ListItem.PictureAperture Shows the F-stop used to take the selected picture. This is the value of the EXIF FNumber tag (hex code 0x829D).
ListItem.PictureAuthor 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).
ListItem.PictureByline Shows the name of the person who created the selected picture. This is the value of the IPTC Byline tag (hex code 0x50).
ListItem.PictureBylineTitle Shows the title of the person who created the selected picture. This is the value of the IPTC BylineTitle tag (hex code 0x55).
ListItem.PictureCamMake Shows 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 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).
ListItem.PictureCaption Shows a description of the selected picture. This is the value of the IPTC Caption tag (hex code 0x78).
ListItem.PictureCategory Shows the subject of the selected picture as a category code. This is the value of the IPTC Category tag (hex code 0x0F).
ListItem.PictureCCDWidth 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).
ListItem.PictureCity Shows the city where the selected picture was taken. This is the value of the IPTC City tag (hex code 0x5A).
ListItem.PictureColour Shows whether the selected picture is "Colour" or "Black and White".
ListItem.PictureComment 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.
ListItem.PictureCopyrightNotice Shows the copyright notice of the selected picture. This is the value of the IPTC Copyright tag (hex code 0x74).
ListItem.PictureCountry 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).
ListItem.PictureCountryCode 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).
ListItem.PictureCredit Shows who provided the selected picture. This is the value of the IPTC Credit tag (hex code 0x6E).
ListItem.PictureDate 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.
ListItem.PictureDatetime 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.
ListItem.PictureDesc 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).
ListItem.PictureDigitalZoom Shows the digital zoom ratio when the selected picture was taken. This is the value of the EXIF DigitalZoomRatio tag (hex code 0xA404).
ListItem.PictureExpMode 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).
ListItem.PictureExposure 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).
ListItem.PictureExposureBias 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).
ListItem.PictureExpTime 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.
ListItem.PictureFlashUsed 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).
ListItem.PictureFocalLen Shows the lens focal length of the selected picture
ListItem.PictureFocusDist Shows the focal length of the lens, in mm. This is the value of the EXIF FocalLength tag (hex code 0x920A).
ListItem.PictureGPSLat 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.
ListItem.PictureGPSLon 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.
ListItem.PictureGPSAlt Shows the altitude in meters where the selected picture was taken. This is the value of the EXIF GPSInfo.GPSAltitude tag.
ListItem.PictureHeadline Shows a synopsis of the contents of the selected picture. This is the value of the IPTC Headline tag (hex code 0x69).
ListItem.PictureImageType Shows the color components of the selected picture. This is the value of the IPTC ImageType tag (hex code 0x82).
ListItem.PictureIPTCDate 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).
ListItem.PictureIPTCTime 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).
ListItem.PictureISO 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).
ListItem.PictureKeywords Shows keywords assigned to the selected picture. This is the value of the IPTC Keywords tag (hex code 0x19).
ListItem.PictureLightSource 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).
ListItem.PictureLongDate 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.
ListItem.PictureLongDatetime 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.
ListItem.PictureMeteringMode 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).
ListItem.PictureObjectName Shows a shorthand reference for the selected picture. This is the value of the IPTC ObjectName tag (hex code 0x05).
ListItem.PictureOrientation 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).
ListItem.PicturePath Shows the filename and path of the selected picture
ListItem.PictureProcess Shows the process used to compress the selected picture
ListItem.PictureReferenceService 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).
ListItem.PictureResolution Shows the dimensions of the selected picture
ListItem.PictureSource Shows the original owner of the selected picture. This is the value of the IPTC Source tag (hex code 0x73).
ListItem.PictureSpecialInstructions Shows other editorial instructions concerning the use of the selected picture. This is the value of the IPTC SpecialInstructions tag (hex code 0x28).
ListItem.PictureState Shows the State/Province where the selected picture was taken. This is the value of the IPTC ProvinceState tag (hex code 0x5F).
ListItem.PictureSublocation 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).
ListItem.PictureSupplementalCategories 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).
ListItem.PictureTransmissionReference 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).
ListItem.PictureUrgency 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).
ListItem.PictureWhiteBalance 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).
ListItem.FileName Shows the filename of the currently selected song or movie in a container
ListItem.FileNameNoExtension Returns the filename without its extension. v19
ListItem.Path Shows the complete path of the currently selected song or movie in a container
ListItem.FolderName Shows top most folder of the path of the currently selected song or movie in a container
ListItem.FolderPath Shows the complete path of the currently selected song or movie in a container (without user details).
ListItem.FileNameAndPath Shows the full path with filename of the currently selected song or movie in a container
ListItem.FileExtension Shows the file extension (without leading dot) of the currently selected item in a container
ListItem.Date 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)
ListItem.DateAdded Shows the date the currently selected item was added to the library / Date and time of an event in the EventLog window.
ListItem.Size Shows the file size of the currently selected song or movie in a container
ListItem.Rating[(name)] 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, for use in dialogvideoinfo.xml.
ListItem.Set Shows the name of the set the movie is part of
ListItem.SetId Shows the id of the set the movie is part of
ListItem.UserRating Shows the user rating of the currently selected item in a container
ListItem.Votes[(name)] 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, for use in dialogvideoinfo.xml.
ListItem.RatingAndVotes[(name)] 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, for use in dialogvideoinfo.xml.
ListItem.Mpaa Show the MPAA rating of the currently selected movie in a container
ListItem.ProgramCount Shows the number of times an xbe has been run from "my programs"
ListItem.Duration[(format)] Shows 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.DBTYPE 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.
ListItem.DBID Shows the database id of the currently selected listitem in a container
ListItem.Cast Shows a concatenated string of cast members of the currently selected movie, for use in dialogvideoinfo.xml
ListItem.CastAndRole Shows a concatenated string of cast members and roles of the currently selected movie, for use in dialogvideoinfo.xml
ListItem.Studio Studio of current selected Music Video in a container
ListItem.Top250 Shows the IMDb top250 position of the currently selected listitem in a container.
ListItem.Trailer Shows the full trailer path with filename of the currently selected movie in a container
ListItem.Writer Name of Writer of current Video in a container
ListItem.Tagline Small Summary of current Video in a container
ListItem.PlotOutline Small Summary of current Video in a container
ListItem.Plot Complete Text Summary of Video in a container
ListItem.IMDBNumber The IMDB iD of the selected Video in a container
ListItem.EpisodeName (PVR only) The name of the episode if the selected EPG item is a TV Show
ListItem.PercentPlayed Returns percentage value [0-100] of how far the selected video has been played
ListItem.LastPlayed Last play date of Video in a container
ListItem.PlayCount Playcount of Video in a container
ListItem.StartTime Start time of current selected TV programme in a container
ListItem.EndTime End time of current selected TV programme in a container
ListItem.StartDate Start date of current selected TV programme in a container
ListItem.ChannelName Name of current selected TV channel in a container
ListItem.VideoCodec 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)
ListItem.VideoResolution Shows the resolution of the currently selected video (possible values: 480, 576, 540, 720, 1080, 4K, 8K [Note: v18 addition]). 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.VideoAspect 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, Note: Kodi v20: 1.00, 1.19, 2.00 )
ListItem.AudioCodec 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)
ListItem.AudioChannels Shows the number of audio channels of the currently selected video (possible values: 1, 2, 4, 5, 6, 7, 8, 10)
ListItem.AudioLanguage Shows the audio language of the currently selected video (returns an ISO 639-2 three character code, e.g. eng, epo, deu)
ListItem.SubtitleLanguage Shows the subtitle language of the currently selected video (returns an ISO 639-2 three character code, e.g. eng, epo, deu)
ListItem.Property(AudioCodec.[n]) Shows the audio codec of the currently selected video, 'n' defines the number of the audiostream (values: see ListItem.AudioCodec)
ListItem.Property(AudioChannels.[n]) Shows the number of audio channels of the currently selected video, 'n' defines the number of the audiostream (values: see ListItem.AudioChannels)
ListItem.Property(AudioLanguage.[n]) Shows the audio language of the currently selected video, 'n' defines the number of the audiostream (values: see ListItem.AudioLanguage)
ListItem.Property(SubtitleLanguage.[n]) Shows the subtitle language of the currently selected video, 'n' defines the number of the subtitle (values: see ListItem.SubtitleLanguage)
ListItem.AddonName Shows the name of the currently selected addon
ListItem.AddonVersion Shows the version of the currently selected addon
ListItem.AddonSummary Shows a short description of the currently selected addon
ListItem.AddonDescription Shows the full description of the currently selected addon
ListItem.AddonType Shows the type (screensaver, script, skin, etc...) of the currently selected addon
ListItem.AddonCreator Shows the name of the author the currently selected addon
ListItem.AddonDisclaimer Shows the disclaimer of the currently selected addon
ListItem.AddonBroken Deprecated! use ListItem.AddonLifecycleDesc instead
ListItem.Property(Addon.Changelog) Shows the changelog of the currently selected addon
ListItem.Property(Addon.ID) Shows the identifier of the currently selected addon
ListItem.Property(Addon.Status) Shows the status of the currently selected addon
ListItem.Property(Addon.Path) Shows the path of the currently selected addon
ListItem.StartTime Start time of the selected item (PVR).
ListItem.EndTime End time of the selected item (PVR).
ListItem.StartDate Start date of the selected item (PVR).
ListItem.EndDate End date of the selected item (PVR).
ListItem.NextTitle Title of the next item (PVR).
ListItem.NextGenre Genre of the next item (PVR).
ListItem.NextPlot Plot of the next item (PVR).
ListItem.NextPlotOutline Plot outline of the next item (PVR).
ListItem.NextStartTime Start time of the next item (PVR).
ListItem.NextEndTime End of the next item (PVR).
ListItem.NextStartDate Start date of the next item (PVR).
ListItem.NextEndDate End date of the next item (PVR).
Listitem.NextDuration Duration of the next item (PVR). v18
ListItem.ChannelName Channelname of the selected item (PVR).
ListItem.ChannelNumber Channel number of the selected item (PVR).
ListItem.ChannelNumberLabel Channel and subchannel number of the currently selected channel that's currently playing (PVR).
ListItem.Progress Part of the programme that's been played (PVR).
ListItem.StereoscopicMode Returns the stereomode of the selected video (i.e. mono, split_vertical, split_horizontal, row_interleaved, anaglyph_cyan_red, anaglyph_green_magenta)
ListItem.Comment Comment assigned to the item (PVR/MUSIC).
ListItem.AddonInstallDate Date the addon was installed
ListItem.AddonLastUpdated Date the addon was last updated
ListItem.AddonLastUsed Date the addon was used last
ListItem.AddonNews Returns a brief changelog, taken from the addons' addon.xml file
ListItem.AddonSize Filesize of the addon
ListItem.Contributors List of all people who've contributed to the selected song
ListItem.ContributorAndRole List of all people and their role who've contributed to the selected song
ListItem.EndTimeResume Returns the time a video will end if you resume it, instead of playing it from the beginning.
ListItem.Mood Mood of the selected song
ListItem.Status For use with tv shows. It can return one of the following: 'returning series','in production','planned','cancelled' or 'ended'
ListItem.Tag Will return the name of the 'tag' this movie is part of.
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(Album_Duration) Returns the duration of an album in HH:MM:SS v19
ListItem.Appearances Returns the number of movies featuring the selected actor / directed by the selected director v17 addition
ListItem.PrivacyPolicy Returns the official Kodi privacy-policy v17 addition
Listitem.Property(game.videofilter) Name of the video filter (eg. Bilinear) v18
Listitem.Property(game.stretchmode) Name of the stretch mode (eg. Stretch 4:3) v18
Listitem.Property(game.videorotation) Angle of the rotation v18
ListItem.CurrentItem will return the current index of the item in a container starting at 1. v19
ListItem.DiscTitle The disc title of the currently selected album or song v19
ListItem.TotalDiscs The total amount of discs belonging to an album v19
ListItem.IsBoxset Returns true if the item is part of a boxset v19
ListItem.ReleaseDate Returns the release date of the current item v19
ListItem.OriginalDate Returns the original release date of the item v19
ListItem.BPM Returns the Beats Per Minute for a song v19
ListItem.BitRate Returns the bitrate of the current song (Actual rate for CBR, average rate for VBR) v19
ListItem.SampleRate Returns the sample rate of a song / 1000.0 eg 44.1, 48, 96 etc v19
ListItem.MusicChannels Returns the number of audio channels for a song v19
ListItem.AlbumStatus Returns the Musicbrainz release status of the album (offical, bootleg, promotion etc) v19
ListItem.UniqueID() Returns the UniqueID of the selected item in a container v19
ListItem.TvShowDBID Returns the tv show DBID of the selected season or episode a container v19
ListItem.AddonLifecycleType The Lifecycle type of the addon (returns a localized string: normal / broken / deprecated) v19
ListItem.AddonLifecycleDesc Description of the Lifecycle type (example: broken due to website changes) v19

Musicpartymode labels

InfoLabels Definition Version
MusicPartyMode.SongsPlayed Number of songs played during Party Mode
MusicPartyMode.MatchingSongs Number of songs available to Party Mode
MusicPartyMode.MatchingSongsPicked Number of songs picked already for Party Mode
MusicPartyMode.MatchingSongsLeft Number of songs left to be picked from for Party Mode
MusicPartyMode.RelaxedSongsPicked Not currently used
MusicPartyMode.RandomSongsPicked Number of unique random songs picked during Party Mode

Network labels

InfoLabels Definition Version
Network.IsDHCP Network type is DHCP or FIXED
Network.IPAddress The system's IP Address (<ipaddress> is returned as a string)
Network.LinkState Network linkstate e.g. 10mbit/100mbit etc.
Network.MacAddress The system's mac address
Network.SubnetMask Network subnet mask
Network.GatewayAddress Network gateway address
Network.DNS1Address Network dns server 1 address
Network.DNS2Address Network dns server 2 address
Network.DHCPAddress DHCP server ip address

Player labels

InfoLabels Definition 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 (eg 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) Number of audiochannels of the currently playing item
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 Definition Version
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.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. eg 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 Addition
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 Definition Version
VideoPlayer.Time Current time in movie
VideoPlayer.TimeRemaining Current remaining time in movie
VideoPlayer.TimeSpeed Current time + playspeed. eg 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.Director Director of current movie, if it's in the database. (supports .offset() and .position())
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 concatenated string of cast members of the current movie, if it's in the database
VideoPlayer.CastAndRole A concatenated string of cast members and roles of the current movie, if it's in the database
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.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.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.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 Addition
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 Definition 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 Definition 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.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 Addition
PVR.TVNowRecordingDateTime Start date and time of the current tv recording v17 Addition
PVR.TVNowRecordingChannel Channel name of the current tv recording v17 Addition
PVR.TVNowRecordingChannelIcon Icon of the current recording TV channel v17 Addition
PVR.TVNextRecordingTitle Title of the next tv programme that will be recorded v17 Addition
PVR.TVNextRecordingDateTime Start date and time of the next tv recording v17 Addition
PVR.TVNextRecordingChannel Channel name of the next tv recording v17 Addition
PVR.TVNextRecordingChannelIcon Icon of the next recording tv channel v17 Addition
PVR.RadioNowRecordingTitle Title of the radio programme being recorded v17 Addition
PVR.RadioNowRecordingDateTime Start date and time of the current radio recording v17 Addition
PVR.RadioNowRecordingChannel Channel name of the current radio recording v17 Addition
PVR.RadioNowRecordingChannelIcon Icon of the current recording radio channel v17 Addition
PVR.RadioNextRecordingTitle Title of the next radio programme that will be recorded v17 Addition
PVR.RadioNextRecordingDateTime Start date and time of the next radio recording v17 Addition
PVR.RadioNextRecordingChannel Channel name of the next radio recording v17 Addition
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 Definition 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 Definition 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 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 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 Definition 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. eg. "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 (eg 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 Definition Version
Visualisation.Preset Shows the current preset of the visualisation.
Visualisation.Name Shows the name of the visualisation.

Weather labels

InfoLabels Definition 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 Definition 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 Definition 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 (eg. $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