InfoLabels: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
 
(63 intermediate revisions by 9 users not shown)
Line 1: Line 1:
{{mininav|[[Development]]|[[Add-on development]]|[[Skinning]]}}
{{mininav|[[Development]]|[[Add-on development]]|[[Skinning]]}}
{{outdated|This page has become too large and complex to maintain by volunteer editors, and has been only sporadically updated over the last few years.<br/>This page has missing InfoLabels, and also shows InfoLabels that have been deprecated.<br/>'''Refer to the up to date [https://xbmc.github.io/docs.kodi.tv/master/kodi-base/d5/d11/modules__infolabels_boolean_conditions.html Doxygen documentation]'''}}
<section begin="main content" />
<section begin="main content" />
Skins can use infolabels with $INFO[infolabel] or the <info> tag. Scripts can read infolabels with <code>xbmc.getInfoLabel('infolabel')</code>.
Skins can use infolabels with $INFO[infolabel] or the <info> tag. Scripts can read infolabels with <code>xbmc.getInfoLabel('infolabel')</code>.


An up-to-date list can be found here [https://github.com/xbmc/xbmc/blob/master/xbmc/GUIInfoManager.cpp GUIInfoManager.cpp]
=== ADSP ===
{| class="prettytable" width="100%"
! InfoLabels
! style="80%" | Definition
! Version
|-
|  ADSP.ActiveStreamType
|  User selected stream type, e.g. music or video
|
|-
|  ADSP.DetectedStreamType
|  Detected stream type by Kodi
|
|-
|  ADSP.MasterName
|  Name of the curently selected and used master dsp mode
|
|-
|  ADSP.MasterInfo
|  Continuously updated information label of master mode (if available)
|
|-
|  ADSP.MasterOwnIcon
|  Icon to use for selected master mode
|
|-
|  ADSP.MasterOverrideIcon
|  Icon to overrite Kodi's codec icon with one of add-on, e.g. Dolby Digital EX on Dolby Digital
|
|}


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


{| class="prettytable" width="100%"
{| class="wikitable sortable" width="100%"
! InfoLabels
! InfoLabels
! style="80%" | Definition
! style="80%" | Definition
Line 60: Line 31:
|-
|-
|  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.)
|
|
|-
|-
Line 90: Line 61:
|  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
Line 96: Line 75:
|-
|-
|  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 / grouplist (id) as a numeric label.
|  Returns the current focused position of the container / grouplist (id) as a numeric label.
|
|
|-
|-
Line 111: Line 90:
|
|
|-
|-
|  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
|
|
Line 148: Line 127:
|-
|-
|  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 )''
|
|
|-
|-
Line 182: Line 161:
=== Fanart ===
=== Fanart ===


{| class="prettytable" width="100%"
{| class="wikitable sortable" width="100%"
! InfoLabels
! InfoLabels
! style="80%" | Definition
! style="80%" | Definition
Line 200: Line 179:
|}
|}


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


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


{| class="prettytable" width="100%"
{| class="wikitable sortable" width="100%"
! InfoLabels
! InfoLabels
! style="80%" | Definition
! style="80%" | Definition
! Version
! Version
|-
|-
MusicPlayer.Title
Network.IsDHCP
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
Network type is DHCP or FIXED
|
|
|-
|-
MusicPlayer.Album
Network.IPAddress
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
The system's IP Address (<ipaddress> is returned as a string)
|
|
|-
|-
MusicPlayer.Property(Album_Mood)
Network.LinkState
Shows the moods of the currently playing Album
Network linkstate e.g. 10mbit/100mbit etc.
|
|
|-
|-
MusicPlayer.Property(Album_Style)
Network.MacAddress
Shows the styles of the currently playing Album
The system's  mac address
|
|
|-
|-
MusicPlayer.Property(Album_Theme)
Network.SubnetMask
Shows the themes of the currently playing Album
Network subnet mask
|
|
|-
|-
MusicPlayer.Property(Album_Type)
Network.GatewayAddress
Shows the Album Type (e.g. compilation, enhanced, explicit lyrics) of the currently playing Album
Network gateway address
|
|
|-
|-
MusicPlayer.Property(Album_Label)
Network.DNS1Address
Shows the record label of the currently playing Album
Network dns server 1 address
|
|
|-
|-
MusicPlayer.Property(Album_Description)
Network.DNS2Address
Shows a review of the currently playing Album
Network dns server 2 address
|
|
|-
|-
MusicPlayer.Artist
Network.DHCPAddress
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
DHCP server ip address
|
|
|}
=== Player labels ===
{| class="wikitable sortable" width="100%"
! InfoLabels
! style="80%" | Definition
! Version
|-
|-
MusicPlayer.Property(Artist_Born)
Player.FinishTime
Date of Birth of the currently playing Artist
Time playing media will end
|
|
|-
|-
MusicPlayer.Property(Artist_Died)
Player.FinishTime(format)
Date of Death 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_Formed)
Player.Chapter
Formation date of the currently playing Artist/Band
Current chapter of current playing media
|
|
|-
|-
MusicPlayer.Property(Artist_Disbanded)
Player.ChapterCount
Disbanding date of the currently playing Artist/Band
Total number of chapters of current playing media
|
|
|-
|-
MusicPlayer.Property(Artist_YearsActive)
Player.Time
Years the currently Playing artist has been active
Elapsed time of current playing media
|
|
|-
|-
MusicPlayer.Property(Artist_Instrument)
Player.Time(format)
Instruments played by the currently playing artist
Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).
|
|
|-
|-
MusicPlayer.Property(Artist_Description)
Player.TimeRemaining
Shows a biography of the currently playing artist
Remaining time of current playing media
|
|
|-
|-
MusicPlayer.Property(Artist_Mood)
Player.TimeRemaining(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.Duration
Shows the styles of the currently playing artist
Total duration of the current playing media
|
|
|-
|-
MusicPlayer.Property(Artist_Genre)
Player.Duration(format)
|  Shows the genre 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.Genre
Player.SeekTime
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
Time to which the user is seeking
|
|
|-
|-
MusicPlayer.Lyrics
Player.SeekBar
Lyrics of current song stored in ID tag info
Time to which the user is seeking as a percentage (for use in slider controls)
|
|
|-
|-
MusicPlayer.Year
Player.SeekOffset
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
Indicates the seek offset after a seek press (eg user presses BigStepForward, player.seekoffset returns +10:00)
|
|
|-
|-
MusicPlayer.Rating
Player.SeekOffset(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). Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).
|
|
|-
|-
MusicPlayer.DiscNumber
Player.SeekStepSize
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
Displays the seek step size. (v15 addition)
|
|
|-
|-
MusicPlayer.Comment
Player.Progress
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 how much (percentage) of the file has been played
|
|
|-
|-
MusicPlayer.Time
Player.ProgressCache
Current time in song
Shows how much of the file is cached above current play percentage
|
|
|-
|-
MusicPlayer.TimeRemaining
Player.Folderpath
Current remaining time in song
Shows the full path of the currently playing song or movie. (supports .offset() and .position())
|
|
|-
|-
MusicPlayer.TimeSpeed
Player.Filenameandpath
Both the time and the playspeed formatted up. eg 1:23 (2x)
Shows the full path with filename of the currently playing song or movie. (supports .offset() and .position())
|
|
|-
|-
MusicPlayer.TrackNumber
Player.StartTime
Track number of current song,  also available are "MusicPlayer.offset(number).TrackNumber" offset is relative to the current playing item and "MusicPlayer.Position(number).TrackNumber" position is relative to the start of the playlist
Returns the starttime (from the epg) of a tv program, for all other videos it will return the time you started watching this video.
|
|
|-
|-
MusicPlayer.Duration
Player.StartTime(format)
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
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.BitRate
Player.Title
Bitrate of current song
Returns the musicplayer title for audio and the videoplayer title for videos. (supports .offset() and .position())
|
|
|-
|-
MusicPlayer.Channels
Player.Filename
Number of channels of current song
Returns the filename of the currently playing media. (supports .offset() and .position())
|
|
|-
|-
MusicPlayer.BitsPerSample
Player.Volume
| Number of bits per sample of current song
| Returns the volume level in dB
|
|
|-
|-
MusicPlayer.SampleRate
Player.PlaySpeed
Samplerate of current song
Current playspeed. (range:0.8 to 1.5)
|
|
|-
|-
MusicPlayer.Codec
Player.Process(AudioBitsPerSample)
| Codec of current song
| Bits per sample of the currently playing item
|
|
|-
|-
MusicPlayer.PlaylistPosition
Player.Process(AudioChannels)
| Position of the current song in the current music playlist
| Number of audiochannels of the currently playing item
|
|
|-
|-
MusicPlayer.PlaylistLength
Player.Process(AudioDecoder)
| Total size of the current music playlist
| Audiodecoder name of the currently playing item
|
|
|-
|-
MusicPlayer.ChannelName
Player.Process(AudioSamplerate)
Channel name of the radio programme that's currently playing (PVR).
| Samplerate f the currently playing item
|
|
|-
|-
MusicPlayer.ChannelNumber
Player.Process(DeintMethod)
| Channel number of the radio programme that's currently playing (PVR).
| Deinterlace method of the currently playing video
|
|
|-
|-
MusicPlayer.SubChannelNumber
Player.Process(PixFormat)
| Subchannel number of the radio channel that's currently playing (PVR).
| Pixel format of the currently playing video
|
|
|-
|-
MusicPlayer.ChannelNumberLabel
Player.Process(VideoDAR)
| Channel and subchannel number of the radio channel that's currently playing (PVR).
| Display aspect ratio of the currently playing video
|
|
|-
|-
MusicPlayer.ChannelGroup
Player.Process(VideoFPS)
| Channel group of  of the radio programme that's currently playing (PVR).
| Video framerate of the currently playing video
|
|
|-
|-
MusicPlayer.Contributors
Player.Process(VideoHeight)
| List of all people who've contributed to the currently playing song
| Height of the currently playing video
|
|
|-
|-
MusicPlayer.ContributorAndRole
Player.Process(VideoDecoder)
| List of all people and their role who've contributed to the currently playing song
| Videodecoder name of the currently playing video
|
|
|-
|-
MusicPlayer.Mood
Player.Process(VideoWidth)
| Mood of the currently playing song
| Width of the currently playing video
|
|
|-
|-
| MusicPlayer.Property(Role.Arranger)
| Player.Process(VideoScanType)
| Returns the name of the person who arranged the selected song
| The scan type identifier of the currently playing video '''p''' (for progressive) or '''i''' (for interlaced)
|
| v20
|-
|-
| MusicPlayer.Property(Role.Composer)
| Player.CutList
| Returns the name of the person who composed the selected song
| this infolabel can be used with the [[Ranges Control]], as EDL and chapter markers
|
| v19
|-
|-
| MusicPlayer.Property(Role.Conductor)
| Player.Chapters
| Returns the name of the person who conducted the selected song
| 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
|-
|-
|  MusicPlayer.Property(Role.DJMixer)
|  MusicPlayer.Title
| Returns the name of the dj who remixed the selected song
|  Title of the currently playing song,  also available are "MusicPlayer.offset(number).Title" offset is relative to the current playing item and "MusicPlayer.Position(number).Title" position is relative to the start of the playlist
|
|
|-
|-
|  MusicPlayer.Property(Role.Engineer)
|  MusicPlayer.Album
| Returns the name of the person who was the engineer of the selected song
| Album from which the current song is from,  also available are "MusicPlayer.offset(number).Album" offset is relative to the current playing item and "MusicPlayer.Position(number).Album" position is relative to the start of the playlist
|
|
|-
|-
|  MusicPlayer.Property(Role.Lyricist)
|  MusicPlayer.Property(Album_Mood)
| Returns the name of the person who wrote the lyrics of the selected song
| Shows the moods of the currently playing Album
|
|
|-
|-
|  MusicPlayer.Property(Role.Mixer)
|  MusicPlayer.Property(Album_Style)
| Returns the name of the person who mixed the selected song
| Shows the styles of the currently playing Album
|
|
|-
|-
|  MusicPlayer.Property(Role.Orchestra)
|  MusicPlayer.Property(Album_Theme)
| Returns the name of the orchestra performing the selected song
| Shows the themes of the currently playing Album
|
|
|-
|-
|  MusicPlayer.Property(Role.Producer)
|  MusicPlayer.Property(Album_Type)
| Returns the name of the person who produced the selected song
| Shows the Album Type (e.g. compilation, enhanced, explicit lyrics) of the currently playing Album
|
|
|-
|-
|  MusicPlayer.Property(Role.Remixer)
|  MusicPlayer.Property(Album_Label)
| Returns the name of the person who remixed the selected song
| Shows the record label of the currently playing Album
|
|
|-
|-
|  MusicPlayer.UserRating
|  MusicPlayer.Property(Album_Description)
| The rating the user gave to the currently playing song
| Shows a review of the currently playing Album
|
|
|-
|-
|  MusicPlayer.DBID
|  MusicPlayer.Artist
| The database id of the currently playing song
| Artist(s) of current song,  also available are "MusicPlayer.offset(number).Artist" offset is relative to the current playing item and "MusicPlayer.Position(number).Artist" position is relative to the start of the playlist
| v17 Addition
|}
 
==== Video player ====
 
{| class="prettytable" width="100%"
! InfoLabels
! style="80%" | Definition
! Version
|-
|  VideoPlayer.Time
|  Current time in movie
|
|
|-
|-
VideoPlayer.TimeRemaining
MusicPlayer.Property(Artist_Born)
Current remaining time in movie
Date of Birth of the currently playing Artist
|
|
|-
|-
VideoPlayer.TimeSpeed
MusicPlayer.Property(Artist_Died)
Current time + playspeed. eg 1:23:14 (-4x)
Date of Death of the currently playing Artist
|
|
|-
|-
VideoPlayer.Duration
MusicPlayer.Property(Artist_Formed)
Length of current movie
Formation date of the currently playing Artist/Band
|
|
|-
|-
VideoPlayer.Title
MusicPlayer.Property(Artist_Disbanded)
Title of currently playing video. If it's in the database it will return the database title, else the filename
Disbanding date of the currently playing Artist/Band
|
|
|-
|-
VideoPlayer.TVShowTitle
MusicPlayer.Property(Artist_YearsActive)
Title of currently playing episode's tvshow name
Years the currently Playing artist has been active
|
|
|-
|-
VideoPlayer.Season
MusicPlayer.Property(Artist_Instrument)
Season number of the currently playing episode, if it's in the database
Instruments played by the currently playing artist
|
|
|-
|-
VideoPlayer.Episode
MusicPlayer.Property(Artist_Description)
Episode number of the currently playing episode
Shows a biography of the currently playing artist
|
|
|-
|-
VideoPlayer.Genre
MusicPlayer.Property(Artist_Mood)
Genre(s) of current movie, if it's in the database
Shows the moods of the currently playing artist
|
|
|-
|-
VideoPlayer.Director
MusicPlayer.Property(Artist_Style)
Director of current movie, if it's in the database
Shows the styles of the currently playing artist
|
|
|-
|-
VideoPlayer.Country
MusicPlayer.Property(Artist_Genre)
Production country of current movie, if it's in the database
Shows the genre of the currently playing artist
|
|
|-
|-
VideoPlayer.Year
MusicPlayer.Property(Artist_Sortname)
Year of release of current movie, if it's in the database
Sortname of the currently playing Artist
|
|  v18
|-
|  MusicPlayer.Property(Artist_Type)
|  Type of the currently playing Artist - person, group, orchestra, choir etc.
| v18
|-
|-
VideoPlayer.Rating
MusicPlayer.Property(Artist_Gender)
IMDb user rating of current movie, if it's in the database
Gender of the currently playing Artist - male, female, other
|
| v18
|-
|-
VideoPlayer.UserRating
MusicPlayer.Property(Artist_Disambiguation)
Shows the user rating of the currently playing item
Brief description of the currently playing Artist that differentiates them from others with the same name
|
| v18
|-
|-
VideoPlayer.Votes
MusicPlayer.Genre
IMDb votes of current movie, if it's in the database
Genre(s) of current song, also available are "MusicPlayer.offset(number).Genre" offset is relative to the current playing item and "MusicPlayer.Position(number).Genre" position is relative to the start of the playlist
|
|
|-
|-
VideoPlayer.RatingAndVotes
MusicPlayer.Lyrics
IMDb user rating and votes of current movie, if it's in the database
Lyrics of current song stored in ID tag info
|
|
|-
|-
VideoPlayer.mpaa
MusicPlayer.Year
MPAA rating of current movie, if it's in the database
Year of release of current song, also available are "MusicPlayer.offset(number).Year" offset is relative to the current playing item and "MusicPlayer.Position(number).Year" position is relative to the start of the playlist
|
|
|-
|-
VideoPlayer.IMDBNumber
MusicPlayer.Rating
The IMDB iD of the current video, if it's in the database
Numeric Rating of current song,  also available are "MusicPlayer.offset(number).Rating" offset is relative to the current playing item and "MusicPlayer.Position(number).Rating" position is relative to the start of the playlist
|
|
|-
|-
VideoPlayer.EpisodeName
MusicPlayer.DiscNumber
|  (PVR only) The name of the episode if the playing video is a TV Show, if it's in the database
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.PlaylistPosition
MusicPlayer.Comment
Position of the current song in the current video playlist
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.PlaylistLength
MusicPlayer.Time
Total size of the current video playlist
Current time in song
|
|
|-
|-
VideoPlayer.Cast
MusicPlayer.TimeRemaining
A concatenated string of cast members of the current movie, if it's in the database
Current remaining time in song
|
|
|-
|-
VideoPlayer.CastAndRole
MusicPlayer.TimeSpeed
A concatenated string of cast members and roles of the current movie, if it's in the database
Both the time and the playspeed formatted up. eg 1:23 (2x)
|
|
|-
|-
VideoPlayer.Album
MusicPlayer.TrackNumber
Album from which the current Music Video is from, if it's in the database
Track number of current song,  also available are "MusicPlayer.offset(number).TrackNumber" offset is relative to the current playing item and "MusicPlayer.Position(number).TrackNumber" position is relative to the start of the playlist
|
|
|-
|-
VideoPlayer.Artist
MusicPlayer.Duration
Artist(s) of current Music Video, if it's in the database
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.Studio
MusicPlayer.BitRate
Studio of current Music Video, if it's in the database
Bitrate of current song
|
|
|-
|-
VideoPlayer.Writer
MusicPlayer.Channels
Name of Writer of current playing Video, if it's in the database
Number of channels of current song
|
|
|-
|-
VideoPlayer.Tagline
MusicPlayer.BitsPerSample
Small Summary of current playing Video, if it's in the database
Number of bits per sample of current song
|
|
|-
|-
VideoPlayer.PlotOutline
MusicPlayer.SampleRate
Small Summary of current playing Video, if it's in the database
Samplerate of current song
|
|
|-
|-
VideoPlayer.Plot
MusicPlayer.Codec
Complete Text Summary of current playing Video, if it's in the database
Codec of current song
|
|
|-
|-
VideoPlayer.LastPlayed
MusicPlayer.PlaylistPosition
Last play date of current playing Video, if it's in the database
Position of the current song in the current music playlist
|
|
|- class="userrow
|-
VideoPlayer.PlayCount
MusicPlayer.PlaylistLength
Playcount of current playing Video, if it's in the database
Total size of the current music playlist
|
|
|- class="userrow
|-
VideoPlayer.VideoCodec
MusicPlayer.ChannelName
Shows the video codec of the currently playing video (common values: see ListItem.VideoCodec)
Channel name of the radio programme that's currently playing (PVR).
|
|
|-
|-
VideoPlayer.VideoResolution
MusicPlayer.ChannelNumberLabel
Shows the video resolution of the currently playing video (possible values: see ListItem.VideoResolution)
Channel and subchannel number of the radio channel that's currently playing (PVR).
|
|
|-
|-
VideoPlayer.VideoAspect
MusicPlayer.ChannelGroup
Shows the aspect ratio of the currently playing video (possible values: see ListItem.VideoAspect)
Channel group of  of the radio programme that's currently playing (PVR).
|
|
|-
|-
VideoPlayer.AudioCodec
MusicPlayer.Contributors
| Shows the audio codec of the currently playing video, optionally 'n' defines the number of the audiostream (common values: see ListItem.AudioCodec)
| List of all people who've contributed to the currently playing song
|
|
|-
|-
VideoPlayer.AudioChannels
MusicPlayer.ContributorAndRole
| Shows the number of audio channels of the currently playing video (possible values: see ListItem.AudioChannels)
| List of all people and their role who've contributed to the currently playing song
|
|
|-
|-
VideoPlayer.AudioLanguage
MusicPlayer.Mood
| Shows the language of the audio of the currently playing video(possible values: see ListItem.AudioLanguage)
| Mood of the currently playing song
|
|
|-
|-
VideoPlayer.SubtitlesLanguage
MusicPlayer.Property(Role.Arranger)
| Shows the language of the subtitle of the currently playing video (possible values: see ListItem.SubtitlesLanguage)
| Returns the name of the person who arranged the selected song
|
|
|-
|-
VideoPlayer.StereoscopicMode
MusicPlayer.Property(Role.Composer)
| Shows the stereoscopic mode of the currently playing video (possible values: see ListItem.StereoscopicMode)
| Returns the name of the person who composed the selected song
|
|
|-
|-
VideoPlayer.EndTime
MusicPlayer.Property(Role.Conductor)
| End date of the currently playing programme (PVR).
| Returns the name of the person who conducted the selected song
|
|
|-
|-
VideoPlayer.NextTitle
MusicPlayer.Property(Role.DJMixer)
| Title of the programme that will be played next (PVR).
| Returns the name of the dj who remixed the selected song
|
|
|-
|-
VideoPlayer.NextGenre
MusicPlayer.Property(Role.Engineer)
| Genre of the programme that will be played next (PVR).
| Returns the name of the person who was the engineer of the selected song
|
|
|-
|-
VideoPlayer.NextPlot
MusicPlayer.Property(Role.Lyricist)
| Plot of the programme that will be played next (PVR).
| Returns the name of the person who wrote the lyrics of the selected song
|
|
|-
|-
VideoPlayer.NextPlotOutline
MusicPlayer.Property(Role.Mixer)
| Plot outline of the programme that will be played next (PVR).
| Returns the name of the person who mixed the selected song
|
|
|-
|-
VideoPlayer.NextStartTime
MusicPlayer.Property(Role.Orchestra)
| Start time of the programme that will be played next (PVR).
| Returns the name of the orchestra performing the selected song
|
|
|-
|-
VideoPlayer.NextEndTime
MusicPlayer.Property(Role.Producer)
| End time of the programme that will be played next (PVR).
| Returns the name of the person who produced the selected song
|
|
|-
|-
VideoPlayer.NextDuration
MusicPlayer.Property(Role.Remixer)
| Duration of the programme that will be played next (PVR).
| Returns the name of the person who remixed the selected song
|
|
|-
|-
VideoPlayer.ChannelName
MusicPlayer.UserRating
| Name of the curently tuned channel (PVR).
| The rating the user gave to the currently playing song
|
|
|-
|-
VideoPlayer.ChannelNumber
MusicPlayer.DBID
| Number of the curently tuned channel (PVR).
| The database id of the currently playing song
|
| v17 Addition
|-
|-
VideoPlayer.SubChannelNumber
MusicPlayer.DiscTitle
| Subchannel number of the tv channel that's currently playing (PVR).
| The title of the disc currently playing
|
| v19
|-
|-
VideoPlayer.ChannelNumberLabel
MusicPlayer.ReleaseDate
| Channel and subchannel number of the tv channel that's currently playing (PVR).
| Returns the release date of the song currently playing
|
| v19
|-
|-
VideoPlayer.ChannelGroup
MusicPlayer.OriginalDate
| Group of the curently tuned channel (PVR).
| Returns the original release date of the song currently playing
|
| v19
|-
|-
VideoPlayer.ParentalRating
MusicPlayer.BPM
| Parental rating of the currently playing programme (PVR).
| Returns the Beats Per Minute of the currently playing song
|
| v19
|-
|-
VideoPlayer.DBID
MusicPlayer.TotalDiscs
| The database id of the currently playing video
| Returns the number of discs associated with the album of the currently playing song
| v17 Addition
| v19
|}
|}


=== Playlist ===
==== Video player ====


{| class="prettytable" width="100%"
{| class="wikitable sortable" width="100%"
! InfoLabels
! InfoLabels
! style="80%" | Definition
! style="80%" | Definition
! Version
! Version
|-
|-
Playlist.Length(media)
VideoPlayer.VideoVersionName
Total size of the current playlist. optional parameter media is either video or music.
Show the name of the video version
|
|  v21
|
|-
|-
Playlist.Position(media)
VideoPlayer.Time
Position of the current item in the current playlist. optional parameter media is either video or music.
Current time in movie
|
|
|-
|-
Playlist.Random
VideoPlayer.TimeRemaining
Returns string ID's 590 (Randomize Play Enabled) or 591 (Disabled)
Current remaining time in movie
|
|
|-
|-
Playlist.Repeat
VideoPlayer.TimeSpeed
Returns string ID's 592 (Repeat One), 593 (Repeat All), or 594 (Repeat Off)
Current time + playspeed. eg 1:23:14 (-4x)
|
|
|}
=== PVR ===
{| class="prettytable" width="100%"
! InfoLabels
! style="80%" | Definition
! Version
|-
|-
PVR.NowRecordingTitle
VideoPlayer.Duration
Title of the programme being recorded
Length of current movie
|
|
|-
|-
PVR.NowRecordingDateTime
VideoPlayer.Title
Start date and time of the current recording
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.NowRecordingChannel
VideoPlayer.OriginalTitle
Channel number that's being recorded
The original title of currently playing video. (supports .offset() and .position())
|
|
|-
|-
PVR.NextRecordingTitle
VideoPlayer.TVShowTitle
|  Title of the next programme that will be recorded
|  Title of currently playing episode's tvshow name. (supports .offset() and .position())
|
|
|-
|-
PVR.NextRecordingDateTime
VideoPlayer.Season
Start date and time of the next recording
Season number of the currently playing episode, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
PVR.NextRecordingChannel
VideoPlayer.Episode
Channel name of the next recording
Episode number of the currently playing episode. (supports .offset() and .position())
|
|
|-
|-
PVR.BackendName
VideoPlayer.Genre
Name of the backend being used
Genre(s) of current movie, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
PVR.BackendVersion
VideoPlayer.Director
Version of the backend that's being used
Director of current movie, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
PVR.BackendHost
VideoPlayer.Country
Backend hostname
Production country of current movie, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
PVR.BackendDiskSpace
VideoPlayer.Year
Available diskspace on the backend
Year of release of current movie, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
PVR.BackendChannels
VideoPlayer.Premiered
Number of available channels the backend provides
The release/aired date of the currently selected episode, show, movie or EPG item. (supports .offset() and .position())
|
|
|-
|-
PVR.BackendTimers
VideoPlayer.Rating
Number of timers set for the backend
IMDb user rating of current movie, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
PVR.BackendRecordings
VideoPlayer.UserRating
Number of recording available on the backend
Shows the user rating of the currently playing item. (supports .offset() and .position())
|
|
|-  
|-
PVR.BackendDiskspace
VideoPlayer.Votes
Free diskspace available for recordings on the backend
IMDb votes of current movie, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
PVR.BackendNumber
VideoPlayer.RatingAndVotes
Backend number
IMDb user rating and votes of current movie, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
PVR.TotalDiscSpace
VideoPlayer.mpaa
Total diskspace available for recordings
MPAA rating of current movie, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
PVR.NextTimer
VideoPlayer.IMDBNumber
Next timer date
The IMDB iD of the current video, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
PVR.Duration
VideoPlayer.EpisodeName
Returns the duration of the currently played title on TV
(PVR only) The name of the episode if the playing video is a TV Show, if it's in the database
|
|
|-
|-
PVR.Time
VideoPlayer.PlaylistPosition
Returns the time position of the currently played title on TV
Position of the current song in the current video playlist
|
|
|-
|-
PVR.Progress
VideoPlayer.PlaylistLength
Returns the position of currently played title on TV as integer
Total size of the current video playlist
|
|
|-
|-
PVR.TimeShiftStart
VideoPlayer.Cast
Start position of the timeshift
A concatenated string of cast members of the current movie, if it's in the database
|
|
|-
|-
PVR.TimeShiftEnd
VideoPlayer.CastAndRole
End position of the timeshift
A concatenated string of cast members and roles of the current movie, if it's in the database
|
|
|-
|-
PVR.TimeShiftCur
VideoPlayer.Trailer
Current position of the timeshift
The trailer of the current movie. (supports .offset() and .position())
|
|
|-
|-
PVR.TimeShiftProgress
VideoPlayer.Album
Returns the position of currently timeshifted title on TV as interger
Album from which the current Music Video is from, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
| PVR.ActStreamClient
| VideoPlayer.Artist
| Stream client name
| Artist(s) of current Music Video, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
| PVR.ActStreamDevice
| VideoPlayer.Studio
| Stream device name
| Studio of current Music Video, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
| PVR.ActStreamStatus
| VideoPlayer.Writer
| Status of the stream
| Name of Writer of current playing Video, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
| PVR.ActStreamSignal
| VideoPlayer.Tagline
| Signal quality of the stream
| Small Summary of current playing Video, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
| PVR.ActStreamSnr
| VideoPlayer.PlotOutline
| Signal to noise ratio of the stream
| Small Summary of current playing Video, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
| PVR.ActStreamBer
| VideoPlayer.Plot
| Bit error rate of the stream
| Complete Text Summary of current playing Video, if it's in the database. (supports .offset() and .position())
|
|
|-
|-
| PVR.ActStreamUnc
| VideoPlayer.Top250
| UNC value of the stream
| Shows the IMDb top250 position of the current playing Video. (supports .offset() and .position())
|
|
|-
|-
| PVR.ActStreamVideoBitRate
| VideoPlayer.LastPlayed
| Video bitrate of the stream
| 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())
|
|
|-
|-  
| PVR.ActStreamAudioBitRate
| VideoPlayer.VideoCodec
| Audio bitrate of the stream
| Shows the video codec of the currently playing video (common values: see ListItem.VideoCodec)
|
|
|-
|-
| PVR.ActStreamDolbyBitRate
| VideoPlayer.VideoResolution
| Dolby bitrate of the stream
| Shows the video resolution of the currently playing video (possible values: see ListItem.VideoResolution)
|
|
|-
|-
| PVR.ActStreamProgrSignal
| VideoPlayer.VideoAspect
| Signal quality of the programme
| Shows the aspect ratio of the currently playing video (possible values: see ListItem.VideoAspect)
|
|
|-
|-
| PVR.ActStreamProgrSnr
| VideoPlayer.AudioCodec
| Signal to noise ratio of the programme
| Shows the audio codec of the currently playing video, optionally 'n' defines the number of the audiostream (common values: see ListItem.AudioCodec)
|
|
|-
|-
| PVR.ActStreamEncryptionName
| VideoPlayer.AudioChannels
| Encryption used on the stream
| Shows the number of audio channels of the currently playing video (possible values: see ListItem.AudioChannels)
|
|
|-
|-
| PVR.TVNowRecordingTitle
| VideoPlayer.AudioLanguage
| Title of the tv programme being recorded
| Shows the language of the audio of the currently playing video(possible values: see ListItem.AudioLanguage)
| {{nowrap|v17 Addition}}
|
|-
|-
| PVR.TVNowRecordingDateTime
| VideoPlayer.SubtitlesLanguage
| Start date and time of the current tv recording
| Shows the language of the subtitle of the currently playing video (possible values: see ListItem.SubtitlesLanguage)
| {{nowrap|v17 Addition}}
|
|-
|-
| PVR.TVNowRecordingChannel
| VideoPlayer.StereoscopicMode
| Channel name of the current tv recording
| Shows the stereoscopic mode of the currently playing video (possible values: see ListItem.StereoscopicMode)
| {{nowrap|v17 Addition}}
|
|-
|-
| PVR.TVNowRecordingChannelIcon
| VideoPlayer.EndTime
| Icon of the current recording TV channel
| End date of the currently playing programme (PVR).
| {{nowrap|v17 Addition}}
|
|-
|-
| PVR.TVNextRecordingTitle
| VideoPlayer.NextTitle
| Title of the next tv programme that will be recorded
| Title of the programme that will be played next (PVR).
| {{nowrap|v17 Addition}}
|
|-
|-
| PVR.TVNextRecordingDateTime
| VideoPlayer.NextGenre
| Start date and time of the next tv recording
| Genre of the programme that will be played next (PVR).
| {{nowrap|v17 Addition}}
|
|-
|-
| PVR.TVNextRecordingChannel
| VideoPlayer.NextPlot
| Channel name of the next tv recording
| Plot of the programme that will be played next (PVR).
| {{nowrap|v17 Addition}}
|
|-
|-
| PVR.TVNextRecordingChannelIcon
| VideoPlayer.NextPlotOutline
| Icon of the next recording tv channel
| Plot outline of the programme that will be played next (PVR).
| {{nowrap|v17 Addition}}
|
|-
|-
| PVR.RadioNowRecordingTitle
| VideoPlayer.NextStartTime
| Title of the radio programme being recorded
| Start time of the programme that will be played next (PVR).
| {{nowrap|v17 Addition}}
|
|-
|-
| PVR.RadioNowRecordingDateTime
| VideoPlayer.NextEndTime
| Start date and time of the current radio recording
| End time of the programme that will be played next (PVR).
| {{nowrap|v17 Addition}}
|
|-
|-
| PVR.RadioNowRecordingChannel
| VideoPlayer.NextDuration
| Channel name of the current radio recording
| Duration of the programme that will be played next (PVR).
| {{nowrap|v17 Addition}}
|
|-
|-
| PVR.RadioNowRecordingChannelIcon
| VideoPlayer.ChannelName
| Icon of the current recording radio channel
|  Name of the curently tuned channel (PVR).
| {{nowrap|v17 Addition}}
|
|-
|  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).
|
|-
|-
| PVR.RadioNextRecordingTitle
| VideoPlayer.DBID
| Title of the next radio programme that will be recorded
| The database id of the currently playing video. (supports .offset() and .position())
| {{nowrap|v17 Addition}}
| v17 Addition
|-
|-
| PVR.RadioNextRecordingDateTime
| VideoPlayer.UniqueID()
| Start date and time of the next radio recording
| Returns the UniqueID of the currently playing video
| {{nowrap|v17 Addition}}
| v19
|-
|-
| PVR.RadioNextRecordingChannel
| VideoPlayer.TvShowDBID
| Channel name of the next radio recording
| Returns the tv show DBID of the currently playing episode
| {{nowrap|v17 Addition}}
| v19
|}
|}


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


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


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


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

Latest revision as of 18:29, 9 April 2024

Home icon grey.png   ▶ Development ▶ Add-on development ▶ Skinning ▶ InfoLabels
Time.png THIS PAGE IS OUTDATED:

This page has become too large and complex to maintain by volunteer editors, and has been only sporadically updated over the last few years.
This page has missing InfoLabels, and also shows InfoLabels that have been deprecated.
Refer to the up to date Doxygen documentation


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


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.AddonBroken Deprecated! use ListItem.AddonLifecycleDesc instead
ListItem.AddonCreator Shows the name of the author the currently selected addon
ListItem.AddonDescription Shows the full description of the currently selected addon
ListItem.AddonDisclaimer Shows the disclaimer of the currently selected addon
ListItem.AddonInstallDate Date the addon was installed
ListItem.AddonLastUpdated Date the addon was last updated
ListItem.AddonLastUsed Date the addon was used last
ListItem.AddonLifecycleDesc Description of the Lifecycle type (example: broken due to website changes) v19
ListItem.AddonLifecycleType The Lifecycle type of the addon (returns a localized string: normal / broken / deprecated) v19
ListItem.AddonName Shows the name of the currently selected addon
ListItem.AddonNews Returns a brief changelog, taken from the addons' addon.xml file
ListItem.AddonSize Filesize of the addon
ListItem.AddonSummary Shows a short description of the currently selected addon
ListItem.AddonType Shows the type (screensaver, script, skin, etc...) of the currently selected addon
ListItem.AddonVersion Shows the version of the currently selected addon
ListItem.Album Shows the album of the currently selected song in a container
ListItem.AlbumArtist Shows the artist of the currently selected album in a list
ListItem.AlbumStatus Returns the Musicbrainz release status of the album (offical, bootleg, promotion etc) v19
ListItem.Appearances Returns the number of movies featuring the selected actor / directed by the selected director v17
ListItem.Artist Shows the artist of the currently selected song in a container
ListItem.AudioChannels Shows the number of audio channels of the currently selected video (possible values: 1, 2, 4, 5, 6, 7, 8, 10)
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.AudioLanguage Shows the audio language of the currently selected video (returns an ISO 639-2 three character code, e.g. eng, epo, deu)
ListItem.BitRate Returns the bitrate of the current song (Actual rate for CBR, average rate for VBR) v19
ListItem.BPM Returns the Beats Per Minute for a song v19
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.ChannelName Name of current selected TV channel in a container
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.Comment Comment assigned to the item (PVR/MUSIC).
ListItem.ContributorAndRole List of all people and their role who've contributed to the selected song
ListItem.Contributors List of all people who've contributed to the selected song
ListItem.Country Shows the production country of the currently selected movie in a container
ListItem.CurrentItem will return the current index of the item in a container starting at 1. v19
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.DBID Shows the database id of the currently selected ListItem in a container
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.Director Shows the director of the currently selected movie in a container
ListItem.DiscNumber Shows the disc number of the currently selected song in a container
ListItem.DiscTitle The disc title of the currently selected album or song v19
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.EndDate End date of the selected item (PVR).
ListItem.EndTime End time of current selected TV programme in a container
ListItem.EndTime End time of the selected item (PVR).
ListItem.EndTimeResume Returns the time a video will end if you resume it, instead of playing it from the beginning.
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.EpisodeName (PVR only) The name of the episode if the selected EPG item is a TV Show
ListItem.FileExtension Shows the file extension (without leading dot) of the currently selected item in a container
ListItem.FileName Shows the filename of the currently selected song or movie in a container
ListItem.FileNameAndPath Shows the full path with filename of the currently selected song or movie in a container
ListItem.FileNameNoExtension Returns the filename without its extension. v19
ListItem.FolderName 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.Genre Shows the genre of the currently selected song, album or movie in a container
ListItem.IMDBNumber The IMDB iD of the selected Video in a container
ListItem.IsBoxset Returns true if the item is part of a boxset v19
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.LastPlayed Last play date of Video in a container
ListItem.Mood Mood of the selected song
ListItem.Mpaa Show the MPAA rating of the currently selected movie in a container
ListItem.MusicChannels Returns the number of audio channels for a song v19
ListItem.NextDuration Duration of the next item (PVR). v18
ListItem.NextEndDate End date of the next item (PVR).
ListItem.NextEndTime End 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.NextStartDate Start date of the next item (PVR).
ListItem.NextStartTime Start time of the next item (PVR).
ListItem.NextTitle Title of the next item (PVR).
ListItem.OriginalDate Returns the original release date of the item v19
ListItem.OriginalTitle Shows the original title of the currently selected movie in a container
ListItem.Path Shows the complete path of the currently selected song or movie in a container
ListItem.PercentPlayed Returns percentage value [0-100] of how far the selected video has been played
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.PictureGPSAlt Shows the altitude in meters where the selected picture was taken. This is the value of the EXIF GPSInfo.GPSAltitude tag.
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.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.PlayCount Playcount of Video in a container
ListItem.Plot Complete Text Summary of Video in a container
ListItem.PlotOutline Small Summary of current Video in a container
ListItem.Premiered Shows the release/aired date of the currently selected episode, show, movie or EPG item in a container
ListItem.PrivacyPolicy Returns the official Kodi privacy-policy v17
ListItem.ProgramCount Shows the number of times an xbe has been run from "my programs"
ListItem.Progress Part of the programme that's been played (PVR).
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.Path) Shows the path of the currently selected addon
ListItem.Property(Addon.Status) Shows the status of the currently selected addon
ListItem.Property(Album_Description) Shows a review of the currently selected Album
ListItem.Property(Album_Duration) Returns the duration of an album in HH:MM:SS v19
ListItem.Property(Album_Label) Shows the record label of the currently selected Album
ListItem.Property(Album_Mood) Shows the moods of the currently selected Album
ListItem.Property(Album_Rating) Shows the scraped rating 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_UserRating) Shows the user rating of the currently selected Album
ListItem.Property(Artist_Born) Date of Birth of the currently selected Artist
ListItem.Property(Artist_Description) Shows a biography of the currently selected artist
ListItem.Property(Artist_Died) Date of Death of the currently selected Artist
ListItem.Property(Artist_Disambiguation) Brief description of the currently selected Artist that differentiates them from others with the same name v18
ListItem.Property(Artist_Disbanded) Disbanding date of the currently selected Band
ListItem.Property(Artist_Formed) Formation date of the currently selected Band
ListItem.Property(Artist_Gender) Gender of the currently selected Artist - male, female, other v18
ListItem.Property(Artist_Genre) Shows the genre of the currently selected artist
ListItem.Property(Artist_Instrument) Instruments played by the currently selected artist
ListItem.Property(Artist_Mood) Shows the moods of the currently selected artist
ListItem.Property(Artist_Sortname) Sortname of the currently selected Artist v18
ListItem.Property(Artist_Style) Shows the styles of the currently selected artist
ListItem.Property(Artist_Type) Type of the currently selected Artist - person, group, orchestra, choir etc. v18
ListItem.Property(Artist_YearsActive) Years the currently selected artist has been active
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(AudioCodec.[n]) Shows the audio codec of the currently selected video, 'n' defines the number of the audiostream (values: see ListItem.AudioCodec)
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(game.stretchmode) Name of the stretch mode (eg. Stretch 4:3) v18
ListItem.Property(game.videofilter) Name of the video filter (eg. Bilinear) v18
ListItem.Property(game.videorotation) Angle of the rotation v18
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.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(SubtitleLanguage.[n]) Shows the subtitle language of the currently selected video, 'n' defines the number of the subtitle (values: see ListItem.SubtitleLanguage)
ListItem.Property(TotalEpisodes) Shows the total number of episodes for the currently selected tvshow or season
ListItem.Property(TotalSeasons) Shows the total number of seasons for the currently selected tvshow
ListItem.Property(UnWatchedEpisodes) Shows the number of unwatched 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.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.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.ReleaseDate Returns the release date of the current item v19
ListItem.SampleRate Returns the sample rate of a song / 1000.0 eg 44.1, 48, 96 etc v19
ListItem.Season Shows the season value for the currently selected tvshow
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.Size Shows the file size of the currently selected song or movie in a container
ListItem.SortLetter Shows the first letter of the current file in a container
ListItem.StartDate Start date of current selected TV programme in a container
ListItem.StartDate Start date of the selected item (PVR).
ListItem.StartTime Start time of current selected TV programme in a container
ListItem.StartTime Start time of the selected item (PVR).
ListItem.Status For use with tv shows. It can return one of the following: 'returning series','in production','planned','cancelled' or 'ended'
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.Studio Studio of current selected Music Video in a container
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.Tag Will return the name of the 'tag' this movie is part of.
ListItem.Tagline Small Summary of current Video in a container
ListItem.Title Shows the title of the currently selected song or movie in a container
ListItem.Top250 Shows the IMDb top250 position of the currently selected ListItem in a container.
ListItem.TotalDiscs The total amount of discs belonging to an album v19
ListItem.TrackNumber Shows the track number of the currently selected song in a container
ListItem.Trailer Shows the full trailer path with filename of the currently selected movie in a container
ListItem.TvShowDBID Returns the tv show DBID of the selected season or episode a container v19
ListItem.TVShowTitle Shows the name value for the currently selected tvshow in the season and episode depth of the video library
ListItem.UniqueID() Returns the UniqueID of the selected item in a container v19
ListItem.UserRating Shows the user rating of the currently selected item in a container
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.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.VideoVersionName Shows the name of the video version. v21
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.Writer Name of Writer of current Video in a container
ListItem.Year Shows the year of the currently selected song, album or movie in a container

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.VideoVersionName Show the name of the video version v21
VideoPlayer.Time Current time in movie
VideoPlayer.TimeRemaining Current remaining time in movie
VideoPlayer.TimeSpeed Current time + playspeed. 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