<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://kodi.wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Rmrector</id>
	<title>Official Kodi Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://kodi.wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Rmrector"/>
	<link rel="alternate" type="text/html" href="https://kodi.wiki/view/Special:Contributions/Rmrector"/>
	<updated>2026-06-15T07:24:04Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://kodi.wiki/index.php?title=Artwork/Cache&amp;diff=255731</id>
		<title>Artwork/Cache</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Artwork/Cache&amp;diff=255731"/>
		<updated>2025-05-18T17:14:22Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* Texture optimization */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Artwork_Contents}}&lt;br /&gt;
{{mininav|[[Music_library|Music Library]] {{l2|[[Video_library|Video Library]]}} | [[Artwork]] }}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Introduction =&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;{{Kodi}} maintains a texture cache on local device storage for all artwork displayed in the GUI, whether from an online source or the local file system. These textures are optimized and stored locally for faster loading.&lt;br /&gt;
&lt;br /&gt;
When media is added to the library, {{Kodi}} initially only has a URL or path to the artwork. The artwork itself is downloaded (if from an online source) and then cached.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
All images that {{Kodi}} loads, with the exception of textures that are provided directly by the skin, are cached to the userdata/Thumbnails folder.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; It is not possible to disable the artwork cache and operate exclusively from locally saved artwork as described in the related artwork pages.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Artwork for library items =&lt;br /&gt;
The artwork URLs associated with library items are stored in the art table inside the video or music databases. These store the original URL to the artwork (e.g. from local artwork files or from web sources such as https://themoviedb.org, https://thetvdb.com, or https://theaudiodb.com). This means that central databases store where the art is obtained from, and multiple devices then just keep a local thumbnail cache as described below.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= The caching procedure =&lt;br /&gt;
The caching procedure utilizes an optimized copy of the original image saved in .jpg or .png format and an SQL database that maintains the local cache.&lt;br /&gt;
&lt;br /&gt;
The cache operates primarily on an &amp;quot;as and when needed&amp;quot; basis; i.e. textures are cached when they&#039;re first requested for display in a skin or web interface. In some cases textures may be cached before they&#039;re immediately needed, such as thumbnails generated from video files. In either case, the main caching procedure starts with an image URL. It caches as follows:&lt;br /&gt;
&lt;br /&gt;
#  {{Kodi}} generates a hash (CRC) of the URL, like &amp;quot;6a643bff&amp;quot;.&lt;br /&gt;
#  The texture is optimized (see [[#Texture optimization]]) and cached to a device-local file with the given URL hash. It is cached as a PNG if transparency is required and JPG otherwise.&lt;br /&gt;
#  For local files, another hash of the image is generated based on size and modified date, which can be used to check if the original image has changed.&lt;br /&gt;
#  These details are stored in the SQL database Textures.db, along with information on when the image was cached.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Loading textures =&lt;br /&gt;
When loading a texture for display in a skin or web interface, {{Kodi}} basically just has a URL to the image.  Given a particular URL, it loads the texture as follows:&lt;br /&gt;
&lt;br /&gt;
# If the image is provided by the skin, skip to step 5.&lt;br /&gt;
# If the URL is directly to a cached version of a texture in the cache, skip to step 5.&lt;br /&gt;
# If the URL is for an image already cached in the thumbnail cache, swap the URL to the cached version and skip to step 5.&lt;br /&gt;
# Cache the image as outlined in the section above.&lt;br /&gt;
# Load the image. If the image is provided by the skin, skip steps 6 and 7.&lt;br /&gt;
# The access time for this texture is saved in the texture database.&lt;br /&gt;
# If the image is not from a web service (HTTP/S) and at least 24 hours have passed since it was last loaded, check the hash generated in step 3 of &amp;quot;The caching procedure&amp;quot; for changes to the image. If the hash has changed, cache the new image as outlined in the section above.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Texture optimization =&lt;br /&gt;
# Cached images are limited to a maximum pixel dimension to fit in a 16:9 box, with a default configuration of 1920x1080 for images that are 16:9 (like fanart) and larger than this, and 1280x720 for all other images. This can be changed with &#039;&#039;&#039;[[Advancedsettings.xml#Library artwork| advancedsettings.xml]]&#039;&#039;&#039;.&lt;br /&gt;
#* Before Kodi 22, images in the GUI looked best by configuring this at or somewhat smaller than images are displayed by your skin and device. Additionally due to final scaling algorithm, a slightly larger image than the display area will look notably worse than a slightly smaller image.&lt;br /&gt;
#* If you are experiencing slow loading images or lagging GUI navigation on low powered equipment and/or your {{Kodi}} device has minimal storage available, these defaults can be lowered to noticeably reduce the cost of artwork. For higher powered equipment these settings can be increased to maintain the original artwork size. (eg 3840x2160 fanart)&lt;br /&gt;
# Images are re-encoded in a decoder-friendly way so that the image can be displayed as quickly as possible.&lt;br /&gt;
&lt;br /&gt;
This optimized image is exported with {{Kodi}}&#039;s &#039;&#039;&#039;[[Import-export_library|Library Export]]&#039;&#039;&#039; feature, rather than the original full-quality image, so it is best to avoid exporting artwork if at all possible.&amp;lt;ref&amp;gt;https://forum.kodi.tv/showthread.php?tid=315806&amp;amp;pid=2599318#pid2599318&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Automatic cache cleaning =&lt;br /&gt;
{{Kodi}} 22 adds an automatic process to clean out unused images over time - images not associated with an item in the media library nor viewed within the last 30 days. There is also an option in [[Settings/Media/Library]] to immediately remove all such images at once.&lt;br /&gt;
&lt;br /&gt;
= Advanced: How to refresh the cached image of an icon manually =&lt;br /&gt;
The [[Texture Cache Maintenance utility]] can do this in a safer way, but this is the manual option.&lt;br /&gt;
There is an image like &#039;&#039;/home/x/.kodi/addons/my.lovely.addon/icon.png&#039;&#039; . After changing that file, the old image is still visible in {{kodi}}. To solve this we need to remove the actual thumbnail file from the filesystem and its reference in the DB:&lt;br /&gt;
&lt;br /&gt;
 # Get the thumbnail path to remove the file from the filesystem&lt;br /&gt;
 $ sqlite3 .kodi/userdata/Database/Textures13.db &amp;quot;SELECT cachedurl FROM texture WHERE url = &#039;/home/x/.kodi/addons/my.lovely.addon/icon.png&#039;;&amp;quot;&lt;br /&gt;
 6/6a643bff.png&lt;br /&gt;
&lt;br /&gt;
This &#039;&#039;6/6a643bff.png&#039;&#039; is the cached image under &#039;&#039;/home/x/.kodi/userdata/Thumbnails&#039;&#039;. So: you need to remove from your filesystem &#039;&#039;/home/x/.kodi/userdata/Thumbnails/6/6a43bff.png&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 # Remove the image-&amp;gt;cached image link in the DB&lt;br /&gt;
 $ sqlite3 .kodi/userdata/Database/Textures13.db &amp;quot;DELETE FROM texture WHERE url = &#039;/home/x/.kodi/addons/my.lovely.addon/icon.png&#039;;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Next time Kodi needs the image, it will recreate the thumbnail.&lt;br /&gt;
&lt;br /&gt;
:{{note|The &amp;lt;code&amp;gt;&amp;quot;Textures&#039;&#039;&#039;13&#039;&#039;&#039;.db&amp;quot;&amp;lt;/code&amp;gt; &#039;&#039;&#039;[[Databases#Database_Versions|number/version can increase]]&#039;&#039;&#039; with later Kodi versions.}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;See also: [[Databases#Database_Versions|Database Versions]]&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Advanced: delete textures13.db =&lt;br /&gt;
This last resort procedure is one sure way to repair any image caching problem: delete the &#039;&#039;Textures13.db&#039;&#039; database and the thumbnail directory. This procedure does not affect the entries in the Video and Music libraries, so Kodi will not find more images after, this is just a brute-force solution to a caching problem. It affects the artwork database only. [[Texture Cache Maintenance utility]] can do very targeted fixes of the texture cache, so consider it before doing this.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note&#039;&#039;&#039;&lt;br /&gt;
#Be aware that this should be a last resort procedure. Deleting this database file and the thumbnail directory will remove all cache entries and links, requiring remote URLs to web services to be downloaded again.&lt;br /&gt;
#As the URL link to the original artwork location is stored in the video or music databases, Kodi will use the existing URLs to rebuild the Texture database and thumbnail cache, rather than finding new images locally or from a scraper.&lt;br /&gt;
#{{red|Using this procedure, you cannot change the scraping location for artwork. ie- If you originally scraped from online sources, you cannot expect that Kodi will now scrape from your newly added local artwork and vice-versa. It will retrieve artwork from the same source as it was before, so the result will be the same image. To bulk change artwork, refer to &#039;&#039;[[Artwork#Importing-Scraping Artwork| Importing-Scraping Artwork]]&#039;&#039;}}&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You will need to perform the following for a clean start with respect to the artwork texture cache.&lt;br /&gt;
#Exit Kodi&lt;br /&gt;
#Delete &#039;&#039;texturesxx.db&#039;&#039; located in the &#039;&#039;\userdata\database\&#039;&#039; folder. &lt;br /&gt;
#Delete the &#039;&#039;Thumbnails&#039;&#039; directory located at &#039;&#039;\userdata\&#039;&#039; which stores all the cached images,&lt;br /&gt;
Once the above steps are performed&lt;br /&gt;
#Restart Kodi&lt;br /&gt;
#Kodi will automatically rebuild the Textures database and repopulate the Thumbnails cache as the images are displayed in the GUI or other Kodi interface.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{warning|Artwork links must be considered as a perishable item. Scraper sites frequently purge thousands of images. As a result, performing this advanced method may result in many images no longer displaying as they are no longer available at the scraper sites.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Cache manipulation tools =&lt;br /&gt;
* [[Texture Cache Maintenance utility]]&lt;br /&gt;
** {{#lst:Texture_Cache_Maintenance_utility|intro}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Kodi version updates =&lt;br /&gt;
&amp;lt;section begin=&amp;quot;CacheMaxResolution&amp;quot; /&amp;gt;From v18, the 1920x1080 resolution limitation has been removed. Using the following code in your advancedsettings.xml will allow caching artwork at original size. &amp;lt;ref&amp;gt;https://github.com/xbmc/xbmc/pull/13599&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;imageres&amp;gt;9999&amp;lt;/imageres&amp;gt;&lt;br /&gt;
&amp;lt;fanartres&amp;gt;9999&amp;lt;/fanartres&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;section end=&amp;quot;CacheMaxResolution&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= References =&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
{{updated|20}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Karellen]]&lt;br /&gt;
[[Category:Music library]]&lt;br /&gt;
[[Category:Video library]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Artwork/Cache&amp;diff=253061</id>
		<title>Artwork/Cache</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Artwork/Cache&amp;diff=253061"/>
		<updated>2024-07-20T00:39:07Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* Automatic cache cleaner */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Artwork_Contents}}&lt;br /&gt;
{{mininav|[[Music_library|Music Library]] {{l2|[[Video_library|Video Library]]}} | [[Artwork]] }}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Introduction =&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;{{Kodi}} maintains a texture cache on local device storage for all artwork displayed in the GUI, whether from an online source or the local file system. These textures are optimized and stored locally for faster loading.&lt;br /&gt;
&lt;br /&gt;
When media is added to the library, {{Kodi}} initially only has a URL or path to the artwork. The artwork itself is downloaded (if from an online source) and then cached.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
All images that {{Kodi}} loads, with the exception of textures that are provided directly by the skin, are cached to the userdata/Thumbnails folder.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; It is not possible to disable the artwork cache and operate exclusively from locally saved artwork as described in the related artwork pages.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Artwork for library items =&lt;br /&gt;
The artwork URLs associated with library items are stored in the art table inside the video or music databases. These store the original URL to the artwork (e.g. from local artwork files or from web sources such as https://themoviedb.org, https://thetvdb.com, or https://theaudiodb.com). This means that central databases store where the art is obtained from, and multiple devices then just keep a local thumbnail cache as described below.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= The caching procedure =&lt;br /&gt;
The caching procedure utilizes an optimized copy of the original image saved in .jpg or .png format and an SQL database that maintains the local cache.&lt;br /&gt;
&lt;br /&gt;
The cache operates primarily on an &amp;quot;as and when needed&amp;quot; basis; i.e. textures are cached when they&#039;re first requested for display in a skin or web interface. In some cases textures may be cached before they&#039;re immediately needed, such as thumbnails generated from video files. In either case, the main caching procedure starts with an image URL. It caches as follows:&lt;br /&gt;
&lt;br /&gt;
#  {{Kodi}} generates a hash (CRC) of the URL, like &amp;quot;6a643bff&amp;quot;.&lt;br /&gt;
#  The texture is optimized (see [[#Texture optimization]]) and cached to a device-local file with the given URL hash. It is cached as a PNG if transparency is required and JPG otherwise.&lt;br /&gt;
#  For local files, another hash of the image is generated based on size and modified date, which can be used to check if the original image has changed.&lt;br /&gt;
#  These details are stored in the SQL database Textures.db, along with information on when the image was cached.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Loading textures =&lt;br /&gt;
When loading a texture for display in a skin or web interface, {{Kodi}} basically just has a URL to the image.  Given a particular URL, it loads the texture as follows:&lt;br /&gt;
&lt;br /&gt;
# If the image is provided by the skin, skip to step 5.&lt;br /&gt;
# If the URL is directly to a cached version of a texture in the cache, skip to step 5.&lt;br /&gt;
# If the URL is for an image already cached in the thumbnail cache, swap the URL to the cached version and skip to step 5.&lt;br /&gt;
# Cache the image as outlined in the section above.&lt;br /&gt;
# Load the image. If the image is provided by the skin, skip steps 6 and 7.&lt;br /&gt;
# The access time for this texture is saved in the texture database.&lt;br /&gt;
# If the image is not from a web service (HTTP/S) and at least 24 hours have passed since it was last loaded, check the hash generated in step 3 of &amp;quot;The caching procedure&amp;quot; for changes to the image. If the hash has changed, cache the new image as outlined in the section above.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Texture optimization =&lt;br /&gt;
# Images are limited to a maximum pixel dimension to fit in a 16:9 box, with a default configuration of 1920x1080 for images that are 16:9 (like fanart) and larger than this, and 1280x720 for all other images. This can be changed with &#039;&#039;&#039;[[Advancedsettings.xml#Library artwork| advancedsettings.xml]]&#039;&#039;&#039;.&lt;br /&gt;
#* Images in the GUI will look best by configuring this at or somewhat smaller than images are displayed by your skin and device. Additionally due to final scaling algorithm, a slightly larger image than the display area will look notably worse than a slightly smaller image.&lt;br /&gt;
#* If you are experiencing slow loading images or lagging GUI navigation on low powered equipment and/or your {{Kodi}} device has minimal storage available, these defaults can be lowered to noticeably reduce the cost of artwork. For higher powered equipment these settings can be increased to maintain the original artwork size. (eg 3840x2160 fanart)&lt;br /&gt;
# Images are re-encoded in a decoder-friendly way so that the image can be displayed as quickly as possible.&lt;br /&gt;
&lt;br /&gt;
This optimized image is exported with {{Kodi}}&#039;s &#039;&#039;&#039;[[Import-export_library|Library Export]]&#039;&#039;&#039; feature, rather than the original full-quality image, so it is best to avoid exporting artwork if at all possible.&amp;lt;ref&amp;gt;https://forum.kodi.tv/showthread.php?tid=315806&amp;amp;pid=2599318#pid2599318&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Automatic cache cleaning =&lt;br /&gt;
{{Kodi}} 22 adds an automatic process to clean out unused images over time - images not associated with an item in the media library nor viewed within the last 30 days. There is also an option in [[Settings/Media/Library]] to immediately remove all such images at once.&lt;br /&gt;
&lt;br /&gt;
= Advanced: How to refresh the cached image of an icon manually =&lt;br /&gt;
The [[Texture Cache Maintenance utility]] can do this in a safer way, but this is the manual option.&lt;br /&gt;
There is an image like &#039;&#039;/home/x/.kodi/addons/my.lovely.addon/icon.png&#039;&#039; . After changing that file, the old image is still visible in {{kodi}}. To solve this we need to remove the actual thumbnail file from the filesystem and its reference in the DB:&lt;br /&gt;
&lt;br /&gt;
 # Get the thumbnail path to remove the file from the filesystem&lt;br /&gt;
 $ sqlite3 .kodi/userdata/Database/Textures13.db &amp;quot;SELECT cachedurl FROM texture WHERE url = &#039;/home/x/.kodi/addons/my.lovely.addon/icon.png&#039;;&amp;quot;&lt;br /&gt;
 6/6a643bff.png&lt;br /&gt;
&lt;br /&gt;
This &#039;&#039;6/6a643bff.png&#039;&#039; is the cached image under &#039;&#039;/home/x/.kodi/userdata/Thumbnails&#039;&#039;. So: you need to remove from your filesystem &#039;&#039;/home/x/.kodi/userdata/Thumbnails/6/6a43bff.png&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 # Remove the image-&amp;gt;cached image link in the DB&lt;br /&gt;
 $ sqlite3 .kodi/userdata/Database/Textures13.db &amp;quot;DELETE FROM texture WHERE url = &#039;/home/x/.kodi/addons/my.lovely.addon/icon.png&#039;;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Next time Kodi needs the image, it will recreate the thumbnail.&lt;br /&gt;
&lt;br /&gt;
:{{note|The &amp;lt;code&amp;gt;&amp;quot;Textures&#039;&#039;&#039;13&#039;&#039;&#039;.db&amp;quot;&amp;lt;/code&amp;gt; &#039;&#039;&#039;[[Databases#Database_Versions|number/version can increase]]&#039;&#039;&#039; with later Kodi versions.}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;See also: [[Databases#Database_Versions|Database Versions]]&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Advanced: delete textures13.db =&lt;br /&gt;
This last resort procedure is one sure way to repair any image caching problem: delete the &#039;&#039;Textures13.db&#039;&#039; database and the thumbnail directory. This procedure does not affect the entries in the Video and Music libraries, so Kodi will not find more images after, this is just a brute-force solution to a caching problem. It affects the artwork database only. [[Texture Cache Maintenance utility]] can do very targeted fixes of the texture cache, so consider it before doing this.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note&#039;&#039;&#039;&lt;br /&gt;
#Be aware that this should be a last resort procedure. Deleting this database file and the thumbnail directory will remove all cache entries and links, requiring remote URLs to web services to be downloaded again.&lt;br /&gt;
#As the URL link to the original artwork location is stored in the video or music databases, Kodi will use the existing URLs to rebuild the Texture database and thumbnail cache, rather than finding new images locally or from a scraper.&lt;br /&gt;
#{{red|Using this procedure, you cannot change the scraping location for artwork. ie- If you originally scraped from online sources, you cannot expect that Kodi will now scrape from your newly added local artwork and vice-versa. It will retrieve artwork from the same source as it was before, so the result will be the same image. To bulk change artwork, refer to &#039;&#039;[[Artwork#Importing-Scraping Artwork| Importing-Scraping Artwork]]&#039;&#039;}}&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You will need to perform the following for a clean start with respect to the artwork texture cache.&lt;br /&gt;
#Exit Kodi&lt;br /&gt;
#Delete &#039;&#039;texturesxx.db&#039;&#039; located in the &#039;&#039;\userdata\database\&#039;&#039; folder. &lt;br /&gt;
#Delete the &#039;&#039;Thumbnails&#039;&#039; directory located at &#039;&#039;\userdata\&#039;&#039; which stores all the cached images,&lt;br /&gt;
Once the above steps are performed&lt;br /&gt;
#Restart Kodi&lt;br /&gt;
#Kodi will automatically rebuild the Textures database and repopulate the Thumbnails cache as the images are displayed in the GUI or other Kodi interface.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{warning|Artwork links must be considered as a perishable item. Scraper sites frequently purge thousands of images. As a result, performing this advanced method may result in many images no longer displaying as they are no longer available at the scraper sites.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Cache manipulation tools =&lt;br /&gt;
* [[Texture Cache Maintenance utility]]&lt;br /&gt;
** {{#lst:Texture_Cache_Maintenance_utility|intro}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Kodi version updates =&lt;br /&gt;
&amp;lt;section begin=&amp;quot;CacheMaxResolution&amp;quot; /&amp;gt;From v18, the 1920x1080 resolution limitation has been removed. Using the following code in your advancedsettings.xml will allow caching artwork at original size. &amp;lt;ref&amp;gt;https://github.com/xbmc/xbmc/pull/13599&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;imageres&amp;gt;9999&amp;lt;/imageres&amp;gt;&lt;br /&gt;
&amp;lt;fanartres&amp;gt;9999&amp;lt;/fanartres&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;section end=&amp;quot;CacheMaxResolution&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= References =&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
{{updated|20}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Karellen]]&lt;br /&gt;
[[Category:Music library]]&lt;br /&gt;
[[Category:Video library]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Artwork/Cache&amp;diff=253060</id>
		<title>Artwork/Cache</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Artwork/Cache&amp;diff=253060"/>
		<updated>2024-07-20T00:38:31Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* Texture optimization */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Artwork_Contents}}&lt;br /&gt;
{{mininav|[[Music_library|Music Library]] {{l2|[[Video_library|Video Library]]}} | [[Artwork]] }}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Introduction =&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;{{Kodi}} maintains a texture cache on local device storage for all artwork displayed in the GUI, whether from an online source or the local file system. These textures are optimized and stored locally for faster loading.&lt;br /&gt;
&lt;br /&gt;
When media is added to the library, {{Kodi}} initially only has a URL or path to the artwork. The artwork itself is downloaded (if from an online source) and then cached.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
All images that {{Kodi}} loads, with the exception of textures that are provided directly by the skin, are cached to the userdata/Thumbnails folder.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; It is not possible to disable the artwork cache and operate exclusively from locally saved artwork as described in the related artwork pages.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Artwork for library items =&lt;br /&gt;
The artwork URLs associated with library items are stored in the art table inside the video or music databases. These store the original URL to the artwork (e.g. from local artwork files or from web sources such as https://themoviedb.org, https://thetvdb.com, or https://theaudiodb.com). This means that central databases store where the art is obtained from, and multiple devices then just keep a local thumbnail cache as described below.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= The caching procedure =&lt;br /&gt;
The caching procedure utilizes an optimized copy of the original image saved in .jpg or .png format and an SQL database that maintains the local cache.&lt;br /&gt;
&lt;br /&gt;
The cache operates primarily on an &amp;quot;as and when needed&amp;quot; basis; i.e. textures are cached when they&#039;re first requested for display in a skin or web interface. In some cases textures may be cached before they&#039;re immediately needed, such as thumbnails generated from video files. In either case, the main caching procedure starts with an image URL. It caches as follows:&lt;br /&gt;
&lt;br /&gt;
#  {{Kodi}} generates a hash (CRC) of the URL, like &amp;quot;6a643bff&amp;quot;.&lt;br /&gt;
#  The texture is optimized (see [[#Texture optimization]]) and cached to a device-local file with the given URL hash. It is cached as a PNG if transparency is required and JPG otherwise.&lt;br /&gt;
#  For local files, another hash of the image is generated based on size and modified date, which can be used to check if the original image has changed.&lt;br /&gt;
#  These details are stored in the SQL database Textures.db, along with information on when the image was cached.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Loading textures =&lt;br /&gt;
When loading a texture for display in a skin or web interface, {{Kodi}} basically just has a URL to the image.  Given a particular URL, it loads the texture as follows:&lt;br /&gt;
&lt;br /&gt;
# If the image is provided by the skin, skip to step 5.&lt;br /&gt;
# If the URL is directly to a cached version of a texture in the cache, skip to step 5.&lt;br /&gt;
# If the URL is for an image already cached in the thumbnail cache, swap the URL to the cached version and skip to step 5.&lt;br /&gt;
# Cache the image as outlined in the section above.&lt;br /&gt;
# Load the image. If the image is provided by the skin, skip steps 6 and 7.&lt;br /&gt;
# The access time for this texture is saved in the texture database.&lt;br /&gt;
# If the image is not from a web service (HTTP/S) and at least 24 hours have passed since it was last loaded, check the hash generated in step 3 of &amp;quot;The caching procedure&amp;quot; for changes to the image. If the hash has changed, cache the new image as outlined in the section above.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Texture optimization =&lt;br /&gt;
# Images are limited to a maximum pixel dimension to fit in a 16:9 box, with a default configuration of 1920x1080 for images that are 16:9 (like fanart) and larger than this, and 1280x720 for all other images. This can be changed with &#039;&#039;&#039;[[Advancedsettings.xml#Library artwork| advancedsettings.xml]]&#039;&#039;&#039;.&lt;br /&gt;
#* Images in the GUI will look best by configuring this at or somewhat smaller than images are displayed by your skin and device. Additionally due to final scaling algorithm, a slightly larger image than the display area will look notably worse than a slightly smaller image.&lt;br /&gt;
#* If you are experiencing slow loading images or lagging GUI navigation on low powered equipment and/or your {{Kodi}} device has minimal storage available, these defaults can be lowered to noticeably reduce the cost of artwork. For higher powered equipment these settings can be increased to maintain the original artwork size. (eg 3840x2160 fanart)&lt;br /&gt;
# Images are re-encoded in a decoder-friendly way so that the image can be displayed as quickly as possible.&lt;br /&gt;
&lt;br /&gt;
This optimized image is exported with {{Kodi}}&#039;s &#039;&#039;&#039;[[Import-export_library|Library Export]]&#039;&#039;&#039; feature, rather than the original full-quality image, so it is best to avoid exporting artwork if at all possible.&amp;lt;ref&amp;gt;https://forum.kodi.tv/showthread.php?tid=315806&amp;amp;pid=2599318#pid2599318&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Automatic cache cleaner =&lt;br /&gt;
{{Kodi}} 22 adds an automatic process to clean out unused images over time - images not associated with an item in the media library nor viewed within the last 30 days. There is also an option in [[Settings/Media/Library]] to immediately remove all such images at once.&lt;br /&gt;
&lt;br /&gt;
= Advanced: How to refresh the cached image of an icon manually =&lt;br /&gt;
The [[Texture Cache Maintenance utility]] can do this in a safer way, but this is the manual option.&lt;br /&gt;
There is an image like &#039;&#039;/home/x/.kodi/addons/my.lovely.addon/icon.png&#039;&#039; . After changing that file, the old image is still visible in {{kodi}}. To solve this we need to remove the actual thumbnail file from the filesystem and its reference in the DB:&lt;br /&gt;
&lt;br /&gt;
 # Get the thumbnail path to remove the file from the filesystem&lt;br /&gt;
 $ sqlite3 .kodi/userdata/Database/Textures13.db &amp;quot;SELECT cachedurl FROM texture WHERE url = &#039;/home/x/.kodi/addons/my.lovely.addon/icon.png&#039;;&amp;quot;&lt;br /&gt;
 6/6a643bff.png&lt;br /&gt;
&lt;br /&gt;
This &#039;&#039;6/6a643bff.png&#039;&#039; is the cached image under &#039;&#039;/home/x/.kodi/userdata/Thumbnails&#039;&#039;. So: you need to remove from your filesystem &#039;&#039;/home/x/.kodi/userdata/Thumbnails/6/6a43bff.png&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 # Remove the image-&amp;gt;cached image link in the DB&lt;br /&gt;
 $ sqlite3 .kodi/userdata/Database/Textures13.db &amp;quot;DELETE FROM texture WHERE url = &#039;/home/x/.kodi/addons/my.lovely.addon/icon.png&#039;;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Next time Kodi needs the image, it will recreate the thumbnail.&lt;br /&gt;
&lt;br /&gt;
:{{note|The &amp;lt;code&amp;gt;&amp;quot;Textures&#039;&#039;&#039;13&#039;&#039;&#039;.db&amp;quot;&amp;lt;/code&amp;gt; &#039;&#039;&#039;[[Databases#Database_Versions|number/version can increase]]&#039;&#039;&#039; with later Kodi versions.}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;See also: [[Databases#Database_Versions|Database Versions]]&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Advanced: delete textures13.db =&lt;br /&gt;
This last resort procedure is one sure way to repair any image caching problem: delete the &#039;&#039;Textures13.db&#039;&#039; database and the thumbnail directory. This procedure does not affect the entries in the Video and Music libraries, so Kodi will not find more images after, this is just a brute-force solution to a caching problem. It affects the artwork database only. [[Texture Cache Maintenance utility]] can do very targeted fixes of the texture cache, so consider it before doing this.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note&#039;&#039;&#039;&lt;br /&gt;
#Be aware that this should be a last resort procedure. Deleting this database file and the thumbnail directory will remove all cache entries and links, requiring remote URLs to web services to be downloaded again.&lt;br /&gt;
#As the URL link to the original artwork location is stored in the video or music databases, Kodi will use the existing URLs to rebuild the Texture database and thumbnail cache, rather than finding new images locally or from a scraper.&lt;br /&gt;
#{{red|Using this procedure, you cannot change the scraping location for artwork. ie- If you originally scraped from online sources, you cannot expect that Kodi will now scrape from your newly added local artwork and vice-versa. It will retrieve artwork from the same source as it was before, so the result will be the same image. To bulk change artwork, refer to &#039;&#039;[[Artwork#Importing-Scraping Artwork| Importing-Scraping Artwork]]&#039;&#039;}}&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You will need to perform the following for a clean start with respect to the artwork texture cache.&lt;br /&gt;
#Exit Kodi&lt;br /&gt;
#Delete &#039;&#039;texturesxx.db&#039;&#039; located in the &#039;&#039;\userdata\database\&#039;&#039; folder. &lt;br /&gt;
#Delete the &#039;&#039;Thumbnails&#039;&#039; directory located at &#039;&#039;\userdata\&#039;&#039; which stores all the cached images,&lt;br /&gt;
Once the above steps are performed&lt;br /&gt;
#Restart Kodi&lt;br /&gt;
#Kodi will automatically rebuild the Textures database and repopulate the Thumbnails cache as the images are displayed in the GUI or other Kodi interface.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{warning|Artwork links must be considered as a perishable item. Scraper sites frequently purge thousands of images. As a result, performing this advanced method may result in many images no longer displaying as they are no longer available at the scraper sites.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Cache manipulation tools =&lt;br /&gt;
* [[Texture Cache Maintenance utility]]&lt;br /&gt;
** {{#lst:Texture_Cache_Maintenance_utility|intro}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Kodi version updates =&lt;br /&gt;
&amp;lt;section begin=&amp;quot;CacheMaxResolution&amp;quot; /&amp;gt;From v18, the 1920x1080 resolution limitation has been removed. Using the following code in your advancedsettings.xml will allow caching artwork at original size. &amp;lt;ref&amp;gt;https://github.com/xbmc/xbmc/pull/13599&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;imageres&amp;gt;9999&amp;lt;/imageres&amp;gt;&lt;br /&gt;
&amp;lt;fanartres&amp;gt;9999&amp;lt;/fanartres&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;section end=&amp;quot;CacheMaxResolution&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= References =&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
{{updated|20}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Karellen]]&lt;br /&gt;
[[Category:Music library]]&lt;br /&gt;
[[Category:Video library]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Artwork/Cache&amp;diff=252512</id>
		<title>Artwork/Cache</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Artwork/Cache&amp;diff=252512"/>
		<updated>2024-04-14T22:51:18Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* Texture optimization */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Artwork_Contents}}&lt;br /&gt;
{{mininav|[[Music_library|Music Library]] {{l2|[[Video_library|Video Library]]}} | [[Artwork]] }}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Introduction =&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;{{Kodi}} maintains a texture cache on local device storage for all artwork displayed in the GUI, whether from an online source or the local file system. These textures are optimized and stored locally for faster loading.&lt;br /&gt;
&lt;br /&gt;
When media is added to the library, {{Kodi}} initially only has a URL or path to the artwork. The artwork itself is downloaded (if from an online source) and then cached.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
All images that {{Kodi}} loads, with the exception of textures that are provided directly by the skin, are cached to the userdata/Thumbnails folder.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; It is not possible to disable the artwork cache and operate exclusively from locally saved artwork as described in the related artwork pages.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Artwork for library items =&lt;br /&gt;
The artwork URLs associated with library items are stored in the art table inside the video or music databases. These store the original URL to the artwork (e.g. from local artwork files or from web sources such as https://themoviedb.org, https://thetvdb.com, or https://theaudiodb.com). This means that central databases store where the art is obtained from, and multiple devices then just keep a local thumbnail cache as described below.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= The caching procedure =&lt;br /&gt;
The caching procedure utilizes an optimized copy of the original image saved in .jpg or .png format and an SQL database that maintains the local cache.&lt;br /&gt;
&lt;br /&gt;
The cache operates primarily on an &amp;quot;as and when needed&amp;quot; basis; i.e. textures are cached when they&#039;re first requested for display in a skin or web interface. In some cases textures may be cached before they&#039;re immediately needed, such as thumbnails generated from video files. In either case, the main caching procedure starts with an image URL. It caches as follows:&lt;br /&gt;
&lt;br /&gt;
#  {{Kodi}} generates a hash (CRC) of the URL, like &amp;quot;6a643bff&amp;quot;.&lt;br /&gt;
#  The texture is optimized (see [[#Texture optimization]]) and cached to a device-local file with the given URL hash. It is cached as a PNG if transparency is required and JPG otherwise.&lt;br /&gt;
#  For local files, another hash of the image is generated based on size and modified date, which can be used to check if the original image has changed.&lt;br /&gt;
#  These details are stored in the SQL database Textures.db, along with information on when the image was cached.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Loading textures =&lt;br /&gt;
When loading a texture for display in a skin or web interface, {{Kodi}} basically just has a URL to the image.  Given a particular URL, it loads the texture as follows:&lt;br /&gt;
&lt;br /&gt;
# If the image is provided by the skin, skip to step 5.&lt;br /&gt;
# If the URL is directly to a cached version of a texture in the cache, skip to step 5.&lt;br /&gt;
# If the URL is for an image already cached in the thumbnail cache, swap the URL to the cached version and skip to step 5.&lt;br /&gt;
# Cache the image as outlined in the section above.&lt;br /&gt;
# Load the image. If the image is provided by the skin, skip steps 6 and 7.&lt;br /&gt;
# The access time for this texture is saved in the texture database.&lt;br /&gt;
# If the image is not from a web service (HTTP/S) and at least 24 hours have passed since it was last loaded, check the hash generated in step 3 of &amp;quot;The caching procedure&amp;quot; for changes to the image. If the hash has changed, cache the new image as outlined in the section above.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Texture optimization =&lt;br /&gt;
# Images are limited to a maximum pixel dimension to fit in a 16:9 box, with a default configuration of 1920x1080 for images that are 16:9 (like fanart) and larger than this, and 1280x720 for all other images. This can be changed with &#039;&#039;&#039;[[Advancedsettings.xml#Library artwork| advancedsettings.xml]]&#039;&#039;&#039;.&lt;br /&gt;
#* Images in the GUI will look best by configuring this at or somewhat smaller than images are displayed by your skin and device. Additionally due to final scaling algorithm, a slightly larger image than the display area will look notably worse than a slightly smaller image.&lt;br /&gt;
#* If you are experiencing slow loading images or lagging GUI navigation on low powered equipment and/or your {{Kodi}} device has minimal storage available, these defaults can be lowered to noticeably reduce the cost of artwork. For higher powered equipment these settings can be increased to maintain the original artwork size. (eg 3840x2160 fanart)&lt;br /&gt;
# Images are re-encoded in a decoder-friendly way so that the image can be displayed as quickly as possible.&lt;br /&gt;
&lt;br /&gt;
This optimized image is exported with {{Kodi}}&#039;s &#039;&#039;&#039;[[Import-export_library|Library Export]]&#039;&#039;&#039; feature, rather than the original full-quality image, so it is best to avoid exporting artwork if at all possible.&amp;lt;ref&amp;gt;https://forum.kodi.tv/showthread.php?tid=315806&amp;amp;pid=2599318#pid2599318&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Advanced: How to refresh the cached image of an icon manually =&lt;br /&gt;
The [[Texture Cache Maintenance utility]] can do this in a safer way, but this is the manual option.&lt;br /&gt;
There is an image like &#039;&#039;/home/x/.kodi/addons/my.lovely.addon/icon.png&#039;&#039; . After changing that file, the old image is still visible in {{kodi}}. To solve this we need to remove the actual thumbnail file from the filesystem and its reference in the DB:&lt;br /&gt;
&lt;br /&gt;
 # Get the thumbnail path to remove the file from the filesystem&lt;br /&gt;
 $ sqlite3 .kodi/userdata/Database/Textures13.db &amp;quot;SELECT cachedurl FROM texture WHERE url = &#039;/home/x/.kodi/addons/my.lovely.addon/icon.png&#039;;&amp;quot;&lt;br /&gt;
 6/6a643bff.png&lt;br /&gt;
&lt;br /&gt;
This &#039;&#039;6/6a643bff.png&#039;&#039; is the cached image under &#039;&#039;/home/x/.kodi/userdata/Thumbnails&#039;&#039;. So: you need to remove from your filesystem &#039;&#039;/home/x/.kodi/userdata/Thumbnails/6/6a43bff.png&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 # Remove the image-&amp;gt;cached image link in the DB&lt;br /&gt;
 $ sqlite3 .kodi/userdata/Database/Textures13.db &amp;quot;DELETE FROM texture WHERE url = &#039;/home/x/.kodi/addons/my.lovely.addon/icon.png&#039;;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Next time Kodi needs the image, it will recreate the thumbnail.&lt;br /&gt;
&lt;br /&gt;
:{{note|The &amp;lt;code&amp;gt;&amp;quot;Textures&#039;&#039;&#039;13&#039;&#039;&#039;.db&amp;quot;&amp;lt;/code&amp;gt; &#039;&#039;&#039;[[Databases#Database_Versions|number/version can increase]]&#039;&#039;&#039; with later Kodi versions.}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;See also: [[Databases#Database_Versions|Database Versions]]&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Advanced: delete textures13.db =&lt;br /&gt;
This last resort procedure is one sure way to repair any image caching problem: delete the &#039;&#039;Textures13.db&#039;&#039; database and the thumbnail directory. This procedure does not affect the entries in the Video and Music libraries, so Kodi will not find more images after, this is just a brute-force solution to a caching problem. It affects the artwork database only. [[Texture Cache Maintenance utility]] can do very targeted fixes of the texture cache, so consider it before doing this.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note&#039;&#039;&#039;&lt;br /&gt;
#Be aware that this should be a last resort procedure. Deleting this database file and the thumbnail directory will remove all cache entries and links, requiring remote URLs to web services to be downloaded again.&lt;br /&gt;
#As the URL link to the original artwork location is stored in the video or music databases, Kodi will use the existing URLs to rebuild the Texture database and thumbnail cache, rather than finding new images locally or from a scraper.&lt;br /&gt;
#{{red|Using this procedure, you cannot change the scraping location for artwork. ie- If you originally scraped from online sources, you cannot expect that Kodi will now scrape from your newly added local artwork and vice-versa. It will retrieve artwork from the same source as it was before, so the result will be the same image. To bulk change artwork, refer to &#039;&#039;[[Artwork#Importing-Scraping Artwork| Importing-Scraping Artwork]]&#039;&#039;}}&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You will need to perform the following for a clean start with respect to the artwork texture cache.&lt;br /&gt;
#Exit Kodi&lt;br /&gt;
#Delete &#039;&#039;texturesxx.db&#039;&#039; located in the &#039;&#039;\userdata\database\&#039;&#039; folder. &lt;br /&gt;
#Delete the &#039;&#039;Thumbnails&#039;&#039; directory located at &#039;&#039;\userdata\&#039;&#039; which stores all the cached images,&lt;br /&gt;
Once the above steps are performed&lt;br /&gt;
#Restart Kodi&lt;br /&gt;
#Kodi will automatically rebuild the Textures database and repopulate the Thumbnails cache as the images are displayed in the GUI or other Kodi interface.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{warning|Artwork links must be considered as a perishable item. Scraper sites frequently purge thousands of images. As a result, performing this advanced method may result in many images no longer displaying as they are no longer available at the scraper sites.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Cache manipulation tools =&lt;br /&gt;
* [[Texture Cache Maintenance utility]]&lt;br /&gt;
** {{#lst:Texture_Cache_Maintenance_utility|intro}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Kodi version updates =&lt;br /&gt;
&amp;lt;section begin=&amp;quot;CacheMaxResolution&amp;quot; /&amp;gt;From v18, the 1920x1080 resolution limitation has been removed. Using the following code in your advancedsettings.xml will allow caching artwork at original size. &amp;lt;ref&amp;gt;https://github.com/xbmc/xbmc/pull/13599&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;imageres&amp;gt;9999&amp;lt;/imageres&amp;gt;&lt;br /&gt;
&amp;lt;fanartres&amp;gt;9999&amp;lt;/fanartres&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;section end=&amp;quot;CacheMaxResolution&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= References =&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
{{updated|20}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Karellen]]&lt;br /&gt;
[[Category:Music library]]&lt;br /&gt;
[[Category:Video library]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Artwork/Accessing_with_skins_and_JSON-RPC&amp;diff=249774</id>
		<title>Artwork/Accessing with skins and JSON-RPC</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Artwork/Accessing_with_skins_and_JSON-RPC&amp;diff=249774"/>
		<updated>2024-01-26T19:11:28Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* Kodi-encoded URL */ adjust example to match&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Artwork_Contents}}&lt;br /&gt;
{{mininav|[[Development]]|[[Artwork]]}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;The primary usage of artwork is to be displayed, and to that end, they can be accessed by name in skins and over JSON-RPC.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Media items with a &amp;quot;parent&amp;quot; media type, such as episodes to their TV show, can also access their parent&#039;s artwork with certain prefixes, like &amp;quot;tvshow.poster&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= From skins =&lt;br /&gt;
Skins can access library artwork for media items in a list with &amp;quot;ListItem.Art(&amp;lt;arttype&amp;gt;)&amp;quot; and artwork for the currently playing item with &amp;quot;Player.Art(&amp;lt;arttype&amp;gt;)&amp;quot;. &amp;quot;Container.Art(&amp;lt;arttype&amp;gt;)&amp;quot; can also be filled in some instances. Some examples are: &amp;lt;code&amp;gt;Player.Art(poster)&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;Player.Art(fanart)&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;ListItem.Art(banner)&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;ListItem.Art(tvshow.clearlogo)&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|+ Additional InfoLabels&lt;br /&gt;
! Skin InfoLabel&lt;br /&gt;
! style=&amp;quot;width:80%&amp;quot; | Description&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| ListItem.Art(poster)&lt;br /&gt;
| Artwork for the currently focused ListItem.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| Player.Art(poster)&lt;br /&gt;
| Artwork for the currently playing item.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| Container.Art(poster)&lt;br /&gt;
| Artwork for the currently focused Container. Container artwork may be filled with &amp;quot;parent&amp;quot; type media item artwork if navigating a single item, like a list of episodes from a single TV show.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| Container(555).ListItem.Art(poster)&lt;br /&gt;
| Artwork for the currently focused ListItem in a specific container.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Additional InfoLabels for artwork ==&lt;br /&gt;
There are other InfoLabels for artwork that don&#039;t match the above pattern, but many of them are deprecated. A set of them that can still be useful are&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|+ Additional InfoLabels&lt;br /&gt;
! Skin InfoLabel&lt;br /&gt;
! style=&amp;quot;width:30%&amp;quot; | Description&lt;br /&gt;
! Examples&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| MusicPlayer.offset(number).Cover&lt;br /&gt;
| Cover of the item offset by &#039;&#039;number&#039;&#039; from the currently playing item in the currently playing music player queue.&lt;br /&gt;
| {{code|MusicPlayer.offset(1).Cover}} - next item in queue&lt;br /&gt;
{{code|MusicPlayer.offset(-1).Cover}} - previous item in queue&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  MusicPlayer.Position(number).Cover&lt;br /&gt;
|  Cover of the item in position &#039;&#039;number&#039;&#039; of currently playing music player queue.&lt;br /&gt;
| {{code|MusicPlayer.Position(1).Cover}} - first item in queue&lt;br /&gt;
{{code|MusicPlayer.Position(2).Cover}} - second item in queue&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  MusicPlayer.Position(number).Property(Fanart_Image)&lt;br /&gt;
|  Fanart of the item in position &#039;&#039;number&#039;&#039; of the currently playing music player queue.&lt;br /&gt;
| {{code|MusicPlayer.Position(1).Property(Fanart_Image)}} - first item in queue&lt;br /&gt;
{{code|MusicPlayer.Position(2).Property(Fanart_Image)}} - second item in queue&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= From JSON-RPC =&lt;br /&gt;
Several JSON-RPC methods (like &amp;quot;VideoLibrary.GetMovies&amp;quot;, &amp;quot;AudioLibrary.GetAlbumDetails&amp;quot;, and &amp;quot;Playlist.GetItems&amp;quot;) return info for media items in the library, and requesting the &amp;quot;art&amp;quot; property will return an &amp;quot;art&amp;quot; dictionary that maps all available artwork for the media item. The key is the artwork type and the value is a Kodi-encoded URL or path to the assigned artwork.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
Example request:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;json&amp;quot;&amp;gt;&lt;br /&gt;
{&amp;quot;jsonrpc&amp;quot;:&amp;quot;2.0&amp;quot;,&amp;quot;id&amp;quot;:11,&amp;quot;method&amp;quot;:&amp;quot;VideoLibrary.GetEpisodes&amp;quot;,&amp;quot;params&amp;quot;:{&amp;quot;properties&amp;quot;:[&amp;quot;art&amp;quot;],&amp;quot;limits&amp;quot;:{&amp;quot;end&amp;quot;:1},&amp;quot;sort&amp;quot;:{&amp;quot;method&amp;quot;:&amp;quot;random&amp;quot;}}}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and a possible response:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;json&amp;quot;&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
     &amp;quot;id&amp;quot;: 11,&lt;br /&gt;
     &amp;quot;jsonrpc&amp;quot;: &amp;quot;2.0&amp;quot;,&lt;br /&gt;
     &amp;quot;result&amp;quot;: {&lt;br /&gt;
         &amp;quot;episodes&amp;quot;: [&lt;br /&gt;
            {&lt;br /&gt;
                 &amp;quot;art&amp;quot;: {&lt;br /&gt;
                     &amp;quot;season.banner&amp;quot;: &amp;quot;image://nfs%3a%2f%2fSERVER%2fmedia%2fTVShows%2fV%20(2009)%2fseason02-banner.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;season.landscape&amp;quot;: &amp;quot;image://nfs%3a%2f%2fSERVER%2fmedia%2fTVShows%2fV%20(2009)%2fseason02-landscape.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;season.poster&amp;quot;: &amp;quot;image://nfs%3a%2f%2fSERVER%2fmedia%2fTVShows%2fV%20(2009)%2fseason02-poster.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;thumb&amp;quot;: &amp;quot;image://video@nfs%3a%2f%2fSERVER%2fmedia%2fTVShows%2fV%20(2009)%2fV%20(2009)%20-%2002x05%20-%20Concordia%20-%20720p%20WEB-DL.mkv/&amp;quot;,&lt;br /&gt;
                     &amp;quot;tvshow.banner&amp;quot;: &amp;quot;image://nfs%3a%2f%2fSERVER%2fmedia%2fTVShows%2fV%20(2009)%2fbanner.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;tvshow.clearlogo&amp;quot;: &amp;quot;image://nfs%3a%2f%2fSERVER%2fmedia%2fTVShows%2fV%20(2009)%2fclearlogo.png/&amp;quot;,&lt;br /&gt;
                     &amp;quot;tvshow.fanart&amp;quot;: &amp;quot;image://nfs%3a%2f%2fSERVER%2fmedia%2fTVShows%2fV%20(2009)%2ffanart.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;tvshow.poster&amp;quot;: &amp;quot;image://nfs%3a%2f%2fSERVER%2fmedia%2fTVShows%2fV%20(2009)%2fposter.jpg/&amp;quot;&lt;br /&gt;
                 },&lt;br /&gt;
                 &amp;quot;episodeid&amp;quot;: 2196,&lt;br /&gt;
                 &amp;quot;label&amp;quot;: &amp;quot;2x05. Concordia&amp;quot;&lt;br /&gt;
             }&lt;br /&gt;
         ],&lt;br /&gt;
         &amp;quot;limits&amp;quot;: {&lt;br /&gt;
             &amp;quot;end&amp;quot;: 1,&lt;br /&gt;
             &amp;quot;start&amp;quot;: 0,&lt;br /&gt;
             &amp;quot;total&amp;quot;: 3352&lt;br /&gt;
         }&lt;br /&gt;
     }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi-encoded URL ==&lt;br /&gt;
The image paths returned by JSON-RPC are the path or URL to the image encoded as Kodi&#039;s internal &amp;quot;image://&amp;quot; path.&lt;br /&gt;
&lt;br /&gt;
To turn that path into a URL that can actually be displayed in another application, you will need to encode it as a URI component (examples are [https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent encodeURIComponent] in JS and [https://docs.python.org/3/library/urllib.parse.html#urllib.parse.quote urllib.parse.quote] in Python 3), then add that to the end of the &amp;quot;image/&amp;quot; path of the Kodi HTTP server (like &amp;lt;nowiki&amp;gt;http://kodihost:8080/image/&amp;lt;/nowiki&amp;gt;). With these URLs you can display images wherever they happen to be stored; Kodi will handle opening a file over SMB or NFS if they are stored on a NAS next to the media items, for instance.&lt;br /&gt;
&lt;br /&gt;
The final URL will look like &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;http://kodihost:8080/image/image%3A%2F%2Fnfs%253a%252f%252fSERVER%252fmedia%252fTVShows%252fV%2520(2009)%252fposter.jpg%2F&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can also turn the &amp;quot;image://&amp;quot; URL into a more traditional looking path/URL (https:// or smb:// or H:\) by chopping off the &amp;quot;image://&amp;quot; up front and the slash at the end, then decoding the rest as a URI component.&lt;br /&gt;
&lt;br /&gt;
= Access &amp;quot;parent&amp;quot; artwork =&lt;br /&gt;
For several media types, it is possible to access artwork for the &amp;quot;parent&amp;quot; media item as well as the item&#039;s own artwork. This works for skins and JSON-RPC. For instance, TV episodes can access the artwork for the containing season and TV show. Use &amp;quot;&amp;lt;parenttype&amp;gt;.&amp;lt;arttype&amp;gt;&amp;quot; as the art type.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|+ Media types and their parent types&lt;br /&gt;
! style=&amp;quot;width:8%&amp;quot; | Media type&lt;br /&gt;
! Parent type&lt;br /&gt;
! style=&amp;quot;width:40%&amp;quot; | Description&lt;br /&gt;
! style=&amp;quot;width:30%&amp;quot; | Skin examples&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  TV episodes&lt;br /&gt;
|  &amp;quot;season&amp;quot;, &amp;quot;tvshow&amp;quot;&lt;br /&gt;
|  TV episodes can access artwork for their containing season and TV show&lt;br /&gt;
|  &amp;quot;Player.Art(tvshow.clearlogo)&amp;quot;, &amp;quot;Player.Art(season.poster)&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  Seasons&lt;br /&gt;
|  &amp;quot;tvshow&amp;quot;&lt;br /&gt;
|  TV show artwork&lt;br /&gt;
|  &amp;quot;ListItem.Art(tvshow.banner)&amp;quot;, &amp;quot;ListItem.Art(tvshow.clearlogo)&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  Movies&lt;br /&gt;
|  &amp;quot;set&amp;quot;&lt;br /&gt;
|  In Kodi 18, movies can access artwork for their containing set / collection&lt;br /&gt;
|  &amp;quot;ListItem.Art(set.clearlogo)&amp;quot;, &amp;quot;ListItem.Art(set.poster)&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  Songs&lt;br /&gt;
|  &amp;quot;album&amp;quot;, &amp;quot;artist&amp;quot;, &amp;quot;albumartist&amp;quot;, &amp;quot;artist1&amp;quot;, &amp;quot;albumartist1&amp;quot;&lt;br /&gt;
|  Songs can access the artwork for their containing album and all artists. Songs can have multiple artists; in Kodi 18 &amp;quot;artist1&amp;quot; will be artwork for the second artist - &amp;quot;artist2&amp;quot;, &amp;quot;artist3&amp;quot;, and so on will be filled for additional artists. &amp;quot;albumartist&amp;quot; works the same for album artists.&lt;br /&gt;
|  &amp;quot;Player.Art(album.thumb)&amp;quot;, &amp;quot;Player.Art(artist.fanart)&amp;quot;, &amp;quot;Player.Art(albumartist.clearlogo)&amp;quot;, &amp;quot;Player.Art(artist1.fanart)&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  Albums&lt;br /&gt;
|  &amp;quot;artist&amp;quot;, &amp;quot;artist1&amp;quot;&lt;br /&gt;
|  Albums can access the artwork for their containing album. Albums can have multiple artists; in Kodi 18 &amp;quot;artist1&amp;quot; will be artwork for the second artist - &amp;quot;artist2&amp;quot;, &amp;quot;artist3&amp;quot;, and so on will be filled for additional artists.&lt;br /&gt;
|  &amp;quot;ListItem.Art(artist.fanart)&amp;quot;, &amp;quot;ListItem.Art(artist.clearlogo)&amp;quot;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Example artwork types ==&lt;br /&gt;
&lt;br /&gt;
Here is a short list of example artwork types and how to access them. Kodi&#039;s artwork system allows any number of artwork types, so it&#039;s impossible to list all that may be available here. See the artwork pages for different library sections like [[Movie artwork]] or [[Music artwork]] for a list of generally available artwork types, or navigate to image 2 of [[Artwork#Kodi- Choose Art]] on a media item in your local Kodi installation to see what types of artwork are currently available for at least one of that media type in your local library.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|+ Example artwork types and skin access&lt;br /&gt;
! Artwork type&lt;br /&gt;
! Skin InfoLabel&lt;br /&gt;
! style=&amp;quot;50%&amp;quot; | Description&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  poster&lt;br /&gt;
|  ListItem.Art(poster)&lt;br /&gt;
|  Poster of the currently focused media item (like a movie or TV show)&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  fanart&lt;br /&gt;
|  ListItem.Art(fanart)&lt;br /&gt;
|  Fanart of the currently focused media item&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  landscape&lt;br /&gt;
|  ListItem.Art(landscape)&lt;br /&gt;
|  Landscape of the currently focused media item&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  clearlogo&lt;br /&gt;
|  Player.Art(clearlogo)&lt;br /&gt;
|  Clearlogo of the currently playing media item&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  tvshow.poster&lt;br /&gt;
|  Player.Art(tvshow.poster)&lt;br /&gt;
|  For a currently playing TV episode, this is the poster of the parent TV show&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  set.poster&lt;br /&gt;
|  Player.Art(set.clearlogo)&lt;br /&gt;
|  For currently playing movies, this is the clearlogo of the containing movie set&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  album.thumb&lt;br /&gt;
|  Player.Art(album.thumb)&lt;br /&gt;
|  For currently playing music, this is the cover of the album&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  album.thumb&lt;br /&gt;
|  ListItem.Art(thumb)&lt;br /&gt;
|  Thumb of the currently focused media item. This has some notable fallback behavior in the video library. It will be the artwork type named exactly &amp;quot;thumb&amp;quot; if it exists for the current item, but will fall back to &amp;quot;poster&amp;quot; then &amp;quot;banner&amp;quot; if not.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= {{Kodi}} version updates =&lt;br /&gt;
&lt;br /&gt;
* {{Kodi}} 17 and before in the &#039;&#039;&#039;music library&#039;&#039;&#039; was &#039;&#039;&#039;limited to just &amp;quot;fanart&amp;quot; and &amp;quot;thumb&amp;quot; for artist images&#039;&#039;&#039; and &#039;&#039;&#039;&amp;quot;thumb&amp;quot; for album images&#039;&#039;&#039;, it did not have the flexibility to add a wide variety of artwork. The video library has had this level of support for some time.&lt;br /&gt;
* {{Kodi}} 18 adds a &#039;&#039;&#039;[[Advancedsettings.xml#Music library extra artwork| whitelist in advancedsettings.xml]]&#039;&#039;&#039; ([[Advancedsettings.xml#Extra artwork|for the video library]]) so that {{Kodi}} will add any specified artwork from scrapers and the file system automatically.&lt;br /&gt;
* {{Kodi}} 19 moves that configuration to the &#039;&#039;&#039;[[Settings/Media/Videos#Artwork| Settings UI]]&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
&lt;br /&gt;
{{updated|20}}&lt;br /&gt;
[[Category:Development]]&lt;br /&gt;
[[Category:Skin_development]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Artwork/Accessing_with_skins_and_JSON-RPC&amp;diff=249773</id>
		<title>Artwork/Accessing with skins and JSON-RPC</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Artwork/Accessing_with_skins_and_JSON-RPC&amp;diff=249773"/>
		<updated>2024-01-26T18:05:54Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: format initial examples and small adjust JSON-RPC result example&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Artwork_Contents}}&lt;br /&gt;
{{mininav|[[Development]]|[[Artwork]]}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;The primary usage of artwork is to be displayed, and to that end, they can be accessed by name in skins and over JSON-RPC.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Media items with a &amp;quot;parent&amp;quot; media type, such as episodes to their TV show, can also access their parent&#039;s artwork with certain prefixes, like &amp;quot;tvshow.poster&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= From skins =&lt;br /&gt;
Skins can access library artwork for media items in a list with &amp;quot;ListItem.Art(&amp;lt;arttype&amp;gt;)&amp;quot; and artwork for the currently playing item with &amp;quot;Player.Art(&amp;lt;arttype&amp;gt;)&amp;quot;. &amp;quot;Container.Art(&amp;lt;arttype&amp;gt;)&amp;quot; can also be filled in some instances. Some examples are: &amp;lt;code&amp;gt;Player.Art(poster)&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;Player.Art(fanart)&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;ListItem.Art(banner)&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;ListItem.Art(tvshow.clearlogo)&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|+ Additional InfoLabels&lt;br /&gt;
! Skin InfoLabel&lt;br /&gt;
! style=&amp;quot;width:80%&amp;quot; | Description&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| ListItem.Art(poster)&lt;br /&gt;
| Artwork for the currently focused ListItem.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| Player.Art(poster)&lt;br /&gt;
| Artwork for the currently playing item.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| Container.Art(poster)&lt;br /&gt;
| Artwork for the currently focused Container. Container artwork may be filled with &amp;quot;parent&amp;quot; type media item artwork if navigating a single item, like a list of episodes from a single TV show.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| Container(555).ListItem.Art(poster)&lt;br /&gt;
| Artwork for the currently focused ListItem in a specific container.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Additional InfoLabels for artwork ==&lt;br /&gt;
There are other InfoLabels for artwork that don&#039;t match the above pattern, but many of them are deprecated. A set of them that can still be useful are&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|+ Additional InfoLabels&lt;br /&gt;
! Skin InfoLabel&lt;br /&gt;
! style=&amp;quot;width:30%&amp;quot; | Description&lt;br /&gt;
! Examples&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| MusicPlayer.offset(number).Cover&lt;br /&gt;
| Cover of the item offset by &#039;&#039;number&#039;&#039; from the currently playing item in the currently playing music player queue.&lt;br /&gt;
| {{code|MusicPlayer.offset(1).Cover}} - next item in queue&lt;br /&gt;
{{code|MusicPlayer.offset(-1).Cover}} - previous item in queue&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  MusicPlayer.Position(number).Cover&lt;br /&gt;
|  Cover of the item in position &#039;&#039;number&#039;&#039; of currently playing music player queue.&lt;br /&gt;
| {{code|MusicPlayer.Position(1).Cover}} - first item in queue&lt;br /&gt;
{{code|MusicPlayer.Position(2).Cover}} - second item in queue&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  MusicPlayer.Position(number).Property(Fanart_Image)&lt;br /&gt;
|  Fanart of the item in position &#039;&#039;number&#039;&#039; of the currently playing music player queue.&lt;br /&gt;
| {{code|MusicPlayer.Position(1).Property(Fanart_Image)}} - first item in queue&lt;br /&gt;
{{code|MusicPlayer.Position(2).Property(Fanart_Image)}} - second item in queue&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= From JSON-RPC =&lt;br /&gt;
Several JSON-RPC methods (like &amp;quot;VideoLibrary.GetMovies&amp;quot;, &amp;quot;AudioLibrary.GetAlbumDetails&amp;quot;, and &amp;quot;Playlist.GetItems&amp;quot;) return info for media items in the library, and requesting the &amp;quot;art&amp;quot; property will return an &amp;quot;art&amp;quot; dictionary that maps all available artwork for the media item. The key is the artwork type and the value is a Kodi-encoded URL or path to the assigned artwork.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
Example request:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;json&amp;quot;&amp;gt;&lt;br /&gt;
{&amp;quot;jsonrpc&amp;quot;:&amp;quot;2.0&amp;quot;,&amp;quot;id&amp;quot;:11,&amp;quot;method&amp;quot;:&amp;quot;VideoLibrary.GetEpisodes&amp;quot;,&amp;quot;params&amp;quot;:{&amp;quot;properties&amp;quot;:[&amp;quot;art&amp;quot;],&amp;quot;limits&amp;quot;:{&amp;quot;end&amp;quot;:1},&amp;quot;sort&amp;quot;:{&amp;quot;method&amp;quot;:&amp;quot;random&amp;quot;}}}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and a possible response:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;json&amp;quot;&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
     &amp;quot;id&amp;quot;: 11,&lt;br /&gt;
     &amp;quot;jsonrpc&amp;quot;: &amp;quot;2.0&amp;quot;,&lt;br /&gt;
     &amp;quot;result&amp;quot;: {&lt;br /&gt;
         &amp;quot;episodes&amp;quot;: [&lt;br /&gt;
            {&lt;br /&gt;
                 &amp;quot;art&amp;quot;: {&lt;br /&gt;
                     &amp;quot;season.banner&amp;quot;: &amp;quot;image://nfs%3a%2f%2fSERVER%2fmedia%2fTVShows%2fV%20(2009)%2fseason02-banner.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;season.landscape&amp;quot;: &amp;quot;image://nfs%3a%2f%2fSERVER%2fmedia%2fTVShows%2fV%20(2009)%2fseason02-landscape.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;season.poster&amp;quot;: &amp;quot;image://nfs%3a%2f%2fSERVER%2fmedia%2fTVShows%2fV%20(2009)%2fseason02-poster.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;thumb&amp;quot;: &amp;quot;image://video@nfs%3a%2f%2fSERVER%2fmedia%2fTVShows%2fV%20(2009)%2fV%20(2009)%20-%2002x05%20-%20Concordia%20-%20720p%20WEB-DL.mkv/&amp;quot;,&lt;br /&gt;
                     &amp;quot;tvshow.banner&amp;quot;: &amp;quot;image://nfs%3a%2f%2fSERVER%2fmedia%2fTVShows%2fV%20(2009)%2fbanner.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;tvshow.clearlogo&amp;quot;: &amp;quot;image://nfs%3a%2f%2fSERVER%2fmedia%2fTVShows%2fV%20(2009)%2fclearlogo.png/&amp;quot;,&lt;br /&gt;
                     &amp;quot;tvshow.fanart&amp;quot;: &amp;quot;image://nfs%3a%2f%2fSERVER%2fmedia%2fTVShows%2fV%20(2009)%2ffanart.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;tvshow.poster&amp;quot;: &amp;quot;image://nfs%3a%2f%2fSERVER%2fmedia%2fTVShows%2fV%20(2009)%2fposter.jpg/&amp;quot;&lt;br /&gt;
                 },&lt;br /&gt;
                 &amp;quot;episodeid&amp;quot;: 2196,&lt;br /&gt;
                 &amp;quot;label&amp;quot;: &amp;quot;2x05. Concordia&amp;quot;&lt;br /&gt;
             }&lt;br /&gt;
         ],&lt;br /&gt;
         &amp;quot;limits&amp;quot;: {&lt;br /&gt;
             &amp;quot;end&amp;quot;: 1,&lt;br /&gt;
             &amp;quot;start&amp;quot;: 0,&lt;br /&gt;
             &amp;quot;total&amp;quot;: 3352&lt;br /&gt;
         }&lt;br /&gt;
     }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi-encoded URL ==&lt;br /&gt;
The image paths returned by JSON-RPC are the path or URL to the image encoded as Kodi&#039;s internal &amp;quot;image://&amp;quot; path.&lt;br /&gt;
&lt;br /&gt;
To turn that path into a URL that can actually be displayed in another application, you will need to encode it as a URI component (examples are [https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent encodeURIComponent] in JS and [https://docs.python.org/3/library/urllib.parse.html#urllib.parse.quote urllib.parse.quote] in Python 3), then add that to the end of the &amp;quot;image/&amp;quot; path of the Kodi HTTP server (like &amp;lt;nowiki&amp;gt;http://kodihost:8080/image/&amp;lt;/nowiki&amp;gt;). With these URLs you can display images wherever they happen to be stored; Kodi will handle opening a file over SMB or NFS if they are stored on a NAS next to the media items, for instance.&lt;br /&gt;
&lt;br /&gt;
The final URL will look like &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;http://kodihost:8080/image/image%3A%2F%2Fnfs%253a%252f%252fCUBER%252fmedia%252fpreserved%252fTVShows%252fV%2520(2009)%252fposter.jpg%2F&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can also turn the &amp;quot;image://&amp;quot; URL into a more traditional looking path/URL (https:// or smb:// or H:\) by chopping off the &amp;quot;image://&amp;quot; up front and the slash at the end, then decoding the rest as a URI component.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Access &amp;quot;parent&amp;quot; artwork =&lt;br /&gt;
For several media types, it is possible to access artwork for the &amp;quot;parent&amp;quot; media item as well as the item&#039;s own artwork. This works for skins and JSON-RPC. For instance, TV episodes can access the artwork for the containing season and TV show. Use &amp;quot;&amp;lt;parenttype&amp;gt;.&amp;lt;arttype&amp;gt;&amp;quot; as the art type.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|+ Media types and their parent types&lt;br /&gt;
! style=&amp;quot;width:8%&amp;quot; | Media type&lt;br /&gt;
! Parent type&lt;br /&gt;
! style=&amp;quot;width:40%&amp;quot; | Description&lt;br /&gt;
! style=&amp;quot;width:30%&amp;quot; | Skin examples&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  TV episodes&lt;br /&gt;
|  &amp;quot;season&amp;quot;, &amp;quot;tvshow&amp;quot;&lt;br /&gt;
|  TV episodes can access artwork for their containing season and TV show&lt;br /&gt;
|  &amp;quot;Player.Art(tvshow.clearlogo)&amp;quot;, &amp;quot;Player.Art(season.poster)&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  Seasons&lt;br /&gt;
|  &amp;quot;tvshow&amp;quot;&lt;br /&gt;
|  TV show artwork&lt;br /&gt;
|  &amp;quot;ListItem.Art(tvshow.banner)&amp;quot;, &amp;quot;ListItem.Art(tvshow.clearlogo)&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  Movies&lt;br /&gt;
|  &amp;quot;set&amp;quot;&lt;br /&gt;
|  In Kodi 18, movies can access artwork for their containing set / collection&lt;br /&gt;
|  &amp;quot;ListItem.Art(set.clearlogo)&amp;quot;, &amp;quot;ListItem.Art(set.poster)&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  Songs&lt;br /&gt;
|  &amp;quot;album&amp;quot;, &amp;quot;artist&amp;quot;, &amp;quot;albumartist&amp;quot;, &amp;quot;artist1&amp;quot;, &amp;quot;albumartist1&amp;quot;&lt;br /&gt;
|  Songs can access the artwork for their containing album and all artists. Songs can have multiple artists; in Kodi 18 &amp;quot;artist1&amp;quot; will be artwork for the second artist - &amp;quot;artist2&amp;quot;, &amp;quot;artist3&amp;quot;, and so on will be filled for additional artists. &amp;quot;albumartist&amp;quot; works the same for album artists.&lt;br /&gt;
|  &amp;quot;Player.Art(album.thumb)&amp;quot;, &amp;quot;Player.Art(artist.fanart)&amp;quot;, &amp;quot;Player.Art(albumartist.clearlogo)&amp;quot;, &amp;quot;Player.Art(artist1.fanart)&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  Albums&lt;br /&gt;
|  &amp;quot;artist&amp;quot;, &amp;quot;artist1&amp;quot;&lt;br /&gt;
|  Albums can access the artwork for their containing album. Albums can have multiple artists; in Kodi 18 &amp;quot;artist1&amp;quot; will be artwork for the second artist - &amp;quot;artist2&amp;quot;, &amp;quot;artist3&amp;quot;, and so on will be filled for additional artists.&lt;br /&gt;
|  &amp;quot;ListItem.Art(artist.fanart)&amp;quot;, &amp;quot;ListItem.Art(artist.clearlogo)&amp;quot;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Example artwork types ==&lt;br /&gt;
&lt;br /&gt;
Here is a short list of example artwork types and how to access them. Kodi&#039;s artwork system allows any number of artwork types, so it&#039;s impossible to list all that may be available here. See the artwork pages for different library sections like [[Movie artwork]] or [[Music artwork]] for a list of generally available artwork types, or navigate to image 2 of [[Artwork#Kodi- Choose Art]] on a media item in your local Kodi installation to see what types of artwork are currently available for at least one of that media type in your local library.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|+ Example artwork types and skin access&lt;br /&gt;
! Artwork type&lt;br /&gt;
! Skin InfoLabel&lt;br /&gt;
! style=&amp;quot;50%&amp;quot; | Description&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  poster&lt;br /&gt;
|  ListItem.Art(poster)&lt;br /&gt;
|  Poster of the currently focused media item (like a movie or TV show)&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  fanart&lt;br /&gt;
|  ListItem.Art(fanart)&lt;br /&gt;
|  Fanart of the currently focused media item&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  landscape&lt;br /&gt;
|  ListItem.Art(landscape)&lt;br /&gt;
|  Landscape of the currently focused media item&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  clearlogo&lt;br /&gt;
|  Player.Art(clearlogo)&lt;br /&gt;
|  Clearlogo of the currently playing media item&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  tvshow.poster&lt;br /&gt;
|  Player.Art(tvshow.poster)&lt;br /&gt;
|  For a currently playing TV episode, this is the poster of the parent TV show&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  set.poster&lt;br /&gt;
|  Player.Art(set.clearlogo)&lt;br /&gt;
|  For currently playing movies, this is the clearlogo of the containing movie set&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  album.thumb&lt;br /&gt;
|  Player.Art(album.thumb)&lt;br /&gt;
|  For currently playing music, this is the cover of the album&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  album.thumb&lt;br /&gt;
|  ListItem.Art(thumb)&lt;br /&gt;
|  Thumb of the currently focused media item. This has some notable fallback behavior in the video library. It will be the artwork type named exactly &amp;quot;thumb&amp;quot; if it exists for the current item, but will fall back to &amp;quot;poster&amp;quot; then &amp;quot;banner&amp;quot; if not.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= {{Kodi}} version updates =&lt;br /&gt;
&lt;br /&gt;
* {{Kodi}} 17 and before in the &#039;&#039;&#039;music library&#039;&#039;&#039; was &#039;&#039;&#039;limited to just &amp;quot;fanart&amp;quot; and &amp;quot;thumb&amp;quot; for artist images&#039;&#039;&#039; and &#039;&#039;&#039;&amp;quot;thumb&amp;quot; for album images&#039;&#039;&#039;, it did not have the flexibility to add a wide variety of artwork. The video library has had this level of support for some time.&lt;br /&gt;
* {{Kodi}} 18 adds a &#039;&#039;&#039;[[Advancedsettings.xml#Music library extra artwork| whitelist in advancedsettings.xml]]&#039;&#039;&#039; ([[Advancedsettings.xml#Extra artwork|for the video library]]) so that {{Kodi}} will add any specified artwork from scrapers and the file system automatically.&lt;br /&gt;
* {{Kodi}} 19 moves that configuration to the &#039;&#039;&#039;[[Settings/Media/Videos#Artwork| Settings UI]]&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
&lt;br /&gt;
{{updated|20}}&lt;br /&gt;
[[Category:Development]]&lt;br /&gt;
[[Category:Skin_development]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Advancedsettings.xml&amp;diff=244203</id>
		<title>Advancedsettings.xml</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Advancedsettings.xml&amp;diff=244203"/>
		<updated>2023-02-11T19:39:26Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: remove video library extra artwork&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{TOC right}}{{mininav|[[Settings]]|page=advancedsettings.xml}}&lt;br /&gt;
{{bigger|{{note|&#039;&#039;&#039;The advancedsettings.xml file does not exist by default. You have to create it first!&#039;&#039;&#039;}} }}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;The [[advancedsettings.xml]] file, which does not exist by default, can be created by a user in their &#039;&#039;&#039;[[Userdata|userdata folder]]&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
This file is used for advanced settings and options that do not have GUI controls inside of {{kodi}}. Some settings are experimental or very rarely set, so they can only be used via the advancedsettings.xml file. The file is simply a plain text file and can be edited by various text editors, so long as the name is &amp;quot;advancedsettings.xml&amp;quot;. These advanced settings can be used to tweak various things such as episode naming patterns, special network ports, special behaviors, and more.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following page will describe the structure of the advancedsettings.xml file and the various individual settings.&lt;br /&gt;
&lt;br /&gt;
{{note|&lt;br /&gt;
# All XML tags must be lowercase. The start and end of the advancedsettings.xml file must have the &amp;lt;advancedsettings&amp;gt; and &amp;lt;/advancedsettings&amp;gt; tags.&lt;br /&gt;
# Kodi will only read the advancedsettings.xml file when it starts up. If you make changes while it is running then you must restart Kodi.&lt;br /&gt;
# For some Windows versions, Kodi has two &amp;lt;code&amp;gt;\userdata\&amp;lt;/code&amp;gt; folders. The correct one to put the advancedsettings.xml file in is not the one in Program Files, but in &amp;lt;code&amp;gt;%appdata%\Kodi\userdata\.&amp;lt;/code&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Layout ==&lt;br /&gt;
&lt;br /&gt;
The layout of &amp;lt;code&amp;gt;advancedsettings.xml&amp;lt;/code&amp;gt; is as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;advancedsettings version=&amp;quot;1.0&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;setting&amp;gt;value&amp;lt;/setting&amp;gt;&lt;br /&gt;
    ...&lt;br /&gt;
    &amp;lt;setting&amp;gt;value&amp;lt;/setting&amp;gt;&lt;br /&gt;
&amp;lt;/advancedsettings&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &amp;quot;setting&amp;quot; gives the name of the setting, and &amp;quot;value&amp;quot; gives its value.&lt;br /&gt;
&lt;br /&gt;
A list of the available &amp;quot;setting&amp;quot; strings and their values is given below.&lt;br /&gt;
&lt;br /&gt;
= List of available settings =&lt;br /&gt;
List of available settings that are recognised in the advancedsettings.xml file &amp;lt;ref&amp;gt;https://github.com/xbmc/xbmc/blob/master/xbmc/settings/AdvancedSettings.cpp&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Recommended: Use the table of contents or the search function in your browser to locate items.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting settings ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== loglevel ===&lt;br /&gt;
{{Anchor|.3Cloglevel.3E}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;loglevel&amp;quot; /&amp;gt;&lt;br /&gt;
Sets the logging level used to log errors and information. The &amp;quot;hide&amp;quot; attribute is optional. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;loglevel hide=&amp;quot;attribute&amp;quot;&amp;gt;options&amp;lt;/loglevel&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;mw-collapsible mw-collapsed wikitable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;width:100px;&amp;quot; | Attribute&lt;br /&gt;
! style=&amp;quot;width:500px;&amp;quot; | Action&lt;br /&gt;
|-&lt;br /&gt;
! &#039;&#039;&#039;true&#039;&#039;&#039; &lt;br /&gt;
| Hides the &amp;quot;enable debugging&amp;quot; setting in the Settings page. (default)&lt;br /&gt;
|-&lt;br /&gt;
! &#039;&#039;&#039;false&#039;&#039;&#039;&lt;br /&gt;
| Allows &amp;quot;enable debugging&amp;quot; setting to switch between &#039;&#039;&#039;0&#039;&#039;&#039; and &#039;&#039;&#039;2&#039;&#039;&#039;.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;mw-collapsible mw-collapsed wikitable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;width:100px;&amp;quot; | Option&lt;br /&gt;
! style=&amp;quot;width:500px;&amp;quot; | Action&lt;br /&gt;
|-&lt;br /&gt;
! &#039;&#039;&#039;-1&#039;&#039;&#039;&lt;br /&gt;
| No logging, suppresses all log output &lt;br /&gt;
|-&lt;br /&gt;
! &#039;&#039;&#039;0&#039;&#039;&#039;&lt;br /&gt;
| Normal logging, only logging errors (default)&lt;br /&gt;
|-&lt;br /&gt;
! &#039;&#039;&#039;1&#039;&#039;&#039;&lt;br /&gt;
| Debug logging with freemem, fps and cpu usage (no on screen)&lt;br /&gt;
|-&lt;br /&gt;
! &#039;&#039;&#039;2&#039;&#039;&#039; &lt;br /&gt;
| Same as 1 (with on screen display)&lt;br /&gt;
|-&lt;br /&gt;
! &#039;&#039;&#039;3&#039;&#039;&#039; &lt;br /&gt;
| Same as 1 + full smb logging&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;width:100px;&amp;quot; | Example &lt;br /&gt;
! style=&amp;quot;width:500px;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
! Example 1:&lt;br /&gt;
|&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;advancedsettings&amp;gt;&lt;br /&gt;
    &amp;lt;loglevel&amp;gt;2&amp;lt;/loglevel&amp;gt;  &lt;br /&gt;
&amp;lt;/advancedsettings&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
! Example 2:&lt;br /&gt;
|&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;advancedsettings&amp;gt;&lt;br /&gt;
    &amp;lt;loglevel hide=&amp;quot;true&amp;quot;&amp;gt;2&amp;lt;/loglevel&amp;gt;&lt;br /&gt;
&amp;lt;/advancedsettings&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; The setting is persistent through shutdown and restarts.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; If debugging is enabled in the GUI, loglevel will be set to &#039;&#039;&#039;2&#039;&#039;&#039;. This will over-ride the &amp;lt;code&amp;gt;advancedsettings.xml&amp;lt;/code&amp;gt; setting. You must disable the GUI Setting before adding the entry to &amp;lt;code&amp;gt;advancedsettings.xml&amp;lt;/code&amp;gt;.&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;section end=&amp;quot;loglevel&amp;quot; /&amp;gt;&lt;br /&gt;
:&#039;&#039;{{see also|Log_file|label 1=Debug Log}}&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== jsonrpc ===&lt;br /&gt;
{{Anchor|.3Cjsonrpc.3E}}&lt;br /&gt;
To make it easier for developers using the [[JSON-RPC_API]] API in their (third party) applications to debug during development the json output of Kodi can be prettified by setting &#039;&#039;&#039;compactoutput&#039;&#039;&#039; to &#039;&#039;&#039;false&#039;&#039;&#039;. Default json output mode is a compact print which does not contain any unnecessary whitespaces and therefore is difficult to read for humans.&lt;br /&gt;
Furthermore using the &#039;&#039;&#039;tcpport&#039;&#039;&#039; setting it is possible to change the default TCP port used by Kodi for JSON RPC (which is 9090) to any other valid port.&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;jsonrpc&amp;gt;&lt;br /&gt;
    &amp;lt;compactoutput&amp;gt;false&amp;lt;/compactoutput&amp;gt;&lt;br /&gt;
    &amp;lt;tcpport&amp;gt;9999&amp;lt;/tcpport&amp;gt;&lt;br /&gt;
&amp;lt;/jsonrpc&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Audio/video playback settings ==&lt;br /&gt;
&lt;br /&gt;
=== skiploopfilter ===&lt;br /&gt;
{{anchor|.3Cskiploopfilter.3E}}&lt;br /&gt;
The amount of the loop filter to skip on h.264 decoding.  This can help the performance of slower machines when decoding h264 content.  Values, in decreasing CPU usage (and decreasing quality)&lt;br /&gt;
* -16 None&lt;br /&gt;
* 0 Skip only empty frames (default)&lt;br /&gt;
* 8 Skip non-reference frames&lt;br /&gt;
* 16 Skip bi-dir frames&lt;br /&gt;
* 32 Skip all non-key frames&lt;br /&gt;
* 48 Skip all frames&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;skiploopfilter&amp;gt;8&amp;lt;/skiploopfilter&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== video ===&lt;br /&gt;
{{anchor|.3Cvideo.3E}}&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;video&amp;gt; section also includes the following child-tags, which have their own sections:&lt;br /&gt;
*[[#cleandatetime]]&lt;br /&gt;
*[[#cleanstrings]]&lt;br /&gt;
*[[#excludefromscan]]&lt;br /&gt;
*[[#excludefromlisting]]&lt;br /&gt;
*[[#excludetvshowsfromscan]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{note|Some tags that have a &amp;quot;third-level&amp;quot; and are grouped together are highlighted in color.}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot;&lt;br /&gt;
! Tag !! Description&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
&amp;lt;video&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| Parent tag that all other child tags need to be placed inside of. Do not use more than one &#039;&#039;&#039;&amp;lt;code&amp;gt;&amp;lt;video&amp;gt;&amp;lt;/code&amp;gt;&#039;&#039;&#039; tag, but instead place all other child-tags within a single &#039;&#039;&#039;&amp;lt;code&amp;gt;&amp;lt;video&amp;gt;&amp;lt;/video&amp;gt;&amp;lt;/code&amp;gt;&#039;&#039;&#039; set.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;subsdelayrange&amp;gt;10&amp;lt;/subsdelayrange&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| Delay range for subtitles, in seconds.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;maxtempo&amp;gt;2.1&amp;lt;/maxtempo&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| Allow further increase of playback speed over the default of 1.5&amp;lt;br&amp;gt;&lt;br /&gt;
maxtempo must be in the range of 1.5 to 2.1 &amp;lt;br&amp;gt;&lt;br /&gt;
Be aware of the limitations of your platform / hardware as not all are capable of the increased maxtempo &amp;lt;ref&amp;gt;https://forum.kodi.tv/showthread.php?tid=10023&amp;amp;pid=2795069#pid2795069&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;audiodelayrange&amp;gt;10&amp;lt;/audiodelayrange&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| Delay range for audio/video sync, in seconds.&lt;br /&gt;
|- &lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;usetimeseeking&amp;gt;true&amp;lt;/usetimeseeking&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| Whether to use time based or percentage based seeking. {{small see also|Skip steps}}&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;timeseekforwardbig&amp;gt;600&amp;lt;/timeseekforwardbig&amp;gt;&lt;br /&gt;
  &amp;lt;timeseekbackwardbig&amp;gt;-600&amp;lt;/timeseekbackwardbig&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| Time to seek forward in seconds when doing a long seek.  Defaults to 600 (10 minutes) and -600 (-10 minutes) respectively. &#039;&#039;{{small|See also: [[Skip steps]] }}&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;percentseekforward&amp;gt;2&amp;lt;/percentseekforward&amp;gt;&lt;br /&gt;
  &amp;lt;percentseekbackward&amp;gt;-2&amp;lt;/percentseekbackward&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| Amount to seek forward as a percentage, when doing a short seek.  Defaults to 2 (2%) and -2 (2%) respectively. &#039;&#039;{{small|See also: [[Skip steps]] }}&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;percentseekforwardbig&amp;gt;10&amp;lt;/percentseekforwardbig&amp;gt;&lt;br /&gt;
  &amp;lt;percentseekbackwardbig&amp;gt;-10&amp;lt;/percentseekbackwardbig&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| Amount to seek forward as a percentage, when doing a long seek.  Defaults to 10 (10%) and -10 (10%) respectively. &#039;&#039;{{small|See also: [[Skip steps]] }}&#039;&#039;&lt;br /&gt;
|- &lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;fullscreenonmoviestart&amp;gt;true&amp;lt;/fullscreenonmoviestart&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| Whether to go to fullscreen or not when starting a movie. Defaults to true.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;defaultplayer&amp;gt;VideoPlayer&amp;lt;/defaultplayer&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| Set the default video player: VideoPlayer or an external player. See &#039;&#039;&#039;[[External players]]&#039;&#039;&#039; for more info.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;excludefromscan&amp;gt;&lt;br /&gt;
    &amp;lt;regexp&amp;gt;[-\._ ](sample|trailer)[-\._ ]&amp;lt;/regexp&amp;gt;&lt;br /&gt;
  &amp;lt;/excludefromscan&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| Regular expressions that if evaluated to true won&#039;t be added to library.  It is possible to add multiple &amp;lt;code&amp;gt;&amp;lt;regexp&amp;gt;&amp;lt;/code&amp;gt; tags to match multiple patterns&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;excludefromlisting&amp;gt;&lt;br /&gt;
    &amp;lt;regexp&amp;gt;[-\._ ](sample|trailer)[-\._ ]&amp;lt;/regexp&amp;gt;&lt;br /&gt;
  &amp;lt;/excludefromlisting&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| Regular expressions that if evaluated to true won&#039;t be displayed in files view.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;playcountminimumpercent&amp;gt;90&amp;lt;/playcountminimumpercent&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| Minimum percentage that has to be played before it is marked as watched. Set to 101 to never auto-mark items as watched. &#039;&#039;{{small|See also: [[HOW-TO:Modify automatic watch and resume points]] }}&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;ignoresecondsatstart&amp;gt;180&amp;lt;/ignoresecondsatstart&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| Number of seconds to ignore at video start after which a resume point is created. &#039;&#039;{{small|See also: [[HOW-TO:Modify automatic watch and resume points]] }}&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;ignorepercentatend&amp;gt;8&amp;lt;/ignorepercentatend&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| Percentage of video to ignore at the end. If you stop watching the video here no resume point is created. Set to 101 to never save a resume point. The video is already marked as watched at 90%, see above. &#039;&#039;{{small|See also: [[HOW-TO:Modify automatic watch and resume points]] }}&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;vdpauscaling&amp;gt;true&amp;lt;/vdpauscaling&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| Scales with vdpau instead of opengl and turns on its HQ scaler when available, enabling this might slow down rendering and cause framedrops especially on ION systems, this setting requires a vdpau feature set C GPU.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;enablehighqualityhwscalers&amp;gt;true&amp;lt;/enablehighqualityhwscalers&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| Allow turning on the spline36 and lanczos3 shader (for GL builds).&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;dxvaallowhqscaling&amp;gt;false&amp;lt;/dxvaallowhqscaling&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| Enables high quality video upscaling for Windows.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;ppffmpegdeinterlacing&amp;gt;linblenddeint&amp;lt;/ppffmpegdeinterlacing&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| Override the deinterlacing options passed to libpostproc.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;ppffmpegpostprocessing&amp;gt;ha:128:7,va,dr&amp;lt;/ppffmpegpostprocessing&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| Override the post processing options passed to libpostproc when &#039;Video post-processing&#039; is activated in GUI Videos-Settings-Playback.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;autoscalemaxfps&amp;gt;30&amp;lt;/autoscalemaxfps&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| When scaling method is set to auto, bilinear is chosen when the fps is higher than this limit, the default is 30.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;adjustrefreshrate&amp;gt; &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| style=&amp;quot;background:#CADCFB;&amp;quot; | Settings for when &amp;quot;Adjust refreshrate to match video fps&amp;quot; is enabled in the video playback GUI settings.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
    &amp;lt;override&amp;gt;&lt;br /&gt;
      &amp;lt;fps&amp;gt;23.976&amp;lt;/fps&amp;gt;&lt;br /&gt;
      &amp;lt;refresh&amp;gt;60.0&amp;lt;/refresh&amp;gt;&lt;br /&gt;
    &amp;lt;/override&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| style=&amp;quot;background:#CADCFB;&amp;quot; | &#039;&#039;&#039;Example -&#039;&#039;&#039; &amp;quot;Adjust refreshrate to match video fps&amp;quot; will try to select the best refreshrate for the video fps but it doesn&#039;t always get it right, for example it might switch to an unsupported refreshrate. You can add overrides here to switch to a certain refreshrate based on video fps. It&#039;s possible to add as many overrides as you need.  Overrides are processed in order, if the first one doesn&#039;t match the fps or no refreshrates match that override, it will try the next one until no overrides are left.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;fps&#039;&#039;&#039; - if the fps is between 23.966 and 23.986&lt;br /&gt;
* &#039;&#039;&#039;refresh&#039;&#039;&#039; - switch to the first found refreshrate that is between 59.99 and 60.01&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
    &amp;lt;override&amp;gt;&lt;br /&gt;
      &amp;lt;fpsmin&amp;gt;29.96&amp;lt;/fpsmin&amp;gt;&lt;br /&gt;
      &amp;lt;fpsmax&amp;gt;30.01&amp;lt;/fpsmax&amp;gt;&lt;br /&gt;
      &amp;lt;refreshmin&amp;gt;59.0&amp;lt;/refreshmin&amp;gt;&lt;br /&gt;
      &amp;lt;refreshmax&amp;gt;61.0&amp;lt;/refreshmax&amp;gt;&lt;br /&gt;
    &amp;lt;/override&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| style=&amp;quot;background:#CADCFB;&amp;quot; | &#039;&#039;&#039;Example -&#039;&#039;&#039; &lt;br /&gt;
* &#039;&#039;&#039;fpsmin&#039;&#039;&#039; / &#039;&#039;&#039;fpsmin&#039;&#039;&#039; - You can also specify the fps range yourself.&lt;br /&gt;
* &#039;&#039;&#039;refreshmin&#039;&#039;&#039; / &#039;&#039;&#039;refreshmax&#039;&#039;&#039; - Same for the refreshrate&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
    &amp;lt;fallback&amp;gt;&lt;br /&gt;
      &amp;lt;refresh&amp;gt;50.0&amp;lt;/refresh&amp;gt;&lt;br /&gt;
    &amp;lt;/fallback&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| style=&amp;quot;background:#CADCFB;&amp;quot; | &#039;&#039;&#039;Example -&#039;&#039;&#039; If none of the overrides match, or none of the refreshrates match any of the fps matching overrides, it will choose a fallback refreshrate. Fallbacks are process in order, if the first fallback doesn&#039;t match any refreshrate, it will try the next one until no fallbacks are left.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;refresh&#039;&#039;&#039; - Switch to the first found refreshrate that is between 49.99 and 50.01.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
    &amp;lt;fallback&amp;gt;&lt;br /&gt;
      &amp;lt;refreshmin&amp;gt;49.0&amp;lt;/refreshmin&amp;gt;&lt;br /&gt;
      &amp;lt;refreshmax&amp;gt;51.0&amp;lt;/refreshmax&amp;gt;&lt;br /&gt;
    &amp;lt;/fallback&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| style=&amp;quot;background:#CADCFB;&amp;quot; | &#039;&#039;&#039;Example -&#039;&#039;&#039; You can also specify the range for the fallback yourself.&lt;br /&gt;
&lt;br /&gt;
If none of the overrides match the video fps, or no refreshrates match any of the fps matching overrides, and no fallbacks are specified or no refreshrates match any fallbacks, it will automatically choose the best refreshrate (same as having no overrides and fallbacks).&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;/adjustrefreshrate&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| style=&amp;quot;background:#CADCFB;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;checkdxvacompatibility&amp;gt;value&amp;lt;/checkdxvacompatibility&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| Advanced setting not present: let Kodi autodetect cards that support H.264 profile &amp;gt; L4.1. Set value to false to enable DXVA no matter what. Set value to true if Kodi doesn&#039;t autodetect that the graphics card doesn&#039;t support &amp;gt; L4.1.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;useocclusionquery&amp;gt;-1&amp;lt;/useocclusionquery&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| Use an occlusion query when capturing videoframes, -1 means auto detect, 0 means disabled, 1 means enabled, the default is -1.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;fpsdetect&amp;gt;1&amp;lt;/fpsdetect&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| FPS detection for video playback&lt;br /&gt;
* 0 = trust codec fps&lt;br /&gt;
* 1 = recalculate from video timestamps with uniform spacing&lt;br /&gt;
* 2 = recalculate from video timestamps always&lt;br /&gt;
|- &lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;latency&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| style=&amp;quot;background:#F0E68C;&amp;quot;| Start of &#039;&#039;&#039;latency&#039;&#039;&#039; tags. Display latency (video lag). Latency is given in msecs.&lt;br /&gt;
|- &lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
    &amp;lt;delay&amp;gt;0&amp;lt;/delay&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| style=&amp;quot;background:#F0E68C;&amp;quot; | Global default display latency.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
    &amp;lt;refresh&amp;gt;&amp;lt;/refresh&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| style=&amp;quot;background:#F0E68C;&amp;quot; | Override latency for given display (not video) refresh rates. When Kodi is in windowed mode, override is ignored. Multiple overrides are allowed.&lt;br /&gt;
&lt;br /&gt;
Syntax of an override entry:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
&amp;lt;refresh&amp;gt;&lt;br /&gt;
  &amp;lt;min&amp;gt;, &amp;lt;max&amp;gt; refresh rate range, OR&lt;br /&gt;
  &amp;lt;rate&amp;gt; exact refresh rate&lt;br /&gt;
  &amp;lt;delay&amp;gt; display latency for the given refresh rate&lt;br /&gt;
&amp;lt;/refresh&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
    &amp;lt;refresh&amp;gt;&lt;br /&gt;
      &amp;lt;min&amp;gt;23&amp;lt;/min&amp;gt;&lt;br /&gt;
      &amp;lt;max&amp;gt;24&amp;lt;/max&amp;gt;&lt;br /&gt;
      &amp;lt;delay&amp;gt;125&amp;lt;/delay&amp;gt;&lt;br /&gt;
    &amp;lt;/refresh&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| style=&amp;quot;background:#F0E68C;&amp;quot; | &#039;&#039;&#039;Example:&#039;&#039;&#039; display has 125 msec latency at 23-24 Hz&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
    &amp;lt;refresh&amp;gt;&lt;br /&gt;
      &amp;lt;rate&amp;gt;50&amp;lt;/rate&amp;gt;&lt;br /&gt;
      &amp;lt;delay&amp;gt;50&amp;lt;/delay&amp;gt;&lt;br /&gt;
    &amp;lt;/refresh&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| style=&amp;quot;background:#F0E68C;&amp;quot; | &#039;&#039;&#039;Example:&#039;&#039;&#039; display has 50 msec latency at 50 (+/-0.01) Hz&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;/latency&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| style=&amp;quot;background:#F0E68C;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;stereoscopicregex3d&amp;gt;[-. _]3d[-. _]&amp;lt;/stereoscopicregex3d&amp;gt;&lt;br /&gt;
  &amp;lt;stereoscopicregexsbs&amp;gt;[-. _]h?sbs[-. _]&amp;lt;/stereoscopicregexsbs&amp;gt;&lt;br /&gt;
  &amp;lt;stereoscopicregextab&amp;gt;[-. _]h?tab[-. _]&amp;lt;/stereoscopicregextab&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| Filename triggers for 3D (stereoscopic) mode.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;assfixedworks&amp;gt;false&amp;lt;/assfixedworks&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| Position behavior of ass subtitiles when setting &amp;quot;subtitle position on screen&amp;quot; set to &amp;quot;fixed&amp;quot;. True to show at the fixed position set in video calibration. False to show at the bottom of video (default). {{note|Removed in Kodi v20.}}&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
  &amp;lt;subtitleverticalmargin&amp;gt;120&amp;lt;/subtitleverticalmargin&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| Allows to customise the vertical margin of text based subtitles, which will be applied to each type of subtitle position in subtitle settings. {{note|Available in Kodi v20 and above.}}&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml&amp;gt;&lt;br /&gt;
&amp;lt;/video&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== audio ===&lt;br /&gt;
{{anchor|.3Caudio.3E}}&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;audio&amp;gt;&lt;br /&gt;
  &amp;lt;!-- Amount of headroom Kodi should use above the maximum volume level, in decibels.  Defaults to 0, valid values 0, 6, 12. --&amp;gt;&lt;br /&gt;
  &amp;lt;headroom&amp;gt;0&amp;lt;/headroom&amp;gt;&lt;br /&gt;
  &amp;lt;!-- Default audio player: paplayer or videoplayer --&amp;gt;&lt;br /&gt;
  &amp;lt;defaultplayer&amp;gt;paplayer&amp;lt;/defaultplayer&amp;gt;&lt;br /&gt;
  &amp;lt;!-- Regular expressions that if evaluated to true won&#039;t be added to library. --&amp;gt;&lt;br /&gt;
  &amp;lt;excludefromscan&amp;gt; &lt;br /&gt;
    &amp;lt;regexp&amp;gt;[-\._ ](podcast)[-\._ ]&amp;lt;/regexp&amp;gt;&lt;br /&gt;
  &amp;lt;/excludefromscan&amp;gt;&lt;br /&gt;
  &amp;lt;!-- Regular expressions that if evaluated to true won&#039;t be displayed in Files View --&amp;gt;&lt;br /&gt;
  &amp;lt;excludefromlisting&amp;gt; &lt;br /&gt;
    &amp;lt;regexp&amp;gt;[-\._ ](podcast)[-\._ ]&amp;lt;/regexp&amp;gt;&lt;br /&gt;
  &amp;lt;/excludefromlisting&amp;gt;&lt;br /&gt;
  &amp;lt;!-- Amount of gain (dB) to be applied to AC3 streams that have been mixed-down to 2 channels. Default is 12.0. Valid values are: -96.0 to 96.0. --&amp;gt;&lt;br /&gt;
  &amp;lt;ac3downmixgain&amp;gt;12.0&amp;lt;/ac3downmixgain&amp;gt;&lt;br /&gt;
  &amp;lt;!-- Whether to use time based or percentage based seeking. --&amp;gt;&lt;br /&gt;
  &amp;lt;usetimeseeking&amp;gt;true&amp;lt;/usetimeseeking&amp;gt;&lt;br /&gt;
  &amp;lt;!-- Time to seek forward in seconds when doing a long seek.  Defaults to 600 (10 minutes) and -600 (-10 minutes) respectively. --&amp;gt;&lt;br /&gt;
  &amp;lt;timeseekforwardbig&amp;gt;600&amp;lt;/timeseekfowardbig&amp;gt;&lt;br /&gt;
  &amp;lt;!-- Time to seek backward in seconds when doing a long seek back.  Defaults to 600 (10 minutes) and -600 (-10 minutes) respectively. --&amp;gt;&lt;br /&gt;
  &amp;lt;timeseekbackwardbig&amp;gt;-600&amp;lt;/timeseekbackward&amp;gt;&lt;br /&gt;
  &amp;lt;!-- Minimum percentage that has to be played before it is considered for incrementing in the Top 100 database view, or for last.fm submittal --&amp;gt;&lt;br /&gt;
  &amp;lt;playcountminimumpercent&amp;gt;99&amp;lt;/playcountminimumpercent&amp;gt; &lt;br /&gt;
  &amp;lt;!-- Whether to use Dynamic Range Compression (DRC) on AC3 streams. 1.0 is &amp;quot;full&amp;quot; compression, as defined by the audio track&#039;s metadata, which is recommended for &amp;quot;basic&amp;quot; sound systems such as the internal speakers on a TV. 0.0 is no compression at all, which is recommended for people with nice multi-speaker sound systems. -1.0 (default) defaults to whatever ffmpeg uses, which is currently the same as 1.0. This has no effect if passthrough is enabled for AC3. --&amp;gt;&lt;br /&gt;
  &amp;lt;applydrc&amp;gt;-1.0&amp;lt;/applydrc&amp;gt; &lt;br /&gt;
  &amp;lt;!-- default values for limiter/compressor --&amp;gt;&lt;br /&gt;
  &amp;lt;limiterhold&amp;gt;0.025&amp;lt;/limiterhold&amp;gt; &lt;br /&gt;
  &amp;lt;!-- default values for limiter/compressor --&amp;gt;&lt;br /&gt;
  &amp;lt;limiterrelease&amp;gt;0.1&amp;lt;/limiterrelease&amp;gt; &lt;br /&gt;
  &amp;lt;!-- This setting is only relevant for Passthrough in the context of resyncing, e.g.; when there is no resampling possible. This value decides after which amount of discontinuity in milliseconds VideoPlayer will ErrorAdjust the Clock. On platforms like Android where the sink delay is just a non exact interpolation, a too small value might cause rare image stutter. The maximum value is 100 ms. A higher value makes no sense cause of A/V issues. This is a last-resort workaround as the root-cause cannot be mitigated 100% --&amp;gt;&lt;br /&gt;
  &amp;lt;maxpassthroughoffsyncduration&amp;gt;10&amp;lt;/maxpassthroughoffsyncduration&amp;gt; &lt;br /&gt;
&amp;lt;/audio&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== forcedswaptime ===&lt;br /&gt;
{{anchor|.3Cforcedswaptime.3E}}&lt;br /&gt;
Use to force a backbuffer-&amp;gt;frontbuffer swap while vsync is enabled. Set to the time (in ms) to allow for the swap (e.g. &amp;lt;forcedswaptime&amp;gt;1&amp;lt;/forcedswaptime&amp;gt; is typical).  &lt;br /&gt;
&lt;br /&gt;
Default: Off&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== edl ===&lt;br /&gt;
{{anchor|.3Cedl.3E}}&lt;br /&gt;
{{main|Edit_decision_list}}&lt;br /&gt;
Commercial break detection not as good you think it could be? Are some commercial breaks in a series of adverts not being skipped? Are some parts being skipped that are clearly not commercials? Does the end of the previous recording still show? The following advanced settings can be used to better identify full commercial break sequences, remove incorrectly flagged commercial breaks, and have playback start at the actual beginning of the recording.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;edl&amp;gt;&lt;br /&gt;
  &amp;lt;!-- if true, commercial breaks will be merged according to the remaining options. --&amp;gt;&lt;br /&gt;
  &amp;lt;mergeshortcommbreaks&amp;gt;false&amp;lt;/mergeshortcommbreaks&amp;gt;&lt;br /&gt;
  &amp;lt;!-- Commercial breaks won&#039;t be merged if the total length of the commercial break would be greater than this (seconds) --&amp;gt;&lt;br /&gt;
  &amp;lt;maxcommbreaklength&amp;gt;250&amp;lt;/maxcommbreaklength&amp;gt;&lt;br /&gt;
  &amp;lt;!-- After merging, commercial breaks shorter than this will be removed (seconds) --&amp;gt;&lt;br /&gt;
  &amp;lt;mincommbreaklength&amp;gt;90&amp;lt;/mincommbreaklength&amp;gt;&lt;br /&gt;
  &amp;lt;!-- Commercial breaks that are further apart than this won&#039;t be merged (seconds) --&amp;gt;&lt;br /&gt;
  &amp;lt;maxcommbreakgap&amp;gt;120&amp;lt;/maxcommbreakgap&amp;gt;&lt;br /&gt;
  &amp;lt;!-- How long to wait before automatically skipping when the start of a commercial break reached (seconds). Possible values: from -60 to 60--&amp;gt;&lt;br /&gt;
  &amp;lt;commbreakautowait&amp;gt;0&amp;lt;/commbreakautowait&amp;gt;&lt;br /&gt;
  &amp;lt;!-- How long to rewind after automatically skipping to the end of the commercial break (seconds). Possible values: from -60 to 60 --&amp;gt;&lt;br /&gt;
  &amp;lt;commbreakautowind&amp;gt;0&amp;lt;/commbreakautowind&amp;gt;&lt;br /&gt;
&amp;lt;/edl&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== PVR &amp;amp; Live TV ==&lt;br /&gt;
{{anchor|.3Cpvr.3E}}&lt;br /&gt;
Settings available for PVR, EPG and Live TV. Edit Decision List settings are located in the previous section.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== pvr ===&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line=&#039;line&#039;&amp;gt;&lt;br /&gt;
&amp;lt;pvr&amp;gt;&lt;br /&gt;
  &amp;lt;timecorrection&amp;gt;0&amp;lt;/timecorrection&amp;gt;  &amp;lt;!-- Correct all times (epg tags, timer tags, recording tags) by this amount of minutes. --&amp;gt;&lt;br /&gt;
  &amp;lt;infotoggleinterval&amp;gt;3000&amp;lt;/infotoggleinterval&amp;gt;  &amp;lt;!-- If there is more than one pvr gui info item available (e.g. multiple recordings active at the same time), use this toggle delay in milliseconds. --&amp;gt;&lt;br /&gt;
  &amp;lt;channeliconsautoscan&amp;gt;true&amp;lt;/channeliconsautoscan&amp;gt; &amp;lt;!-- Automatically scan user defined folder for channel icons when loading internal channel groups. --&amp;gt;&lt;br /&gt;
  &amp;lt;autoscaniconsuserset&amp;gt;false&amp;lt;/autoscaniconsuserset&amp;gt; &amp;lt;!-- Mark channel icons populated by auto scan as &amp;quot;user set&amp;quot;. --&amp;gt;&lt;br /&gt;
  &amp;lt;numericchannelswitchtimeout&amp;gt;1000&amp;lt;/numericchannelswitchtimeout&amp;gt; &amp;lt;!-- Time in ms before the numeric dialog auto closes when confirmchannelswitch is disabled. --&amp;gt;&lt;br /&gt;
&amp;lt;/pvr&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== pvrrecordings ====&lt;br /&gt;
In v19 and later, allows users to modify sort type and order of pvr recordings. &amp;lt;ref&amp;gt;https://github.com/xbmc/xbmc/pull/18605&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
;Note- These settings are child tags to the &#039;&#039;&amp;lt;pvr&amp;gt;&#039;&#039; tag in the previous section.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line=&#039;line&#039;&amp;gt;&lt;br /&gt;
&amp;lt;pvr&amp;gt;&lt;br /&gt;
   &amp;lt;pvrrecordings&amp;gt;&lt;br /&gt;
      &amp;lt;sortmethod&amp;gt;2&amp;lt;/sortmethod&amp;gt;  &amp;lt;!-- 1=Name 2=Date 3=Size 4=File --&amp;gt;&lt;br /&gt;
      &amp;lt;sortorder&amp;gt;2&amp;lt;/sortorder&amp;gt;    &amp;lt;!-- 1=Ascending 2=Descending --&amp;gt;&lt;br /&gt;
   &amp;lt;/pvrrecordings&amp;gt;&lt;br /&gt;
&amp;lt;/pvr&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== epg ===&lt;br /&gt;
{{anchor|.3Cpvr.3E}}&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line=&#039;line&#039;&amp;gt;&lt;br /&gt;
&amp;lt;epg&amp;gt;&lt;br /&gt;
  &amp;lt;updatecheckinterval&amp;gt;300&amp;lt;/updatecheckinterval&amp;gt;  &amp;lt;!-- Check every X seconds, if EPG data need to be updated. This does not mean that every X seconds an EPG update is actually triggered, it&#039;s just the interval how often to check whether an update should be triggered. If this value is greater than GUI setting &#039;epg.epgupdate&#039; value, then EPG updates will done with the value specified for &#039;updatecheckinterval&#039;, effectively overriding the GUI setting&#039;s value. --&amp;gt;&lt;br /&gt;
  &amp;lt;updateemptytagsinterval&amp;gt;60&amp;lt;/updateemptytagsinterval&amp;gt;  &amp;lt;!-- If a TV channel has no EPG data, try to obtain data for that channel every X seconds. This overrides the GUI setting &#039;epg.epgupdate&#039; value, but only for channels without EPG data. If this value is less than &#039;updatecheckinterval&#039; value, then data update will be done with the interval specified by &#039;updatecheckinterval&#039;. Example 1: epg.epgupdate = 120 (minutes!), updatecheckinterval = 300, updateemptytagsinterval = 60 =&amp;gt; trigger an EPG update for every channel without EPG data every 5 minutes and trigger an EPG update for every channel with EPG data every 2 hours. Example 2: epg.epgupdate = 120 (minutes!), updatecheckinterval = 300, updateemptytagsinterval = 3600 =&amp;gt; trigger an EPG update for every channel without EPG data every 2 hours and trigger an EPG update for every channel with EPG data every 1 hour. --&amp;gt;&lt;br /&gt;
  &amp;lt;cleanupinterval&amp;gt;900&amp;lt;/cleanupinterval&amp;gt;  &amp;lt;!-- remove old entries from the EPG every X seconds --&amp;gt;&lt;br /&gt;
  &amp;lt;activetagcheckinterval&amp;gt;60&amp;lt;/activetagcheckinterval&amp;gt;  &amp;lt;!-- check for updated active tags every X seconds --&amp;gt;&lt;br /&gt;
  &amp;lt;retryinterruptedupdateinterval&amp;gt;60&amp;lt;/retryinterruptedupdateinterval&amp;gt;  &amp;lt;!-- retry an interrupted EPG update after X seconds --&amp;gt;&lt;br /&gt;
  &amp;lt;displayupdatepopup&amp;gt;true&amp;lt;/displayupdatepopup&amp;gt;  &amp;lt;!-- display a progress popup while updating EPG data from clients --&amp;gt;&lt;br /&gt;
  &amp;lt;displayincrementalupdatepopup&amp;gt;false&amp;lt;/displayincrementalupdatepopup&amp;gt;  &amp;lt;!-- also display a progress popup while doing incremental EPG updates --&amp;gt;&lt;br /&gt;
&amp;lt;/epg&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Video library settings ==&lt;br /&gt;
&lt;br /&gt;
=== videoextensions ===&lt;br /&gt;
{{anchor|.3Cvideoextensions.3E}}&amp;lt;section begin=&amp;quot;videoextensions&amp;quot; /&amp;gt;&lt;br /&gt;
A list of additional file-extensions to allow (&#039;&#039;&#039;add&#039;&#039;&#039;) or exclude (&#039;&#039;&#039;remove&#039;&#039;&#039;) in the My Video windows.&lt;br /&gt;
&lt;br /&gt;
Default extensions for VIDEOS:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
.m4v .3g2 .3gp .nsv .tp .ts .ty .strm .pls .rm .rmvb .mpd .m3u .m3u8 .ifo .mov .qt .divx .xvid&lt;br /&gt;
.bivx .vob .nrg .img .iso .udf .pva .wmv .asf .asx .ogm .m2v .avi .bin .dat .mpg .mpeg .mp4&lt;br /&gt;
.mkv .mk3d .avc .vp3 .svq3 .nuv .viv .dv .fli .flv .001 .wpl .xspf .zip .vdr .dvr-ms .xsp .mts&lt;br /&gt;
.m2t .m2ts .evo .ogv .sdp .avs .rec .url .pxml .vc1 .h264 .rcv .rss .mpls .mpl .webm .bdmv&lt;br /&gt;
.bdm .wtv .trp .f4v&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Examples:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;videoextensions&amp;gt;&lt;br /&gt;
  &amp;lt;add&amp;gt;.ex1|.ex2&amp;lt;/add&amp;gt;&lt;br /&gt;
  &amp;lt;remove&amp;gt;.ex3|.ex4&amp;lt;/remove&amp;gt;&lt;br /&gt;
&amp;lt;/videoextensions&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;section end=&amp;quot;videoextensions&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== discstubextensions ===&lt;br /&gt;
{{main|Media stubs}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;discstubextensions&amp;quot; /&amp;gt;&lt;br /&gt;
The default filename extension for Disc Stubs is:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
.disc&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Using the following tags, it is possible to &amp;lt;tt&amp;gt;&amp;lt;add&amp;gt;&amp;lt;/tt&amp;gt; additional or &amp;lt;tt&amp;gt;&amp;lt;remove&amp;gt;&amp;lt;/tt&amp;gt; existing disc stub extensions to better suit your requirements.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;discstubextensions&amp;gt;&lt;br /&gt;
  &amp;lt;add&amp;gt;.disk|.stub&amp;lt;/add&amp;gt;&lt;br /&gt;
  &amp;lt;remove&amp;gt;.disc&amp;lt;/remove&amp;gt;&lt;br /&gt;
&amp;lt;/discstubextensions&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;section end=&amp;quot;discstubextensions&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== languagecodes ===&lt;br /&gt;
{{anchor|.3Clanguagecodes.3E}}&lt;br /&gt;
User-defined translation table for language codes used in subtitles and audio.&lt;br /&gt;
It can be used to add, extend or override Kodi&#039;s language codes.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;How to add a new language code:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;languagecodes&amp;gt;&lt;br /&gt;
  &amp;lt;code&amp;gt;&lt;br /&gt;
    &amp;lt;short&amp;gt;alt&amp;lt;/short&amp;gt;&lt;br /&gt;
    &amp;lt;long&amp;gt;Alternate&amp;lt;/long&amp;gt;&lt;br /&gt;
  &amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;/languagecodes&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;How to add a new language code with subtag (e.g. pt-BR):&#039;&#039;&#039;&lt;br /&gt;
{{note|This support is available from Kodi v20}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;languagecodes&amp;gt;&lt;br /&gt;
  &amp;lt;code&amp;gt;&lt;br /&gt;
    &amp;lt;short&amp;gt;pt-BR&amp;lt;/short&amp;gt;&lt;br /&gt;
    &amp;lt;long&amp;gt;Portuguese - Brazil&amp;lt;/long&amp;gt;&lt;br /&gt;
  &amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;/languagecodes&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;How to extend an existing language code:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Set the same &amp;quot;long&amp;quot; description of the existing language, for example we reuse the Portughese language for another language code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;languagecodes&amp;gt;&lt;br /&gt;
  &amp;lt;code&amp;gt;&lt;br /&gt;
    &amp;lt;short&amp;gt;pt-BR&amp;lt;/short&amp;gt;&lt;br /&gt;
    &amp;lt;long&amp;gt;Portuguese&amp;lt;/long&amp;gt;&lt;br /&gt;
  &amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;/languagecodes&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In this case when in Kodi settings you set the &amp;quot;Portuguese&amp;quot; language, when in playing according to availability the track &amp;quot;pt&amp;quot; or &amp;quot;pt-BR&amp;quot; will be chosen.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;How to override an existing language code:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This allow you to rename an existing language. Set to an existing language code your preferred &amp;quot;long&amp;quot; name description.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;WARNING: This can cause problems with add-ons, so do not override languages if you are not aware of the side effects.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;languagecodes&amp;gt;&lt;br /&gt;
  &amp;lt;code&amp;gt;&lt;br /&gt;
    &amp;lt;short&amp;gt;en&amp;lt;/short&amp;gt;&lt;br /&gt;
    &amp;lt;long&amp;gt;English example&amp;lt;/long&amp;gt;&lt;br /&gt;
  &amp;lt;/code&amp;gt;&lt;br /&gt;
  &amp;lt;code&amp;gt;&lt;br /&gt;
    &amp;lt;short&amp;gt;en-GB&amp;lt;/short&amp;gt;&lt;br /&gt;
    &amp;lt;long&amp;gt;English example&amp;lt;/long&amp;gt;&lt;br /&gt;
  &amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;/languagecodes&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== moviestacking ===&lt;br /&gt;
{{anchor|.3Cmoviestacking.3E}}&amp;lt;section begin=&amp;quot;moviestacking&amp;quot; /&amp;gt;&lt;br /&gt;
{{main|Naming_video_files/Movies}}&lt;br /&gt;
This is used by the [[Naming_video_files/Movies#Split_Video_Files|file stacking]] algorithm to combine multi-part files and contains a list of regular expressions. For stacking videos that are contained in folders, such as VIDEO_TS folders, see &#039;&#039;&#039;[[advancedsettings.xml#folderstacking|&amp;lt;folderstacking&amp;gt;]]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
As of v9.11, video stacking regular expressions &#039;&#039;&#039;must&#039;&#039;&#039; contain exactly four (4) capture expressions. &lt;br /&gt;
&lt;br /&gt;
Default:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;moviestacking&amp;gt;&lt;br /&gt;
  &amp;lt;!-- &amp;lt;cd/dvd/part/pt/disk/disc&amp;gt; &amp;lt;0-N&amp;gt; --&amp;gt;&lt;br /&gt;
  &amp;lt;regexp&amp;gt;(.*?)([ _.-]*(?:cd|dvd|p(?:ar)?t|dis[ck])[ _.-]*[0-9]+)(.*?)(\.[^.]+)$&amp;lt;/regexp&amp;gt;&lt;br /&gt;
  &amp;lt;!-- &amp;lt;cd/dvd/part/pt/disk/disc&amp;gt; &amp;lt;a-d&amp;gt; --&amp;gt;&lt;br /&gt;
  &amp;lt;regexp&amp;gt;(.*?)([ _.-]*(?:cd|dvd|p(?:ar)?t|dis[ck])[ _.-]*[a-d])(.*?)(\.[^.]+)$&amp;lt;/regexp&amp;gt;&lt;br /&gt;
  &amp;lt;!-- movienamea-xvid.avi, movienameb-xvid.avi --&amp;gt;&lt;br /&gt;
  &amp;lt;regexp&amp;gt;(.*?)([ ._-]*[a-d])(.*?)(\.[^.]+)$&amp;lt;/regexp&amp;gt;&lt;br /&gt;
&amp;lt;/moviestacking&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the argument &amp;lt;tt&amp;gt;action=&amp;quot;append&amp;quot;&amp;lt;/tt&amp;gt; or &amp;lt;tt&amp;gt;append=&amp;quot;yes&amp;quot;&amp;lt;/tt&amp;gt; is supplied, the default moviestacking regular expressions will remain intact and the user specified ones will be added to the end.  &lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;moviestacking action=&amp;quot;append&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;!-- This expression will match movename1-xvid.avi, moviename2-xvid.avi.&lt;br /&gt;
         Be warned that it will likely stack sequels in a flat directory layout,&lt;br /&gt;
         so it is only recommend in a dir-per-video layout. --&amp;gt;&lt;br /&gt;
  &amp;lt;regexp&amp;gt;(.*?)([ ._-]*[0-9])(.*?)(\.[^.]+)$&amp;lt;/regexp&amp;gt;&lt;br /&gt;
&amp;lt;/moviestacking&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If the argument &amp;lt;tt&amp;gt;action=&amp;quot;prepend&amp;quot;&amp;lt;/tt&amp;gt; is supplied, the default moviestacking regular expressions will remain intact and the user specified ones will be added to the beginning. &lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;moviestacking action=&amp;quot;prepend&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;regexp&amp;gt;(Title)(Volume)(Ignore)(Extension)&amp;lt;/regexp&amp;gt;&lt;br /&gt;
&amp;lt;/moviestacking&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If no argument is supplied, or the argument &amp;lt;tt&amp;gt;append=&amp;quot;no&amp;quot;&amp;lt;/tt&amp;gt; is supplied, the default moviestacking regular expressions are overwritten by the user specified ones.&lt;br /&gt;
&amp;lt;section end=&amp;quot;moviestacking&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== folderstacking ===&lt;br /&gt;
{{main|Naming_video_files/Movies}}&lt;br /&gt;
This is similar to &#039;&#039;&#039;[[advancedsettings.xml#moviestacking|&amp;lt;moviestacking&amp;gt;]]&#039;&#039;&#039;, but is used for videos that are contained in folders that use the folder names to stack, such as VIDEO_TS folders (DVD rips that are not in ISO format).&lt;br /&gt;
&lt;br /&gt;
Default:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;folderstacking&amp;gt;&lt;br /&gt;
  &amp;lt;!-- &amp;lt;cd/dvd/disk/disc&amp;gt; &amp;lt;0-N&amp;gt; --&amp;gt;&lt;br /&gt;
  &amp;lt;regexp&amp;gt;((cd|dvd|dis[ck])[0-9]+)$&amp;lt;/regexp&amp;gt;&lt;br /&gt;
&amp;lt;/folderstacking&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== cleandatetime ===&lt;br /&gt;
{{anchor|.3Ccleandatetime.3E}}&lt;br /&gt;
Matches a year number in a string using a Regular Expression&lt;br /&gt;
&lt;br /&gt;
Default expression:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;video&amp;gt;&lt;br /&gt;
  &amp;lt;cleandatetime&amp;gt;(.*[^ _\,\.\(\)\[\]\-])[ _\.\(\)\[\]\-]+(19[0-9][0-9]|20[0-9][0-9])([ _\,\.\(\)\[\]\-]|[^0-9]$)?&amp;lt;/cleandatetime&amp;gt;&lt;br /&gt;
&amp;lt;/video&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
:* The string found before will be used as basis string getting cleaned by the cleanstrings expressions. &lt;br /&gt;
:* By default date formats like MM:YY are ignored.&lt;br /&gt;
&lt;br /&gt;
=== cleanstrings ===&lt;br /&gt;
{{anchor|.3Ccleanstrings.3E}}&lt;br /&gt;
Clean unwanted characters from filenames or folders by using a list of Regular Expressions. Please note that everything right of the match (at the end of the file name) is removed, so if you would have a file named &#039;&#039;Super movie.mp4&#039;&#039; and would add &amp;lt;tt&amp;gt;&amp;lt;regexp&amp;gt; &amp;lt;/regexp&amp;gt;&amp;lt;/tt&amp;gt; (only a space), the only thing that would be left is &#039;&#039;Super&#039;&#039;, which is probably not what you want.&lt;br /&gt;
&lt;br /&gt;
{{Github_link|[https://github.com/xbmc/xbmc/blob/Matrix/xbmc/settings/AdvancedSettings.cpp#L188 Code in Github]}}&lt;br /&gt;
&lt;br /&gt;
Default expressions:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;video&amp;gt;&lt;br /&gt;
  &amp;lt;cleanstrings&amp;gt;&lt;br /&gt;
   &amp;lt;regexp&amp;gt;[ _\,\.\(\)\[\]\-](aka|ac3|dts|custom|dc|remastered|divx|divx5|dsr|dsrip|dutch|dvd|dvd5|dvd9|dvdrip|dvdscr|dvdscreener|screener|dvdivx|cam|fragment|fs|hdtv|hdrip|hdtvrip|internal|limited|multisubs|ntsc|ogg|ogm|pal|pdtv|proper|repack|rerip|retail|r3|r5|bd5|se|svcd|swedish|german|read.nfo|nfofix|unrated|extended|ws|telesync|ts|telecine|tc|brrip|bdrip|480p|480i|576p|576i|720p|720i|1080p|1080i|3d|hrhd|hrhdtv|hddvd|bluray|x264|h264|xvid|xvidvd|xxx|www.www|cd[1-9]|\[.*\])([ _\,\.\(\)\[\]\-]|$)&amp;lt;/regexp&amp;gt;&lt;br /&gt;
   &amp;lt;regexp&amp;gt;(\[.*\])&amp;lt;/regexp&amp;gt;&lt;br /&gt;
  &amp;lt;/cleanstrings&amp;gt;&lt;br /&gt;
&amp;lt;/video&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:* Arguments &amp;lt;tt&amp;gt;action=&amp;quot;append&amp;quot;&amp;lt;/tt&amp;gt; or &amp;lt;tt&amp;gt;action=&amp;quot;prepend&amp;quot;&amp;lt;/tt&amp;gt; will insert user specified expressions after, or before, the defaults above. (Further details in [[Advancedsettings.xml#.3Cmoviestacking.3E|moviestacking]] section)&lt;br /&gt;
&lt;br /&gt;
=== tvshowmatching ===&lt;br /&gt;
{{anchor|.3Ctvshowmatching.3E}}&lt;br /&gt;
Matches the season and episode numbers in file paths by using a list of Regular Expressions&lt;br /&gt;
&lt;br /&gt;
{{Github_link|[https://github.com/xbmc/xbmc/blob/Matrix/xbmc/settings/AdvancedSettings.cpp#L232 Code in Github]}}&lt;br /&gt;
&lt;br /&gt;
Defaults:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tvshowmatching&amp;gt;&lt;br /&gt;
  &amp;lt;regexp&amp;gt;s([0-9]+)[ ._x-]*e([0-9]+(?:(?:[a-i]|\\.[1-9])(?![0-9]))?)([^\\\\/]*)$&amp;lt;/regexp&amp;gt;  &amp;lt;!-- foo.s01.e01, foo.s01_e01, S01E02 foo, S01 - E02, S01xE02 --&amp;gt;&lt;br /&gt;
  &amp;lt;regexp&amp;gt;[\._ -]()[Ee][Pp]_?([0-9]+)([^\\/]*)$&amp;lt;/regexp&amp;gt;  &amp;lt;!-- foo.ep01, foo.EP_01 --&amp;gt;&lt;br /&gt;
  &amp;lt;regexp&amp;gt;([0-9]{4})[\.-]([0-9]{2})[\.-]([0-9]{2})&amp;lt;/regexp&amp;gt;  &amp;lt;!-- foo.yyyy.mm.dd.* (byDate=true) --&amp;gt;&lt;br /&gt;
  &amp;lt;regexp&amp;gt;([0-9]{2})[\.-]([0-9]{2})[\.-]([0-9]{4})&amp;lt;/regexp&amp;gt;  &amp;lt;!-- foo.mm.dd.yyyy.* (byDate=true) --&amp;gt;&lt;br /&gt;
  &amp;lt;regexp&amp;gt;[\\/\._ \[\(-]([0-9]+)x([0-9]+)([^\\/]*)$&amp;lt;/regexp&amp;gt;  &amp;lt;!-- foo.1x09* or just /1x09* --&amp;gt;&lt;br /&gt;
  &amp;lt;regexp&amp;gt;[\\/\._ -]([0-9]+)([0-9][0-9])([\._ -][^\\/]*)$&amp;lt;/regexp&amp;gt;  &amp;lt;!-- foo.103*, 103 foo --&amp;gt;&lt;br /&gt;
  &amp;lt;regexp&amp;gt;[\/._ -]p(?:ar)?t[_. -]()([ivx]+)([._ -][^\/]*)$&amp;lt;/regexp&amp;gt;  &amp;lt;!-- Part I, Pt.VI --&amp;gt;&lt;br /&gt;
&amp;lt;/tvshowmatching&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:* Arguments &amp;lt;tt&amp;gt;action=&amp;quot;append&amp;quot;&amp;lt;/tt&amp;gt; or &amp;lt;tt&amp;gt;action=&amp;quot;prepend&amp;quot;&amp;lt;/tt&amp;gt; will insert user specified expressions after, or before, the defaults above. (Further details in [[Advancedsettings.xml#.3Cmoviestacking.3E|moviestacking]] section)&lt;br /&gt;
:* Paths are converted to lower case before matching.&lt;br /&gt;
:* For multi-episode matching to work, there needs to be a third set of parentheses &#039;()&#039; at the end, this part is fed back into the regexp engine.&lt;br /&gt;
:* A [https://forum.kodi.tv/showthread.php?tid=51614 forum thread] has a discussion of pre-made regex lists to match common names. These might improve Kodi&#039;s ability to match TV show names in some situations, at the risk of additional false positives.&lt;br /&gt;
&lt;br /&gt;
==== Filenames without Season ====&lt;br /&gt;
There are two methods to add episodes without a season in their file path. Both ways will force the season to &#039;1&#039; by default, so that you can use&lt;br /&gt;
the &#039;Use Absolute Ordering (Single Season)&#039; setting from the TheTvDb.com scraper.&lt;br /&gt;
&lt;br /&gt;
; Simple Method &#039;&#039;(XBMC v9.11 onwards and Kodi)&#039;&#039;&lt;br /&gt;
: Use only one pair of parentheses&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&amp;lt;regexp&amp;gt;[/\._ \-]([0-9]+)&amp;lt;/regexp&amp;gt;&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
; Advanced Method &#039;&#039;(XBMC v10.05 onwards and Kodi)&#039;&#039;&lt;br /&gt;
: Supports multi-episode files without season&lt;br /&gt;
: Use an empty pair of parentheses for the season&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&amp;lt;regexp&amp;gt;[/\._ \-]()([0-9]+)(-[0-9]+)?&amp;lt;/regexp&amp;gt;&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
; Specifying Default Season &#039;&#039;(XBMC v12.0 onwards and Kodi)&#039;&#039;&lt;br /&gt;
It is possible to set the default season for specific regular expressions by setting the &#039;defaultseason&#039; attribute.&lt;br /&gt;
: Works with both the simple method and advanced method&lt;br /&gt;
: If not used, the season will be set to &#039;1&#039;&lt;br /&gt;
: Useful for setting specials to season &#039;0&#039;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&amp;lt;regexp defaultseason=&amp;quot;0&amp;quot;&amp;gt;[/\._ \-]X()([0-9]+)(-[0-9]+)?&amp;lt;/regexp&amp;gt;&lt;br /&gt;
&amp;lt;regexp defaultseason=&amp;quot;1&amp;quot;&amp;gt;[/\._ \-]E()([0-9]+)(-[0-9]+)?&amp;lt;/regexp&amp;gt;&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== tvmultipartmatching ===&lt;br /&gt;
{{anchor|.3Ctvmultipartmatching.3E}}&lt;br /&gt;
Matches a multipart episode number based on a previously identified episode file, using a list of Regular Expressions.&lt;br /&gt;
&lt;br /&gt;
Default:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tvmultipartmatching&amp;gt;^[-_ex]+([0-9]+(?:(?:[a-i]|\\.[1-9])(?![0-9]))?)&amp;lt;/tvmultipartmatching&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
:* Text matching is compared case-insensitive.&lt;br /&gt;
:* Specifying this option &#039;&#039;&#039;replaces&#039;&#039;&#039; the default value&lt;br /&gt;
&lt;br /&gt;
=== excludefromscan ===&lt;br /&gt;
{{anchor|.3Cexcludefromscan.3E}}&lt;br /&gt;
Matches filenames or folders which should be excluded from a library scan (except tvshows) using a list of Regular Expressions. This can be for both Video or Audio sections of &amp;lt;tt&amp;gt;advancedsettings.xml&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Defaults:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;video&amp;gt;&lt;br /&gt;
  &amp;lt;excludefromscan&amp;gt;&lt;br /&gt;
    &amp;lt;regexp&amp;gt;-trailer&amp;lt;/regexp&amp;gt;&lt;br /&gt;
    &amp;lt;regexp&amp;gt;[!-._ \\/]sample[-._ \\/]&amp;lt;/regexp&amp;gt;&lt;br /&gt;
  &amp;lt;/excludefromscan&amp;gt;&lt;br /&gt;
&amp;lt;/video&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:* Arguments &amp;lt;tt&amp;gt;action=&amp;quot;append&amp;quot;&amp;lt;/tt&amp;gt; or &amp;lt;tt&amp;gt;action=&amp;quot;prepend&amp;quot;&amp;lt;/tt&amp;gt; will insert user specified expressions after, or before, the defaults above. (Further details in [[Advancedsettings.xml#.3Cmoviestacking.3E|moviestacking]] section)&lt;br /&gt;
&lt;br /&gt;
=== excludefromlisting ===&lt;br /&gt;
{{anchor|.3Cexcludefromlisting.3E}}&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;video&amp;gt;  &lt;br /&gt;
  &amp;lt;excludefromlisting&amp;gt; &amp;lt;!-- Regular expressions that if evaluated to true won&#039;t be displayed in Files View --&amp;gt;&lt;br /&gt;
    &amp;lt;regexp&amp;gt;[-\._ ](sample|trailer)[-\._ ]&amp;lt;/regexp&amp;gt;&lt;br /&gt;
  &amp;lt;/excludefromlisting&amp;gt;&lt;br /&gt;
&amp;lt;/video&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== excludetvshowsfromscan ===&lt;br /&gt;
{{anchor|.3Cexcludetvshowsfromscan.3E}}&lt;br /&gt;
Matches filenames or folders which should be excluded from a tvshow library scan using a list of Regular Expressions&lt;br /&gt;
&lt;br /&gt;
Defaults:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;video&amp;gt;&lt;br /&gt;
  &amp;lt;excludetvshowsfromscan&amp;gt;&lt;br /&gt;
    &amp;lt;regexp&amp;gt;[!-._ \\/]sample[-._ \\/]&amp;lt;/regexp&amp;gt;&lt;br /&gt;
  &amp;lt;/excludetvshowsfromscan&amp;gt;&lt;br /&gt;
&amp;lt;/video&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:* Arguments &amp;lt;tt&amp;gt;action=&amp;quot;append&amp;quot;&amp;lt;/tt&amp;gt; or &amp;lt;tt&amp;gt;action=&amp;quot;prepend&amp;quot;&amp;lt;/tt&amp;gt; will insert user specified expressions after, or before, the defaults above. (Further details in [[Advancedsettings.xml#.3Cmoviestacking.3E|moviestacking]] section)&lt;br /&gt;
&lt;br /&gt;
=== trailermatching ===&lt;br /&gt;
{{anchor|.3Ctrailermatching.3E}}&lt;br /&gt;
Contains Regular Expression syntax to match the locally stored trailers to movies in the library.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;trailermatching&amp;gt;&lt;br /&gt;
    &amp;lt;!-- This regexp will match moviename_Trailer.avi --&amp;gt;&lt;br /&gt;
    &amp;lt;regexp&amp;gt;(.*?)(_Trailer)(\.[^.]+)$&amp;lt;/regexp&amp;gt;&lt;br /&gt;
  &amp;lt;/trailermatching&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== videolibrary ===&lt;br /&gt;
{{anchor|.3Cvideolibrary.3E}}&lt;br /&gt;
Options specific to the Video Library&lt;br /&gt;
&lt;br /&gt;
{{Note|Kodi v20 users don&#039;t need set &amp;quot;importwatched&amp;quot; or &amp;quot;importresumepoint&amp;quot; to true anymore as that&#039;s the default then &amp;lt;ref&amp;gt;https://github.com/xbmc/xbmc/pull/20842&amp;lt;/ref&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line=&#039;line&#039;&amp;gt;&lt;br /&gt;
  &amp;lt;videolibrary&amp;gt;&lt;br /&gt;
    &amp;lt;allitemsonbottom&amp;gt;false&amp;lt;/allitemsonbottom&amp;gt;  &amp;lt;!-- sorts the &amp;quot;*All&amp;quot; items at the bottom of the list when in Ascending order --&amp;gt;&lt;br /&gt;
    &amp;lt;cleanonupdate&amp;gt;false&amp;lt;/cleanonupdate&amp;gt;  &amp;lt;!-- default set to false to prevent Kodi from removing items from the database while updating.  --&amp;gt;&lt;br /&gt;
    &amp;lt;usefasthash&amp;gt;true&amp;lt;/usefasthash&amp;gt; &amp;lt;!-- defaults to true. Set to false in order to skip hashing based on the folders modification time. --&amp;gt;&lt;br /&gt;
    &amp;lt;recentlyaddeditems&amp;gt;35&amp;lt;/recentlyaddeditems&amp;gt; &amp;lt;!-- number of recently added items. Defaults to 25 --&amp;gt;&lt;br /&gt;
    &amp;lt;itemseparator&amp;gt; / &amp;lt;/itemseparator&amp;gt;  &amp;lt;!-- separator used for multiple artists/genres in tags. Note, this is *space* *slash* *space* --&amp;gt;&lt;br /&gt;
    &amp;lt;exportautothumbs&amp;gt;false&amp;lt;/exportautothumbs&amp;gt;  &amp;lt;!-- export auto-generated thumbs. Defaults to false --&amp;gt;&lt;br /&gt;
    &amp;lt;importwatchedstate&amp;gt;false&amp;lt;/importwatchedstate&amp;gt;  &amp;lt;!-- import previously exported playdate and playcount from .nfo files. Defaults to false --&amp;gt;&lt;br /&gt;
    &amp;lt;importresumepoint&amp;gt;false&amp;lt;/importresumepoint&amp;gt;  &amp;lt;!-- import previously exported resume point from .nfo files. Defaults to false --&amp;gt;&lt;br /&gt;
    &amp;lt;dateadded&amp;gt;1&amp;lt;/dateadded&amp;gt; &amp;lt;!-- 0 results in using the current datetime when adding a video;&lt;br /&gt;
                                  1 (default) results in prefering to use the files mtime (if it&#039;s valid) and only using the file&#039;s ctime if the mtime isn&#039;t valid;&lt;br /&gt;
                                  2 results in using the newer datetime of the file&#039;s mtime and ctime --&amp;gt;&lt;br /&gt;
  &amp;lt;/videolibrary&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== videoscanner ===&lt;br /&gt;
{{anchor|.3Cvideoscanner.3E}}&lt;br /&gt;
Options specific to the Video scanner&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;videoscanner&amp;gt;&lt;br /&gt;
    &amp;lt;ignoreerrors&amp;gt;true&amp;lt;/ignoreerrors&amp;gt; &amp;lt;!-- Set to true to silently ignore errors while scanning videos. This prevents the error dialogue box, so you don&#039;t have to keep hitting &amp;quot;yes&amp;quot; to keep scanning.--&amp;gt;&lt;br /&gt;
  &amp;lt;/videoscanner&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Library artwork ==&lt;br /&gt;
&lt;br /&gt;
{{note|Using &amp;lt;imageres&amp;gt;9999&amp;lt;/imageres&amp;gt; and &amp;lt;fanartres&amp;gt;9999&amp;lt;/fanartres&amp;gt; will allow caching artwork at original size.}}&lt;br /&gt;
&lt;br /&gt;
=== imageres ===&lt;br /&gt;
{{anchor|.3Cimageres.3E}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;imageres description&amp;quot; /&amp;gt;Specify the maximum resolution that [[Artwork/Cache#Texture optimization| cached artwork]] (other than fanart / 16:9 images) should be resized to in pixels. The width is automatically calculated as being 16/9*height.  The image will be resized to fit within this size. e.g. an image that is 2000x500 will be cached at size 1280x320. An image that is 500x800 will be cached at size 450x720 using the default value of 720.&amp;lt;section end=&amp;quot;imageres description&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;imageres&amp;gt;720&amp;lt;/imageres&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== fanartres ===&lt;br /&gt;
{{anchor|.3Cfanartres.3E}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;fanartres description&amp;quot; /&amp;gt;Specify the maximum resolution that [[Artwork/Cache#Texture optimization| cached fanart]] should be resized to in pixels. The width is automatically calculated as being 16/9*height. Only images that are exactly 16x9 and equal to or greater than this resolution will be cached at this size - all other images will be cached using &amp;lt;imageres&amp;gt;. The default value is 1080.&amp;lt;section end=&amp;quot;fanartres description&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;fanartres&amp;gt;1080&amp;lt;/fanartres&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== imagescalingalgorithm ===&lt;br /&gt;
Specify the image scaling algorithm for image resizing when [[Artwork/Cache#Texture optimization| caching artwork]] to the local texture cache.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;imagescalingalgorithm&amp;gt;bicubic&amp;lt;/imagescalingalgorithm&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[https://github.com/xbmc/xbmc/blob/1a8753d5cd93890dc6a9f9d4b2ce8848066ea5d0/xbmc/pictures/PictureScalingAlgorithm.cpp#L32-L43 Available image scaling algorithms]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=text enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
fast_bilinear&lt;br /&gt;
bilinear&lt;br /&gt;
bicubic&lt;br /&gt;
experimental&lt;br /&gt;
nearest_neighbor&lt;br /&gt;
averaging_area&lt;br /&gt;
bicublin&lt;br /&gt;
gaussian&lt;br /&gt;
sinc&lt;br /&gt;
lanczos&lt;br /&gt;
bicubic_spline&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== imagequalityjpeg ===&lt;br /&gt;
This specifies the quality of the images when stored in jpeg format. By default kodi uses a quality of 4 which is a good compromise between size and quality. If you want to reduce the thumbnail sizes (decreasing quality) choose a higher value up to 21. If high quality (large thumbnail size) is needed, chose a smaller value, e.g. 0,1,2 or 3. (Added in v20 &amp;lt;ref&amp;gt;https://github.com/xbmc/xbmc/pull/21418&amp;lt;/ref&amp;gt;)&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;imagequalityjpeg&amp;gt;4&amp;lt;/imagequalityjpeg&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Video and music library settings ==&lt;br /&gt;
&lt;br /&gt;
=== playlistasfolders ===&lt;br /&gt;
{{anchor|.3Cplaylistasfolders.3E}}&lt;br /&gt;
In the recent releases, playlists are treated as folders. Selecting a playlist no longer plays it, but opens it, as if it were a folder.&lt;br /&gt;
&lt;br /&gt;
Set to false to revert to the previous behaviour. When you select a playlist, its content is added to the list of elements to be played.&lt;br /&gt;
&lt;br /&gt;
:{{note|This setting will not affect smart playlists, they will always show as folders.}}&lt;br /&gt;
&lt;br /&gt;
;Example&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;playlistasfolders&amp;gt;true&amp;lt;/playlistasfolders&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== playlistretries ===&lt;br /&gt;
{{anchor|.3Cplaylistretries.3E}}&lt;br /&gt;
The number of retries attempted if a source is offline. With this control you can alter the number of consecutive failed items before a playlist fails.&lt;br /&gt;
&lt;br /&gt;
Default:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;playlistretries&amp;gt;100&amp;lt;/playlistretries&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== playlisttimeout ===&lt;br /&gt;
{{anchor|.3Cplaylisttimeout.3E}}&lt;br /&gt;
The timeout, in seconds, before item failure.&lt;br /&gt;
&lt;br /&gt;
Default:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;playlisttimeout&amp;gt;20&amp;lt;/playlisttimeout&amp;gt; &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== sorttokens ===&lt;br /&gt;
Allows you to specify additional tokens that will be ignored at the start of lines during sorting.&lt;br /&gt;
{{note|Sort tokens are case sensitive.}}&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;sorttokens&amp;gt;&lt;br /&gt;
  &amp;lt;token&amp;gt;the&amp;lt;/token&amp;gt;&lt;br /&gt;
&amp;lt;/sorttokens&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above example &amp;quot;the &amp;quot;, &amp;quot;the.&amp;quot; and &amp;quot;the_&amp;quot; will be ignored at the start of titles or names when sorting items, in both video and music libraries. A separator can also be specified, for example&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;sorttokens&amp;gt;&lt;br /&gt;
    &amp;lt;token separators=&amp;quot;&#039;&amp;quot;&amp;gt;L&amp;lt;/token&amp;gt;&lt;br /&gt;
&amp;lt;/sorttokens&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
In that case the value L&#039;, as in French movie name &#039;&#039;L&#039;argent&#039;&#039;, will be ignored and the item listed under &amp;quot;A&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== musicdatabase/videodatabase ===&lt;br /&gt;
{{anchor|.3Cmusicdatabase.3E/.3Cvideodatabase.3E|musicdatabase/videodatabase|database tags music/video/tv/epg/adsp}}&lt;br /&gt;
{{main|MySQL}}&lt;br /&gt;
&amp;lt;section begin=&amp;quot;videodatabase&amp;quot; /&amp;gt;&lt;br /&gt;
Allows advanced customization of the default database settings for music, video, TV, EPG, and ADSP databases.&lt;br /&gt;
&lt;br /&gt;
:{{note| &#039;&#039;&#039;It is HIGHLY recommended that you not attempt to place an sqlite3 database outside of kodi&#039;s path.  sqlite3 contains no filesystem abstraction, so this will plain break on any non-local (as far as Kodi is concerned) paths.  Use this for mysql only.&#039;&#039;&#039;}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Parent tags:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;videodatabase&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;musicdatabase&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;tvdatabase&amp;gt;&#039;&#039;&#039; - Highly experimental/unstable and no practical benefit for most users. &#039;&#039;&#039;Avoid using.&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;epgdatabase&amp;gt;&#039;&#039;&#039; - Highly experimental/unstable and no practical benefit for most users. &#039;&#039;&#039;Avoid using.&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;adspdatabase&amp;gt;&#039;&#039;&#039; - Highly experimental/unstable and no practical benefit for most users. &#039;&#039;&#039;Avoid using.&#039;&#039;&#039;&lt;br /&gt;
{{MySQL warning}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Child tags: &#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;&amp;lt;type&amp;gt;&lt;br /&gt;
: &#039;&#039;Required&#039;&#039; - Can be either &amp;quot;sqlite3&amp;quot; or &amp;quot;mysql&amp;quot; (default: sqlite3)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;&amp;lt;host&amp;gt;&lt;br /&gt;
:&#039;&#039;Required&#039;&#039; - &lt;br /&gt;
* sqlite3: defines the relative path to the database file (eg. /usr/local/kodi/databases).&lt;br /&gt;
* mysql: defines the host of the mysql socket (eg. localhost, 192.168.0.1, etc)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;&amp;lt;port&amp;gt;&lt;br /&gt;
: &#039;&#039;Optional&#039;&#039; -&lt;br /&gt;
* sqlite3: silently ignored&lt;br /&gt;
* mysql: defines the port of the mysql socket (default: 3306)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;&amp;lt;name&amp;gt;&lt;br /&gt;
: &#039;&#039;Optional&#039;&#039; -&lt;br /&gt;
:by default &amp;quot;MyVideos&amp;quot;+DB number will be used.&lt;br /&gt;
* sqlite3: defines the name of the database file to read from, excluding the &amp;quot;.db&amp;quot; extension.&lt;br /&gt;
* mysql: defines the name of the database to use&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;&amp;lt;user&amp;gt;&lt;br /&gt;
: &#039;&#039;Required for MySQL&#039;&#039; -&lt;br /&gt;
* sqlite3: silently ignored&lt;br /&gt;
* mysql: defines the user with privileged access to the database&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;&amp;lt;pass&amp;gt;&lt;br /&gt;
: &#039;&#039;Required for MySQL&#039;&#039; -&lt;br /&gt;
* sqlite3: silently ignored&lt;br /&gt;
* mysql: defines the password for the user with privileged access to the database&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;&amp;lt;compression&amp;gt;&lt;br /&gt;
: &#039;&#039;Optional&#039;&#039; - Defaults to false. Set to &amp;quot;true&amp;quot; to enable MySQL compression protocol. Performance benefit is going to be largely dependent on the network bandwidth, latency between database and clients and on the size of the result sets. [https://github.com/xbmc/xbmc/pull/6484]&lt;br /&gt;
: {{Note|Slower clients (such as the RPi and others) won&#039;t benefit from it as the zlib de-compression overhead is higher than the actual compression savings}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;&amp;lt;key&amp;gt;&lt;br /&gt;
: &#039;&#039;Optional&#039;&#039; - SSL setting for MySQL [https://github.com/xbmc/xbmc/pull/2566]&lt;br /&gt;
&lt;br /&gt;
;&amp;lt;cert&amp;gt;&lt;br /&gt;
: &#039;&#039;Optional&#039;&#039; - SSL setting for MySQL [https://github.com/xbmc/xbmc/pull/2566]&lt;br /&gt;
&lt;br /&gt;
;&amp;lt;ca&amp;gt;&lt;br /&gt;
: &#039;&#039;Optional&#039;&#039; - SSL setting for MySQL [https://github.com/xbmc/xbmc/pull/2566]&lt;br /&gt;
&lt;br /&gt;
;&amp;lt;capath&amp;gt;&lt;br /&gt;
: &#039;&#039;Optional&#039;&#039; - SSL setting for MySQL [https://github.com/xbmc/xbmc/pull/2566]&lt;br /&gt;
&lt;br /&gt;
;&amp;lt;ciphers&amp;gt;&lt;br /&gt;
: &#039;&#039;Optional&#039;&#039; - SSL setting for MySQL [https://github.com/xbmc/xbmc/pull/2566]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Examples:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
1) Configure a database for MySQL.&lt;br /&gt;
:{{note| &#039;&#039;The &#039;&#039;&#039;&amp;lt;videodatabase&amp;gt;&#039;&#039;&#039;, &#039;&#039;&#039;&amp;lt;musicdatabase&amp;gt;&#039;&#039;&#039;, &#039;&#039;&#039;&amp;lt;tvdatabase&amp;gt;&#039;&#039;&#039;, &#039;&#039;&#039;&amp;lt;epgdatabase&amp;gt;&#039;&#039;&#039;, and &#039;&#039;&#039;&amp;lt;adspdatabase&amp;gt;&#039;&#039;&#039; tags are interchangeable here.&#039;&#039;}}&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;videodatabase&amp;gt;&lt;br /&gt;
  &amp;lt;type&amp;gt;mysql&amp;lt;/type&amp;gt;&lt;br /&gt;
  &amp;lt;host&amp;gt;192.168.0.10&amp;lt;/host&amp;gt;&lt;br /&gt;
  &amp;lt;name&amp;gt;kodi_video&amp;lt;/name&amp;gt;&lt;br /&gt;
  &amp;lt;user&amp;gt;kodi&amp;lt;/user&amp;gt;&lt;br /&gt;
  &amp;lt;pass&amp;gt;kodi&amp;lt;/pass&amp;gt;&lt;br /&gt;
&amp;lt;/videodatabase&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
2) Configure a database for an sqlite database.&lt;br /&gt;
:{{note| &#039;&#039;The &#039;&#039;&#039;&amp;lt;videodatabase&amp;gt;&#039;&#039;&#039;, &#039;&#039;&#039;&amp;lt;musicdatabase&amp;gt;&#039;&#039;&#039;, &#039;&#039;&#039;&amp;lt;tvdatabase&amp;gt;&#039;&#039;&#039;, &#039;&#039;&#039;&amp;lt;epgdatabase&amp;gt;&#039;&#039;&#039;, and &#039;&#039;&#039;&amp;lt;adspdatabase&amp;gt;&#039;&#039;&#039; tags are interchangeable here.&#039;&#039;}}&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;musicdatabase&amp;gt;&lt;br /&gt;
  &amp;lt;type&amp;gt;sqlite3&amp;lt;/type&amp;gt;&lt;br /&gt;
  &amp;lt;host&amp;gt;/usr/local/share/kodi/databases&amp;lt;/host&amp;gt;&lt;br /&gt;
&amp;lt;/musicdatabase&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section end=&amp;quot;videodatabase&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== externalplayer ===&lt;br /&gt;
{{anchor|.3Cexternalplayer.3E}}&lt;br /&gt;
{{see|External players}}&lt;br /&gt;
&lt;br /&gt;
== Music settings ==&lt;br /&gt;
&lt;br /&gt;
=== musicextensions ===&lt;br /&gt;
{{anchor|.3Cmusicextensions.3E}}&lt;br /&gt;
&amp;lt;section begin=&amp;quot;musicextensions&amp;quot; /&amp;gt;&lt;br /&gt;
Default extensions for MUSIC:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
.nsv .m4a .flac .aac .strm .pls .rm .rma .mpa .wav .wma .ogg .mp3 .mp2 .m3u .gdm .imf .m15 .sfx&lt;br /&gt;
.uni .ac3 .dts .cue .aif .aiff .wpl .xspf .ape .mac .mpc .mp+ .mpp .shn .zip .wv .dsp .xsp .xwav&lt;br /&gt;
.waa .wvs .wam .gcm .idsp .mpdsp .mss .spt .rsd .sap .cmc .cmr .dmc .mpt .mpd .rmt .tmc .tm8&lt;br /&gt;
.tm2 .oga .url .pxml .tta .rss .wtv .mka .tak .opus .dff .dsf .m4b .dtshd&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It is possible to add or remove extensions for Music, using the following XML tags. Useful if you keep, say, FLAC and mp3 versions of music in the same folder. The &amp;lt;remove&amp;gt; tag can be used to remove mp3 from being listed in the library, leaving only the higher quality FLAC being displayed.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;musicextensions&amp;gt;&lt;br /&gt;
   &amp;lt;add&amp;gt;.ex1|.ex2&amp;lt;/add&amp;gt;&lt;br /&gt;
   &amp;lt;remove&amp;gt;.ex3|.ex4&amp;lt;/remove&amp;gt;&lt;br /&gt;
 &amp;lt;/musicextensions&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section end=&amp;quot;musicextensions&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== cddbaddress ===&lt;br /&gt;
{{anchor|.3Ccddbaddress.3E}}&lt;br /&gt;
The address of the online CDDb database.  You may set this to another freedb mirror if there is a more suitable one.  &lt;br /&gt;
&lt;br /&gt;
Default: &lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;gt;&lt;br /&gt;
&amp;lt;cddbaddress&amp;gt;freedb.freedb.org&amp;lt;/cddbaddress&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== songinfoduration ===&lt;br /&gt;
{{anchor|.3Csonginfoduration.3E}}&lt;br /&gt;
This controls how long the song information will remain onscreen when the song changes during visualisations.  The valid range is &amp;quot;1&amp;quot; to &amp;quot;Indefinite (0)&amp;quot;, in seconds.  This does not include the duration of any transition effects. &lt;br /&gt;
&lt;br /&gt;
Default:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;songinfoduration&amp;gt;10&amp;lt;/songinfoduration&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== musicfilenamefilters ===&lt;br /&gt;
{{anchor|.3Cmusicfilenamefilters.3E}}&lt;br /&gt;
Contains filters to match music information (artist, title etc.) from a tag-less music filename.  The first &amp;lt;filter&amp;gt; to match completely is used. Matched items include:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
%A - Artist&lt;br /&gt;
%T - Title&lt;br /&gt;
%B - Album&lt;br /&gt;
%N - Track number&lt;br /&gt;
%S - Part of set (disk number)&lt;br /&gt;
%D - Duration&lt;br /&gt;
%G - Genre&lt;br /&gt;
%Y - Year&lt;br /&gt;
%R - Rating&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;musicfilenamefilters&amp;gt;&lt;br /&gt;
  &amp;lt;filter&amp;gt;%A - %T&amp;lt;/filter&amp;gt;&lt;br /&gt;
&amp;lt;/musicfilenamefilters&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== musiclibrary ===&lt;br /&gt;
Options specific to the Music Library&lt;br /&gt;
&amp;lt;section begin=&amp;quot;MusicLibrary&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line=&#039;line&#039;&amp;gt;&lt;br /&gt;
&amp;lt;musiclibrary&amp;gt;&lt;br /&gt;
    &amp;lt;allitemsonbottom&amp;gt;true&amp;lt;/allitemsonbottom&amp;gt;       &amp;lt;!-- sorts the &amp;quot;*All&amp;quot; items at the bottom of the list when in Ascending order --&amp;gt;&lt;br /&gt;
    &amp;lt;cleanonupdate&amp;gt;false&amp;lt;/cleanonupdate&amp;gt;            &amp;lt;!-- default set to false to prevent Kodi from removing items from the database while updating.  --&amp;gt;&lt;br /&gt;
    &amp;lt;recentlyaddeditems&amp;gt;35&amp;lt;/recentlyaddeditems&amp;gt;     &amp;lt;!-- number of recently added items. Defaults to 25 --&amp;gt;&lt;br /&gt;
    &amp;lt;albumformat&amp;gt;%B - %Y&amp;lt;/albumformat&amp;gt;              &amp;lt;!-- album label template, default is &amp;quot;%B&amp;quot; --&amp;gt;&lt;br /&gt;
    &amp;lt;prioritiseapetags&amp;gt;true&amp;lt;/prioritiseapetags&amp;gt;     &amp;lt;!-- prioritise APEv2 tags over ID3v1/2 tags, default is false. --&amp;gt;&lt;br /&gt;
    &amp;lt;itemseparator&amp;gt; / &amp;lt;/itemseparator&amp;gt;              &amp;lt;!-- separator used for multiple artists/genres in tags. Note, this is *space* *slash* *space* See Note below--&amp;gt;&lt;br /&gt;
    &amp;lt;artistseparators&amp;gt;                              &amp;lt;!-- separator used for multiple artists. Note that spaces are used for some separators. See Note below--&amp;gt;&lt;br /&gt;
        &amp;lt;separator&amp;gt;;&amp;lt;/separator&amp;gt;&lt;br /&gt;
        &amp;lt;separator&amp;gt;:&amp;lt;/separator&amp;gt;&lt;br /&gt;
        &amp;lt;separator&amp;gt;|&amp;lt;/separator&amp;gt;&lt;br /&gt;
        &amp;lt;separator&amp;gt; feat. &amp;lt;/separator&amp;gt;&lt;br /&gt;
        &amp;lt;separator&amp;gt; ft. &amp;lt;/separator&amp;gt;&lt;br /&gt;
    &amp;lt;/artistseparators&amp;gt;&lt;br /&gt;
    &amp;lt;dateadded&amp;gt;1&amp;lt;/dateadded&amp;gt;                        &amp;lt;!--0 results in using the current datetime when adding a song;&lt;br /&gt;
                                                        1 (default) results in prefering to use the files mtime (if it&#039;s valid) and only using the file&#039;s ctime if the mtime isn&#039;t valid;&lt;br /&gt;
                                                        2 results in using the newer datetime of the file&#039;s mtime and ctime   --&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
    &amp;lt;!-- New for v19 and later releases --&amp;gt;&lt;br /&gt;
    &amp;lt;useisodates&amp;gt;false&amp;lt;/useisodates&amp;gt;                &amp;lt;!-- When &amp;quot;true&amp;quot; all dates displayed in the music library will be in ISO 8601 format (YYYY-MM-DD or part thereof).&lt;br /&gt;
                                                         Defaults to &amp;quot;false&amp;quot; (use localized dates) --&amp;gt;  &lt;br /&gt;
&amp;lt;/musiclibrary&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
{{Note|Changing the &amp;lt;itemseparator&amp;gt; or &amp;lt;artistseparators&amp;gt; will only affect newly added items. A rescan won&#039;t change the existing ones. Remove the Source(s) or delete the Music DB and rebuild. This process should be made easier from v18 and up using &amp;lt;promptfulltagscan&amp;gt;}}&amp;lt;section end=&amp;quot;MusicLibrary&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Photos settings ==&lt;br /&gt;
&lt;br /&gt;
=== pictureextensions ===&lt;br /&gt;
{{anchor|.3Cpictureextensions.3E}}&lt;br /&gt;
A list of additional file-extensions to allow (&#039;&#039;&#039;add&#039;&#039;&#039;) or exclude (&#039;&#039;&#039;remove&#039;&#039;&#039;) in the My Pictures window.&lt;br /&gt;
&lt;br /&gt;
Default extensions for PICTURES:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
.png .jpg .jpeg .bmp .gif .ico .tif .tiff .tga .pcx .cbz .zip .rss .webp .jp2 .apng&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Examples:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;pictureextensions&amp;gt;&lt;br /&gt;
  &amp;lt;add&amp;gt;.ex1|.ex2&amp;lt;/add&amp;gt;&lt;br /&gt;
  &amp;lt;remove&amp;gt;.ex3|.ex4&amp;lt;/remove&amp;gt;&lt;br /&gt;
&amp;lt;/pictureextensions&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== pictureexcludes ===&lt;br /&gt;
{{anchor|.3Cpictureexcludes.3E}}&lt;br /&gt;
Matches filenames or folders which should be excluded from being displayed in My Pictures using a list of Regular Expressions&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;pictureexcludes&amp;gt;  &amp;lt;!-- Regular expressions that if evaluated to true won&#039;t be displayed in My Pictures --&amp;gt;&lt;br /&gt;
  &amp;lt;regexp&amp;gt;small&amp;lt;/regexp&amp;gt;&lt;br /&gt;
  &amp;lt;regexp&amp;gt;[-\._ ](sample|trailer)[-\._ ]&amp;lt;/regexp&amp;gt;&lt;br /&gt;
&amp;lt;/pictureexcludes&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== slideshow ===&lt;br /&gt;
{{anchor|.3Cslideshow.3E}}&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;slideshow&amp;gt;&lt;br /&gt;
  &amp;lt;!-- Amount to pan images as a percentage of the screen --&amp;gt;&lt;br /&gt;
  &amp;lt;panamount&amp;gt;2.5&amp;lt;/panamount&amp;gt;&lt;br /&gt;
  &amp;lt;!-- Amount to zoom images as a percentage of the screen --&amp;gt;&lt;br /&gt;
  &amp;lt;zoomamount&amp;gt;5.0&amp;lt;/zoomamount&amp;gt;&lt;br /&gt;
  &amp;lt;!-- Amount to compensate (zoom) images to attempt to reduce black bars. --&amp;gt;&lt;br /&gt;
  &amp;lt;!-- Results in cropping of the longer length of the image in order to reduce the black bars on the shorter length of the image.  --&amp;gt;&lt;br /&gt;
  &amp;lt;!-- Defaults to 20. --&amp;gt;&lt;br /&gt;
  &amp;lt;blackbarcompensation&amp;gt;20&amp;lt;/blackbarcompensation&amp;gt;  &lt;br /&gt;
&amp;lt;/slideshow&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Network settings ==&lt;br /&gt;
&lt;br /&gt;
=== ftp ===&lt;br /&gt;
{{anchor|.3Cftp.3DE}}&lt;br /&gt;
Specific settings if a ftp server is in use as a source&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;ftp&amp;gt;&lt;br /&gt;
  &amp;lt;remotethumbs&amp;gt;true&amp;lt;/remotethumbs&amp;gt; &amp;lt;!-- enable extraction of flag and thumb for ftp --&amp;gt;&lt;br /&gt;
&amp;lt;/ftp&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== samba ===&lt;br /&gt;
{{anchor|.3Csamba.3E}}&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;samba&amp;gt;&lt;br /&gt;
  &amp;lt;doscodepage&amp;gt;&amp;lt;/doscodepage&amp;gt;  &amp;lt;!-- code page to use for filenames --&amp;gt;&lt;br /&gt;
  &amp;lt;clienttimeout&amp;gt;10&amp;lt;/clienttimeout&amp;gt;  &amp;lt;!-- timeout (in seconds) --&amp;gt;&lt;br /&gt;
  &amp;lt;statfiles&amp;gt;true&amp;lt;/statfiles&amp;gt;  &amp;lt;!-- Set to false to disable smb stat() on files to speed up listings of large directories (over slow links) --&amp;gt;&lt;br /&gt;
&amp;lt;/samba&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== hosts ===&lt;br /&gt;
{{anchor|.3Cfhosts.3E}}&lt;br /&gt;
Static dns entries which take precedence over your dns server.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;hosts&amp;gt;&lt;br /&gt;
  &amp;lt;entry name=&amp;quot;HOSTNAME&amp;quot;&amp;gt;IPADDRESS&amp;lt;/entry&amp;gt;&lt;br /&gt;
&amp;lt;/hosts&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== network ===&lt;br /&gt;
{{anchor|.3Cnetwork.3E}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml line=&#039;line&#039;&amp;gt;&lt;br /&gt;
&amp;lt;network&amp;gt;&lt;br /&gt;
  &amp;lt;curlclienttimeout&amp;gt;10&amp;lt;/curlclienttimeout&amp;gt;  &amp;lt;!-- Timeout in seconds for libcurl (http/ftp) connections --&amp;gt;&lt;br /&gt;
  &amp;lt;curllowspeedtime&amp;gt;20&amp;lt;/curllowspeedtime&amp;gt;    &amp;lt;!-- Time in seconds for libcurl to consider a connection lowspeed --&amp;gt;&lt;br /&gt;
  &amp;lt;curlretries&amp;gt;2&amp;lt;/curlretries&amp;gt;               &amp;lt;!-- Amount of retries for certain failed libcurl operations (e.g. timeout) --&amp;gt;&lt;br /&gt;
  &amp;lt;httpproxyusername&amp;gt;&amp;lt;/httpproxyusername&amp;gt;    &amp;lt;!-- username for Basic Proxy Authentication --&amp;gt;&lt;br /&gt;
  &amp;lt;httpproxypassword&amp;gt;&amp;lt;/httpproxypassword&amp;gt;    &amp;lt;!-- password for Basic Proxy Authentication --&amp;gt;&lt;br /&gt;
  &amp;lt;disableipv6&amp;gt;false&amp;lt;/disableipv6&amp;gt;           &amp;lt;!-- Certain hardware/OS combinations have trouble with ipv6. Set &amp;quot;true&amp;quot; to disable --&amp;gt;&lt;br /&gt;
  &amp;lt;disablehttp2&amp;gt;false&amp;lt;/disablehttp2&amp;gt;         &amp;lt;!-- Added in v19- Allows disabling HTTP2 for broken Curl / HTTP2 servers --&amp;gt;&lt;br /&gt;
  &amp;lt;nfstimeout&amp;gt;30&amp;lt;/nfstimeout&amp;gt;                &amp;lt;!-- Added in v19- Timeout in seconds for NFS access, 0 = wait forever (previous behaviour) default is 5s  --&amp;gt;&lt;br /&gt;
  &amp;lt;catrustfile&amp;gt;filepath&amp;lt;/catrustfile&amp;gt;        &amp;lt;!-- Added in v19- Allows specifying a custom SSL CA trust store bundle. e.g. special://masterprofile/cacerts.pem --&amp;gt;&lt;br /&gt;
  &amp;lt;curlkeepaliveinterval&amp;gt;30&amp;lt;/curlkeepaliveinterval&amp;gt;     &amp;lt;!-- Added in v19- Enable TCP keepalive probes in curl --&amp;gt; &lt;br /&gt;
&amp;lt;/network&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Note|In Kodi v17, the three buffer settings are removed from the &amp;lt;code&amp;gt;&amp;lt;network&amp;gt;&amp;lt;/code&amp;gt; tag and now placed under the new &amp;lt;code&amp;gt;&amp;lt;cache&amp;gt;&amp;lt;/code&amp;gt; tag. See &#039;&#039;&#039;[[#cache]]&#039;&#039;&#039; for full details.}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;curlkeepaliveinterval&amp;gt;&amp;lt;ref&amp;gt;https://github.com/xbmc/xbmc/pull/19319&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== cache ===&lt;br /&gt;
{{see also|HOW-TO:Modify_the_video_cache}}&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;cache&amp;gt;&lt;br /&gt;
  &amp;lt;memorysize&amp;gt;0&amp;lt;/memorysize&amp;gt;   &amp;lt;!-- Number of bytes used for buffering streams in memory when set to 0 the cache will be written to disk instead of RAM --&amp;gt;&lt;br /&gt;
  &amp;lt;buffermode&amp;gt;0&amp;lt;/buffermode&amp;gt;   &amp;lt;!-- Choose what to buffer:&lt;br /&gt;
                                    0) Buffer all internet filesystems (like &amp;quot;2&amp;quot; but additionally also ftp, webdav, etc.) &lt;br /&gt;
                                    1) Buffer all filesystems (including local) (default since Kodi 19)&lt;br /&gt;
                                    2) Only buffer true internet filesystems (streams) (http, https, etc.)&lt;br /&gt;
                                    3) No buffer&lt;br /&gt;
                                    4) Buffer all network filesystems (incl. smb, nfs, etc.) --&amp;gt;&lt;br /&gt;
  &amp;lt;readfactor&amp;gt;4.0&amp;lt;/readfactor&amp;gt; &amp;lt;!-- This factor determines the max readrate in terms of readfactor * avg bitrate of a video file. &lt;br /&gt;
                                    This can help on bad connections to keep the cache filled. It will also greatly speed up buffering. Default value 4.0. --&amp;gt;&lt;br /&gt;
&amp;lt;/cache&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== airtunesport ===&lt;br /&gt;
{{anchor|.3Cairtunesport.3E}}&amp;lt;section begin=&amp;quot;airtunesport&amp;quot; /&amp;gt;&lt;br /&gt;
This overwrites the defalt listening port of the AirTunes server (announced via zeroconf).&lt;br /&gt;
&amp;lt;section end=&amp;quot;airtunesport&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== airplayport ===&lt;br /&gt;
{{anchor|.3Cairplayport.3E}}&amp;lt;section begin=&amp;quot;airplayport&amp;quot; /&amp;gt;&lt;br /&gt;
This overwrites the default listening port of the AirPlay server (announced via zeroconf).&lt;br /&gt;
&amp;lt;section end=&amp;quot;airplayport&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== File system settings ==&lt;br /&gt;
&lt;br /&gt;
=== packagefoldersize ===&lt;br /&gt;
&amp;lt;section begin=&amp;quot;packagefoldersize&amp;quot; /&amp;gt;&lt;br /&gt;
{{anchor|.3Cpackagefoldersize.3E}}&lt;br /&gt;
{{xml setting&lt;br /&gt;
 | tag name = packagefoldersize&lt;br /&gt;
 | option type = numerical&lt;br /&gt;
 | option values = &lt;br /&gt;
 | default values = 200&lt;br /&gt;
 | platform = all&lt;br /&gt;
 | XBMC version = 12&lt;br /&gt;
 | description = The amount (in megabytes) of add-on zip packages saved from previous add-on installs. These packages are mainly used for the [[Add-ons|add-on]] rollback feature. Increasing the size should increase the amount of past versions saved. Defaults to 200 MB.&lt;br /&gt;
 | example = Example: &amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&amp;lt;packagefoldersize&amp;gt;200&amp;lt;/packagefoldersize&amp;gt; &amp;lt;!-- this example would keep up to 200MB of add-on packages. --&amp;gt;&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;section end=&amp;quot;packagefoldersize&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== detectasudf ===&lt;br /&gt;
{{anchor|.3Cdetectasudf.3E}}&lt;br /&gt;
Set to true if you wish to detect joint ISO9660/UDF disks as UDF.  &lt;br /&gt;
&lt;br /&gt;
Default: False&lt;br /&gt;
&lt;br /&gt;
=== handlemounting ===&lt;br /&gt;
{{anchor|.3Chandlemounting.3E}}&lt;br /&gt;
Only used in Linux, it defines if Kodi should attempt to mount media drives (via udisks or udisks2).&lt;br /&gt;
&lt;br /&gt;
Default: False. If kodi is executed with the --standalone option (e.g. as done by kodi-standalone.sh) it by default will be True.&lt;br /&gt;
&lt;br /&gt;
=== pathsubstitution ===&lt;br /&gt;
{{anchor|.3Cpathsubstitution.3E}}&lt;br /&gt;
{{main|Path substitution}}&lt;br /&gt;
&lt;br /&gt;
{{divbox|red||&#039;&#039;&#039;Note:&#039;&#039;&#039; Path substition for &amp;quot;sources&amp;quot; and profiles is broken, and will &#039;&#039;&#039;NOT&#039;&#039;&#039; be fixed.}}&lt;br /&gt;
&lt;br /&gt;
Path substitutions are for use for redirecting file paths.  These are processed in order, and are useful for substituting an absolute path on a PC with a path suitable for Kodi to handle.  &lt;br /&gt;
&lt;br /&gt;
Default: No path substitutions defined.  &lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;pathsubstitution&amp;gt;&lt;br /&gt;
  &amp;lt;substitute&amp;gt;&lt;br /&gt;
    &amp;lt;from&amp;gt;G:\dvds\&amp;lt;/from&amp;gt;&lt;br /&gt;
    &amp;lt;to&amp;gt;smb://somecomputer/g-share/dvds/&amp;lt;/to&amp;gt; &amp;lt;!-- Note the difference between the usage of forward and backslashes --&amp;gt;&lt;br /&gt;
  &amp;lt;/substitute&amp;gt;&lt;br /&gt;
&amp;lt;/pathsubstitution&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Input control settings ==&lt;br /&gt;
&lt;br /&gt;
=== remotedelay ===&lt;br /&gt;
{{anchor|.3Cremotedelay.3E}}&lt;br /&gt;
The repeat delay for a LIRC remote control. A delay value between 1 and 20 before a remote button starts repeating on a long keypress (i.e. continuously sending button pushes while it&#039;s held down). &lt;br /&gt;
&lt;br /&gt;
Default: 3&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;remotedelay&amp;gt;10&amp;lt;/remotedelay&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== controllerdeadzone ===&lt;br /&gt;
{{anchor|.3Ccontrollerdeadzone.3E}}&lt;br /&gt;
This advanced settings has been removed. &lt;br /&gt;
Since v17, the [[Advancedsettings.xml#controllerdeadzone|&amp;amp;lt;controllerdeadzone&amp;amp;gt;]] advanced setting has been removed. Deadzones can now be configured by plugging in the controller and selecting it in Settings -&amp;gt; System settings -&amp;gt; Input -&amp;gt; Peripherals.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== enablemultimediakeys ===&lt;br /&gt;
{{anchor|.3Cenablemultimediakeys.3E}}&lt;br /&gt;
This setting only has any effect on Windows versions of Kodi, and only applies to builds from 28th May 2011 onwards.&lt;br /&gt;
In Windows the multimedia keys generate a WM_APPCOMMAND message in addition the keypress. Kodi processes both keypresses and the WM_APPCOMMAND messages, and the end result would be that the command is executed twice. To avoid this, by default multimedia keypresses are disabled. Although it should rarely be necessary, the enablemultimediakeys setting allows you to enable the multimedia keys.&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;enablemultimediakeys&amp;gt;true&amp;lt;/enablemultimediakeys&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== seeksteps ===&lt;br /&gt;
{{Main|Skip steps}}&lt;br /&gt;
&lt;br /&gt;
This setting changes which increments are available in the settings GUI for additive seeking. Note that &amp;lt;code&amp;gt;&amp;lt;seeksteps&amp;gt;&amp;lt;/code&amp;gt; is not used to actually choose which seek steps are enabled.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Default:&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;seeksteps&amp;gt;7, 15, 30, 60, 180, 300, 600, 900, 1800&amp;lt;/seeksteps&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{editor note|the defaults need to be updated for seeksteps.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== touchscreen ===&lt;br /&gt;
{{anchor|.3Ctouchscreen.3E}}&lt;br /&gt;
This setting allows you to move/align the origin of the touch screen with the origin of the display used. If touch input does not result in a correct movement of the mouse pointer, the behaviour can be corrected with an offset and a stretch/compress factor.&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;touchscreen&amp;gt;&lt;br /&gt;
		&amp;lt;x_offset&amp;gt;0&amp;lt;/x_offset&amp;gt; &amp;lt;!-- set pixel x offset to align it to the used display--&amp;gt;&lt;br /&gt;
		&amp;lt;y_offset&amp;gt;0&amp;lt;/y_offset&amp;gt; &amp;lt;!-- set pixel y offset to align it to the used display--&amp;gt;&lt;br /&gt;
		&amp;lt;x_stretch_factor&amp;gt;1.0&amp;lt;/x_stretch_factor&amp;gt; &amp;lt;!-- stretch/compress the touch x axis--&amp;gt;&lt;br /&gt;
		&amp;lt;y_stretch_factor&amp;gt;1.0&amp;lt;/y_stretch_factor&amp;gt; &amp;lt;!-- stretch/compress the touch y axis--&amp;gt;&lt;br /&gt;
    &amp;lt;/touchscreen&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== scanirserver ===&lt;br /&gt;
Introduced in v18 and used in MS Windows setups only.&amp;lt;ref&amp;gt;https://github.com/xbmc/xbmc/pull/13896&amp;lt;/ref&amp;gt;&lt;br /&gt;
Used to disable the regular connection attempts to the IR Server Suite when there is no remote to connect to.&lt;br /&gt;
&lt;br /&gt;
The default setting is to allow connection attempts. To disable connection attempts change value to &#039;&#039;&#039;false&#039;&#039;&#039;.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;scanirserver&amp;gt;true&amp;lt;/scanirserver&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Other interface settings ==&lt;br /&gt;
&lt;br /&gt;
=== window ===&lt;br /&gt;
{{anchor|.3Cwindow.3E}}&lt;br /&gt;
{{note|This is a &amp;quot;hidden&amp;quot; guisettings.xml setting (defined by the mouse moving the window size), but it is mentioned here because it is a particularly useful override when used in advancedsettings.xml}}&lt;br /&gt;
This allows you to manually set the default size of Kodi&#039;s windowed mode.  If you resize the window, it will return to the set size when restarting.&lt;br /&gt;
&lt;br /&gt;
WIDTH and HEIGHT are the values for each dimension, in pixels.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;window&amp;gt;&lt;br /&gt;
    &amp;lt;width&amp;gt;WIDTH&amp;lt;/width&amp;gt;&lt;br /&gt;
    &amp;lt;height&amp;gt;HEIGHT&amp;lt;/height&amp;gt;&lt;br /&gt;
&amp;lt;/window&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== restrictcapsmask ===&lt;br /&gt;
{{anchor|.3Crestrictcapsmask.3E}}&lt;br /&gt;
Windows only. A bitmask to prevent Kodi from using detected texture capabilities of the GPU. This helps work around buggy hardware/drivers.&lt;br /&gt;
&lt;br /&gt;
1: prevent the use of compressed textures (DXT1, DXT3, DXT5)&lt;br /&gt;
2: prevent the use of non-power-of-two dimensions for textures&lt;br /&gt;
4: prevent the use of compressed textures with non-power-of-two dimensions.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;restrictcapsmask&amp;gt;0&amp;lt;/restrictcapsmask&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== algorithmdirtyregions ===&lt;br /&gt;
{{anchor|.3Calgorithmdirtyregions.3E}}&lt;br /&gt;
{{see also|HOW-TO:Modify dirty regions}}&lt;br /&gt;
&amp;lt;section begin=&amp;quot;algorithmdirtyregions&amp;quot; /&amp;gt;{{note|Some GPU/hardware configurations will have some minor issues (such as a visual &amp;quot;flicker&amp;quot;). For those situations try mode 2 or use the default (mode 3, which requires no advancedsetting). Almost all ARM-based devices (such as [[Android]]) willl likely have flickering issues.}}&lt;br /&gt;
 &lt;br /&gt;
Enable dirty-region processing. Dirty regions are any parts of the screen that have changed since the last frame. By not re-rendering what hasn&#039;t changed the GUI can be sped up. Because all GPUs work differently, only Mode 3 is guaranteed to work for everyone without flickering issues. This mode will reduce CPU/GPU usage, but will not increase GUI speed.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot;&lt;br /&gt;
! value !! result !! description&lt;br /&gt;
|-&lt;br /&gt;
! 0&lt;br /&gt;
| Off&lt;br /&gt;
| The entire viewport is always rendered.&lt;br /&gt;
|-&lt;br /&gt;
! 1&lt;br /&gt;
|Union&lt;br /&gt;
|All dirty regions are grouped into the smallest possible rectangle. This is typically the fastest mode for slower GPUs due to only making one pass.&lt;br /&gt;
|-&lt;br /&gt;
! 2&lt;br /&gt;
| {{nowrap|Cost reduction}}&lt;br /&gt;
| Each dirty region is presented separately, in as many passes as there are regions.&lt;br /&gt;
|-&lt;br /&gt;
! 3&lt;br /&gt;
| {{nowrap|Whole Screen}}&lt;br /&gt;
| The entire screen is rendered if there are any dirty regions. This is a safe default for drivers that clear buffer contents (manifests as blinking or vibrating images). &#039;&#039;&#039;Default&#039;&#039;&#039;&lt;br /&gt;
|}&amp;lt;section end=&amp;quot;algorithmdirtyregions&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;gui&amp;gt;    &lt;br /&gt;
  &amp;lt;algorithmdirtyregions&amp;gt;1&amp;lt;/algorithmdirtyregions&amp;gt;&lt;br /&gt;
&amp;lt;/gui&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== visualizedirtyregions ===&lt;br /&gt;
{{anchor|.3Cvisualizedirtyregions.3E}}&lt;br /&gt;
{{see also|HOW-TO:Modify dirty regions}}&lt;br /&gt;
&amp;lt;section begin=&amp;quot;visualizedirtyregions&amp;quot; /&amp;gt;Enable dirty-region visualization. Paints a rectangle over marked controls.&lt;br /&gt;
&lt;br /&gt;
* true: on&lt;br /&gt;
* false: off &#039;&#039;&#039;(Default)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
{{note|This is only a development mode and isn&#039;t of use to normal users.}}&lt;br /&gt;
&amp;lt;section end=&amp;quot;visualizedirtyregions&amp;quot; /&amp;gt;&lt;br /&gt;
Example: &lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;gui&amp;gt;    &lt;br /&gt;
  &amp;lt;visualizedirtyregions&amp;gt;true&amp;lt;/visualizedirtyregions&amp;gt;&lt;br /&gt;
&amp;lt;/gui&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== smartredraw ===&lt;br /&gt;
&lt;br /&gt;
{{note|This is an experimental feature and you might face issues using it. So please be aware of that.}}&lt;br /&gt;
&lt;br /&gt;
This new feature was introduced in Kodi 18 and if enabled, the GUI process call (and therefore the render call) is only done if anything has changed. The result will be a faster GUI and less load if Kodi plays a video&lt;br /&gt;
&lt;br /&gt;
* true: on&lt;br /&gt;
* false: off &#039;&#039;&#039;(Default)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;gui&amp;gt;    &lt;br /&gt;
  &amp;lt;smartredraw&amp;gt;true&amp;lt;/smartredraw&amp;gt;&lt;br /&gt;
&amp;lt;/gui&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== showexitbutton ===&lt;br /&gt;
{{anchor|.3Cshowexitbutton.3E}}&lt;br /&gt;
Setting to hide the exit button, useful for people running appliance based setups where exit would only confuse/complicate the user. Modifiable via the advancedsettings.xml by setting showexitbutton to false, default is true (show)&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;showexitbutton&amp;gt;true&amp;lt;/showexitbutton&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== fullscreen ===&lt;br /&gt;
{{anchor|.3Cfullscreen.3E}}&lt;br /&gt;
Starts Kodi in full screen (check resolutions!).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;fullscreen&amp;gt;false&amp;lt;/fullscreen&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== splash ===&lt;br /&gt;
{{anchor|.3Csplash.3E}}&lt;br /&gt;
Set to false if you wish to disable the startup splash image. Defaults to true.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;splash&amp;gt;true&amp;lt;/splash&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== cputempcommand ===&lt;br /&gt;
{{anchor|.3Ccputempcommand.3E}}&lt;br /&gt;
Provide a shell command Kodi will use to get CPU temperature. It should print out only &amp;quot;[temp as integer] [scale as one of &amp;quot;CcFf&amp;quot;]&amp;quot;.&amp;lt;br /&amp;gt;&lt;br /&gt;
;&amp;lt;u&amp;gt;For Nvidia and Raspberry Pi&amp;lt;/u&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;cputempcommand&amp;gt;sed -e &#039;s/\([0-9]*\)[0-9]\{3\}.*/\1 C/&#039; /sys/class/thermal/thermal_zone0/temp&amp;lt;/cputempcommand&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
or&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;cputempcommand&amp;gt;echo &amp;quot;$(sensors -u | tail -n64 | grep temp1_input | awk &#039;{print $2 }&#039; |awk &#039;{printf(&amp;quot;%d\n&amp;quot;,$1 + 0.5);}&#039;) C&amp;quot;&amp;lt;/cputempcommand&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
;&amp;lt;u&amp;gt;For ATI/AMD&amp;lt;/u&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;cputempcommand&amp;gt;sensors|sed -ne &amp;quot;s/temp1: \+[-+]\([0-9]\+\).*/\1 C/p&amp;quot;&amp;lt;/cputempcommand&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== gputempcommand ===&lt;br /&gt;
{{anchor|.3Cgputempcommand.3E}}&lt;br /&gt;
Provide a shell command Kodi will use to get GPU temperature. It should print out only &amp;quot;[temp as integer] [scale as one of &amp;quot;CcFf&amp;quot;]&amp;quot;.&amp;lt;br /&amp;gt;&lt;br /&gt;
;&amp;lt;u&amp;gt;For Nvidia&amp;lt;/u&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;gputempcommand&amp;gt;echo &amp;quot;$(nvidia-settings -tq gpuCoreTemp) C&amp;quot;&amp;lt;/gputempcommand&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
or&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;gputempcommand&amp;gt;echo &amp;quot;$(nvidia-smi -q -d TEMPERATURE | grep Gpu | cut -c35-36) C&amp;quot;&amp;lt;/gputempcommand&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
;&amp;lt;u&amp;gt;For ATI/AMD&amp;lt;/u&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;gputempcommand&amp;gt;/usr/bin/aticonfig --od-gettemperature | grep Temperature | cut -f 2 -d &amp;quot;-&amp;quot; | cut -f 1 -d &amp;quot;.&amp;quot; | sed -e &amp;quot;s, ,,&amp;quot; | sed &#039;s/$/ C/&#039;&amp;lt;/gputempcommand&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
;&amp;lt;u&amp;gt;For Raspberry Pi&amp;lt;/u&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;gputempcommand&amp;gt;/opt/vc/bin/vcgencmd measure_temp | sed -e &amp;quot;s/temp=//&amp;quot; -e &amp;quot;s/\..*&#039;/ /&amp;quot;&amp;lt;/gputempcommand&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== glrectanglehack ===&lt;br /&gt;
{{anchor|.3Cglrectanglehack.3E}}&lt;br /&gt;
Problems with ghosting or videos which are only played back in the left upper quarter? The following ATI hack may solve it.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;glrectanglehack&amp;gt;yes&amp;lt;/glrectanglehack&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== alwaysontop ===&lt;br /&gt;
{{anchor|.3Calwaysontop.3E}}&lt;br /&gt;
Added in XBMC v9.11 (Windows OS only). Keeps Kodi always on top when windowed.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;alwaysontop&amp;gt;yes&amp;lt;/alwaysontop&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
There is also a fake fullscreen GUI option in Kodi&#039;s settings.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== minimizetotray ===&lt;br /&gt;
{{anchor|.3Cminimizetotray.3E}}&lt;br /&gt;
{{note|Available in Kodi v20 and above.}}&lt;br /&gt;
&lt;br /&gt;
Windows only. Minimizes Kodi to the system tray. Defaults to false.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=xml enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;minimizetotray&amp;gt;true&amp;lt;/minimizetotray&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Removed tags =&lt;br /&gt;
{{anchor|Recently removed tags}}&lt;br /&gt;
* {{anchor|.3Cthumbsize.3E}}&#039;&#039;&#039;&amp;lt;thumbsize&amp;gt;&#039;&#039;&#039; - replaced by &amp;lt;[[#imageres|imageres]]&amp;gt; in v12 Frodo&lt;br /&gt;
* {{anchor|.3Cfanartheight.3E}}&#039;&#039;&#039;&amp;lt;fanartheight&amp;gt;&#039;&#039;&#039; - replaced by &amp;lt;[[#fanartres|fanartres]]&amp;gt; in v12 Frodo&lt;br /&gt;
* {{anchor|.3Cdvdthumbs.3E}}&#039;&#039;&#039;&amp;lt;dvdthumbs&amp;gt;&#039;&#039;&#039; - removed in v12 Frodo&lt;br /&gt;
* {{anchor|.3Cbusydialogdelayms.3E}}&#039;&#039;&#039;&amp;lt;busydialogdelayms&amp;gt;&#039;&#039;&#039; - removed in v12 Frodo&lt;br /&gt;
* {{anchor|.3Cbginfoloadermaxthreads.3E}}&#039;&#039;&#039;&amp;lt;bginfoloadermaxthreads&amp;gt;&#039;&#039;&#039; - removed in v13 Gotham&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;showepginfoonselect&amp;gt;&#039;&#039;&#039; - replaced by a GUI setting in v13 Gotham&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;resample&amp;gt;&#039;&#039;&#039;, &#039;&#039;&#039;&amp;lt;forceDirectSound&amp;gt;&#039;&#039;&#039;, &#039;&#039;&#039;&amp;lt;audiophile&amp;gt;&#039;&#039;&#039;, &#039;&#039;&#039;&amp;lt;audiosinkbufferdurationmsec&amp;gt;&#039;&#039;&#039;, &#039;&#039;&#039;&amp;lt;allowtranscode44100&amp;gt;&#039;&#039;&#039;, and &#039;&#039;&#039;&amp;lt;streamsilence&amp;gt;&#039;&#039;&#039; - These were various sub-tags for &amp;lt;audio&amp;gt; that were removed in v13 Gotham and either replaced by GUI settings or were no longer needed.&lt;br /&gt;
* {{anchor|.3Cenableairtunesdebuglog.3E}}&#039;&#039;&#039;&amp;lt;enableairtunesdebuglog&amp;gt;&#039;&#039;&#039; - replaced by a GUI option in v14 Helix&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;videoDisableHi10pMultithreading&amp;gt;&#039;&#039;&#039; - renamed to &amp;lt;disableswmultithreading&amp;gt; in v14 Helix&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;hideallitems&amp;gt;&#039;&#039;&#039; - For both the &amp;lt;code&amp;gt;&amp;lt;videolibrary&amp;gt;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;&amp;lt;musiclibrary&amp;gt;&amp;lt;/code&amp;gt; sections, this is replaced by a GUI option in v15 Isengard&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;SmallStepBackSeconds&amp;gt;&#039;&#039;&#039; - In v15 the &amp;lt;code&amp;gt;SmallStepBack&amp;lt;/code&amp;gt; [[Action_IDs]] has been replaced by &amp;lt;code&amp;gt;seek(-7)&amp;lt;/code&amp;gt; in default keymaps. See &#039;&#039;&#039;[[skip steps]]&#039;&#039;&#039; for details. When the original &amp;lt;code&amp;gt;SmallStepBack&amp;lt;/code&amp;gt; action ID is used it defaults to the first backwards [[skip steps|additive seeking value]].&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;timeseekforward&amp;gt;/&amp;lt;timeseekbackward&amp;gt;&#039;&#039;&#039; - In v15 these tags are replaced by GUI options via [[skip steps|additive seeking]], which is configured in the GUI. See &#039;&#039;&#039;[[skip steps]]&#039;&#039;&#039; for details.&lt;br /&gt;
* {{anchor|.3Ckaraoke.3E}}&#039;&#039;&#039;&amp;lt;karaoke&amp;gt;&#039;&#039;&#039; - In v16 all of the karaoke features in Kodi were removed.&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;useddsfanart&amp;gt;&#039;&#039;&#039; - removed in v17 Krypton.&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;cachemembuffersize&amp;gt;&#039;&#039;&#039; and &#039;&#039;&#039;&amp;lt;readbufferfactor&amp;gt;&#039;&#039;&#039; - In v17 &#039;&#039;&#039;&amp;lt;cachemembuffersize&amp;gt;&#039;&#039;&#039; is renamed to &#039;&#039;&#039;&amp;lt;memorysize&amp;gt;&#039;&#039;&#039; and &amp;lt;code&amp;gt;&amp;lt;readbufferfactor&amp;gt;&amp;lt;/code&amp;gt; is renamed to &amp;lt;code&amp;gt;&amp;lt;readfactor&amp;gt;&amp;lt;/code&amp;gt;. In addition, all three buffer related settings in &amp;lt;network&amp;gt; are moved out of &amp;lt;network&amp;gt; and into a new &amp;lt;cache&amp;gt; parent tag.&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;minvideocachelevel&amp;gt;&#039;&#039;&#039;, &#039;&#039;&#039;&amp;lt;minaudiocachelevel&amp;gt;&#039;&#039;&#039;, and &#039;&#039;&#039;&amp;lt;cacheindvdplayer&amp;gt;&#039;&#039;&#039; have been removed in v17.&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;useffmpegvda&amp;gt;&#039;&#039;&#039; - Tag was only used for development testing. Removed in v17.&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;nofliptimeout&amp;gt;&#039;&#039;&#039; - Removed in v17&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;blackbarcolour&amp;gt;&#039;&#039;&#039; - Removed in v17 (maybe?)&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;disableswmultithreading&amp;gt;&#039;&#039;&#039; - Removed in v17 (maybe?)&lt;br /&gt;
* {{anchor|.3Cmeasurerefreshrate.3E}}&#039;&#039;&#039;&amp;lt;measurerefreshrate&amp;gt;&#039;&#039;&#039; - Removed in v17 or v18?&lt;br /&gt;
* {{anchor|.3Cmyth.3E}}&#039;&#039;&#039;&amp;lt;myth&amp;gt;&#039;&#039;&#039; - Removed sometime between v16 to v18&lt;br /&gt;
* {{anchor|.3Ctuxbox.3E}}&#039;&#039;&#039;&amp;lt;tuxbox&amp;gt;&#039;&#039;&#039; - Removed&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;backgroundupdate&amp;gt;&#039;&#039;&#039; - Removed&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;hideemptyseries&amp;gt;&#039;&#039;&#039; - Replaced by a GUI option.&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;mymovies&amp;gt;&#039;&#039;&#039; and child tag &#039;&#039;&#039;&amp;lt;categoriestogenres&amp;gt;&#039;&#039;&#039; - Removed&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;albumssortbyartistthenyear&#039;&#039;&#039;&amp;gt; - Removed&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;albumformatright&amp;gt;&#039;&#039;&#039; - Removed&lt;br /&gt;
* {{anchor|.3Cremoterepeat.3E}}&#039;&#039;&#039;&amp;lt;remoterepeat&amp;gt;&#039;&#039;&#039; - Removed&lt;br /&gt;
* {{anchor|.3Callowd3d9ex.3E}}&#039;&#039;&#039;&amp;lt;allowd3d9ex&amp;gt;&#039;&#039;&#039; and {{anchor|.3Cforced3d9ex.3E}}&#039;&#039;&#039;&amp;lt;forced3d9ex&amp;gt;&#039;&#039;&#039; - Removed sometime between v16 to v18&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;lingertime&amp;gt;&#039;&#039;&#039; - Replaced by a GUI setting in v18&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;forcevaapienabled&amp;gt;&#039;&#039;&#039; - Removed in v18&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;promptfulltagscan&amp;gt;false&amp;lt;/promptfulltagscan&amp;gt;&#039;&#039;&#039; Removed in v18. Now automatically asked each time a scan is conducted.&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;controllerdeadzone&amp;gt;&#039;&#039;&#039; - Removed in v17&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;omxdecodestartwithvalidframe&amp;gt;&#039;&#039;&#039; - This tag is only in some Raspberry Pi specific distributions, such as OpenELEC. As of March 2015, this tag has not been merged into &amp;quot;vanilla&amp;quot; Kodi builds&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;musicthumbs&amp;gt;&#039;&#039;&#039; Replaced in v19 by the GUI setting &#039;&#039;&#039;Thumbnail image files&#039;&#039;&#039; found in Media -&amp;gt; Music&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;artistextraart&amp;gt;&#039;&#039;&#039; Replaced in v19 by the GUI setting &#039;&#039;&#039;Artist art types whitelist&#039;&#039;&#039; found in Media -&amp;gt; Music&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;albumextraart&amp;gt;&#039;&#039;&#039; Replaced in v19 by the GUI setting &#039;&#039;&#039;Album art types whitelist&#039;&#039;&#039; found in Media -&amp;gt; Music&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;episodeextraart&amp;gt;&#039;&#039;&#039; Replaced in v19 by the GUI setting &#039;&#039;&#039;Episode art types whitelist&#039;&#039;&#039; found in Media -&amp;gt; Videos&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;tvshowextraart&amp;gt;&#039;&#039;&#039; Replaced in v19 by the GUI setting &#039;&#039;&#039;TV show art types whitelist&#039;&#039;&#039; found in Media -&amp;gt; Videos&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;tvseasonextraart&amp;gt;&#039;&#039;&#039; Replaced in v19 by the GUI setting &#039;&#039;&#039;TV show art types whitelist&#039;&#039;&#039; found in Media -&amp;gt; Videos&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;movieextraart&amp;gt;&#039;&#039;&#039; Replaced in v19 by the GUI setting &#039;&#039;&#039;Movie art types whitelist&#039;&#039;&#039; found in Media -&amp;gt; Videos&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;moviesetextraart&amp;gt;&#039;&#039;&#039; Replaced in v19 by the GUI setting &#039;&#039;&#039;Movie art types whitelist&#039;&#039;&#039; found in Media -&amp;gt; Videos&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;musicvideoextraart&amp;gt;&#039;&#039;&#039; Replaced in v19 by the GUI setting &#039;&#039;&#039;Music video art types whitelist&#039;&#039;&#039; found in Media -&amp;gt; Videos&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;fanart&amp;gt;&#039;&#039;&#039; Removed in v19&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;assfixedworks&amp;gt;&#039;&#039;&#039; Removed in v20&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;try10bitoutput&amp;gt;&#039;&#039;&#039; Removed in v20 and replaced with [[Settings/System/Display#Use_10_bit_for_SDR|Use 10 bit for SDR]] setting &amp;lt;ref&amp;gt;https://github.com/xbmc/xbmc/pull/20014&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= guisettings.xml Setting Conversion =&lt;br /&gt;
It is possible to convert settings found in the &#039;&#039;&#039;[[Settings]]&#039;&#039;&#039; &#039;&#039;(guisettings.xml)&#039;&#039; pages of {{kodi}} into entries for the advancedsettings.xml file.&lt;br /&gt;
&lt;br /&gt;
When a setting from the guisettings.xml is added to the advancedsettings.xml file, it will override the existing guisettings.xml values and the setting will be removed from the settings pages.&lt;br /&gt;
&lt;br /&gt;
Why would I need to do this?&lt;br /&gt;
* You set up multiple devices and then need to individually change settings and preferences on each device. Using this conversion method, you save those settings in the advancedsettings.xml file and simply add the file to each device&lt;br /&gt;
* You need to hide settings to prevent those settings from being modified&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To convert a guisetting to advancedsettings.xml follow these steps:&lt;br /&gt;
# In the {{kodi}} settings pages, adjust the setting(s) to your preference.&lt;br /&gt;
# Back out of the settings pages to the main menu, which forces {{kodi}} to save the adjusted settings to the guisettings.xml file&lt;br /&gt;
# Locate the guisettings.xml file in the [[Userdata]] folder and open it&lt;br /&gt;
# Locate the setting(s) to be converted. The list can be overwhelming so make use of the Search feature of whichever editor you are using&lt;br /&gt;
# Using the following setting as an example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;setting id=&amp;quot;videolibrary.showemptytvshows&amp;quot;&amp;gt;true&amp;lt;/setting&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
: Breaking down the string:&lt;br /&gt;
::&#039;&#039;&#039;videolibrary&#039;&#039;&#039;- parent tag&lt;br /&gt;
::&#039;&#039;&#039;showemptytvshows&#039;&#039;&#039;- child tag&lt;br /&gt;
::&#039;&#039;&#039;true&#039;&#039;&#039;- value&lt;br /&gt;
: The conversion is as follows and place this in the advancedsettings.xml file&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;advancedsettings version=&amp;quot;1.0&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;videolibrary&amp;gt;&lt;br /&gt;
          &amp;lt;showemptytvshows&amp;gt;true&amp;lt;/showemptytvshows&amp;gt;&lt;br /&gt;
     &amp;lt;/videolibrary&amp;gt;&lt;br /&gt;
&amp;lt;/advancedsettings&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; Some parent tags may already be in use in your advancedsettings.xml file. Do not duplicate them, but add the child tag beneath the existing parent tag.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= References =&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Updated|18}}&lt;br /&gt;
{{DISPLAYTITLE:advancedsettings.xml}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Advanced topics]]&lt;br /&gt;
[[Category:Manual]]&lt;br /&gt;
[[Category:Settings]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Artwork/Accessing_with_skins_and_JSON-RPC&amp;diff=244065</id>
		<title>Artwork/Accessing with skins and JSON-RPC</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Artwork/Accessing_with_skins_and_JSON-RPC&amp;diff=244065"/>
		<updated>2023-02-04T18:36:39Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: link to settings for Kodi 19+&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Artwork_Contents}}&lt;br /&gt;
{{mininav|[[Development]]|[[Artwork]]}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;The primary usage of artwork is to be displayed, and to that end, they can be accessed by name in skins and over JSON-RPC.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Media items with a &amp;quot;parent&amp;quot; media type, such as episodes to their TV show, can also access their parent&#039;s artwork with certain prefixes, like &amp;quot;tvshow.poster&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= From skins =&lt;br /&gt;
Skins can access library artwork for media items in a list with &amp;quot;ListItem.Art(&amp;lt;arttype&amp;gt;)&amp;quot; and artwork for the currently playing item with &amp;quot;Player.Art(&amp;lt;arttype&amp;gt;)&amp;quot;. &amp;quot;Container.Art(&amp;lt;arttype&amp;gt;)&amp;quot; can also be filled in some instances. Some examples are:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;json&amp;quot;&amp;gt;&lt;br /&gt;
{{code|Player.Art(poster)}}&lt;br /&gt;
{{code|Player.Art(fanart)}}&lt;br /&gt;
{{code|ListItem.Art(banner)}}&lt;br /&gt;
{{code|ListItem.Art(tvshow.clearlogo)}}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|+ Additional InfoLabels&lt;br /&gt;
! Skin InfoLabel&lt;br /&gt;
! style=&amp;quot;width:80%&amp;quot; | Description&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| ListItem.Art(poster)&lt;br /&gt;
| Artwork for the currently focused ListItem.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| Player.Art(poster)&lt;br /&gt;
| Artwork for the currently playing item.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| Container.Art(poster)&lt;br /&gt;
| Artwork for the currently focused Container. Container artwork may be filled with &amp;quot;parent&amp;quot; type media item artwork if navigating a single item, like a list of episodes from a single TV show.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| Container(555).ListItem.Art(poster)&lt;br /&gt;
| Artwork for the currently focused ListItem in a specific container.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Additional InfoLabels for artwork ==&lt;br /&gt;
There are other InfoLabels for artwork that don&#039;t match the above pattern, but many of them are deprecated. A set of them that can still be useful are&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|+ Additional InfoLabels&lt;br /&gt;
! Skin InfoLabel&lt;br /&gt;
! style=&amp;quot;width:30%&amp;quot; | Description&lt;br /&gt;
! Examples&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| MusicPlayer.offset(number).Cover&lt;br /&gt;
| Cover of the item offset by &#039;&#039;number&#039;&#039; from the currently playing item in the currently playing music player queue.&lt;br /&gt;
| {{code|MusicPlayer.offset(1).Cover}} - next item in queue&lt;br /&gt;
{{code|MusicPlayer.offset(-1).Cover}} - previous item in queue&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  MusicPlayer.Position(number).Cover&lt;br /&gt;
|  Cover of the item in position &#039;&#039;number&#039;&#039; of currently playing music player queue.&lt;br /&gt;
| {{code|MusicPlayer.Position(1).Cover}} - first item in queue&lt;br /&gt;
{{code|MusicPlayer.Position(2).Cover}} - second item in queue&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  MusicPlayer.Position(number).Property(Fanart_Image)&lt;br /&gt;
|  Fanart of the item in position &#039;&#039;number&#039;&#039; of the currently playing music player queue.&lt;br /&gt;
| {{code|MusicPlayer.Position(1).Property(Fanart_Image)}} - first item in queue&lt;br /&gt;
{{code|MusicPlayer.Position(2).Property(Fanart_Image)}} - second item in queue&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= From JSON-RPC =&lt;br /&gt;
Several JSON-RPC methods (like &amp;quot;VideoLibrary.GetMovies&amp;quot;, &amp;quot;AudioLibrary.GetAlbumDetails&amp;quot;, and &amp;quot;Playlist.GetItems&amp;quot;) return info for media items in the library, and requesting the &amp;quot;art&amp;quot; property will return an &amp;quot;art&amp;quot; dictionary that maps all available artwork for the media item. The key is the artwork type and the value is a Kodi-encoded URL or path to the assigned artwork.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
Example request:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;json&amp;quot;&amp;gt;&lt;br /&gt;
{&amp;quot;jsonrpc&amp;quot;:&amp;quot;2.0&amp;quot;,&amp;quot;id&amp;quot;:11,&amp;quot;method&amp;quot;:&amp;quot;VideoLibrary.GetEpisodes&amp;quot;,&amp;quot;params&amp;quot;:{&amp;quot;properties&amp;quot;:[&amp;quot;art&amp;quot;],&amp;quot;limits&amp;quot;:{&amp;quot;end&amp;quot;:1},&amp;quot;sort&amp;quot;:{&amp;quot;method&amp;quot;:&amp;quot;random&amp;quot;}}}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and a possible response:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;json&amp;quot;&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
     &amp;quot;id&amp;quot;: 11,&lt;br /&gt;
     &amp;quot;jsonrpc&amp;quot;: &amp;quot;2.0&amp;quot;,&lt;br /&gt;
     &amp;quot;result&amp;quot;: {&lt;br /&gt;
         &amp;quot;episodes&amp;quot;: [&lt;br /&gt;
            {&lt;br /&gt;
                 &amp;quot;art&amp;quot;: {&lt;br /&gt;
                     &amp;quot;season.banner&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fseason02-banner.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;season.landscape&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fseason02-landscape.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;season.poster&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fseason02-poster.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;thumb&amp;quot;: &amp;quot;image://video@nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fV%20(2009)%20-%2002x05%20-%20Concordia%20-%20720p%20WEB-DL.mkv/&amp;quot;,&lt;br /&gt;
                     &amp;quot;tvshow.banner&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fbanner.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;tvshow.clearlogo&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fclearlogo.png/&amp;quot;,&lt;br /&gt;
                     &amp;quot;tvshow.fanart&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2ffanart.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;tvshow.poster&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fposter.jpg/&amp;quot;&lt;br /&gt;
                 },&lt;br /&gt;
                 &amp;quot;episodeid&amp;quot;: 2196,&lt;br /&gt;
                 &amp;quot;label&amp;quot;: &amp;quot;2x05. Concordia&amp;quot;&lt;br /&gt;
             }&lt;br /&gt;
         ],&lt;br /&gt;
         &amp;quot;limits&amp;quot;: {&lt;br /&gt;
             &amp;quot;end&amp;quot;: 1,&lt;br /&gt;
             &amp;quot;start&amp;quot;: 0,&lt;br /&gt;
             &amp;quot;total&amp;quot;: 3352&lt;br /&gt;
         }&lt;br /&gt;
     }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi-encoded URL ==&lt;br /&gt;
The image paths returned by JSON-RPC are the path or URL to the image encoded as Kodi&#039;s internal &amp;quot;image://&amp;quot; path.&lt;br /&gt;
&lt;br /&gt;
To turn that path into a URL that can actually be displayed in another application, you will need to encode it as a URI component (examples are [https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent encodeURIComponent] in JS and [https://docs.python.org/3/library/urllib.parse.html#urllib.parse.quote urllib.parse.quote] in Python 3), then add that to the end of the &amp;quot;image/&amp;quot; path of the Kodi HTTP server (like &amp;lt;nowiki&amp;gt;http://kodihost:8080/image/&amp;lt;/nowiki&amp;gt;). With these URLs you can display images wherever they happen to be stored; Kodi will handle opening a file over SMB or NFS if they are stored on a NAS next to the media items, for instance.&lt;br /&gt;
&lt;br /&gt;
The final URL will look like &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;http://kodihost:8080/image/image%3A%2F%2Fnfs%253a%252f%252fCUBER%252fmedia%252fpreserved%252fTVShows%252fV%2520(2009)%252fposter.jpg%2F&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can also turn the &amp;quot;image://&amp;quot; URL into a more traditional looking path/URL (https:// or smb:// or H:\) by chopping off the &amp;quot;image://&amp;quot; up front and the slash at the end, then decoding the rest as a URI component.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Access &amp;quot;parent&amp;quot; artwork =&lt;br /&gt;
For several media types, it is possible to access artwork for the &amp;quot;parent&amp;quot; media item as well as the item&#039;s own artwork. This works for skins and JSON-RPC. For instance, TV episodes can access the artwork for the containing season and TV show. Use &amp;quot;&amp;lt;parenttype&amp;gt;.&amp;lt;arttype&amp;gt;&amp;quot; as the art type.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|+ Media types and their parent types&lt;br /&gt;
! style=&amp;quot;width:8%&amp;quot; | Media type&lt;br /&gt;
! Parent type&lt;br /&gt;
! style=&amp;quot;width:40%&amp;quot; | Description&lt;br /&gt;
! style=&amp;quot;width:30%&amp;quot; | Skin examples&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  TV episodes&lt;br /&gt;
|  &amp;quot;season&amp;quot;, &amp;quot;tvshow&amp;quot;&lt;br /&gt;
|  TV episodes can access artwork for their containing season and TV show&lt;br /&gt;
|  &amp;quot;Player.Art(tvshow.clearlogo)&amp;quot;, &amp;quot;Player.Art(season.poster)&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  Seasons&lt;br /&gt;
|  &amp;quot;tvshow&amp;quot;&lt;br /&gt;
|  TV show artwork&lt;br /&gt;
|  &amp;quot;ListItem.Art(tvshow.banner)&amp;quot;, &amp;quot;ListItem.Art(tvshow.clearlogo)&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  Movies&lt;br /&gt;
|  &amp;quot;set&amp;quot;&lt;br /&gt;
|  In Kodi 18, movies can access artwork for their containing set / collection&lt;br /&gt;
|  &amp;quot;ListItem.Art(set.clearlogo)&amp;quot;, &amp;quot;ListItem.Art(set.poster)&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  Songs&lt;br /&gt;
|  &amp;quot;album&amp;quot;, &amp;quot;artist&amp;quot;, &amp;quot;albumartist&amp;quot;, &amp;quot;artist1&amp;quot;, &amp;quot;albumartist1&amp;quot;&lt;br /&gt;
|  Songs can access the artwork for their containing album and all artists. Songs can have multiple artists; in Kodi 18 &amp;quot;artist1&amp;quot; will be artwork for the second artist - &amp;quot;artist2&amp;quot;, &amp;quot;artist3&amp;quot;, and so on will be filled for additional artists. &amp;quot;albumartist&amp;quot; works the same for album artists.&lt;br /&gt;
|  &amp;quot;Player.Art(album.thumb)&amp;quot;, &amp;quot;Player.Art(artist.fanart)&amp;quot;, &amp;quot;Player.Art(albumartist.clearlogo)&amp;quot;, &amp;quot;Player.Art(artist1.fanart)&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  Albums&lt;br /&gt;
|  &amp;quot;artist&amp;quot;, &amp;quot;artist1&amp;quot;&lt;br /&gt;
|  Albums can access the artwork for their containing album. Albums can have multiple artists; in Kodi 18 &amp;quot;artist1&amp;quot; will be artwork for the second artist - &amp;quot;artist2&amp;quot;, &amp;quot;artist3&amp;quot;, and so on will be filled for additional artists.&lt;br /&gt;
|  &amp;quot;ListItem.Art(artist.fanart)&amp;quot;, &amp;quot;ListItem.Art(artist.clearlogo)&amp;quot;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Example artwork types ==&lt;br /&gt;
&lt;br /&gt;
Here is a short list of example artwork types and how to access them. Kodi&#039;s artwork system allows any number of artwork types, so it&#039;s impossible to list all that may be available here. See the artwork pages for different library sections like [[Movie artwork]] or [[Music artwork]] for a list of generally available artwork types, or navigate to image 2 of [[Artwork#Kodi- Choose Art]] on a media item in your local Kodi installation to see what types of artwork are currently available for at least one of that media type in your local library.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|+ Example artwork types and skin access&lt;br /&gt;
! Artwork type&lt;br /&gt;
! Skin InfoLabel&lt;br /&gt;
! style=&amp;quot;50%&amp;quot; | Description&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  poster&lt;br /&gt;
|  ListItem.Art(poster)&lt;br /&gt;
|  Poster of the currently focused media item (like a movie or TV show)&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  fanart&lt;br /&gt;
|  ListItem.Art(fanart)&lt;br /&gt;
|  Fanart of the currently focused media item&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  landscape&lt;br /&gt;
|  ListItem.Art(landscape)&lt;br /&gt;
|  Landscape of the currently focused media item&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  clearlogo&lt;br /&gt;
|  Player.Art(clearlogo)&lt;br /&gt;
|  Clearlogo of the currently playing media item&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  tvshow.poster&lt;br /&gt;
|  Player.Art(tvshow.poster)&lt;br /&gt;
|  For a currently playing TV episode, this is the poster of the parent TV show&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  set.poster&lt;br /&gt;
|  Player.Art(set.clearlogo)&lt;br /&gt;
|  For currently playing movies, this is the clearlogo of the containing movie set&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  album.thumb&lt;br /&gt;
|  Player.Art(album.thumb)&lt;br /&gt;
|  For currently playing music, this is the cover of the album&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  album.thumb&lt;br /&gt;
|  ListItem.Art(thumb)&lt;br /&gt;
|  Thumb of the currently focused media item. This has some notable fallback behavior in the video library. It will be the artwork type named exactly &amp;quot;thumb&amp;quot; if it exists for the current item, but will fall back to &amp;quot;poster&amp;quot; then &amp;quot;banner&amp;quot; if not.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= {{Kodi}} version updates =&lt;br /&gt;
&lt;br /&gt;
* The &#039;&#039;&#039;music library&#039;&#039;&#039; in {{Kodi}} 17 and before was &#039;&#039;&#039;limited to just &amp;quot;fanart&amp;quot; and &amp;quot;thumb&amp;quot; for artist images&#039;&#039;&#039; and &#039;&#039;&#039;&amp;quot;thumb&amp;quot; for album images&#039;&#039;&#039;, it did not have the flexibility to add a wide variety of artwork. The video library has had this level of support for some time now.&lt;br /&gt;
* {{Kodi}} 18 adds a &#039;&#039;&#039;[[Advancedsettings.xml#Music library extra artwork| whitelist in advancedsettings.xml]]&#039;&#039;&#039; ([[Advancedsettings.xml#Extra artwork|for the video library]]) so that {{Kodi}} will add any specified artwork from scrapers and the file system automatically.&lt;br /&gt;
* {{Kodi}} 19 moves that configuration to the &#039;&#039;&#039;[[Settings/Media/Videos#Artwork| Settings UI]]&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Artwork/Cache&amp;diff=223560</id>
		<title>Artwork/Cache</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Artwork/Cache&amp;diff=223560"/>
		<updated>2021-01-24T18:15:53Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* The caching procedure */ only local files are checked for changes&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Artwork_Contents}}&lt;br /&gt;
{{mininav|[[Music_library|Music Library]] {{l2|[[Video_library|Video Library]]}} | [[Artwork]] }}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;{{Kodi}} maintains a texture cache on local device storage for all artwork displayed in the GUI, whether from an online source or the local file system. These textures are optimized and stored locally for faster loading.&lt;br /&gt;
&lt;br /&gt;
When artwork is added to the library, {{Kodi}} initially only has a URL or path to the artwork. The artwork itself is only downloaded (if from an online source) and then cached when the image is displayed in the GUI or other interface such as the Chorus web interface.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
All images that {{Kodi}} loads, with the exception of textures that are provided directly by the skin, are cached to the userdata/Thumbnails folder.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Artwork for library items =&lt;br /&gt;
The artwork URLs associated with library items are stored in the art table inside the video or music databases. These store the original URL to the artwork (e.g. from local artwork files or from web sources such as https://themoviedb.org, https://thetvdb.com, or https://theaudiodb.com). This means that central databases store where the art is obtained from, and multiple devices then just keep a local thumbnail cache as described below.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= The caching procedure =&lt;br /&gt;
The caching procedure utilizes an optimized copy of the original image saved in .jpg or .png format and an SQL database that maintains the local cache.&lt;br /&gt;
&lt;br /&gt;
The cache operates primarily on an &amp;quot;as and when needed&amp;quot; basis; i.e. textures are cached when they&#039;re first requested for display in a skin or web interface. In some cases textures may be cached before they&#039;re immediately needed, such as thumbnails generated from video files. In either case, the main caching procedure starts with an image URL. It caches as follows:&lt;br /&gt;
&lt;br /&gt;
#  {{Kodi}} generates a hash (CRC) of the URL, like &amp;quot;6a643bff&amp;quot;.&lt;br /&gt;
#  The texture is optimized (see [[#Texture optimization]]) and cached to a device-local file with the given URL hash. It is cached as a PNG if transparency is required and JPG otherwise.&lt;br /&gt;
#  For local files, another hash of the image is generated based on size and modified date, which can be used to check if the original image has changed.&lt;br /&gt;
#  These details are stored in the SQL database Textures.db, along with information on when the image was cached.&lt;br /&gt;
&lt;br /&gt;
= Loading textures =&lt;br /&gt;
When loading a texture for display in a skin or web interface, {{Kodi}} basically just has a URL to the image.  Given a particular URL, it loads the texture as follows:&lt;br /&gt;
&lt;br /&gt;
# If the image is provided by the skin, skip to step 5.&lt;br /&gt;
# If the URL is directly to a cached version of a texture in the cache, skip to step 5.&lt;br /&gt;
# If the URL is for an image already cached in the thumbnail cache, swap the URL to the cached version and skip to step 5.&lt;br /&gt;
# Cache the image as outlined in the section above.&lt;br /&gt;
# Load the image. If the image is provided by the skin, skip steps 6 and 7.&lt;br /&gt;
# The access time for this texture is saved in the texture database.&lt;br /&gt;
# If the image is not from a web service (HTTP/S) and at least 24 hours have passed since it was last loaded, check the hash generated in step 3 of &amp;quot;The caching procedure&amp;quot; for changes to the image. If the hash has changed, cache the new image as outlined in the section above.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Texture optimization =&lt;br /&gt;
# Images are limited to a maximum pixel dimension to fit in a 16:9 box, with a default configuration of 1920x1080 for images that are 16:9 (like fanart) and larger than this, and 1280x720 for all other images. This can be changed with &#039;&#039;[[Advancedsettings.xml#Library artwork| advancedsettings.xml]]&#039;&#039;.&lt;br /&gt;
#* If you are experiencing slow loading images or lagging GUI navigation on low powered equipment and/or your {{Kodi}} device has minimal storage available, these defaults can be lowered to noticeably reduce the cost of artwork. For higher powered equipment these settings can be increased to maintain the original artwork size. (eg 3840x2160 fanart)&lt;br /&gt;
# Images are re-encoded in a decoder-friendly way so that the image can be displayed as quickly as possible.&lt;br /&gt;
&lt;br /&gt;
This optimized image is exported with {{Kodi}}&#039;s [[Import-export_library|Library Export]] feature, rather than the original full-quality image, so it is best to avoid exporting artwork if at all possible.&amp;lt;ref&amp;gt;https://forum.kodi.tv/showthread.php?tid=315806&amp;amp;pid=2599318#pid2599318&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Advanced: How to refresh the cached image of an icon manually =&lt;br /&gt;
The [[Texture Cache Maintenance utility]] can do this in a safer way, but this is the manual option.&lt;br /&gt;
There is an image like &#039;&#039;/home/x/.kodi/addons/my.lovely.addon/icon.png&#039;&#039; . After changing that file, the old image is still visible in {{kodi}}. To solve this we need to remove the actual thumbnail file from the filesystem and its reference in the DB:&lt;br /&gt;
&lt;br /&gt;
 # Get the thumbnail path to remove the file from the filesystem&lt;br /&gt;
 $ sqlite3 .kodi/userdata/Database/Textures13.db &amp;quot;SELECT cachedurl FROM texture WHERE url = &#039;/home/x/.kodi/addons/my.lovely.addon/icon.png&#039;;&amp;quot;&lt;br /&gt;
 6/6a643bff.png&lt;br /&gt;
&lt;br /&gt;
This &#039;&#039;6/6a643bff.png&#039;&#039; is the cached image under &#039;&#039;/home/x/.kodi/userdata/Thumbnails&#039;&#039;. So: you need to remove from your filesystem &#039;&#039;/home/x/.kodi/userdata/Thumbnails/6/6a43bff.png&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 # Remove the image-&amp;gt;cached image link in the DB&lt;br /&gt;
 $ sqlite3 .kodi/userdata/Database/Textures13.db &amp;quot;DELETE FROM texture WHERE url = &#039;/home/x/.kodi/addons/my.lovely.addon/icon.png&#039;;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Next time Kodi needs the image, it will recreate the thumbnail.&lt;br /&gt;
&lt;br /&gt;
:{{note|The &amp;lt;code&amp;gt;&amp;quot;Textures&#039;&#039;&#039;13&#039;&#039;&#039;.db&amp;quot;&amp;lt;/code&amp;gt; &#039;&#039;&#039;[[Databases#Database_Versions|number/version can increase]]&#039;&#039;&#039; with later Kodi versions.}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;See also: [[Databases#Database_Versions|Database Versions]]&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
= Advanced: delete textures13.db =&lt;br /&gt;
This last resort procedure is one sure way to repair any image caching problem: delete the &#039;&#039;Textures13.db&#039;&#039; database and the thumbnail directory. This procedure does not affect the entries in the Video and Music libraries, so Kodi will not find more images after, this is just a brute-force solution to a caching problem. It affects the artwork database only. [[Texture Cache Maintenance utility]] can do very targeted fixes of the texture cache, so consider it before doing this.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note&#039;&#039;&#039;&lt;br /&gt;
#Be aware that this should be a last resort procedure. Deleting this database file and the thumbnail directory will remove all cache entries and links, requiring remote URLs to web services to be downloaded again.&lt;br /&gt;
#As the URL link to the original artwork location is stored in the video or music databases, Kodi will use the existing URLs to rebuild the Texture database and thumbnail cache, rather than finding new images locally or from a scraper.&lt;br /&gt;
#{{red|Using this procedure, you cannot change the scraping location for artwork. ie- If you originally scraped from online sources, you cannot expect that Kodi will now scrape from your newly added local artwork and vice-versa. It will retrieve artwork from the same source as it was before, so the result will be the same image. To bulk change artwork, refer to &#039;&#039;[[Artwork#Importing-Scraping Artwork| Importing-Scraping Artwork]]&#039;&#039;}}&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You will need to perform the following for a clean start with respect to the artwork texture cache.&lt;br /&gt;
#Exit Kodi&lt;br /&gt;
#Delete &#039;&#039;texturesxx.db&#039;&#039; located in the &#039;&#039;\userdata\database\&#039;&#039; folder. &lt;br /&gt;
#Delete the &#039;&#039;Thumbnails&#039;&#039; directory located at &#039;&#039;\userdata\&#039;&#039; which stores all the cached images,&lt;br /&gt;
Once the above steps are performed&lt;br /&gt;
#Restart Kodi&lt;br /&gt;
#Kodi will automatically rebuild the Textures database and repopulate the Thumbnails cache as the images are displayed in the GUI or other Kodi interface.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Cache manipulation tools =&lt;br /&gt;
* [[Texture Cache Maintenance utility]]&lt;br /&gt;
** {{#lst:Texture_Cache_Maintenance_utility|intro}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Kodi version updates =&lt;br /&gt;
&amp;lt;section begin=&amp;quot;CacheMaxResolution&amp;quot; /&amp;gt;From v18, the 1920x1080 resolution limitation has been removed. Using the following code in your advancedsettings.xml will allow caching artwork at original size. &amp;lt;ref&amp;gt;https://github.com/xbmc/xbmc/pull/13599&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;imageres&amp;gt;9999&amp;lt;/imageres&amp;gt;&lt;br /&gt;
&amp;lt;fanartres&amp;gt;9999&amp;lt;/fanartres&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;section end=&amp;quot;CacheMaxResolution&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= References =&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Guides]]&lt;br /&gt;
[[Category:Manual]]&lt;br /&gt;
[[Category:Music library]]&lt;br /&gt;
[[Category:First time user]]&lt;br /&gt;
[[Category:Advanced topics]]&lt;br /&gt;
[[Category:Quick Start Guide]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Artwork_types&amp;diff=207283</id>
		<title>Artwork types</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Artwork_types&amp;diff=207283"/>
		<updated>2020-05-03T16:10:27Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* fanart# */ clarify multiple fanart usage&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Artwork_Contents}}&lt;br /&gt;
{{mininav|[[Video library]] {{l2| [[Music library]] }}| [[Artwork]] }}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Common Art Types =&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;This page describes the common types of artwork used by {{kodi}} skins, scrapers and other art add-ons, where they are used and their specifications. See the linked pages for information on how to use them in {{kodi}}.&lt;br /&gt;
&lt;br /&gt;
With the release of v18, the lines between basic and extended artwork have been blurred. All artwork has an artwork &#039;&#039;&#039;type&#039;&#039;&#039; and is treated the same as the traditional &#039;&#039;thumb or poster&#039;&#039; and &#039;&#039;fanart&#039;&#039;. If a skin has been coded to recognise an artwork type, and the artwork is scanned into {{kodi}}, then it will be displayed.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note: &#039;&#039;&#039;All resolutions are suggestions and roughly fall in line with the sizing at the scraper sites. You may modify the resolution to suit your own needs, but the aspect ratio must be maintained otherwise the image may undergo stretching, squashing or cropping when viewed in {{kodi}}. If you intend to share your artwork, check the scraper sites to ensure your artworks are within their minimum and maximum limits.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== actor ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
The Actor artwork is a portrait of an actor for display in the cast information pages. &lt;br /&gt;
&lt;br /&gt;
The files are named as  &#039;&#039;&#039;&#039;&#039;&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&#039;&#039;&#039;&#039;&#039; and are saved in the dedicated &#039;&#039;&#039;.actors&#039;&#039;&#039; folder in the movie folder and tv show folder.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1000w x 1500h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 2:3&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== back ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Music_artwork|Music- Albums artwork]]|color=#72d2f7}}&lt;br /&gt;
&lt;br /&gt;
This is the album back cover, which often includes a track listing, though the design varies. They are often used in detail views focused on a single album.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|back&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1000w x 1000h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 1:1&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== banner ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music_artwork|Music- Artists artwork]]|color=#72d2f7}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
In the video library, banners are wide and short images that contain recognizable characters or props from the video and typically includes a clearly visible logo or the name of the movie, movie set or tv show.&lt;br /&gt;
&lt;br /&gt;
In the music library it contains the artist or band members and typically includes a clearly visible logo or the name of the artist/band&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|banner&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg or png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1000w x 185h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 200:37&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== characterart ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
Characterart are png transparent images of iconic characters or objects from the show. Not in common use in {{kodi}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|characterart&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 512w x 512h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 1:1&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| Yes&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== characterart# ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
&lt;br /&gt;
This is multiple character art for Movies. It has the same concept as character art for TV-Shows described above. In contrast the artwork has no official conventions in terms of resolution and aspect ratio. This is newer but already accessible from &#039;&#039;&#039;&#039;&#039;[https://www.kyradb.com www.kyradb.com]&#039;&#039;&#039;&#039;&#039;. It has also been implemented in &#039;&#039;&#039;&#039;&#039;[https://forum.kodi.tv/showthread.php?tid=258886 Artwork Beef]&#039;&#039;&#039;&#039;&#039; and some skins &amp;lt;ref&amp;gt;https://forum.kodi.tv/showthread.php?tid=258886&amp;amp;pid=2866420#pid2866420&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
It could be used as single artwork named &amp;quot;characterart&amp;quot; or multiple artwork named &amp;quot;characterart1&amp;quot;, &amp;quot;characterart2&amp;quot;, and so on with the number increasing for each artwork. The number can increase to 10 and beyond, but numbers cannot be zero-padded and each number needs a corresponding whitelist entry in the advancedsettings.xml file.&lt;br /&gt;
&lt;br /&gt;
More information and sample content can be found in the &#039;&#039;&#039;&#039;&#039;[https://forum.kodi.tv/showthread.php?tid=342468 official forum thread]&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|characterart&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| variable&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| variable&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| Yes&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== clearart ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music_artwork|Music- Artists artwork]]|color=#72d2f7}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
Clearart have a transparent background with recognizable characters or props from the video along with a logo or name and its transparent background allows it to be overlaid images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|clearart&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1000w x 562h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 16:9&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| Yes&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== clearlogo ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music_artwork|Music- Artists artwork]]|color=#72d2f7}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
Logos typically use the distinctive font associated with the video and is uncluttered by other images. The transparent background allows it to be overlaid images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|clearlogo&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 800w x 310h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 80:31&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| Yes&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== discart ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music_artwork|Music- Albums artwork]]|color=#72d2f7}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
&lt;br /&gt;
Discart replicates the picture on the physical Blu-ray or other disc. Although the disc artwork is round, the image itself is square and the disc image is placed in the center on a transparent background.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|discart&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1000w x 1000h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 1:1&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| Yes&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== fanart ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music_artwork|Music- Artists artwork]]|color=#72d2f7}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
They are used as full screen displays.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|fanart&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg or png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1920w x 1080h&amp;lt;br&amp;gt;&lt;br /&gt;
3840w x 2160h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 16:9&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: For the Music library, the file names recognised by {{Kodi}} and loaded as local fanart can be configured by entries in the &#039;&#039;[[Advancedsettings.xml#fanart|advancedsettings.xml]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== fanart# ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music_artwork|Music- Artists artwork]]|color=#72d2f7}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
This is Multiple fanart. It has the same specifications as fanart in the previous section.&lt;br /&gt;
&lt;br /&gt;
It is possible to download and save additional high quality fanart which the skin can display, usually in a slideshow. Multiple fanart is reliant on a supporting skin and the images have exactly the same properties as the standard fanart described above. Multiple fanart is an alternative to the &amp;quot;extrafanart&amp;quot; folders, adding all of the fanart images to the Kodi library, and they are treated just like any other artwork type. This is newer and not supported in as many skins as extrafanart, but can be overcome with the use of &#039;&#039;&#039;&#039;&#039;[https://forum.kodi.tv/showthread.php?tid=258886 Artwork Beef]&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Multiple additional fanart is named &amp;quot;fanart1&amp;quot;, &amp;quot;fanart2&amp;quot;, and so on with the number increasing for each artwork. The number can increase to 10 and beyond, but numbers cannot be zero-padded and each number needs a corresponding whitelist entry in the advancedsettings.xml file. The advantage is improved performance and behavior.&lt;br /&gt;
&lt;br /&gt;
== keyart ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
Keyart is a poster without text or a logo. This is useful as a separate item in a skinner&#039;s toolbox as it can be paired with a clearlogo or large text title elsewhere on the window, and without text it is less distracting in the background or half-obscured, similar to fanart.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|keyart&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1000w x 1500h&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 2:3&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== landscape ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music_artwork|Music- Artists artwork]]|color=#72d2f7}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
Landscape images are specially made 16x9 images that contain recognizable characters or props from the movie and a logo. They are used in certain page layouts for browsing. If the Landscape image is not available, skins can make passable replacements by using fanart and overlaying the clearlogo.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|landscape&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1000w x 562h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 16:9&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== poster ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
Posters replicates the movie posters often seen in cinema complexes, or the front cover of home video releases, and contain a clearly visible logo or name of the video.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|poster&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg or png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1000w x 1500h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 2:3&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== poster# - character poster sets ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
&lt;br /&gt;
This is multiple posters and has the same specifications as Posters above. &lt;br /&gt;
&lt;br /&gt;
These multiple posters are released as a set which displays the characters of the movie. Each poster in the set highlights one character and there can be up to 20 poster per movie. There can be multiple sets per movie, each set differing in style. Each poster in the set is designed to have a fixed position order, usually because they can be placed edge to edge to create a larger artwork.&lt;br /&gt;
&lt;br /&gt;
The intention is that they are displayed in a multiimage sideshow. More information and examples can be found [https://forum.kodi.tv/showthread.php?tid=345299 in this thread].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== spine ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Music_artwork|Music- Albums artwork]]|color=#72d2f7}}&lt;br /&gt;
&lt;br /&gt;
Album spines replicate the album spine found on standard CD cases. They typically have the name of the album and artist, but are too thin to have much of a design beyond continuing the front or back image. They are often used as thin identifiers for unfocused items in a list of albums.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|spine&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg or png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 50w x 1000h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 1:20&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== thumb ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Thumb&#039;&#039; is the most basic art type (and the oldest historically) used by {{Kodi}} skins. The properties differ depending on the area of {{kodi}} it is being used in. Skins often show this type of art both full size, and also as a small icon alongside each item in a list.&lt;br /&gt;
&lt;br /&gt;
=== Video Library ===&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
This art type hold thumbnails that are still images from the movie itself, and can be generated from the video file in your library. They are also used as images for episodes in TV Shows.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|thumb&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 960w x 540h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 16:9&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Music Library ===&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Music_artwork|Music- Artists artwork]]|color=#72d2f7}}&lt;br /&gt;
{{highlight|[[Music_artwork|Music- Albums artwork]]|color=#72d2f7}}&lt;br /&gt;
{{highlight|[[Music_artwork|Source Folder Icons]]|color=#b1d9b6}}&lt;br /&gt;
&lt;br /&gt;
This art type holds high quality images of the album front cover or square (or near to square) artist images. The artist images usually show the whole band without any text or logos. Kodi will recognise a variety of file names and load them as a &#039;&#039;thumb&#039;&#039;, these file names can be adjusted by entries in &#039;&#039;[[Advancedsettings.xml#musicthumbs|advancedsettings.xml]]&#039;&#039;. The export facility will export this art type as &#039;&#039;folder.jpg&#039;&#039; which may mean duplicated artwork if you used the thumb filename in local art and export artwork to the same location. &lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|folder, cover or thumb&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 500w x 500h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 1:1&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Other Types =&lt;br /&gt;
This section lists other artwork types that are...&lt;br /&gt;
# Still in the experimental stage, or&lt;br /&gt;
# Still in use, but being phased out, and&lt;br /&gt;
# Used by only a small number of skins at this time, usually for one of the previous two reasons&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Animated Artwork ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
Still experimental, but {{kodi}} has basic support for displaying animated artwork, and two artwork types have a decent collection of animated options: posters and fanart for movies. The most comprehensive support for animated artwork is Skin Helper Service, which has taken to naming these as &amp;quot;animatedposter&amp;quot; and &amp;quot;animatedfanart&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
New animated movie posters (and textless posters / keyart which could be named &amp;quot;animatedkeyart&amp;quot;) are often posted to [https://forum.kodi.tv/showthread.php?tid=215727 this forum thread].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Limitations of animated artwork ===&lt;br /&gt;
Kodi&#039;s support for displaying animated artwork is basic, and does have some limitations.&lt;br /&gt;
&lt;br /&gt;
;Limitation 1-&lt;br /&gt;
:{{kodi}} does not save animated artwork to the texture cache and will not play them (only displaying the first frame) unless they are stored on a client-local file system. ie- Animated artwork will not work across networks.&lt;br /&gt;
&lt;br /&gt;
;Limitation 2-&lt;br /&gt;
:There is a hard limit on the number of pixels in a single animated artwork. The size of animated artwork is limited to roughly 12 frames of 1920x1080. This limit is defined as fully decoded pixels. The trend for animated posters is for smaller images with more frames (a recent &amp;quot;animatedposter&amp;quot; is 500x713 with 60 frames). Kodi will discard any remaining frames after it has reached this limit, which will probably hitch unpleasantly, so obeying this limit is important.&lt;br /&gt;
::Technically this limit is 11 frames but Kodi will decode full frames until it has decoded MORE than this, so the calculation is&lt;br /&gt;
::1920 × 1080 = 2,073,600 * 11 (frames) = 22,809,600 pixels &#039;&#039;&#039;plus&#039;&#039;&#039; one more frame&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== extrafanart Folder ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
This method is slowly being phased out in favour of the &#039;&#039;fanart#&#039;&#039; method described in the previous section&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;ExtrafanartFolder&amp;quot; /&amp;gt;It is possible to download and save additional high quality fanart which the skin can display, usually in a slideshow. Extra fanart is reliant on a supporting skin and the images have exactly the same properties as the standard fanart described above. This is older and more widely supported in skins.&lt;br /&gt;
&lt;br /&gt;
In v17 and prior, Extra Fanart is stored in a separate folder named &#039;&#039;&#039;&#039;&#039;extrafanart&#039;&#039;&#039;&#039;&#039;. Create a folder named &#039;&#039;&#039;&#039;&#039;extrafanart&#039;&#039;&#039;&#039;&#039; in the folder of the movie or the TV Show, and place each extra fanart image in it. This artwork is not added to the Kodi library, instead skins access the folder directly. A downside to this method is that it can wake hard drives while browsing the library and cause freezing of the GUI while the drives wake up. The filename is mostly not important.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|fanart&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg or png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1920w x 1080h&amp;lt;br&amp;gt;&lt;br /&gt;
3840w x 2160h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 16:9&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== extrathumbs Folder ==&lt;br /&gt;
{{anchor|Extra Thumbs}}&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
&lt;br /&gt;
It is possible to download and save additional thumbnails which the skin can display. Extra thumbs are reliant on a supporting skin and the images have exactly the same properties as the standard thumb described above.&lt;br /&gt;
&lt;br /&gt;
Extra Thumbs are stored in a separate Folder named &amp;quot;extrathumbs&amp;quot;. Create a Folder named &#039;&#039;&#039;extrathumbs&#039;&#039;&#039; in the folder of the Movie.  Each Extra Thumb must be named &#039;&#039;thumbX.jpg&#039;&#039; where &#039;&#039;X&#039;&#039; is a sequential number starting with 0 &#039;&#039;(thumb0.jpg, thumb1.jpg, thumb2.jpg, etc)&#039;&#039;. There is a limit of 10 thumb images allowable. Be aware that some skins utilise less than 10 of the images.&lt;br /&gt;
&lt;br /&gt;
This artwork is not in common use.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Source Folder Icon ==&lt;br /&gt;
&amp;lt;section begin=&amp;quot;SourceFolderArtwork&amp;quot; /&amp;gt;The Source Folder icon is a landscape image that can be used to replace the standard folder icons when browsing your &#039;&#039;&#039;sources&#039;&#039;&#039; in the video menu. This image file is saved directly within the Source directory.&lt;br /&gt;
&lt;br /&gt;
To enable the image...&lt;br /&gt;
#Navigate to Videos&amp;gt;Files in the menu system&lt;br /&gt;
#Highlight a source and call up the &#039;&#039;&#039;&#039;&#039;[[Basic_controls#Context_Menu|context menu]]&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
#Select &#039;&#039;Choose Thumbnail&#039;&#039;. &lt;br /&gt;
If you have saved in the image in the correct location, it will be available to select immediately. If not, you will need to navigate to locate and select it. The image must remain in its original location once selected. Deleting the image will remove it from view in the folder icon.&lt;br /&gt;
&lt;br /&gt;
You are able to apply the folder thumb by modifying the &#039;&#039;&#039;\userdata\sources.xml&#039;&#039;&#039; as follows&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line=&#039;line&#039;&amp;gt;&lt;br /&gt;
        &amp;lt;source&amp;gt;&lt;br /&gt;
            &amp;lt;name&amp;gt;Movies&amp;lt;/name&amp;gt;&lt;br /&gt;
            &amp;lt;path pathversion=&amp;quot;1&amp;quot;&amp;gt;F:\Movies\&amp;lt;/path&amp;gt;&lt;br /&gt;
            &amp;lt;allowsharing&amp;gt;true&amp;lt;/allowsharing&amp;gt;&lt;br /&gt;
            &amp;lt;thumbnail&amp;gt;F:\Movies\folder.jpg&amp;lt;/thumbnail&amp;gt;&lt;br /&gt;
        &amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|folder&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 640w x 360h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 16:9&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Artwork Usage Chart =&lt;br /&gt;
The following is a guide only and charts common usage. &amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Artwork is skin dependant and skinners are free to use artwork how and where they choose. Some skins may conform with the following, others may not. &lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
! colspan=&amp;quot;11&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Artwork Usage&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; style=&amp;quot;text-align:right;&amp;quot; |&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center; background-color:#fdfefe&amp;quot; | Movies&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center; background-color:#fdfefe&amp;quot; | Music&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | &lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; style=&amp;quot;text-align:center; background-color:#fdfefe&amp;quot; | TV Shows&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | &lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;width:110px;&amp;quot; |&lt;br /&gt;
! style=&amp;quot;width:150px; background-color:#ddddff&amp;quot;|Movie &lt;br /&gt;
! style=&amp;quot;width:150px; background-color:#ddffdd&amp;quot;|Movie Sets &lt;br /&gt;
! style=&amp;quot;width:150px; background-color:#72d2f7&amp;quot;|Artists &lt;br /&gt;
! style=&amp;quot;width:150px; background-color:#72d2f7&amp;quot;|Albums &lt;br /&gt;
! style=&amp;quot;width:150px; background-color:#ffc7ff&amp;quot;|Music Video &lt;br /&gt;
! style=&amp;quot;width:150px; background-color:#f5f5a1&amp;quot;|TV Show &lt;br /&gt;
! style=&amp;quot;width:150px; background-color:#f5f5a1&amp;quot;|Seasons &lt;br /&gt;
! style=&amp;quot;width:150px; background-color:#f5f5a1&amp;quot;|Episodes &lt;br /&gt;
! style=&amp;quot;width:5px; background-color:#&amp;quot;|&lt;br /&gt;
! style=&amp;quot;width:150px; background-color:#b1d9b6&amp;quot;|Source Folder&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| actor          || {{Yes}} ||  {{No}}  || {{No}}  || {{No}}  || {{No}}  || {{Yes}} || {{No}}  || {{No}}  |||| {{No}}&lt;br /&gt;
|- &lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| back           || {{No}}  ||  {{No}}  || {{No}}  || {{Yes}} || {{No}}  || {{No}}  || {{No}}  || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| banner         || {{Yes}} ||  {{Yes}} || {{Yes}} || {{No}}  || {{Yes}} || {{Yes}} || {{Yes}} || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| characterart   || {{No}}  ||  {{No}}  || {{No}}  || {{No}}  || {{No}}  || {{Yes}} || {{No}}  || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| characterart#  || {{Yes}} ||  {{No}}  || {{No}}  || {{No}}  || {{No}}  || {{No}}  || {{No}}  || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| clearart       || {{Yes}} ||  {{Yes}} || {{Yes}} || {{No}}  || {{Yes}} || {{Yes}} || {{Yes}} || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| clearlogo      || {{Yes}} ||  {{Yes}} || {{Yes}} || {{No}}  || {{Yes}} || {{Yes}} || {{Yes}} || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| discart        || {{Yes}} ||  {{Yes}} || {{Yes}} || {{No}}  || {{Yes}} || {{No}}  || {{No}}  || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| fanart         || {{Yes}} ||  {{Yes}} || {{Yes}} || {{No}}  || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| fanart#        || {{Yes}} ||  {{Yes}} || {{Yes}} || {{No}}  || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| keyart         || {{Yes}} ||  {{Yes}} || {{No}}  || {{No}}  || {{Yes}} || {{Yes}} || {{No}}  || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| landscape      || {{Yes}} ||  {{Yes}} || {{Yes}} || {{No}}  || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| poster         || {{Yes}} ||  {{Yes}} || {{No}}  || {{No}}  || {{Yes}} || {{Yes}} || {{Yes}} || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| spine          || {{No}}  ||  {{No}}  || {{No}}  || {{Yes}} || {{No}}  || {{No}}  || {{No}}  || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| thumb          || {{Yes}} ||  {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || {{No}}  || {{No}}  || {{Yes}} |||| {{Yes}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; “Common usage” here means that the scrapers can return this type of art, and/or it is displayed by one or more skins in the official Kodi repo.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Sample Images =&lt;br /&gt;
Screenshots of various artworks displays.&lt;br /&gt;
&lt;br /&gt;
== Movies ==&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=&amp;quot;500px&amp;quot; heights=&amp;quot;282px&amp;quot;&amp;gt;&lt;br /&gt;
File:Artwork-FanartView02.jpg|Movie fanart&lt;br /&gt;
File:Artwork-PosterView01.jpg|Movie poster&lt;br /&gt;
File:Artwork-Banner02.jpg|Movie banner&lt;br /&gt;
File:Artwork-ClearArt01.jpg|Movie clearart&lt;br /&gt;
File:Artwork-ClearLogo.jpg|Movie clearlogo&lt;br /&gt;
File:Artwork-DiscArt01.jpg|Movie discart&lt;br /&gt;
File:Artwork-Thumbs01.jpg|Movie landscape&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== TV Shows ==&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=&amp;quot;500px&amp;quot; heights=&amp;quot;282px&amp;quot;&amp;gt;&lt;br /&gt;
File:Artwork-PosterView02.jpg|TV show poster&lt;br /&gt;
File:Artwork-FanartView03.jpg|TV show fanart&lt;br /&gt;
File:Artwork-Banner01.jpg|TV show banner&lt;br /&gt;
File:Artwork-ClearArt02.jpg|TV show clearart&lt;br /&gt;
File:Artwork-ClearLogo02.jpg|TV show  clearlogo&lt;br /&gt;
File:Artwork-Landscape01.jpg|TV show landscape&lt;br /&gt;
File:Artwork-CharacterArt01.jpg|TV show characterart&lt;br /&gt;
File:Artwork-EpisodeThumb01.jpg|Episode thumb&lt;br /&gt;
File:Artwork-EpisodeFanart01.jpg|Episode fanart&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Music ==&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=&amp;quot;500px&amp;quot; heights=&amp;quot;282px&amp;quot;&amp;gt;&lt;br /&gt;
File:Artwork-MusicFanart01.jpg|Artist fanart&lt;br /&gt;
File:Artwork-MusicArtist01.jpg|Grid of artist thumb&lt;br /&gt;
File:Artwork-MusicBanner01.jpg|Artist banner and clearlogo&lt;br /&gt;
File:Artwork-TS-clearart-AeonNox5modmaybe.jpg|Artist clearart in center right&lt;br /&gt;
File:Artwork-musiclandscape-EstuaryATF.jpg|Grid of artist landscape&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= References =&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Guides]]&lt;br /&gt;
[[Category:Manual]]&lt;br /&gt;
[[Category:Karellen]]&lt;br /&gt;
[[Category:Music library]]&lt;br /&gt;
[[Category:Video library]]&lt;br /&gt;
[[Category:First time user]]&lt;br /&gt;
[[Category:Advanced topics]]&lt;br /&gt;
[[Category:Quick Start Guide]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Settings/Media/Videos&amp;diff=189187</id>
		<title>Settings/Media/Videos</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Settings/Media/Videos&amp;diff=189187"/>
		<updated>2019-12-25T17:01:49Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: &amp;quot;MSIF&amp;quot; in Kodi 19&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{bigger|This category contains the settings for how information for videos is collected, stored, shown and navigated.}}&lt;br /&gt;
__TOC__&lt;br /&gt;
{{-}}&lt;br /&gt;
== All ==&lt;br /&gt;
[[File:SettingsMediaVideos-leia1.jpg|500px]]&lt;br /&gt;
=== Default select action ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Basic&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| Lets you toggle between &#039;&#039;&#039;Choose&#039;&#039;&#039;, &#039;&#039;&#039;Play&#039;&#039;&#039;, &#039;&#039;&#039;Resume&#039;&#039;&#039; and &#039;&#039;&#039;Show information&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Choose&#039;&#039;&#039;, will select item, eg open a directory in files mode. &lt;br /&gt;
&lt;br /&gt;
On &#039;&#039;&#039;Resume&#039;&#039;&#039; Kodi will automatically resume videos from the last position that you were viewing them, even after restarting the system. &lt;br /&gt;
&lt;br /&gt;
Default is &#039;&#039;&#039;Play&#039;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Use video tags ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Advanced&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| If *.mp4 or *.mkv files do have tags, enable this setting to use them for the library metadata.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Extract video information from files ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Advanced&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| Extract metadata information such as codec and aspect ratio from videos.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Extract thumbnails from video files ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Advanced&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| Extract thumbnails to display in library mode&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Extract chapter thumbnails ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Advanced&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| Extract chapter thummbnails for presentation in the chapters/bookmarks dialogue. This might increase CPU load&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Files ==&lt;br /&gt;
[[File:Settings_media_videos_files.JPG|500px]]&lt;br /&gt;
=== Combine split video items ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Standard&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| Combines multi-part video files, DVD folders or movie folders, down to a single item in the non-library views&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Replace file names with library titles ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Standard&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| When a file is scanned into the library it will display the metadata title instead of the filename&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
== Library ==&lt;br /&gt;
[[File:SettingsMediaVideos-leia2.jpg|500px]]&lt;br /&gt;
=== Show all items entry ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Advanced&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| Show &amp;quot;All items&amp;quot; entry in directory, e.g. &amp;quot;All Albums&amp;quot; or &amp;quot;All seasons&amp;quot;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Show plot for unwatched items ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Basic&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| Show information for unwatched media in the video library or hide them if not selected to prevent spoilers. Available options are: &amp;quot;Movie plot&amp;quot;, &amp;quot;Episode plot&amp;quot; and &amp;quot;Episode thumb&amp;quot;.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Show movie sets ===&lt;br /&gt;
&amp;lt;section begin=&amp;quot;Show movie sets&amp;quot; /&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Standard&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| When enabled, movies that are tagged with a &amp;quot;Movie set&amp;quot; are grouped together under one entry in the movie library. This entry can then be opened to display the individual movies. When disabled, each movie will have its own entry in the movie library, even if it belongs to a set. It has no affect on the Movie Sets node.&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;section end=&amp;quot;Show movie sets&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Include sets containing a single movie ====&lt;br /&gt;
&amp;lt;section begin=&amp;quot;Show movie sets SingleMovie&amp;quot; /&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Standard&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| Can work with, or independently of the previous setting. It is recommended that this setting is enabled&lt;br /&gt;
*When the previous setting is enabled and this setting is enabled, a &amp;quot;Movie set&amp;quot; entry is used even if the movie set contains only a single movie from the set. &lt;br /&gt;
*When the previous setting is enabled and this setting is disabled, a &amp;quot;Movie set&amp;quot; entry is used only if the movie library contains two or more movies from the set.&amp;lt;br&amp;gt;&lt;br /&gt;
*When this setting is enabled with or without the previous setting, sets that contain a single movie become visible in the Movie Set Editor. &lt;br /&gt;
*This setting has no affect on the Movie Sets node&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;section end=&amp;quot;Show movie sets SingleMovie&amp;quot; /&amp;gt;&lt;br /&gt;
{{see|Movie sets}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Flatten hierarchy ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Advanced&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| Romeves the title, genre, etc. nodes from the library view. Selecting a category takes you straight to the title view&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Flatten TV show seasons ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Advanced&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| Removes the TV show season node, toggles between &amp;quot;If only one season&amp;quot; (default), &amp;quot;Always&amp;quot; and &amp;quot;Never&amp;quot;.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Show empty TV shows ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Advanced&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| Shows TV shows with no episodes when browsing through the library&lt;br /&gt;
|} &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Select first unwatched TV show season / episode ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Advanced&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| When entering TV show season or episode views, automatically selects the first unwatched item.&lt;br /&gt;
If viewing seasons, selects the first season with unwatched episodes.&lt;br /&gt;
If viewing episodes, selects the first unwatched episode. Only applies if sort method is set to Episode&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Include &amp;quot;All seasons&amp;quot; and &amp;quot;Specials&amp;quot; ====&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Advanced&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| Whether or not consider the items from &amp;quot;All season&amp;quot; and &amp;quot;Specials in the unwatched item selection&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Download actor thumbnails ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Advanced&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| Gets thumbnails for actors when scanning media.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Changes in Kodi 19 Matrix ==&lt;br /&gt;
=== Movie set information folder ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Standard&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| Select the folder where movie set information (images) are saved locally.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Note:&#039;&#039;&#039;&lt;br /&gt;
| Located at the bottom of the &#039;&#039;&#039;Library&#039;&#039;&#039; section above.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Movie_sets_artwork&amp;diff=189186</id>
		<title>Movie sets artwork</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Movie_sets_artwork&amp;diff=189186"/>
		<updated>2019-12-25T02:07:22Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: add setting &amp;quot;Movie set information folder&amp;quot; in v19&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Artwork_Contents}}&lt;br /&gt;
{{mininav|[[:Category:Video_library|Video Library Index]] |[[Artwork]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;As movie sets comprise a number of movies, dedicated artwork is available that (should) differ from the artwork of the individual movies in the set. This unique movie set artwork can be scraped and displayed while browsing your {{kodi}} library.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
v19 has full support for movie set artwork, as described below.&lt;br /&gt;
&lt;br /&gt;
Changes in v18 enable &#039;&#039;&#039;scraping of online&#039;&#039;&#039; movie set artwork &amp;lt;ref&amp;gt;https://github.com/xbmc/xbmc/pull/14667&amp;lt;/ref&amp;gt;, but add-ons are still required to &#039;&#039;&#039;scan local&#039;&#039;&#039; movie set artwork. While in v17 and prior, {{Kodi}} has limited functionality for movie set artwork. Users were required to either use the &#039;&#039;&#039;&#039;&#039;[[Artwork#Kodi-_Choose_Art|Choose Art]]&#039;&#039;&#039;&#039;&#039; method or use an add-on to source and cache movie set artwork- such as &#039;&#039;&#039;&#039;&#039;[https://forum.kodi.tv/showthread.php?tid=258886 Artwork Beef]&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Scanning &amp;amp; Scraping =&lt;br /&gt;
&lt;br /&gt;
== Scraping ==&lt;br /&gt;
v18 introduces the ability to scrape extended artwork from the online information providers without the use of additional add-ons. It is considered an advanced feature.&lt;br /&gt;
&lt;br /&gt;
To use this feature requires completing the following three steps...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: &#039;&#039;&#039;1.&#039;&#039;&#039; Add the below code to the &#039;&#039;&#039;[[Advancedsettings.xml| advancedsettings.xml]]&#039;&#039;&#039; file, ensuring you do not duplicate any tags if they already exist... eg &#039;&#039;&amp;lt;advancedsettings&amp;gt;&amp;lt;/advancedsettings&amp;gt;, &amp;lt;videolibrary&amp;gt;&amp;lt;/videolibrary&amp;gt;&#039;&#039;&lt;br /&gt;
: &#039;&#039;&#039;2.&#039;&#039;&#039; Install the &#039;&#039;&#039;[[Add-on:Universal_Movie_Scraper|Universal Movie Scraper]]&#039;&#039;&#039; and adjust the settings to enable scraping of Extended artwork as they are disabled by default. (see image)&lt;br /&gt;
: &#039;&#039;&#039;3.&#039;&#039;&#039; Restart {{kodi}} and scrape movies as per usual. Collection artwork will be scraped and cached for use in {{kodi}}&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Note:&#039;&#039;&#039; The code box below adds common extended artwork that most skins will utilise. It is your choice which extended artwork you add. If you add additional to that shown, ensure the skin has support to display it.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line=&#039;line&#039;&amp;gt;&lt;br /&gt;
&amp;lt;advancedsettings&amp;gt;&lt;br /&gt;
	&amp;lt;videolibrary&amp;gt;&lt;br /&gt;
		&amp;lt;moviesetextraart&amp;gt;&lt;br /&gt;
			&amp;lt;arttype&amp;gt;banner&amp;lt;/arttype&amp;gt;&lt;br /&gt;
			&amp;lt;arttype&amp;gt;clearart&amp;lt;/arttype&amp;gt;&lt;br /&gt;
			&amp;lt;arttype&amp;gt;clearlogo&amp;lt;/arttype&amp;gt;&lt;br /&gt;
			&amp;lt;arttype&amp;gt;discart&amp;lt;/arttype&amp;gt;&lt;br /&gt;
         &amp;lt;arttype&amp;gt;fanart1&amp;lt;/arttype&amp;gt; &amp;lt;!-- Multiple fanart --&amp;gt;&lt;br /&gt;
         &amp;lt;arttype&amp;gt;fanart2&amp;lt;/arttype&amp;gt; &amp;lt;!-- Add as many as required. --&amp;gt;&lt;br /&gt;
         &amp;lt;arttype&amp;gt;fanart3&amp;lt;/arttype&amp;gt; &lt;br /&gt;
			&amp;lt;arttype&amp;gt;keyart&amp;lt;/arttype&amp;gt;&lt;br /&gt;
			&amp;lt;arttype&amp;gt;landscape&amp;lt;/arttype&amp;gt;&lt;br /&gt;
		&amp;lt;/moviesetextraart&amp;gt;&lt;br /&gt;
	&amp;lt;/videolibrary&amp;gt;&lt;br /&gt;
&amp;lt;/advancedsettings&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed-overlay&amp;quot; widths=&amp;quot;500px&amp;quot; heights=&amp;quot;283px&amp;quot;&amp;gt;&lt;br /&gt;
File:UniversalMovieScraper02.jpg|Enable the Extra Artwork options.&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Scanning Local Artwork ==&lt;br /&gt;
Local movie set artwork is saved in the [[Settings/Media/Videos#Movie_set_information_folder|Movie Set Information Folder]] starting with Kodi v19. The artwork whitelist above must be configured. &#039;&#039;&#039;&#039;&#039;[https://forum.kodi.tv/showthread.php?tid=258886 Artwork Beef]&#039;&#039;&#039;&#039;&#039; can be used for Kodi version 16-18.&lt;br /&gt;
&lt;br /&gt;
To set up the local artwork, use the following method...&lt;br /&gt;
# Create the Central Movie Set folder&lt;br /&gt;
# Create sub-folders for each movie set&lt;br /&gt;
# Name the movie set sub-folder &#039;&#039;&#039;exactly&#039;&#039;&#039; as the collection is named in {{kodi}}. This is important or else the movie set folder will be ignored.&lt;br /&gt;
# Save artwork to the sub-folder using &#039;&#039;&#039;short&#039;&#039;&#039; filenames. (See image)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=&amp;quot;800px&amp;quot; heights=&amp;quot;450px&amp;quot;&amp;gt;&lt;br /&gt;
File:LocalMovieSetsArt01.jpg|&#039;&#039;&#039;&#039;&#039;Folder structure and file naming for central movie set artwork folder&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= References =&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
{{updated|18}}&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Guides]]&lt;br /&gt;
[[Category:Manual]]&lt;br /&gt;
[[Category:Karellen]]&lt;br /&gt;
[[Category:Video library]]&lt;br /&gt;
[[Category:First time user]]&lt;br /&gt;
[[Category:Advanced topics]]&lt;br /&gt;
[[Category:Quick Start Guide]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Settings/Media/Videos&amp;diff=189185</id>
		<title>Settings/Media/Videos</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Settings/Media/Videos&amp;diff=189185"/>
		<updated>2019-12-25T01:55:10Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* Library */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{bigger|This category contains the settings for how information for videos is collected, stored, shown and navigated.}}&lt;br /&gt;
__TOC__&lt;br /&gt;
{{-}}&lt;br /&gt;
== All ==&lt;br /&gt;
[[File:SettingsMediaVideos-leia1.jpg|500px]]&lt;br /&gt;
=== Default select action ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Basic&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| Lets you toggle between &#039;&#039;&#039;Choose&#039;&#039;&#039;, &#039;&#039;&#039;Play&#039;&#039;&#039;, &#039;&#039;&#039;Resume&#039;&#039;&#039; and &#039;&#039;&#039;Show information&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Choose&#039;&#039;&#039;, will select item, eg open a directory in files mode. &lt;br /&gt;
&lt;br /&gt;
On &#039;&#039;&#039;Resume&#039;&#039;&#039; Kodi will automatically resume videos from the last position that you were viewing them, even after restarting the system. &lt;br /&gt;
&lt;br /&gt;
Default is &#039;&#039;&#039;Play&#039;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Use video tags ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Advanced&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| If *.mp4 or *.mkv files do have tags, enable this setting to use them for the library metadata.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Extract video information from files ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Advanced&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| Extract metadata information such as codec and aspect ratio from videos.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Extract thumbnails from video files ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Advanced&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| Extract thumbnails to display in library mode&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Extract chapter thumbnails ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Advanced&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| Extract chapter thummbnails for presentation in the chapters/bookmarks dialogue. This might increase CPU load&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Files ==&lt;br /&gt;
[[File:Settings_media_videos_files.JPG|500px]]&lt;br /&gt;
=== Combine split video items ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Standard&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| Combines multi-part video files, DVD folders or movie folders, down to a single item in the non-library views&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Replace file names with library titles ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Standard&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| When a file is scanned into the library it will display the metadata title instead of the filename&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
== Library ==&lt;br /&gt;
[[File:SettingsMediaVideos-leia2.jpg|500px]]&lt;br /&gt;
=== Show all items entry ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Advanced&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| Show &amp;quot;All items&amp;quot; entry in directory, e.g. &amp;quot;All Albums&amp;quot; or &amp;quot;All seasons&amp;quot;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Show plot for unwatched items ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Basic&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| Show information for unwatched media in the video library or hide them if not selected to prevent spoilers. Available options are: &amp;quot;Movie plot&amp;quot;, &amp;quot;Episode plot&amp;quot; and &amp;quot;Episode thumb&amp;quot;.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Show movie sets ===&lt;br /&gt;
&amp;lt;section begin=&amp;quot;Show movie sets&amp;quot; /&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Standard&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| When enabled, movies that are tagged with a &amp;quot;Movie set&amp;quot; are grouped together under one entry in the movie library. This entry can then be opened to display the individual movies. When disabled, each movie will have its own entry in the movie library, even if it belongs to a set. It has no affect on the Movie Sets node.&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;section end=&amp;quot;Show movie sets&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Include sets containing a single movie ====&lt;br /&gt;
&amp;lt;section begin=&amp;quot;Show movie sets SingleMovie&amp;quot; /&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Standard&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| Can work with, or independently of the previous setting. It is recommended that this setting is enabled&lt;br /&gt;
*When the previous setting is enabled and this setting is enabled, a &amp;quot;Movie set&amp;quot; entry is used even if the movie set contains only a single movie from the set. &lt;br /&gt;
*When the previous setting is enabled and this setting is disabled, a &amp;quot;Movie set&amp;quot; entry is used only if the movie library contains two or more movies from the set.&amp;lt;br&amp;gt;&lt;br /&gt;
*When this setting is enabled with or without the previous setting, sets that contain a single movie become visible in the Movie Set Editor. &lt;br /&gt;
*This setting has no affect on the Movie Sets node&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;section end=&amp;quot;Show movie sets SingleMovie&amp;quot; /&amp;gt;&lt;br /&gt;
{{see|Movie sets}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Flatten hierarchy ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Advanced&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| Romeves the title, genre, etc. nodes from the library view. Selecting a category takes you straight to the title view&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Flatten TV show seasons ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Advanced&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| Removes the TV show season node, toggles between &amp;quot;If only one season&amp;quot; (default), &amp;quot;Always&amp;quot; and &amp;quot;Never&amp;quot;.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Show empty TV shows ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Advanced&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| Shows TV shows with no episodes when browsing through the library&lt;br /&gt;
|} &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Select first unwatched TV show season / episode ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Advanced&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| When entering TV show season or episode views, automatically selects the first unwatched item.&lt;br /&gt;
If viewing seasons, selects the first season with unwatched episodes.&lt;br /&gt;
If viewing episodes, selects the first unwatched episode. Only applies if sort method is set to Episode&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Include &amp;quot;All seasons&amp;quot; and &amp;quot;Specials&amp;quot; ====&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Advanced&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| Whether or not consider the items from &amp;quot;All season&amp;quot; and &amp;quot;Specials in the unwatched item selection&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Download actor thumbnails ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Advanced&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| Gets thumbnails for actors when scanning media.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Movie set information folder ===&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=120px | {{nowrap|&#039;&#039;&#039;Settings level:&#039;&#039;&#039;}} &lt;br /&gt;
| Standard&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
| Select the folder where movie set information (images) are saved locally.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Note:&#039;&#039;&#039;&lt;br /&gt;
| Introduced in Kodi 19 Matrix.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Movie_sets&amp;diff=189184</id>
		<title>Movie sets</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Movie_sets&amp;diff=189184"/>
		<updated>2019-12-25T01:52:44Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* Movie Set Artwork */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[Video library]]|[[Video management|Management]] }}&lt;br /&gt;
{{See also|Linking movies to TV shows|Movie sets|Season rename|NFO files|}}&lt;br /&gt;
&lt;br /&gt;
= Description =&lt;br /&gt;
[[File:MovieSets01.jpg|400px|right]]&lt;br /&gt;
&amp;lt;section begin=intro /&amp;gt;A Movie Set, also known as movie collection, film or movie series, film or movie franchise, and cinematic universe is a collection of related films that are part of the same fictional universe. The normal scraper sites include metadata for Movie Sets which is scraped by {{kodi}} and creates the Movie Set in your library. Movie sets are versatile and can be created to suit your own preferences as they are easily edited in {{kodi}} using the built in sets editor or by using [[NFO files]].&amp;lt;section end=intro /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Example Movie Set usage:&lt;br /&gt;
*According to TMDB, the three movies from The Lord of the Rings are considered a set. The three movies from The Hobbit are considered as another set. This would create two movie sets in {{kodi}}. &#039;&#039;(scraper created movie set)&#039;&#039;&lt;br /&gt;
*Some users will combine these two sets into one set. The set now contains six movies and can be renamed to The Middle Earth Collection or similar. &#039;&#039;(created with movie set editor or nfo files)&#039;&#039;&lt;br /&gt;
*Movie Sets can be used to collate separate versions of a movie- eg Willy Wonka &amp;amp; the Chocolate Factory (1971) and Charlie and the Chocolate Factory (2005) &#039;&#039;(created with movie set editor or nfo files)&#039;&#039;&lt;br /&gt;
*Movie Sets can also be used to stack multiple versions of the same movie- eg Blade Runner (US Theatrical Releasae}, Blade Runner (International Theatrical Release), Blade Runner (Directors Cut) etc. &#039;&#039;(created with movie set editor or nfo files)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
{{note|&#039;&#039;&#039;Movies can only be used in one set at a time&#039;&#039;&#039;. To use movies in more than one collection requires a different method using Tags. &#039;&#039;&#039;&#039;&#039;See: [[video library tags]]&#039;&#039;&#039;&#039;&#039;.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Settings =&lt;br /&gt;
The following are the available settings to control Movie Sets.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Movie Set Node ==&lt;br /&gt;
The Movie Set Node is accessed from the Movies Home Screen. Along the top row of Categories, the icon &#039;&#039;&#039;Sets&#039;&#039;&#039; will become visible when the library contains Movie Sets. Selecting the Sets icon will open the Movie Sets node.&lt;br /&gt;
&lt;br /&gt;
As long as Movie Set metadata has been scraped, then the Movie Set node will be automatically populated. The only available settings when using the Movie Sets Node are those that are accessed by the Sidebar Menu.&lt;br /&gt;
&lt;br /&gt;
{{See also|Basic_controls#Sidebar_menu}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Movie Library ==&lt;br /&gt;
[[File:SettingsMediaVideos-leia2.jpg|400px|right]]&lt;br /&gt;
When viewing your movies from the main movie listing, or from a movie node such as Genre, Year, Country, etc, it is possible to show Movie Sets by adjusting settings as follows...&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Show Movie Sets&#039;&#039;&#039;&lt;br /&gt;
{{#lst:Settings/Media/Videos|Show movie sets}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Include sets containing a single movie&#039;&#039;&#039;&lt;br /&gt;
{{#lst:Settings/Media/Videos|Show movie sets SingleMovie}}&lt;br /&gt;
{{see also|Settings/Media/Videos#Library|label 1=Video Library Settings}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Creating &amp;amp; Editing Movie Sets =&lt;br /&gt;
The following methods are available for creating and editing Movie Sets. You cannot use the Scraper method to edit movie sets.&lt;br /&gt;
&lt;br /&gt;
{{red|&#039;&#039;&#039;Each movie required in a Movie Set must have Movie Set metadata.&#039;&#039;&#039;}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Scraper ==&lt;br /&gt;
Using the native {{kodi}} scraper will automatically download Movie Set metadata and create the Movie Set. {{kodi}} relies on the scraper site for this information.&lt;br /&gt;
&lt;br /&gt;
The naming of the set, and the movies contained within the set, is controlled by the scraper site. These variables can be edited using one of the following two methods.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== {{kodi}} Movie Set Editor ==&lt;br /&gt;
{{Kodi}} has an inbuilt Movie Set Editor which can be used to create and edit Movie Sets. The following guide and images should assist in locating and using the Editor. The Editor cannot be accessed from Videos&amp;gt;Files. It must be accessed from the Movie Library. Movies must have already been scraped into the library.&lt;br /&gt;
&lt;br /&gt;
{{red|&#039;&#039;&#039;Note:&#039;&#039;&#039; Ensure you have enabled the setting &#039;&#039;&#039;&#039;&#039;[[Videos#Include_sets_containing_a_single_movie| Include sets containing a single movie]]&#039;&#039;&#039;&#039;&#039; otherwise sets with a single movie will not be listed in the Movie Set Editor shown in Image 3 above. This setting can be enabled without enabling the parent setting &#039;&#039;Show movie sets&#039;&#039;.}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Manage individual movies in a Movie Set:&#039;&#039;&#039;&lt;br /&gt;
#&#039;&#039;Image 1&#039;&#039;- Highlight the movie to be added to a Movie Set and call up the &#039;&#039;&#039;&#039;&#039;[[Basic_controls#Context_Menu|Context Menu]]&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
#&#039;&#039;Image 1&#039;&#039;- Select &#039;&#039;&#039;&#039;&#039;Manage&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
#&#039;&#039;Image 2&#039;&#039;- Select &#039;&#039;&#039;&#039;&#039;Manage movie set&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
#&#039;&#039;Image 3&#039;&#039;- This is the Movie Set Editor. From this screen, your options are as follows:&lt;br /&gt;
##&#039;&#039;&#039;&#039;&#039;No set&#039;&#039;&#039;&#039;&#039;- The first option from the list. Allows you to remove an existing movie from a movie set.&lt;br /&gt;
##&#039;&#039;&#039;&#039;&#039;Keep current set&#039;&#039;&#039;&#039;&#039; - Allows you to exit the Editor without making any changes&lt;br /&gt;
##&#039;&#039;&#039;&#039;&#039;&amp;lt;List of other collections&amp;gt;&#039;&#039;&#039;&#039;&#039; - Allows you to move the selected movie from the current Movie Set and place it into another, existing, Movie Set&lt;br /&gt;
##&#039;&#039;&#039;&#039;&#039;Add movie to a new collection&#039;&#039;&#039;&#039;&#039; - This is the button above the &#039;&#039;&#039;&#039;&#039;Cancel&#039;&#039;&#039;&#039;&#039; button. The button name is not fully visible due to the length of the button name. Pressing this button calls up the on-screen keyboard which allows you to type the name of the new Movie Set. Selecting Enter will then create the Movie Set and place the currently selected movie into the new Set. Additional movies can be placed into the new Movie Collection by repeating steps 1, 2, 3 and 4.3.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=450px heights=250px&amp;gt;&lt;br /&gt;
File:MovieSets02.jpg|Image 1- Call up the Context Menu and select &#039;&#039;Manage...&#039;&#039;&lt;br /&gt;
File:MovieSets03.jpg|Image 2- Select &#039;&#039;Manage movie set&#039;&#039;&lt;br /&gt;
File:MovieSets04.jpg|Image 3- The Movie Set Editor&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Manage bulk movies in a Movie Set:&#039;&#039;&#039;&lt;br /&gt;
#If your set does not exist, then create your Movie Set as shown above using &#039;&#039;&#039;&#039;&#039;Add movie to a new collection&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
#Highlight the &#039;&#039;&#039;Movie Set&#039;&#039;&#039; from the Sets listing and call up the &#039;&#039;&#039;&#039;&#039;[[Basic_controls#Context_Menu|Context Menu]]&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
#Select &#039;&#039;&#039;&#039;&#039;Manage&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
#Select &#039;&#039;&#039;&#039;&#039;Manage movie set&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
#This list displays all movies in the library including movies already in another existing set&lt;br /&gt;
#Select each movie to be added or removed from the set. A selected movie will be in &#039;&#039;&#039;{{green|green coloured font}}&#039;&#039;&#039;. &lt;br /&gt;
#Selecting a movie already in a set will remove it from the existing set once you select &#039;&#039;&#039;OK&#039;&#039;&#039;&lt;br /&gt;
#Select &#039;&#039;&#039;OK&#039;&#039;&#039; to save your changes&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== nfo Files ==&lt;br /&gt;
Using nfo files allows you to add Movie Set data to specific movies and then scrape into the library.&lt;br /&gt;
&lt;br /&gt;
The following two XML tags are used in Movie Sets:&lt;br /&gt;
#&#039;&#039;&amp;lt;name&amp;gt;&amp;lt;/name&amp;gt;&#039;&#039;- The name of the Set. Must be identical for each movie nfo you intend to place into the Set otherwise multiple, similarly named, Movie Sets will be created.&lt;br /&gt;
#&#039;&#039;&amp;lt;overview&amp;gt;&amp;lt;/overview&amp;gt;&#039;&#039; - Allows the entry of a Movie Set synopsis. Requires a compatible skin to display the overview. As of 7 January 2018, the scrapers were modified to scrape Movie Set Overview.&lt;br /&gt;
&lt;br /&gt;
The code is entered into the nfo file as follows.&lt;br /&gt;
 &amp;lt;set&amp;gt;&lt;br /&gt;
    &amp;lt;name&amp;gt;&amp;lt;/name&amp;gt;&lt;br /&gt;
    &amp;lt;overview&amp;gt;&amp;lt;/overview&amp;gt;&lt;br /&gt;
 &amp;lt;/set&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;&#039;&#039;See: [[NFO_files]]&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Movie Set Overview =&lt;br /&gt;
It was possible to add Movie Set Overview information to Sets with the use of NFO Files. As of January 2018, TheMovieDB scraper was updated to enable scraping of Movie Set Overviews. These are a short synopsis of the Set as a whole.&lt;br /&gt;
&lt;br /&gt;
Most skins will display the Overview information. But, as this is a recently added feature, some skins may have glitches with displaying the overview. Most commonly because it overlays other information. The skin developers are rectifying these issues as they are reported.&lt;br /&gt;
&lt;br /&gt;
The following is the method to add the Overview to Movie Sets&lt;br /&gt;
;Adding new movies to a new Set&lt;br /&gt;
:No special procedure required. Scrape as per normal. Once the second movie in the set is added, the set will become visible and the Overview will be displayed in supported views and skins&lt;br /&gt;
&lt;br /&gt;
;Adding Overview to existing Movie Sets&lt;br /&gt;
:To add Movie Set Overview to existing sets, remove the Set from the Sets node via the Manage &#039;&#039;&#039;&#039;&#039;[[Basic_controls#Context_Menu|context menu]]&#039;&#039;&#039;&#039;&#039;, then refresh each movie that belongs in that set&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Sort Title =&lt;br /&gt;
[[File:MovieSets05.jpg|400px|right]]&lt;br /&gt;
{{kodi}} is able to sort movie lists by a number of different parameters. The more common sort orders available for movies are...&lt;br /&gt;
*Year- This is based on the year of release of the movie &lt;br /&gt;
*Title- Standard alphabetical sorting of movies &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Many enthusiasts prefer to sort their Sets by Canonical Order. This is a sort order based on the story timeline. This means that prequel movies, made after the original movie, would come first in the sort order. &lt;br /&gt;
&lt;br /&gt;
An example of this is combining The Hobbit and The Lord of the Rings into one set. &lt;br /&gt;
*Using Year sort would list The Lord of the Rings first, which is incorrect as The Hobbit should be listed first, according to the story timeline&lt;br /&gt;
*Using Title sort will list The Hobbit first and The Lord of the Rings would be listed second, but the three movies within each film group will be sorted incorrectly&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Although {{kodi}} has no Canonical Order option, it is possible to force this order by adding a &#039;&#039;&#039;&#039;&#039;Sort Title&#039;&#039;&#039;&#039;&#039; to the movie entry. See image to the right which shows Canonical Order of the movies, whereas the first image at the top of the page in [[Movie_sets#Description|1 Description]] shows normal alphabetical listing.&lt;br /&gt;
&lt;br /&gt;
{{red|&#039;&#039;&#039;Be aware that using Sort Order will also affect the Title sort order in the main library view. In most cases, this is preferable.&#039;&#039;&#039;}}&amp;lt;br /&amp;gt;&lt;br /&gt;
{{red|&#039;&#039;&#039;The Sort Title is NOT displayed in any movie list. It is a hidden title used internally by {{kodi}}.&#039;&#039;&#039;}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following table shows a Sort Title renaming using The Hobbit and The Lord of the Rings as an example. Only use suffix numbering. Using prefix numbering will send all movies with prefix numbering to the top of the Library View list.&lt;br /&gt;
&lt;br /&gt;
:{|class=&amp;quot;prettytable&amp;quot;&lt;br /&gt;
! Original Title &lt;br /&gt;
!Sort Title &lt;br /&gt;
Recommended&lt;br /&gt;
|-&lt;br /&gt;
| The Hobbit: An Unexpected Journey (2012) || Hobbit 01&lt;br /&gt;
|-&lt;br /&gt;
| The Hobbit: The Desolation of Smaug (2013) || Hobbit 02&lt;br /&gt;
|-&lt;br /&gt;
| The Hobbit: The Battle of the Five Armies (2014) || Hobbit 03&lt;br /&gt;
|-&lt;br /&gt;
| The Lord of the Rings: The Fellowship of the Ring (2001) || Lord of the Rings 01&lt;br /&gt;
|-&lt;br /&gt;
| The Lord of the Rings: The Two Towers (2002) || Lord of the Rings 02&lt;br /&gt;
|-&lt;br /&gt;
| The Lord of the Rings: The Return of the King (2003) || Lord of the Rings 03&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The following are the two methods that enable adding Sort Titles to movies.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sort Title Editor ==&lt;br /&gt;
{{Kodi}} has an inbuilt Sort Order Editor. The following guide and images should assist in locating and using the Editor. The Editor cannot be accessed from Videos&amp;gt;Files. It must be accessed from the Movie Library. Movies must have already been scraped into the library.&lt;br /&gt;
&lt;br /&gt;
#&#039;&#039;Image 1&#039;&#039;- Highlight the movie to be edited. Call up the Context Menu&lt;br /&gt;
#&#039;&#039;Image 1&#039;&#039;- Select &#039;&#039;&#039;&#039;&#039;Manage...&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
#&#039;&#039;Image 2&#039;&#039;- Select &#039;&#039;&#039;&#039;&#039;Edit sort title&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
#Enter the new title.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=450px heights=250px&amp;gt;&lt;br /&gt;
File:MovieSets02.jpg|Image 1- Call up the Context Menu and select &#039;&#039;Manage...&#039;&#039;&lt;br /&gt;
File:MovieSets03.jpg|Image 2- Select &#039;&#039;Edit sort title&#039;&#039;&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== nfo Files ==&lt;br /&gt;
Using nfo files allows you to add a Sort title to specific movies and then scrape into the library.&lt;br /&gt;
&lt;br /&gt;
The following XML tag is used:&lt;br /&gt;
*&#039;&#039;&amp;lt;sorttitle&amp;gt;&amp;lt;/sorttitle&amp;gt; &#039;&#039;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;&#039;&#039;See: [[NFO_files]]&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Movie Set Artwork =&lt;br /&gt;
Up to v17.6, there is no facility to scrape Movie Set Artwork. &lt;br /&gt;
&lt;br /&gt;
v18 introduces scraping of Movie Set artwork. v19 allows scanning local Movie Set artwork.&lt;br /&gt;
:&#039;&#039;&#039;&#039;&#039;See: [[Movie_sets_artwork| Movie Set Artwork]]&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
= Cinematic Universe =&lt;br /&gt;
{{#lst:HOW-TO:Movie_universe|intro}}&lt;br /&gt;
:&#039;&#039;&#039;&#039;&#039;See: [[HOW-TO:Movie universe]]&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Guides]]&lt;br /&gt;
[[Category:Manual]]&lt;br /&gt;
[[Category:Karellen]]&lt;br /&gt;
[[Category:Video library]]&lt;br /&gt;
[[Category:First time user]]&lt;br /&gt;
[[Category:Advanced topics]]&lt;br /&gt;
[[Category:Quick Start Guide]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Artwork_types&amp;diff=186850</id>
		<title>Artwork types</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Artwork_types&amp;diff=186850"/>
		<updated>2019-12-14T15:19:03Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* Video Library */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Artwork_Contents}}&lt;br /&gt;
{{mininav|[[Video library]] {{l2| [[Music library]] }}| [[Artwork]] }}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Common Art Types =&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;This page describes the common types of artwork used by {{kodi}} skins, scrapers and other art add-ons, where they are used and their specifications. See the linked pages for information on how to use them in {{kodi}}.&lt;br /&gt;
&lt;br /&gt;
With the release of v18, the lines between basic and extended artwork have been blurred. All artwork has an artwork &#039;&#039;&#039;type&#039;&#039;&#039; and is treated the same as the traditional &#039;&#039;thumb or poster&#039;&#039; and &#039;&#039;fanart&#039;&#039;. If a skin has been coded to recognise an artwork type, and the artwork is scanned into {{kodi}}, then it will be displayed.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note: &#039;&#039;&#039;All resolutions are suggestions and roughly fall in line with the sizing at the scraper sites. You may modify the resolution to suit your own needs, but the aspect ratio must be maintained otherwise the image may undergo stretching, squashing or cropping when viewed in {{kodi}}. If you intend to share your artwork, check the scraper sites to ensure your artworks are within their minimum and maximum limits.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== actor ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
The Actor artwork is a portrait of an actor for display in the cast information pages. &lt;br /&gt;
&lt;br /&gt;
The files are named as  &#039;&#039;&#039;&#039;&#039;&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&#039;&#039;&#039;&#039;&#039; and are saved in the dedicated &#039;&#039;&#039;.actors&#039;&#039;&#039; folder in the movie folder and tv show folder.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1000w x 1500h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 2:3&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== back ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Music_artwork|Music- Albums artwork]]|color=#72d2f7}}&lt;br /&gt;
&lt;br /&gt;
This is the album back cover, which often includes a track listing, though the design varies. They are often used in detail views focused on a single album.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|back&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1000w x 1000h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 1:1&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== banner ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music_artwork|Music- Artists artwork]]|color=#72d2f7}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
In the video library, banners are wide and short images that contain recognizable characters or props from the video and typically includes a clearly visible logo or the name of the movie, movie set or tv show.&lt;br /&gt;
&lt;br /&gt;
In the music library it contains the artist or band members and typically includes a clearly visible logo or the name of the artist/band&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|banner&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg or png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1000w x 185h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 200:37&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== characterart ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
Characterart are png transparent images of iconic characters or objects from the show. Not in common use in {{kodi}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|characterart&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 512w x 512h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 1:1&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| Yes&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== characterart# ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
&lt;br /&gt;
This is multiple character art for Movies. It has the same concept as character art for TV-Shows described above. In contrast the artwork has no official conventions in terms of resolution and aspect ratio. This is newer but already accessible from &#039;&#039;&#039;&#039;&#039;[https://www.kyradb.com www.kyradb.com]&#039;&#039;&#039;&#039;&#039;. It has also been implemented in &#039;&#039;&#039;&#039;&#039;[https://forum.kodi.tv/showthread.php?tid=258886 Artwork Beef]&#039;&#039;&#039;&#039;&#039; and some skins &amp;lt;ref&amp;gt;https://forum.kodi.tv/showthread.php?tid=258886&amp;amp;pid=2866420#pid2866420&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
It could be used as single artwork named &amp;quot;characterart&amp;quot; or multiple artwork named &amp;quot;characterart1&amp;quot;, &amp;quot;characterart2&amp;quot;, and so on with the number increasing for each artwork. The number can increase to 10 and beyond, but numbers cannot be zero-padded and each number needs a corresponding whitelist entry in the advancedsettings.xml file.&lt;br /&gt;
&lt;br /&gt;
More information and sample content can be found in the &#039;&#039;&#039;&#039;&#039;[https://forum.kodi.tv/showthread.php?tid=342468 official forum thread]&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|characterart&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| variable&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| variable&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| Yes&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== clearart ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music_artwork|Music- Artists artwork]]|color=#72d2f7}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
Clearart have a transparent background with recognizable characters or props from the video along with a logo or name and its transparent background allows it to be overlaid images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|clearart&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1000w x 562h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 16:9&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| Yes&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== clearlogo ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music_artwork|Music- Artists artwork]]|color=#72d2f7}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
Logos typically use the distinctive font associated with the video and is uncluttered by other images. The transparent background allows it to be overlaid images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|clearlogo&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 800w x 310h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 80:31&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| Yes&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== discart ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music_artwork|Music- Albums artwork]]|color=#72d2f7}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
&lt;br /&gt;
Discart replicates the picture on the physical Blu-ray or other disc. Although the disc artwork is round, the image itself is square and the disc image is placed in the center on a transparent background.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|discart&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1000w x 1000h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 1:1&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| Yes&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== fanart ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music_artwork|Music- Artists artwork]]|color=#72d2f7}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
They are used as full screen displays.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|fanart&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg or png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1920w x 1080h&amp;lt;br&amp;gt;&lt;br /&gt;
3840w x 2160h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 16:9&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: For the Music library, the file names recognised by {{Kodi}} and loaded as local fanart can be configured by entries in the &#039;&#039;[[Advancedsettings.xml#fanart|advancedsettings.xml]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== fanart# ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music_artwork|Music- Artists artwork]]|color=#72d2f7}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
This is Multiple fanart. It has the same specifications as fanart in the previous section.&lt;br /&gt;
&lt;br /&gt;
Multiple fanart is an alternative to the &amp;quot;extrafanart&amp;quot; folders. Multiple fanart adds all of the fanart images to the Kodi library, and they are treated just like any other artwork type. This is newer and not supported in as many skins as extrafanart, but can be overcome with the use of &#039;&#039;&#039;&#039;&#039;[https://forum.kodi.tv/showthread.php?tid=258886 Artwork Beef]&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Multiple additional fanart is named &amp;quot;fanart1&amp;quot;, &amp;quot;fanart2&amp;quot;, and so on with the number increasing for each artwork. The number can increase to 10 and beyond, but numbers cannot be zero-padded and each number needs a corresponding whitelist entry in the advancedsettings.xml file. The advantage is improved performance and behavior.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== keyart ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
Keyart is a poster without text or a logo. This is useful as a separate item in a skinner&#039;s toolbox as it can be paired with a clearlogo or large text title elsewhere on the window, and without text it is less distracting in the background or half-obscured, similar to fanart.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|keyart&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1000w x 1500h&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 2:3&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== landscape ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music_artwork|Music- Artists artwork]]|color=#72d2f7}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
Landscape images are specially made 16x9 images that contain recognizable characters or props from the movie and a logo. They are used in certain page layouts for browsing. If the Landscape image is not available, skins can make passable replacements by using fanart and overlaying the clearlogo.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|landscape&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1000w x 562h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 16:9&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== poster ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
Posters replicates the movie posters often seen in cinema complexes, or the front cover of home video releases, and contain a clearly visible logo or name of the video.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|poster&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg or png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1000w x 1500h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 2:3&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== poster# - character poster sets ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
&lt;br /&gt;
This is multiple posters and has the same specifications as Posters above. &lt;br /&gt;
&lt;br /&gt;
These multiple posters are released as a set which displays the characters of the movie. Each poster in the set highlights one character and there can be up to 20 poster per movie. There can be multiple sets per movie, each set differing in style. Each poster in the set is designed to have a fixed position order, usually because they can be placed edge to edge to create a larger artwork.&lt;br /&gt;
&lt;br /&gt;
The intention is that they are displayed in a multiimage sideshow. More information and examples can be found [https://forum.kodi.tv/showthread.php?tid=345299 in this thread].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== spine ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Music_artwork|Music- Albums artwork]]|color=#72d2f7}}&lt;br /&gt;
&lt;br /&gt;
Album spines replicate the album spine found on standard CD cases. They typically have the name of the album and artist, but are too thin to have much of a design beyond continuing the front or back image. They are often used as thin identifiers for unfocused items in a list of albums.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|spine&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg or png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 50w x 1000h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 1:20&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== thumb ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Thumb&#039;&#039; is the most basic art type (and the oldest historically) used by {{Kodi}} skins. The properties differ depending on the area of {{kodi}} it is being used in. Skins often show this type of art both full size, and also as a small icon alongside each item in a list.&lt;br /&gt;
&lt;br /&gt;
=== Video Library ===&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
This art type hold thumbnails that are still images from the movie itself, and can be generated from the video file in your library. They are also used as images for episodes in TV Shows.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|thumb&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 960w x 540h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 16:9&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Music Library ===&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Music_artwork|Music- Artists artwork]]|color=#72d2f7}}&lt;br /&gt;
{{highlight|[[Music_artwork|Music- Albums artwork]]|color=#72d2f7}}&lt;br /&gt;
{{highlight|[[Music_artwork|Source Folder Icons]]|color=#b1d9b6}}&lt;br /&gt;
&lt;br /&gt;
This art type holds high quality images of the album front cover or square (or near to square) artist images. The artist images usually show the whole band without any text or logos. Kodi will recognise a variety of file names and load them as a &#039;&#039;thumb&#039;&#039;, these file names can be adjusted by entries in &#039;&#039;[[Advancedsettings.xml#musicthumbs|advancedsettings.xml]]&#039;&#039;. The export facility will export this art type as &#039;&#039;folder.jpg&#039;&#039; which may mean duplicated artwork if you used the thumb filename in local art and export artwork to the same location. &lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|folder, cover or thumb&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 500w x 500h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 1:1&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Other Types =&lt;br /&gt;
This section lists other artwork types that are...&lt;br /&gt;
# Still in the experimental stage, or&lt;br /&gt;
# Still in use, but being phased out, and&lt;br /&gt;
# Used by only a small number of skins at this time, usually for one of the previous two reasons&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Animated Artwork ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
Still experimental, but {{kodi}} has basic support for displaying animated artwork, and two artwork types have a decent collection of animated options: posters and fanart for movies. The most comprehensive support for animated artwork is Skin Helper Service, which has taken to naming these as &amp;quot;animatedposter&amp;quot; and &amp;quot;animatedfanart&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
New animated movie posters (and textless posters / keyart which could be named &amp;quot;animatedkeyart&amp;quot;) are often posted to [https://forum.kodi.tv/showthread.php?tid=215727 this forum thread].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Limitations of animated artwork ===&lt;br /&gt;
Kodi&#039;s support for displaying animated artwork is basic, and does have some limitations.&lt;br /&gt;
&lt;br /&gt;
;Limitation 1-&lt;br /&gt;
:{{kodi}} does not save animated artwork to the texture cache and will not play them (only displaying the first frame) unless they are stored on a client-local file system. ie- Animated artwork will not work across networks.&lt;br /&gt;
&lt;br /&gt;
;Limitation 2-&lt;br /&gt;
:There is a hard limit on the number of pixels in a single animated artwork. The size of animated artwork is limited to roughly 12 frames of 1920x1080. This limit is defined as fully decoded pixels. The trend for animated posters is for smaller images with more frames (a recent &amp;quot;animatedposter&amp;quot; is 500x713 with 60 frames). Kodi will discard any remaining frames after it has reached this limit, which will probably hitch unpleasantly, so obeying this limit is important.&lt;br /&gt;
::Technically this limit is 11 frames but Kodi will decode full frames until it has decoded MORE than this, so the calculation is&lt;br /&gt;
::1920 × 1080 = 2,073,600 * 11 (frames) = 22,809,600 pixels &#039;&#039;&#039;plus&#039;&#039;&#039; one more frame&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== extrafanart Folder ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
This method is slowly being phased out in favour of the &#039;&#039;fanart#&#039;&#039; method described in the previous section&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;ExtrafanartFolder&amp;quot; /&amp;gt;It is possible to download and save additional high quality fanart which the skin can display, usually in a slideshow. Extra fanart is reliant on a supporting skin and the images have exactly the same properties as the standard fanart described above. This is older and more widely supported in skins.&lt;br /&gt;
&lt;br /&gt;
In v17 and prior, Extra Fanart is stored in a separate folder named &#039;&#039;&#039;&#039;&#039;extrafanart&#039;&#039;&#039;&#039;&#039;. Create a folder named &#039;&#039;&#039;&#039;&#039;extrafanart&#039;&#039;&#039;&#039;&#039; in the folder of the movie or the TV Show, and place each extra fanart image in it. This artwork is not added to the Kodi library, instead skins access the folder directly. A downside to this method is that it can wake hard drives while browsing the library and cause freezing of the GUI while the drives wake up. The filename is mostly not important.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|fanart&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg or png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1920w x 1080h&amp;lt;br&amp;gt;&lt;br /&gt;
3840w x 2160h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 16:9&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== extrathumbs Folder ==&lt;br /&gt;
{{anchor|Extra Thumbs}}&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
&lt;br /&gt;
It is possible to download and save additional thumbnails which the skin can display. Extra thumbs are reliant on a supporting skin and the images have exactly the same properties as the standard thumb described above.&lt;br /&gt;
&lt;br /&gt;
Extra Thumbs are stored in a separate Folder named &amp;quot;extrathumbs&amp;quot;. Create a Folder named &#039;&#039;&#039;extrathumbs&#039;&#039;&#039; in the folder of the Movie.  Each Extra Thumb must be named &#039;&#039;thumbX.jpg&#039;&#039; where &#039;&#039;X&#039;&#039; is a sequential number starting with 0 &#039;&#039;(thumb0.jpg, thumb1.jpg, thumb2.jpg, etc)&#039;&#039;. There is a limit of 10 thumb images allowable. Be aware that some skins utilise less than 10 of the images.&lt;br /&gt;
&lt;br /&gt;
This artwork is not in common use.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Source Folder Icon ==&lt;br /&gt;
&amp;lt;section begin=&amp;quot;SourceFolderArtwork&amp;quot; /&amp;gt;The Source Folder icon is a landscape image that can be used to replace the standard folder icons when browsing your &#039;&#039;&#039;sources&#039;&#039;&#039; in the video menu. This image file is saved directly within the Source directory.&lt;br /&gt;
&lt;br /&gt;
To enable the image...&lt;br /&gt;
#Navigate to Videos&amp;gt;Files in the menu system&lt;br /&gt;
#Highlight a source and call up the &#039;&#039;&#039;&#039;&#039;[[Basic_controls#Context_Menu|context menu]]&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
#Select &#039;&#039;Choose Thumbnail&#039;&#039;. &lt;br /&gt;
If you have saved in the image in the correct location, it will be available to select immediately. If not, you will need to navigate to locate and select it. The image must remain in its original location once selected. Deleting the image will remove it from view in the folder icon.&lt;br /&gt;
&lt;br /&gt;
You are able to apply the folder thumb by modifying the &#039;&#039;&#039;\userdata\sources.xml&#039;&#039;&#039; as follows&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line=&#039;line&#039;&amp;gt;&lt;br /&gt;
        &amp;lt;source&amp;gt;&lt;br /&gt;
            &amp;lt;name&amp;gt;Movies&amp;lt;/name&amp;gt;&lt;br /&gt;
            &amp;lt;path pathversion=&amp;quot;1&amp;quot;&amp;gt;F:\Movies\&amp;lt;/path&amp;gt;&lt;br /&gt;
            &amp;lt;allowsharing&amp;gt;true&amp;lt;/allowsharing&amp;gt;&lt;br /&gt;
            &amp;lt;thumbnail&amp;gt;F:\Movies\folder.jpg&amp;lt;/thumbnail&amp;gt;&lt;br /&gt;
        &amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|folder&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 640w x 360h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 16:9&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Artwork Usage Chart =&lt;br /&gt;
The following is a guide only and charts common usage. &amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Artwork is skin dependant and skinners are free to use artwork how and where they choose. Some skins may conform with the following, others may not. &lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
! colspan=&amp;quot;11&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Artwork Usage&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; style=&amp;quot;text-align:right;&amp;quot; |&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center; background-color:#fdfefe&amp;quot; | Movies&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center; background-color:#fdfefe&amp;quot; | Music&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | &lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; style=&amp;quot;text-align:center; background-color:#fdfefe&amp;quot; | TV Shows&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | &lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;width:110px;&amp;quot; |&lt;br /&gt;
! style=&amp;quot;width:150px; background-color:#ddddff&amp;quot;|Movie &lt;br /&gt;
! style=&amp;quot;width:150px; background-color:#ddffdd&amp;quot;|Movie Sets &lt;br /&gt;
! style=&amp;quot;width:150px; background-color:#72d2f7&amp;quot;|Artists &lt;br /&gt;
! style=&amp;quot;width:150px; background-color:#72d2f7&amp;quot;|Albums &lt;br /&gt;
! style=&amp;quot;width:150px; background-color:#ffc7ff&amp;quot;|Music Video &lt;br /&gt;
! style=&amp;quot;width:150px; background-color:#f5f5a1&amp;quot;|TV Show &lt;br /&gt;
! style=&amp;quot;width:150px; background-color:#f5f5a1&amp;quot;|Seasons &lt;br /&gt;
! style=&amp;quot;width:150px; background-color:#f5f5a1&amp;quot;|Episodes &lt;br /&gt;
! style=&amp;quot;width:5px; background-color:#&amp;quot;|&lt;br /&gt;
! style=&amp;quot;width:150px; background-color:#b1d9b6&amp;quot;|Source Folder&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| actor          || {{Yes}} ||  {{No}}  || {{No}}  || {{No}}  || {{No}}  || {{Yes}} || {{No}}  || {{No}}  |||| {{No}}&lt;br /&gt;
|- &lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| back           || {{No}}  ||  {{No}}  || {{No}}  || {{Yes}} || {{No}}  || {{No}}  || {{No}}  || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| banner         || {{Yes}} ||  {{Yes}} || {{Yes}} || {{No}}  || {{Yes}} || {{Yes}} || {{Yes}} || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| characterart   || {{No}}  ||  {{No}}  || {{No}}  || {{No}}  || {{No}}  || {{Yes}} || {{No}}  || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| characterart#  || {{Yes}} ||  {{No}}  || {{No}}  || {{No}}  || {{No}}  || {{No}}  || {{No}}  || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| clearart       || {{Yes}} ||  {{Yes}} || {{Yes}} || {{No}}  || {{Yes}} || {{Yes}} || {{Yes}} || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| clearlogo      || {{Yes}} ||  {{Yes}} || {{Yes}} || {{No}}  || {{Yes}} || {{Yes}} || {{Yes}} || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| discart        || {{Yes}} ||  {{Yes}} || {{Yes}} || {{No}}  || {{Yes}} || {{No}}  || {{No}}  || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| fanart         || {{Yes}} ||  {{Yes}} || {{Yes}} || {{No}}  || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| fanart#        || {{Yes}} ||  {{Yes}} || {{Yes}} || {{No}}  || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| keyart         || {{Yes}} ||  {{Yes}} || {{No}}  || {{No}}  || {{Yes}} || {{Yes}} || {{No}}  || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| landscape      || {{Yes}} ||  {{Yes}} || {{Yes}} || {{No}}  || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| poster         || {{Yes}} ||  {{Yes}} || {{No}}  || {{No}}  || {{Yes}} || {{Yes}} || {{Yes}} || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| spine          || {{No}}  ||  {{No}}  || {{No}}  || {{Yes}} || {{No}}  || {{No}}  || {{No}}  || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| thumb          || {{Yes}} ||  {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || {{No}}  || {{No}}  || {{Yes}} |||| {{Yes}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; “Common usage” here means that the scrapers can return this type of art, and/or it is displayed by one or more skins in the official Kodi repo.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Sample Images =&lt;br /&gt;
Screenshots of various artworks displays.&lt;br /&gt;
&lt;br /&gt;
== Movies ==&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=&amp;quot;500px&amp;quot; heights=&amp;quot;282px&amp;quot;&amp;gt;&lt;br /&gt;
File:Artwork-FanartView02.jpg|Movie fanart&lt;br /&gt;
File:Artwork-PosterView01.jpg|Movie poster&lt;br /&gt;
File:Artwork-Banner02.jpg|Movie banner&lt;br /&gt;
File:Artwork-ClearArt01.jpg|Movie clearart&lt;br /&gt;
File:Artwork-ClearLogo.jpg|Movie clearlogo&lt;br /&gt;
File:Artwork-DiscArt01.jpg|Movie discart&lt;br /&gt;
File:Artwork-Thumbs01.jpg|Movie landscape&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== TV Shows ==&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=&amp;quot;500px&amp;quot; heights=&amp;quot;282px&amp;quot;&amp;gt;&lt;br /&gt;
File:Artwork-PosterView02.jpg|TV show poster&lt;br /&gt;
File:Artwork-FanartView03.jpg|TV show fanart&lt;br /&gt;
File:Artwork-Banner01.jpg|TV show banner&lt;br /&gt;
File:Artwork-ClearArt02.jpg|TV show clearart&lt;br /&gt;
File:Artwork-ClearLogo02.jpg|TV show  clearlogo&lt;br /&gt;
File:Artwork-Landscape01.jpg|TV show landscape&lt;br /&gt;
File:Artwork-CharacterArt01.jpg|TV show characterart&lt;br /&gt;
File:Artwork-EpisodeThumb01.jpg|Episode thumb&lt;br /&gt;
File:Artwork-EpisodeFanart01.jpg|Episode fanart&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Music ==&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=&amp;quot;500px&amp;quot; heights=&amp;quot;282px&amp;quot;&amp;gt;&lt;br /&gt;
File:Artwork-MusicFanart01.jpg|Artist fanart&lt;br /&gt;
File:Artwork-MusicArtist01.jpg|Grid of artist thumb&lt;br /&gt;
File:Artwork-MusicBanner01.jpg|Artist banner and clearlogo&lt;br /&gt;
File:Artwork-TS-clearart-AeonNox5modmaybe.jpg|Artist clearart in center right&lt;br /&gt;
File:Artwork-musiclandscape-EstuaryATF.jpg|Grid of artist landscape&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= References =&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Guides]]&lt;br /&gt;
[[Category:Manual]]&lt;br /&gt;
[[Category:Karellen]]&lt;br /&gt;
[[Category:Music library]]&lt;br /&gt;
[[Category:Video library]]&lt;br /&gt;
[[Category:First time user]]&lt;br /&gt;
[[Category:Advanced topics]]&lt;br /&gt;
[[Category:Quick Start Guide]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Artwork_types&amp;diff=177636</id>
		<title>Artwork types</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Artwork_types&amp;diff=177636"/>
		<updated>2019-08-10T14:57:53Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* Limitations */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Artwork_Contents}}&lt;br /&gt;
{{mininav|[[Video library]] {{l2| [[Music library]] }}| [[Artwork]] }}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Common Art Types =&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;This page describes the common types of artwork used by {{kodi}} skins, scrapers and other art add-ons, where they are used and their specifications. See the linked pages for information on how to use them in {{kodi}}.&lt;br /&gt;
&lt;br /&gt;
With the release of v18, the lines between basic and extended artwork have been blurred. All artwork has an artwork &#039;&#039;&#039;type&#039;&#039;&#039; and is treated the same as the traditional &#039;&#039;thumb or poster&#039;&#039; and &#039;&#039;fanart&#039;&#039;. If a skin has been coded to recognise an artwork type, and the artwork is scanned into {{kodi}}, then it will be displayed.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note: &#039;&#039;&#039;All resolutions are suggestions and roughly fall in line with the sizing at the scraper sites. You may modify the resolution to suit your own needs, but the aspect ratio must be maintained otherwise the image may undergo stretching, squashing or cropping when viewed in {{kodi}}. If you intend to share your artwork, check the scraper sites to ensure your artworks are within their minimum and maximum limits.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== actor ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
The Actor artwork is a portrait of an actor for display in the cast information pages. &lt;br /&gt;
&lt;br /&gt;
The files are named as  &#039;&#039;&#039;&#039;&#039;&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&#039;&#039;&#039;&#039;&#039; and are saved in the dedicated &#039;&#039;&#039;.actors&#039;&#039;&#039; folder in the movie folder and tv show folder.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1000w x 1500h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 2:3&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== back ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Music_artwork|Music- Albums artwork]]|color=#72d2f7}}&lt;br /&gt;
&lt;br /&gt;
This is the album back cover, which often includes a track listing, though the design varies. They are often used in detail views focused on a single album.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|back&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1000w x 1000h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 1:1&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== banner ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music_artwork|Music- Artists artwork]]|color=#72d2f7}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
In the video library, banners are wide and short images that contain recognizable characters or props from the video and typically includes a clearly visible logo or the name of the movie, movie set or tv show.&lt;br /&gt;
&lt;br /&gt;
In the music library it contains the artist or band members and typically includes a clearly visible logo or the name of the artist/band&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|banner&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg or png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1000w x 185h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 200:37&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== characterart ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
Characterart are png transparent images of iconic characters or objects from the show. Not in common use in {{kodi}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|characterart&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 512w x 512h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 1:1&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| Yes&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== characterart# ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
&lt;br /&gt;
This is multiple character art for Movies. It has the same concept as character art for TV-Shows described above. In contrast the artwork has no official conventions in terms of resolution and aspect ratio. This is newer but already accessible from &#039;&#039;&#039;&#039;&#039;[https://www.kyradb.com www.kyradb.com]&#039;&#039;&#039;&#039;&#039;. It has also been implemented in &#039;&#039;&#039;&#039;&#039;[https://forum.kodi.tv/showthread.php?tid=258886 Artwork Beef]&#039;&#039;&#039;&#039;&#039; and some skins &amp;lt;ref&amp;gt;https://forum.kodi.tv/showthread.php?tid=258886&amp;amp;pid=2866420#pid2866420&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
It could be used as single artwork named &amp;quot;characterart&amp;quot; or multiple artwork named &amp;quot;characterart1&amp;quot;, &amp;quot;characterart2&amp;quot;, and so on with the number increasing for each artwork. The number can increase to 10 and beyond, but numbers cannot be zero-padded and each number needs a corresponding whitelist entry in the advancedsettings.xml file.&lt;br /&gt;
&lt;br /&gt;
More information and sample content can be found in the &#039;&#039;&#039;&#039;&#039;[https://forum.kodi.tv/showthread.php?tid=342468 official forum thread]&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|characterart&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| variable&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| variable&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| Yes&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== clearart ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music_artwork|Music- Artists artwork]]|color=#72d2f7}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
Clearart have a transparent background with recognizable characters or props from the video along with a logo or name and its transparent background allows it to be overlaid images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|clearart&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1000w x 562h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 16:9&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| Yes&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== clearlogo ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music_artwork|Music- Artists artwork]]|color=#72d2f7}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
Logos typically use the distinctive font associated with the video and is uncluttered by other images. The transparent background allows it to be overlaid images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|clearlogo&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 800w x 310h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 80:31&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| Yes&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== discart ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music_artwork|Music- Albums artwork]]|color=#72d2f7}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
&lt;br /&gt;
Discart replicates the picture on the physical Blu-ray or other disc. Although the disc artwork is round, the image itself is square and the disc image is placed in the center on a transparent background.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|discart&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1000w x 1000h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 1:1&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| Yes&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== fanart ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music_artwork|Music- Artists artwork]]|color=#72d2f7}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
They are used as full screen displays.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|fanart&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg or png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1920w x 1080h&amp;lt;br&amp;gt;&lt;br /&gt;
3840w x 2160h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 16:9&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: For the Music library, the file names recognised by {{Kodi}} and loaded as local fanart can be configured by entries in the &#039;&#039;[[Advancedsettings.xml#fanart|advancedsettings.xml]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== fanart# ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music_artwork|Music- Artists artwork]]|color=#72d2f7}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
This is Multiple fanart. It has the same specifications as fanart in the previous section.&lt;br /&gt;
&lt;br /&gt;
Multiple fanart is an alternative to the &amp;quot;extrafanart&amp;quot; folders. Multiple fanart adds all of the fanart images to the Kodi library, and they are treated just like any other artwork type. This is newer and not supported in as many skins as extrafanart, but can be overcome with the use of &#039;&#039;&#039;&#039;&#039;[https://forum.kodi.tv/showthread.php?tid=258886 Artwork Beef]&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Multiple additional fanart is named &amp;quot;fanart1&amp;quot;, &amp;quot;fanart2&amp;quot;, and so on with the number increasing for each artwork. The number can increase to 10 and beyond, but numbers cannot be zero-padded and each number needs a corresponding whitelist entry in the advancedsettings.xml file. The advantage is improved performance and behavior.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== keyart ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
Keyart is a poster without text or a logo. This is useful as a separate item in a skinner&#039;s toolbox as it can be paired with a clearlogo or large text title elsewhere on the window, and without text it is less distracting in the background or half-obscured, similar to fanart.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|keyart&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1000w x 1500h&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 2:3&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== landscape ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music_artwork|Music- Artists artwork]]|color=#72d2f7}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
Landscape images are specially made 16x9 images that contain recognizable characters or props from the movie and a logo. They are used in certain page layouts for browsing. If the Landscape image is not available, skins can make passable replacements by using fanart and overlaying the clearlogo.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|landscape&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1000w x 562h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 16:9&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== poster ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
Posters replicates the movie posters often seen in cinema complexes, or the front cover of home video releases, and contain a clearly visible logo or name of the video.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|poster&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg or png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1000w x 1500h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 2:3&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== spine ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Music_artwork|Music- Albums artwork]]|color=#72d2f7}}&lt;br /&gt;
&lt;br /&gt;
Album spines replicate the album spine found on standard CD cases. They typically have the name of the album and artist, but are too thin to have much of a design beyond continuing the front or back image. They are often used as thin identifiers for unfocused items in a list of albums.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|spine&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg or png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 50w x 1000h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 1:20&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== thumb ==&lt;br /&gt;
&lt;br /&gt;
=== Video Library ===&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Thumb&#039;&#039; is the most basic art type (and the oldest historically) used by {{Kodi}} skins. The properties differ depending on the area of {{kodi}} it is being used in. Skins often show this type of art both full size, and also as a small icon alongside each item in a list.&lt;br /&gt;
&lt;br /&gt;
This art type hold thumbnails that are still images from the movie itself, and can be generated from the video file in your library. They are also used as images for episodes in TV Shows.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|thumb&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 960w x 540h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 16:9&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Music Library ===&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Music_artwork|Music- Artists artwork]]|color=#72d2f7}}&lt;br /&gt;
{{highlight|[[Music_artwork|Music- Albums artwork]]|color=#72d2f7}}&lt;br /&gt;
{{highlight|[[Music_artwork|Source Folder Icons]]|color=#b1d9b6}}&lt;br /&gt;
&lt;br /&gt;
This art type holds high quality images of the album front cover or square (or near to square) artist images. The artist images usually show the whole band without any text or logos. Kodi will recognise a variety of file names and load them as a &#039;&#039;thumb&#039;&#039;, these file names can be adjusted by entries in &#039;&#039;[[Advancedsettings.xml#musicthumbs|advancedsettings.xml]]&#039;&#039;. The export facility will export this art type as &#039;&#039;folder.jpg&#039;&#039; which may mean duplicated artwork if you used the thumb filename in local art and export artwork to the same location. &lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|folder, cover or thumb&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 500w x 500h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 1:1&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Other Types =&lt;br /&gt;
This section lists other artwork types that are...&lt;br /&gt;
# Still in the experimental stage, or&lt;br /&gt;
# Still in use, but being phased out, and&lt;br /&gt;
# Used by only a small number of skins at this time, usually for one of the previous two reasons&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Animated Artwork ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
Still experimental, but {{kodi}} has basic support for displaying animated artwork, and two artwork types have a decent collection of animated options: posters and fanart for movies. The most comprehensive support for animated artwork is Skin Helper Service, which has taken to naming these as &amp;quot;animatedposter&amp;quot; and &amp;quot;animatedfanart&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
New animated movie posters (and textless posters / keyart which could be named &amp;quot;animatedkeyart&amp;quot;) are often posted to [https://forum.kodi.tv/showthread.php?tid=215727 this forum thread].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Limitations of animated artwork ===&lt;br /&gt;
Kodi&#039;s support for displaying animated artwork is basic, and does have some limitations.&lt;br /&gt;
&lt;br /&gt;
Number one is a hard limit on the number of pixels in a single animated artwork. The size of animated artwork is limited to roughly 12 frames of 1920x1080. This limit is defined as fully decoded pixels. The trend for animated posters is for smaller images with more frames (a recent &amp;quot;animatedposter&amp;quot; is 500x713 with 60 frames). Kodi will discard any remaining frames after it has reached this limit, which will probably hitch unpleasantly, so obeying this limit is important.&lt;br /&gt;
* Technically this limit is 11 frames but Kodi will decode full frames until it has decoded MORE than this, so the calculation is&lt;br /&gt;
** 1920 × 1080 = 2,073,600 * 11 =&lt;br /&gt;
*** 22,809,600 pixels &#039;&#039;&#039;plus&#039;&#039;&#039; one more frame&lt;br /&gt;
&lt;br /&gt;
Number two is that Kodi doesn&#039;t save animated artwork to the texture cache and will not play them (only displaying the first frame) unless they are stored on a client-local file system.&lt;br /&gt;
&lt;br /&gt;
== extrafanart Folder ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
{{highlight|[[Movie sets artwork]]|color=#ddffdd}}&lt;br /&gt;
{{highlight|[[Music Video artwork]]|color=#ffc7ff}}&lt;br /&gt;
{{highlight|[[TV-Show artwork]]|color=#f5f5a1}}&lt;br /&gt;
&lt;br /&gt;
This method is slowly being phased out in favour of the &#039;&#039;fanart#&#039;&#039; method described in the previous section&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;ExtrafanartFolder&amp;quot; /&amp;gt;It is possible to download and save additional high quality fanart which the skin can display, usually in a slideshow. Extra fanart is reliant on a supporting skin and the images have exactly the same properties as the standard fanart described above. This is older and more widely supported in skins.&lt;br /&gt;
&lt;br /&gt;
In v17 and prior, Extra Fanart is stored in a separate folder named &#039;&#039;&#039;&#039;&#039;extrafanart&#039;&#039;&#039;&#039;&#039;. Create a folder named &#039;&#039;&#039;&#039;&#039;extrafanart&#039;&#039;&#039;&#039;&#039; in the folder of the movie or the TV Show, and place each extra fanart image in it. This artwork is not added to the Kodi library, instead skins access the folder directly. A downside to this method is that it can wake hard drives while browsing the library and cause freezing of the GUI while the drives wake up. The filename is mostly not important.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|fanart&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg or png&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 1920w x 1080h&amp;lt;br&amp;gt;&lt;br /&gt;
3840w x 2160h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 16:9&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== extrathumbs Folder ==&lt;br /&gt;
{{anchor|Extra Thumbs}}&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
&lt;br /&gt;
It is possible to download and save additional thumbnails which the skin can display. Extra thumbs are reliant on a supporting skin and the images have exactly the same properties as the standard thumb described above.&lt;br /&gt;
&lt;br /&gt;
Extra Thumbs are stored in a separate Folder named &amp;quot;extrathumbs&amp;quot;. Create a Folder named &#039;&#039;&#039;extrathumbs&#039;&#039;&#039; in the folder of the Movie.  Each Extra Thumb must be named &#039;&#039;thumbX.jpg&#039;&#039; where &#039;&#039;X&#039;&#039; is a sequential number starting with 0 &#039;&#039;(thumb0.jpg, thumb1.jpg, thumb2.jpg, etc)&#039;&#039;. There is a limit of 10 thumb images allowable. Be aware that some skins utilise less than 10 of the images.&lt;br /&gt;
&lt;br /&gt;
This artwork is not in common use.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== poster# - character poster sets ==&lt;br /&gt;
&#039;&#039;&#039;Used in:&#039;&#039;&#039; {{highlight|[[Movie artwork]]|color=#ddddff}}&lt;br /&gt;
&lt;br /&gt;
This is multiple posters and has the same specifications as Posters above. &lt;br /&gt;
&lt;br /&gt;
These multiple posters are released as a set which displays the characters of the movie. Each poster in the set highlights one character and there can be up to 20 poster per movie. There can be multiple sets per movie, each set differing in style. Each poster in the set is designed to have a fixed position order, usually because they can be placed edge to edge to create a larger artwork.&lt;br /&gt;
&lt;br /&gt;
The intention is that they are displayed in a multiimage sideshow. More information and examples can be found [https://forum.kodi.tv/showthread.php?tid=345299 in this thread].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Source Folder Icon ==&lt;br /&gt;
&amp;lt;section begin=&amp;quot;SourceFolderArtwork&amp;quot; /&amp;gt;The Source Folder icon is a landscape image that can be used to replace the standard folder icons when browsing your &#039;&#039;&#039;sources&#039;&#039;&#039; in the video menu. This image file is saved directly within the Source directory.&lt;br /&gt;
&lt;br /&gt;
To enable the image...&lt;br /&gt;
#Navigate to Videos&amp;gt;Files in the menu system&lt;br /&gt;
#Highlight a source and call up the &#039;&#039;&#039;&#039;&#039;[[Basic_controls#Context_Menu|context menu]]&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
#Select &#039;&#039;Choose Thumbnail&#039;&#039;. &lt;br /&gt;
If you have saved in the image in the correct location, it will be available to select immediately. If not, you will need to navigate to locate and select it. The image must remain in its original location once selected. Deleting the image will remove it from view in the folder icon.&lt;br /&gt;
&lt;br /&gt;
You are able to apply the folder thumb by modifying the &#039;&#039;&#039;\userdata\sources.xml&#039;&#039;&#039; as follows&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line=&#039;line&#039;&amp;gt;&lt;br /&gt;
        &amp;lt;source&amp;gt;&lt;br /&gt;
            &amp;lt;name&amp;gt;Movies&amp;lt;/name&amp;gt;&lt;br /&gt;
            &amp;lt;path pathversion=&amp;quot;1&amp;quot;&amp;gt;F:\Movies\&amp;lt;/path&amp;gt;&lt;br /&gt;
            &amp;lt;allowsharing&amp;gt;true&amp;lt;/allowsharing&amp;gt;&lt;br /&gt;
            &amp;lt;thumbnail&amp;gt;F:\Movies\folder.jpg&amp;lt;/thumbnail&amp;gt;&lt;br /&gt;
        &amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Image specifications&lt;br /&gt;
|-&lt;br /&gt;
|Name&lt;br /&gt;
|folder&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:190px;&amp;quot;| Type&lt;br /&gt;
|style=&amp;quot;width:220px;&amp;quot;| jpg&lt;br /&gt;
|-&lt;br /&gt;
| Resolution&lt;br /&gt;
| 640w x 360h&lt;br /&gt;
|-&lt;br /&gt;
| Aspect Ratio&lt;br /&gt;
| 16:9&lt;br /&gt;
|-&lt;br /&gt;
| Transparent background&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Artwork Usage Chart =&lt;br /&gt;
The following is a guide only and charts common usage. &amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Artwork is skin dependant and skinners are free to use artwork how and where they choose. Some skins may conform with the following, others may not. &lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; &lt;br /&gt;
! colspan=&amp;quot;11&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | Artwork Usage&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; style=&amp;quot;text-align:right;&amp;quot; |&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center; background-color:#fdfefe&amp;quot; | Movies&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center; background-color:#fdfefe&amp;quot; | Music&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | &lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; style=&amp;quot;text-align:center; background-color:#fdfefe&amp;quot; | TV Shows&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; style=&amp;quot;text-align:center;&amp;quot; | &lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;width:110px;&amp;quot; |&lt;br /&gt;
! style=&amp;quot;width:150px; background-color:#ddddff&amp;quot;|Movie &lt;br /&gt;
! style=&amp;quot;width:150px; background-color:#ddffdd&amp;quot;|Movie Sets &lt;br /&gt;
! style=&amp;quot;width:150px; background-color:#72d2f7&amp;quot;|Artists &lt;br /&gt;
! style=&amp;quot;width:150px; background-color:#72d2f7&amp;quot;|Albums &lt;br /&gt;
! style=&amp;quot;width:150px; background-color:#ffc7ff&amp;quot;|Music Video &lt;br /&gt;
! style=&amp;quot;width:150px; background-color:#f5f5a1&amp;quot;|TV Show &lt;br /&gt;
! style=&amp;quot;width:150px; background-color:#f5f5a1&amp;quot;|Seasons &lt;br /&gt;
! style=&amp;quot;width:150px; background-color:#f5f5a1&amp;quot;|Episodes &lt;br /&gt;
! style=&amp;quot;width:5px; background-color:#&amp;quot;|&lt;br /&gt;
! style=&amp;quot;width:150px; background-color:#b1d9b6&amp;quot;|Source Folder&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| actor          || {{Yes}} ||  {{No}}  || {{No}}  || {{No}}  || {{No}}  || {{Yes}} || {{No}}  || {{No}}  |||| {{No}}&lt;br /&gt;
|- &lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| back           || {{No}}  ||  {{No}}  || {{No}}  || {{Yes}} || {{No}}  || {{No}}  || {{No}}  || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| banner         || {{Yes}} ||  {{Yes}} || {{Yes}} || {{No}}  || {{Yes}} || {{Yes}} || {{Yes}} || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| characterart   || {{No}}  ||  {{No}}  || {{No}}  || {{No}}  || {{No}}  || {{Yes}} || {{No}}  || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| characterart#  || {{Yes}} ||  {{No}}  || {{No}}  || {{No}}  || {{No}}  || {{No}}  || {{No}}  || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| clearart       || {{Yes}} ||  {{Yes}} || {{Yes}} || {{No}}  || {{Yes}} || {{Yes}} || {{Yes}} || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| clearlogo      || {{Yes}} ||  {{Yes}} || {{Yes}} || {{No}}  || {{Yes}} || {{Yes}} || {{Yes}} || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| discart        || {{Yes}} ||  {{Yes}} || {{Yes}} || {{No}}  || {{Yes}} || {{No}}  || {{No}}  || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| fanart         || {{Yes}} ||  {{Yes}} || {{Yes}} || {{No}}  || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| fanart#        || {{Yes}} ||  {{Yes}} || {{Yes}} || {{No}}  || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| keyart         || {{Yes}} ||  {{Yes}} || {{No}}  || {{No}}  || {{Yes}} || {{Yes}} || {{No}}  || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| landscape      || {{Yes}} ||  {{Yes}} || {{Yes}} || {{No}}  || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| poster         || {{Yes}} ||  {{Yes}} || {{No}}  || {{No}}  || {{Yes}} || {{Yes}} || {{Yes}} || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| spine          || {{No}}  ||  {{No}}  || {{No}}  || {{Yes}} || {{No}}  || {{No}}  || {{No}}  || {{No}}  |||| {{No}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| thumb          || {{Yes}} ||  {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || {{No}}  || {{No}}  || {{Yes}} |||| {{Yes}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; “Common usage” here means that the scrapers can return this type of art, and/or it is displayed by one or more skins in the official Kodi repo.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Sample Images =&lt;br /&gt;
Screenshots of various artworks displays.&lt;br /&gt;
&lt;br /&gt;
== Movies ==&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=&amp;quot;500px&amp;quot; heights=&amp;quot;282px&amp;quot;&amp;gt;&lt;br /&gt;
File:Artwork-FanartView02.jpg|Movie fanart&lt;br /&gt;
File:Artwork-PosterView01.jpg|Movie poster&lt;br /&gt;
File:Artwork-Banner02.jpg|Movie banner&lt;br /&gt;
File:Artwork-ClearArt01.jpg|Movie clearart&lt;br /&gt;
File:Artwork-ClearLogo.jpg|Movie clearlogo&lt;br /&gt;
File:Artwork-DiscArt01.jpg|Movie discart&lt;br /&gt;
File:Artwork-Thumbs01.jpg|Movie landscape&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== TV Shows ==&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=&amp;quot;500px&amp;quot; heights=&amp;quot;282px&amp;quot;&amp;gt;&lt;br /&gt;
File:Artwork-PosterView02.jpg|TV show poster&lt;br /&gt;
File:Artwork-FanartView03.jpg|TV show fanart&lt;br /&gt;
File:Artwork-Banner01.jpg|TV show banner&lt;br /&gt;
File:Artwork-ClearArt02.jpg|TV show clearart&lt;br /&gt;
File:Artwork-ClearLogo02.jpg|TV show  clearlogo&lt;br /&gt;
File:Artwork-Landscape01.jpg|TV show landscape&lt;br /&gt;
File:Artwork-CharacterArt01.jpg|TV show characterart&lt;br /&gt;
File:Artwork-EpisodeThumb01.jpg|Episode thumb&lt;br /&gt;
File:Artwork-EpisodeFanart01.jpg|Episode fanart&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Music ==&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=&amp;quot;500px&amp;quot; heights=&amp;quot;282px&amp;quot;&amp;gt;&lt;br /&gt;
File:Artwork-MusicFanart01.jpg|Artist fanart&lt;br /&gt;
File:Artwork-MusicArtist01.jpg|Grid of artist thumb&lt;br /&gt;
File:Artwork-MusicBanner01.jpg|Artist banner and clearlogo&lt;br /&gt;
File:Artwork-TS-clearart-AeonNox5modmaybe.jpg|Artist clearart in center right&lt;br /&gt;
File:Artwork-musiclandscape-EstuaryATF.jpg|Grid of artist landscape&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= References =&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Guides]]&lt;br /&gt;
[[Category:Manual]]&lt;br /&gt;
[[Category:Karellen]]&lt;br /&gt;
[[Category:Music library]]&lt;br /&gt;
[[Category:Video library]]&lt;br /&gt;
[[Category:First time user]]&lt;br /&gt;
[[Category:Advanced topics]]&lt;br /&gt;
[[Category:Quick Start Guide]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Video_file_tagging&amp;diff=167594</id>
		<title>Video file tagging</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Video_file_tagging&amp;diff=167594"/>
		<updated>2019-05-19T01:10:55Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: light clarification&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[Video library]]||}}&lt;br /&gt;
{{incomplete}}&lt;br /&gt;
{{notice|This feature is currently for movies only. TV Shows and music videos are not yet supported.}}&lt;br /&gt;
{{VideoLibraryCreate}}&lt;br /&gt;
&#039;&#039;&#039;{{red|{{resize|1.3em|This page describes an EXPERIMENTAL and alternative way of adding Movies only to the library that is not dependent on file names or online scrapers.}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{red|{{resize|1.3em|If you have already named and organized your files using Kodi&#039;s naming guidelines, then you can safely ignore this page and go to the next step.}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;Kodi v18- Leia introduces support for embedded video tags using &#039;&#039;&#039;*.mkv&#039;&#039;&#039; and &#039;&#039;&#039;*.mp4&#039;&#039;&#039; video files. They are similar in principle to the tags saved in audio files. Only limited movie support is available at this time.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Benifits of embedded video tags =&lt;br /&gt;
There are multiple reasons why one would want to use this feature:&lt;br /&gt;
Media may already contain useful metadata (the reverse however is also true - many files contain &amp;quot;junk&amp;quot; metadata, hence why the feature defaults to off).&lt;br /&gt;
It gives one more control over the metadata than scrapers do (as scrapers may misclassify media and pull the wrong data).&lt;br /&gt;
It does away with the need to have .nfo files. Since metadata travels with the media file, there is no longer a need for potentially thousands of these smaller files and can make directory management even easier.&lt;br /&gt;
Using ultra-high resolution Artwork/cover images that looks nicer on newer HD displays.(Pretty pictures!)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How does it change/differ to the old model? ==&lt;br /&gt;
Kodi has two options for metadata import: using an online scraper or using local information, traditionally in the form of .nfo files. local tag reading is bundled into the &amp;quot;Local Information&amp;quot; arm, as logically, metadata is still local (i.e not network-drawn) information. Thus, one can still use a combination of .nfo files and embedded information if they choose &amp;quot;Local Information&amp;quot; rather than to use a scraper.&lt;br /&gt;
&lt;br /&gt;
It is important to note however that .nfo files will override embedded information. Not all of Kodi&#039;s NFO features are supported by embedded metadata yet, so many users may wish to still use the NFO method. (https://forum.kodi.tv/showthread.php?tid=326340.&lt;br /&gt;
&lt;br /&gt;
== Settings ==&lt;br /&gt;
The {{kodi}} settings has the option to enable or disable the reading of video file tags. The default setting is disabled.&amp;lt;br /&amp;gt;&lt;br /&gt;
{{red|link to settings page here- Settings&amp;gt;Media Settings&amp;gt;Videos&amp;gt;Use video tags}}&lt;br /&gt;
&lt;br /&gt;
This page assumes this setting has been enabled.&lt;br /&gt;
&lt;br /&gt;
= Folder &amp;amp; File Structure =&lt;br /&gt;
The use of Video File Tags does not absolve you from using the correct Folder and File structure for Movies, TV Shows and [[Music_videos|Music Videos]] as detailed in the previous pages. Use the navbox above to locate and read those requirements.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Tagging =&lt;br /&gt;
{{no endorsement notice}}&lt;br /&gt;
&lt;br /&gt;
{{note|User-friendly options for adding and editing embedded metadata may be lacking for your given platform. Be prepared for challenges when going down this path.}}&lt;br /&gt;
&lt;br /&gt;
== Windows ==&lt;br /&gt;
mp3tag is a Windows based metadata editor for many different files types, including MP4 (despite what it&#039;s name may suggest). While somewhat complex, it provides very fine-grained control over tagging, and is a worthwhile asset in any media management library.&lt;br /&gt;
&lt;br /&gt;
MetaX is a user friendly tagging solution, However it is proprietary and paid ($10). It features much the same core features as MP3tag, but adds an online search functionality to grab metadata from providers such as iTunes, Amazon and others, as well as an autotag feature. This can be useful to people with enormous media collections where the time saved manually tagging justifies the price.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Mac ==&lt;br /&gt;
;MP4 tagging:&lt;br /&gt;
* [https://griff.github.io/metaz/ MetaZ] is a free and open source metadata lookup and editor for Mac OS.&lt;br /&gt;
&lt;br /&gt;
== Linux ==&lt;br /&gt;
&lt;br /&gt;
= A note on iTunes =&lt;br /&gt;
Apple, in their wisdom, have created a subset of tags that are strictly speaking only meant for use with iTunes. However, most tagging software can read and write these iTunes tags. These tags are also quite useful But will not work with Kodi. Tags include the ability to store Cast (actors), Screenwriter and Director information, as well as age restriction data such as MPAA ratings.&lt;br /&gt;
&lt;br /&gt;
The important point to note here is that just because your tagging software allows you to add these does not mean they will be used. After all, they are unstandardized and were created by Apple solely for use with iTunes and iOS/macOS devices.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Core Tags =&lt;br /&gt;
&lt;br /&gt;
While there are an absolute myriad of tags that one can use, many, if not most of these are unnecessary for video files. Remember that MP4 tags have to have fields for everything - TV shows, movies, music videos and Music! We do not want to populate tags related to music (Such as Artist) in a movie file! As such here are some of the most critical tags for video (TV show and Movie) files.&lt;br /&gt;
&lt;br /&gt;
== Title ==&lt;br /&gt;
It seems that Kodi will not import a media file without a valid title in the metadata tag. This makes it the most critical tag of all.&lt;br /&gt;
&lt;br /&gt;
Title also differs from Filename - I may have a file called Blade_Runner_2049_(2017)Withalotofexcessinformation.mp4, But the title value can simply be &amp;quot;Blade Runner 2049&amp;quot;. Kodi will then display &amp;quot;Blade Runner 2049).&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
This describes the movie/TV Show. A snippet from iTunes&#039; description of Blade Runner 2049 is as follows: &amp;quot;Thirty years after the events of the first film, a new blade runner, LAPD Officer K (Ryan Gosling), unearths a long buried secret that has the potential to plunge what’s left of society into chaos.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Descriptions thus actually describe the character or basic plot of a movie or TV Show. These will be displayed in Kodi when the file is selected.&lt;br /&gt;
&lt;br /&gt;
Best practice at this point seems to be to mirror the Long Description and Short Description, as there does not seem to be any practical distinction between the two.&lt;br /&gt;
&lt;br /&gt;
When using this tag with TV Shows, every episode can be individually described according to the plot of that particular episode.&lt;br /&gt;
&lt;br /&gt;
== Content Type ==&lt;br /&gt;
In MP4 there should be four choices: Music, Music Video, Movie and TV Show. The choice does not seem to matter at this point as Kodi can not distinguish files based on this tag, but rather relies on the manual setting when the directory was added. It might be useful to set this properly when tagging however, as a future change to allow Kodi to distinguish these tags may prove invaluable.&lt;br /&gt;
&lt;br /&gt;
== Cover/Picture ==&lt;br /&gt;
Probably the singular greatest benefit to tags is being able to set your own cover image. Don&#039;t like the standard cover? Use the collectors Edition or Digital Download cover.&lt;br /&gt;
&lt;br /&gt;
== TV Show Specific Tags ==&lt;br /&gt;
There are three more tags that should be filled in for TV Shows: Show, Season and Episode Number. At the moment these tags do not seem to be of any practical use in Kodi, but should nevertheless be filled out as this may change.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Supported Tags =&lt;br /&gt;
&lt;br /&gt;
{{red|are the tags in this table for both mkv and mp4?}}&lt;br /&gt;
&lt;br /&gt;
Both MP4 and MKV tags are supported, although they use fundamentally different methods of encoding metadata.&lt;br /&gt;
&lt;br /&gt;
{{red|Is it ok to remove the music related tags? Are they separated accurately?}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{red|I cannot find these video related tags in mp3tag}}&lt;br /&gt;
&lt;br /&gt;
To get to all the juicy video file related tags in mp3tag, right click on your video file and select &amp;quot;Extended Tags&amp;quot;. From here one can see all the tags currently in a file. Add new ones by clicking on the Add button, selecting a Field (what tag to edit&amp;quot; and entering a value. The most critical one in all cases is TITLE, as it seems Kodi will not add a media file if this core tag is missing (and there is no .nfo file).&lt;br /&gt;
&lt;br /&gt;
This will also allow you to add the cover artwork.&lt;br /&gt;
&lt;br /&gt;
{{red|What format is this- id3, APE, Generic, MP4, other?}}&lt;br /&gt;
&lt;br /&gt;
MP4 files use &amp;quot;moov&amp;quot; atoms embedded within the file. These are the same ones used in AAC audio files (such as m4a).&lt;br /&gt;
&lt;br /&gt;
{{red|IMDBURL/TMDBURL is this one tag or two separate tags?}}&lt;br /&gt;
&lt;br /&gt;
== MP4 tag options ==&lt;br /&gt;
&lt;br /&gt;
The below table shows the &#039;&#039;mp4tags&#039;&#039; (part of mp4v2) command line options for all standard MP4 tags, Kodi roughly supports the ones applicable to movies.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;4&amp;quot; style=&amp;quot;background-color:#a1f5e4;&amp;quot; | Video File Tags&lt;br /&gt;
|+&lt;br /&gt;
! style=&amp;quot;background-color:#f5f5a1; text-align:left; width:050px&amp;quot; | ?&lt;br /&gt;
! style=&amp;quot;background-color:#f5f5a1; text-align:left; width:100px&amp;quot; | Tag&lt;br /&gt;
! style=&amp;quot;background-color:#f5f5a1; text-align:left; width:050px&amp;quot; | Type&lt;br /&gt;
! style=&amp;quot;background-color:#f5f5a1; text-align:left; width:450px&amp;quot; | Description&lt;br /&gt;
|-&lt;br /&gt;
| -B&lt;br /&gt;
| -podcast&lt;br /&gt;
| NUM&lt;br /&gt;
| Set the podcast flag&lt;br /&gt;
|-&lt;br /&gt;
| -c&lt;br /&gt;
| -comment&lt;br /&gt;
| STR&lt;br /&gt;
| Set a general comment&lt;br /&gt;
|- &lt;br /&gt;
| -C&lt;br /&gt;
| -copyright&lt;br /&gt;
| STR &lt;br /&gt;
| Set the copyright information&lt;br /&gt;
|- &lt;br /&gt;
| -e&lt;br /&gt;
| -encodedby&lt;br /&gt;
| STR &lt;br /&gt;
| Set the name of the person or company who encoded the file&lt;br /&gt;
|-&lt;br /&gt;
| -E&lt;br /&gt;
| -tool&lt;br /&gt;
| STR&lt;br /&gt;
| Set the software used for encoding&lt;br /&gt;
|-&lt;br /&gt;
| -g&lt;br /&gt;
| -genre&lt;br /&gt;
| STR&lt;br /&gt;
| Set the genre name&lt;br /&gt;
|-&lt;br /&gt;
| -G&lt;br /&gt;
| -grouping&lt;br /&gt;
| STR&lt;br /&gt;
| Set the grouping name&lt;br /&gt;
|-&lt;br /&gt;
| -H&lt;br /&gt;
| -hdvideo&lt;br /&gt;
| NUM&lt;br /&gt;
| Set the HD flag (1\0)&lt;br /&gt;
|-&lt;br /&gt;
| -i&lt;br /&gt;
| -type&lt;br /&gt;
| STR&lt;br /&gt;
| Set the Media Type(tvshow, movie, music, ...)&lt;br /&gt;
|-&lt;br /&gt;
| -I&lt;br /&gt;
| -contentid&lt;br /&gt;
| NUM&lt;br /&gt;
| Set the content ID&lt;br /&gt;
|-&lt;br /&gt;
| -j&lt;br /&gt;
| -genreid&lt;br /&gt;
| NUM&lt;br /&gt;
| Set the genre ID&lt;br /&gt;
|-&lt;br /&gt;
| -l&lt;br /&gt;
| -longdesc&lt;br /&gt;
| STR&lt;br /&gt;
| Set the long description&lt;br /&gt;
|-&lt;br /&gt;
| -m&lt;br /&gt;
| -description&lt;br /&gt;
| STR&lt;br /&gt;
| Set the short description&lt;br /&gt;
|-&lt;br /&gt;
| -M&lt;br /&gt;
| -episode&lt;br /&gt;
| NUM&lt;br /&gt;
| Set the episode number&lt;br /&gt;
|-&lt;br /&gt;
| -n&lt;br /&gt;
| -season&lt;br /&gt;
| NUM&lt;br /&gt;
| Set the season number&lt;br /&gt;
|-&lt;br /&gt;
| -N&lt;br /&gt;
| -network&lt;br /&gt;
| STR&lt;br /&gt;
| Set the TV network&lt;br /&gt;
|-&lt;br /&gt;
| -o&lt;br /&gt;
| -episodeid&lt;br /&gt;
| STR&lt;br /&gt;
| Set the TV episode ID&lt;br /&gt;
|-&lt;br /&gt;
| -O&lt;br /&gt;
| -category&lt;br /&gt;
| STR&lt;br /&gt;
| Set the category&lt;br /&gt;
|-&lt;br /&gt;
| -p&lt;br /&gt;
| -playlistid&lt;br /&gt;
| NUM&lt;br /&gt;
| Set the playlist ID&lt;br /&gt;
|-&lt;br /&gt;
| -P&lt;br /&gt;
| -picture&lt;br /&gt;
| PTH&lt;br /&gt;
| Set the picture as a .png&lt;br /&gt;
|-&lt;br /&gt;
| -r&lt;br /&gt;
| -remove&lt;br /&gt;
| STR&lt;br /&gt;
| Remove tags by code (e.g. &amp;quot;-r cs&amp;quot; removes the comment and song tags)&lt;br /&gt;
|-&lt;br /&gt;
| -S&lt;br /&gt;
| -show&lt;br /&gt;
| STR&lt;br /&gt;
| Set the TV show&lt;br /&gt;
|-&lt;br /&gt;
| -X&lt;br /&gt;
| -rating&lt;br /&gt;
| STR&lt;br /&gt;
| Set the Rating(none, clean, explicit)&lt;br /&gt;
|- &lt;br /&gt;
| -y&lt;br /&gt;
| -year&lt;br /&gt;
| NUM&lt;br /&gt;
| Set the release date&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
| -help&lt;br /&gt;
|&lt;br /&gt;
| Display this help text and exit&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
| -version&lt;br /&gt;
|&lt;br /&gt;
| Display version information and exit&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;4&amp;quot; style=&amp;quot;background-color:#a1f5e4;&amp;quot; | Music File Tags- TO BE REMOVED FROM LIST? or is it used for Music Videos?&lt;br /&gt;
|+&lt;br /&gt;
! style=&amp;quot;background-color:#f5f5a1; text-align:left; width:050px&amp;quot; | ?&lt;br /&gt;
! style=&amp;quot;background-color:#f5f5a1; text-align:left; width:100px&amp;quot; | Tag&lt;br /&gt;
! style=&amp;quot;background-color:#f5f5a1; text-align:left; width:050px&amp;quot; | Type&lt;br /&gt;
! style=&amp;quot;background-color:#f5f5a1; text-align:left; width:400px&amp;quot; | Description&lt;br /&gt;
|-&lt;br /&gt;
| -A&lt;br /&gt;
| -album&lt;br /&gt;
| STR&lt;br /&gt;
| Set the album title&lt;br /&gt;
|-&lt;br /&gt;
| -a&lt;br /&gt;
| -artist&lt;br /&gt;
| STR&lt;br /&gt;
| Set the artist information&lt;br /&gt;
|-&lt;br /&gt;
| -b&lt;br /&gt;
| -tempo&lt;br /&gt;
| NUM&lt;br /&gt;
| Set the tempo (beats per minute)&lt;br /&gt;
|-&lt;br /&gt;
| -d&lt;br /&gt;
| -disk&lt;br /&gt;
| NUM&lt;br /&gt;
| Set the disk number&lt;br /&gt;
|-&lt;br /&gt;
| -D&lt;br /&gt;
| -disks&lt;br /&gt;
| NUM&lt;br /&gt;
| Set the number of disks&lt;br /&gt;
|-&lt;br /&gt;
| -L&lt;br /&gt;
| -lyrics&lt;br /&gt;
| NUM&lt;br /&gt;
| Set the lyrics&lt;br /&gt;
|-&lt;br /&gt;
| -R&lt;br /&gt;
| -albumartist&lt;br /&gt;
| STR&lt;br /&gt;
| Set the album artist&lt;br /&gt;
|-&lt;br /&gt;
| -s&lt;br /&gt;
| -song&lt;br /&gt;
| STR&lt;br /&gt;
| Set the song title&lt;br /&gt;
|-&lt;br /&gt;
| -t&lt;br /&gt;
| -track&lt;br /&gt;
| NUM&lt;br /&gt;
| Set the track number&lt;br /&gt;
|-&lt;br /&gt;
| -T&lt;br /&gt;
| -tracks&lt;br /&gt;
| NUM&lt;br /&gt;
| Set the number of tracks&lt;br /&gt;
|-&lt;br /&gt;
| -w&lt;br /&gt;
| -writer&lt;br /&gt;
| STR&lt;br /&gt;
| Set the composer information&lt;br /&gt;
|-&lt;br /&gt;
| -z&lt;br /&gt;
| -artistid&lt;br /&gt;
| NUM&lt;br /&gt;
| Set the artist ID&lt;br /&gt;
|-&lt;br /&gt;
| -Z&lt;br /&gt;
| -composerid&lt;br /&gt;
| NUM&lt;br /&gt;
| Set the composer ID&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== MKV tag options ==&lt;br /&gt;
&lt;br /&gt;
MKV tagging currently does not support the Matroska tagging &amp;quot;spec&amp;quot; to fill library info, rather a Kodi standard NFO file can be embedded into MKV files.&lt;br /&gt;
&lt;br /&gt;
* An attachment named &#039;&#039;&#039;kodi-metadata&#039;&#039;&#039; will be scanned as an embedded .nfo file&lt;br /&gt;
* An attachment named &#039;&#039;&#039;kodi-override-metadata&#039;&#039;&#039; will be scanned as a url nfo if combined with specifying IMDB/TMDB url. if alone, you get an override nfo&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Artwork =&lt;br /&gt;
For MKV you can have embedded images. currently limited to:&lt;br /&gt;
* &#039;small_cover.png&#039; or &#039;small_cover.jpg&#039; for thumbnails&lt;br /&gt;
* &#039;cover.png&#039; or &#039;cover.jpg&#039; for posters&lt;br /&gt;
* &#039;fanart.png&#039; or &#039;fanart.jpg&#039; for fanart&lt;br /&gt;
  &lt;br /&gt;
&#039;poster&#039; images can be embedded in MP4 files.&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#a1f5e4, #f5f5a1}}&amp;quot;&amp;gt;{{next|[[Adding_video_sources|&#039;&#039;&#039;Add Source &amp;amp; Scrape&#039;&#039;&#039;]]}} &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:How-to]]&lt;br /&gt;
[[Category:Guides]]&lt;br /&gt;
[[Category:Manual]]&lt;br /&gt;
[[Category:Karellen]]&lt;br /&gt;
[[Category:Video library]]&lt;br /&gt;
[[Category:General topics]]&lt;br /&gt;
[[Category:First time user]]&lt;br /&gt;
[[Category:Quick Start Guide]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Movie_artwork&amp;diff=166350</id>
		<title>Movie artwork</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Movie_artwork&amp;diff=166350"/>
		<updated>2019-05-11T02:30:25Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* Multiple fanart */ add long artwork filename&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Artwork_Contents}}&lt;br /&gt;
{{mininav|[[:Category:Video_library|Video Library Index]] |[[Artwork]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;Movie artwork are images directly related to a movie or movie collection / set, preferably of high quality, that are displayed when viewing the movie or collection entry in the library. The artwork support in {{Kodi}}&#039;s video library is very flexible and able to display many types of artwork, but this page will describe the types of artwork readily available for the Movie library of Kodi.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{red|&#039;&#039;&#039;It is important to note the following:&#039;&#039;&#039;}}&lt;br /&gt;
* Artwork is skin dependent. This means that some skins display a small number of artwork types, while other skins will display many different artwork types.&lt;br /&gt;
* The default skin, Estuary, displays only a limited selection of artwork. Another skin must be used to see other artwork.&lt;br /&gt;
* Each artwork type must be &#039;&#039;&#039;[[Advancedsettings.xml#Extra artwork| whitelisted in advancedsettings.xml]]&#039;&#039;&#039; to be added to the library automatically during scanning and scraping.&lt;br /&gt;
&lt;br /&gt;
= Movie artwork =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=&amp;quot;350px&amp;quot; heights=&amp;quot;200px&amp;quot;&amp;gt;&lt;br /&gt;
File:Artwork-FanartView02.jpg|Movie fanart&lt;br /&gt;
File:Artwork-PosterView01.jpg|Movie poster&lt;br /&gt;
File:Artwork-Banner02.jpg|Movie banner&lt;br /&gt;
File:Artwork-ClearArt01.jpg|Movie clearart&lt;br /&gt;
File:Artwork-ClearLogo.jpg|Movie clearlogo&lt;br /&gt;
File:Artwork-Thumbs01.jpg|Movie landscape&lt;br /&gt;
File:Artwork-DiscArt01.jpg|Movie discart&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;fanart&amp;quot; ==&lt;br /&gt;
Fanart is also known as wallpapers, backdrops, or backgrounds.&lt;br /&gt;
;{{See also|wikipedia:Fanart|l1=Fanart on Wikipedia}}&lt;br /&gt;
&lt;br /&gt;
For Kodi they are used as full screen displays to enhance the user experience.&lt;br /&gt;
&lt;br /&gt;
Fanart have a &#039;&#039;&#039;recommended resolution of 1920x1080&#039;&#039;&#039; the display, with a specific &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039; to match the ratio of current generation televisions and monitors, which allows the screen to be completely filled by the image. Fanart also does not have transparency and preferably does not have a logo or title on the image.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;poster&amp;quot; ==&lt;br /&gt;
Movie posters replicates the movie posters often seen in cinema complexes, or the front cover of home video releases, and contain a clearly visible logo or name of the movie.&lt;br /&gt;
&lt;br /&gt;
Movie posters have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;banner&amp;quot; ==&lt;br /&gt;
Movie banners are wide and short images that contain recognizable characters or props from the movie and typically includes a clearly visible logo or the name of the movie.&lt;br /&gt;
&lt;br /&gt;
Movie banners have a &#039;&#039;&#039;recommended resolution of 1000x185&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.185&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;clearlogo&amp;quot; ==&lt;br /&gt;
Movie logos typically use the distinctive font associated with the movie and is uncluttered by other images.&lt;br /&gt;
&lt;br /&gt;
Movie logos have a &#039;&#039;&#039;recommended resolution of 800x310&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.388&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;clearart&amp;quot; ==&lt;br /&gt;
Movie clearart have a transparent background with recognizable characters or props from the movie along with a logo or name.&lt;br /&gt;
&lt;br /&gt;
Movie clearart have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;landscape&amp;quot; ==&lt;br /&gt;
Landscape images are specially made 16x9 images that contain recognizable characters or props from the movie and a logo. They are used in certain page layouts for browsing. Skins can make passable replacements for media items without one with fanart and the clearlogo.&lt;br /&gt;
&lt;br /&gt;
Movie landscape have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. They have no transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;discart&amp;quot; ==&lt;br /&gt;
Movie discart replicates the picture on the physical Blu-ray or other disc. Although the disc artwork is round, the image itself is square and the disc image is placed in the center on a transparent background.&lt;br /&gt;
&lt;br /&gt;
Movie discart have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:1 (square)&#039;&#039;&#039;. They have a transparent background.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;keyart&amp;quot; ==&lt;br /&gt;
Movie keyart is a poster without text or a logo. This is useful as a separate item in a skinner&#039;s toolbox as it can be paired with a clearlogo or large text title elsewhere on the window, and without text it is less distracting in the background or half-obscured, similar to fanart.&lt;br /&gt;
&lt;br /&gt;
Movie keyart have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;thumb&amp;quot; ==&lt;br /&gt;
Movie thumbnails are still images from the movie itself, and can be generated from the video file in your library.&lt;br /&gt;
&lt;br /&gt;
Movie thumbnails are often displayed in small boxes and have a &#039;&#039;&#039;recommended resolution of about 960x540&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
== Local movie artwork ==&lt;br /&gt;
&lt;br /&gt;
Local movie artwork can be saved in the same folder the [[Naming_video_files/Movies#Movie_Folder_.26_Filename|movie file]] is saved. The default name for movie artwork file names is &#039;&#039;&#039;&amp;lt;movie file name&amp;gt;-&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&#039;&#039;&#039; - with some arttype examples listed below and extension matching the image type. There is also a short name &amp;quot;&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&amp;quot; that can be used if your movie source folder is configured with [[Adding video sources#Set Content |Movies are in separate folders that match the movie title]], but the long name &amp;quot;&amp;lt;movie file name&amp;gt;-&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&amp;quot; still takes precedence. Movie artwork can also be added from online services with an &#039;&#039;&#039;&amp;quot;information provider&amp;quot; scraper add-on&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved movie artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| movie file&lt;br /&gt;
| Blade Runner 2049 (2017).mkv&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017).mkv&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=100px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=200px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Recommended resolution&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Aspect ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| fanart&lt;br /&gt;
| fanart.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-fanart.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
| 1920x1080&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| poster&lt;br /&gt;
| poster.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-poster.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\poster.jpg&lt;br /&gt;
| 1000x1500&lt;br /&gt;
| approximately 1:1.5&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| banner&lt;br /&gt;
| banner.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-banner.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\banner.jpg&lt;br /&gt;
| 1000x185&lt;br /&gt;
| 1:0.185&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| landscape&lt;br /&gt;
| landscape.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-landscape.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\landscape.jpg&lt;br /&gt;
| 1000x562&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| clearlogo&lt;br /&gt;
| clearlogo.png&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-clearlogo.png&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\clearlogo.jpg&lt;br /&gt;
| 800x310&lt;br /&gt;
| 1:0.388&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| clearart&lt;br /&gt;
| clearart.png&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-clearart.png&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\clearart.jpg&lt;br /&gt;
| 1000x562&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| keyart&lt;br /&gt;
| keyart.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-keyart.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\keyart.jpg&lt;br /&gt;
| 1000x1500&lt;br /&gt;
| approximately 1:1.5&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| thumb&lt;br /&gt;
| thumb.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-thumb.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\thumb.jpg&lt;br /&gt;
| 960x540&lt;br /&gt;
| match video aspect&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Movie set artwork =&lt;br /&gt;
&lt;br /&gt;
Movie collections / sets have the same art types available as movies. Kodi currently does not support adding movie set artwork from the local file system, but it is supported with scrapers.&lt;br /&gt;
; {{see also|Movie_sets}}&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;fanart&amp;quot; ==&lt;br /&gt;
Fanart is also known as wallpapers, backdrops, or backgrounds.&lt;br /&gt;
;{{See also|wikipedia:Fanart|l1=Fanart on Wikipedia}}&lt;br /&gt;
&lt;br /&gt;
For Kodi they are used as full screen displays to enhance the user experience.&lt;br /&gt;
&lt;br /&gt;
Fanart have a &#039;&#039;&#039;recommended resolution of 1920x1080&#039;&#039;&#039; the display, with a specific &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039; to match the ratio of current generation televisions and monitors, which allows the screen to be completely filled by the image. Fanart also does not have transparency and preferably does not have a logo or title on the image.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;poster&amp;quot; ==&lt;br /&gt;
Movie posters replicates the movie posters often seen in cinema complexes, or the front cover of home video releases, and contain a clearly visible logo or name of the movie set.&lt;br /&gt;
&lt;br /&gt;
Movie set posters have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency but do have the movie set logo or name on the image.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;banner&amp;quot; ==&lt;br /&gt;
Movie set banners are wide and short images that contain recognizable characters or props from the movie set and typically includes a clearly visible logo or the name of the movie set.&lt;br /&gt;
&lt;br /&gt;
Movie set banners have a &#039;&#039;&#039;recommended resolution of 1000x185&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.185&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;clearlogo&amp;quot; ==&lt;br /&gt;
Movie set logos typically use the distinctive font associated with the movie set and is uncluttered by other images.&lt;br /&gt;
&lt;br /&gt;
Movie set logos have a &#039;&#039;&#039;recommended resolution of 800x310&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.388&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;clearart&amp;quot; ==&lt;br /&gt;
Movie set clearart have a transparent background with recognizable characters or props from the movie set along with its logo or name.&lt;br /&gt;
&lt;br /&gt;
Movie set clearart have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;landscape&amp;quot; ==&lt;br /&gt;
Landscape images are specially made 16x9 images that contain recognizable characters or props from the movie set and a logo. They are used in certain page layouts for browsing. Skins can make passable replacements for media items without one with fanart and the clearlogo.&lt;br /&gt;
&lt;br /&gt;
Movie set landscape have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. They have no transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;discart&amp;quot; ==&lt;br /&gt;
Movie set discart replicates the picture on the physical Blu-ray or other disc. Although the disc artwork is round, the image itself is square and the disc image is placed in the center on a transparent background.&lt;br /&gt;
&lt;br /&gt;
Movie set discart have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:1 (square)&#039;&#039;&#039;. They have a transparent background.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;keyart&amp;quot; ==&lt;br /&gt;
Movie set keyart is a poster without text or a logo. This is useful as a separate item in a skinner&#039;s toolbox as it can be paired with a clearlogo or large text title elsewhere on the window, and without text it is less distracting in the background or half-obscured, similar to fanart.&lt;br /&gt;
&lt;br /&gt;
Movie set keyart have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Local movie set artwork ==&lt;br /&gt;
&lt;br /&gt;
Local movie set artwork is not supported in Kodi, but it can be added from online services with an &#039;&#039;&#039;&amp;quot;information provider&amp;quot; scraper add-on&#039;&#039;&#039;.&lt;br /&gt;
The add-on [https://forum.kodi.tv/showthread.php?tid=258886 Artwork Beef] can add local movie set artwork to your library. [https://forum.kodi.tv/showthread.php?tid=153502 Movie Set Artwork Automator] hasn&#039;t been supported for some time, but it is also capable of adding local movie set artwork to your library.&lt;br /&gt;
&lt;br /&gt;
= Actor Image =&lt;br /&gt;
[[File:Artwork-Actors02.jpg|400px|right]]&lt;br /&gt;
&lt;br /&gt;
The Actor artwork is a portrait of an actor for easy identification. The image is named as follows &#039;&#039;&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The image to the right is displaying the Actor images of five actors along the top row. They are portrait, medium to high quality images.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Required file properties:&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;Note: The resolution may be increased but ensure the aspect ratio is maintained&amp;lt;/small&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;File Type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Aspect Ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Resolution- &amp;lt;small&amp;gt;recommended&amp;lt;/small&amp;gt;&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px | {{nowrap|*.jpg}} &lt;br /&gt;
| width=200px | {{nowrap|1:1.5}}&lt;br /&gt;
| width=200px | {{nowrap|1000x1500}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Naming conventions for your own manually sourced artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;Saved movies as&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save Location&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |BluRay Structure:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:MyMovies\Big Buck Bunny (2008)\BDMV\.actors\Amy_Adams.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |DVD Structure:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\Big Buck Bunny (2008)\VIDEO_TS\.actors\Amy_Adams.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |Single movie in Directory:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\Big Buck Bunny (2008)\.actors\Amy_Adams.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |Two or more movies in single Directory:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\.actors\Amy_Adams.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Source Folder Artwork =&lt;br /&gt;
[[File:Artwork-VideoFolder01.jpg|400px|right]]&lt;br /&gt;
&lt;br /&gt;
The Folder Artwork, also known as Source Folder thumb,  are landscape images that can be used to replace the standard folder icons when browsing your movie sources in the Video menu. You will not see this artwork in the Movies menu. This image file is saved directly within the Source directory.&lt;br /&gt;
&lt;br /&gt;
To enable the image, navigate to Videos&amp;gt;Files in the menu system. Highlight a source and call up the Context Menu. Select Choose Thumbnail. If you have saved in the image in the correct location, it will be available to select immediately. If not, you will need to navigate to locate and select it. The image must remain in its original location once selected. Deleting the image will remove it from view in the folder icon.&lt;br /&gt;
&lt;br /&gt;
You are able to also apply the folder thumb by modifying the &#039;&#039;&#039;\userdata\sources.xml&#039;&#039;&#039; as follows&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
   &amp;lt;name&amp;gt;Movie&amp;lt;/name&amp;gt;&lt;br /&gt;
   &amp;lt;path&amp;gt;xbms://192.168.1.100:1400/Movie/&amp;lt;/path&amp;gt;&lt;br /&gt;
   &amp;lt;thumbnail&amp;gt;F:\MyMovies\folder.jpg&amp;lt;/thumbnail&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Required file properties:&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;Note: The resolution may be increased but ensure the aspect ratio is maintained&amp;lt;/small&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;File Type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Aspect Ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Resolution- &amp;lt;small&amp;gt;recommended&amp;lt;/small&amp;gt;&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px | {{nowrap|*.jpg}} &lt;br /&gt;
| width=200px | {{nowrap|16:9}}&lt;br /&gt;
| width=200px | {{nowrap|640x360}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Naming conventions for your own manually sourced artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |&#039;&#039;&#039;&#039;&#039;Saved movies as&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save Location&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |Folder Artwork:&lt;br /&gt;
| width=250px |folder.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\folder.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |Alternative name:&lt;br /&gt;
| width=250px |&amp;lt;foldername&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\MyMovies.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Experimental movie artwork =&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;extrafanart&amp;quot; folder ==&lt;br /&gt;
{{anchor|Extra Fanart}}&lt;br /&gt;
&lt;br /&gt;
It is possible to download and save additional high quality fanart which the skin can display, usually in a slideshow. Extra fanart is reliant on a supporting skin and the images have exactly the same properties as the standard fanart described above. This is older and more widely supported in skins.&lt;br /&gt;
&lt;br /&gt;
Extra Fanart is stored in a separate Folder named &amp;quot;extrafanart&amp;quot;. Create a Folder named &#039;&#039;&#039;extrafanart&#039;&#039;&#039; in the folder of the movie, and place each extra fanart image in it. This artwork is not added to the Kodi library, instead skins list the folder directly; this can wake hard drives while browsing the library. The filename is mostly not important.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved extrafanart::&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart0.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrafanart\fanart0.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrafanart\fanart1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrafanart\fanart2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Multiple fanart ==&lt;br /&gt;
&lt;br /&gt;
Multiple fanart is an alternative to &amp;quot;extrafanart&amp;quot; that adds all of the fanart images to the Kodi library, and they are treated just like any other artwork type. This is newer and not supported in as many skins as extrafanart.&lt;br /&gt;
&lt;br /&gt;
Multiple additional fanart is named &amp;quot;fanart1&amp;quot;, &amp;quot;fanart2&amp;quot;, and so on with the number increasing for each artwork. The number can increase to 10 and beyond, but numbers cannot be zero-padded. This currently requires more work from skins to display than &amp;quot;extrafanart&amp;quot; and can be awkward to configure because each numbered fanart needs to be added to the artwork whitelist, but the improved performance and behavior that matches other artwork is worth it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved multiple fanart:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart (standard fanart)&lt;br /&gt;
| width=250px |fanart.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-fanart.jpg&lt;br /&gt;
f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart1&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-fanart1.jpg&lt;br /&gt;
f:\Movies\Blade Runner 2049 (2017)\fanart1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart2&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-fanart2.jpg&lt;br /&gt;
f:\Movies\Blade Runner 2049 (2017)\fanart2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;extrathumbs&amp;quot; folder ==&lt;br /&gt;
{{anchor|Extra Thumbs}}&lt;br /&gt;
&lt;br /&gt;
It is possible to download and save additional thumbnails which the skin can display. Extra thumbs are reliant on a supporting skin and the images have exactly the same properties as the standard thumb described above.&lt;br /&gt;
&lt;br /&gt;
Extra Thumbs are stored in a separate Folder named &amp;quot;extrathumbs&amp;quot;. Create a Folder named &#039;&#039;&#039;extrathumbs&#039;&#039;&#039; in the folder of the Movie.  Each Extra Thumb must be named &#039;&#039;thumbX.jpg&#039;&#039; where &#039;&#039;X&#039;&#039; is a sequential number starting with 0 &#039;&#039;(thumb0.jpg, thumb1.jpg, thumb2.jpg, etc)&#039;&#039;. There is a limit of 10 thumb images allowable. Be aware that some skins utilise less than 10 of the images. The location of the extrathumbs Folder is as follows.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved extrathumbs::&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart0.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrathumbs\thumb0.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrathumbs\thumb1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrathumbs\thumb2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Guides]]&lt;br /&gt;
[[Category:Manual]]&lt;br /&gt;
[[Category:Karellen]]&lt;br /&gt;
[[Category:Video library]]&lt;br /&gt;
[[Category:First time user]]&lt;br /&gt;
[[Category:Advanced topics]]&lt;br /&gt;
[[Category:Quick Start Guide]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Import-export_library&amp;diff=162542</id>
		<title>Import-export library</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Import-export_library&amp;diff=162542"/>
		<updated>2019-03-24T18:28:16Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: copy &amp;quot;a note on artwork&amp;quot; from Artwork/Cache&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[Video_library|Video Library]]{{l2|[[Music_library|Music Library]]}}}}&lt;br /&gt;
{{see also|NFO files|Artwork|HOW-TO:Backup_the_video_library}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Introduction =&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;Kodi offers the ability to import and export metadata and artwork manually into/from the [[Library|Media Library]], as well as importing media info automatically from [[NFO files|.nfo files]].&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Kodi has the option to both Export and Import its Video database. These options may be used for a number of reasons including the following more popular ones:&lt;br /&gt;
*Perform database backup and recovery (This is not the only method for backup and recovery)&lt;br /&gt;
*Reorganization of data or eliminate database fragmentation (export, clean/remove database, re-import)&lt;br /&gt;
*Move data between Kodi databases on different platforms (eg Widows to Linux)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
It also has an Export and Import option for some parts of the Music database, however the main data in the music library comes from metadata embedded in the music files, and the export facility does not backup this data at all. Likewise import will not populate an empty db. What is imported and exported is any additional album artist and album information that has been previously scraped from NFO files or online sources. It&#039;s uses are limited, but it does enable the user to capture data that they have scraped online, including any manual choices they made, in a form that can be transfered.&lt;br /&gt;
&lt;br /&gt;
Various options are available to control what objects are exported or imported.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Video Library Export / Import =&lt;br /&gt;
The option is accessed via the Settings menu as detailed in the first image. &lt;br /&gt;
&lt;br /&gt;
This option will Export and Import the following media classes:&lt;br /&gt;
*Movies- Metadata and artwork&lt;br /&gt;
*TV Shows- Metadata and artwork&lt;br /&gt;
*Music Videos- Metadata and artwork&lt;br /&gt;
&lt;br /&gt;
By adding suitable code to &#039;&#039;advancedsettings.xml&#039;&#039;, you are able to further modify which data is exported and imported. The following three tags are availble... {{small see also|Advancedsettings.xml}}&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 &amp;lt;advancedsettings&amp;gt;&lt;br /&gt;
    &amp;lt;videolibrary&amp;gt;&lt;br /&gt;
       &amp;lt;exportautothumbs&amp;gt;false&amp;lt;/exportautothumbs&amp;gt;  &amp;lt;!-- Export auto-generated thumbs. Default = false. Change to true to allow export --&amp;gt;&lt;br /&gt;
       &amp;lt;importwatchedstate&amp;gt;false&amp;lt;/importwatchedstate&amp;gt;  &amp;lt;!-- Import Last Played and Play Counts. Default = false. Change to true to allow import --&amp;gt;&lt;br /&gt;
       &amp;lt;importresumepoint&amp;gt;false&amp;lt;/importresumepoint&amp;gt;  &amp;lt;!-- Import Resume Points. Default = false. Change to true to allow import --&amp;gt;&lt;br /&gt;
    &amp;lt;/videolibrary&amp;gt;&lt;br /&gt;
 &amp;lt;/advancedsettings&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In settings, select &#039;&#039;&#039;Export library&#039;&#039;&#039; as shown in the first image. Ensure you choose the option in the Video library section (top) and not the Music library section (bottom). You will be required to choose the Export method as depicted in the second image. Continue reading for an explanation of the options.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=&amp;quot;700&amp;quot; heights=&amp;quot;400&amp;quot;&amp;gt;&lt;br /&gt;
File:LibExp01.jpg|Location of setting&lt;br /&gt;
File:LibExp02.png|Select which Export option you require.&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Export to Separate Files ==&lt;br /&gt;
This option will export the metadata stored in the database and save it into a nfo file. It will be saved to the same directory where that particular Movie/TV Show/Music Video is located. This is a good example where Movies and TV Show episodes would benefit from being in their own directory.&lt;br /&gt;
&lt;br /&gt;
After selecting &#039;&#039;&#039;Separate&#039;&#039;&#039;, you will then be asked if you would like to &#039;&#039;&#039;Export thumbnails and fanart?&#039;&#039;&#039;. This will export the Fanart, Posters, Banners, Episode Thumbs and Music Video Posters.&lt;br /&gt;
*Choosing &#039;&#039;&#039;Yes&#039;&#039;&#039; will save a copy of the cached artwork into the Movie, TV Show, TV Show Episode and Music Video directory alongside the video file and the nfo file.&lt;br /&gt;
*Choosing &#039;&#039;&#039;No&#039;&#039;&#039; will not export the artwork&lt;br /&gt;
&lt;br /&gt;
The next option is &#039;&#039;&#039;Export Actors Thumbs&#039;&#039;&#039;. &lt;br /&gt;
*Choosing &#039;&#039;&#039;Yes&#039;&#039;&#039; will export a copy of the Actors artwork in a directory named &#039;&#039;.actors&#039;&#039;&lt;br /&gt;
*Choosing &#039;&#039;&#039;No&#039;&#039;&#039; will not export a copy of the Actors artwork&lt;br /&gt;
&lt;br /&gt;
The final option is &#039;&#039;&#039;Overwrite Old Files&#039;&#039;&#039;.&lt;br /&gt;
*Choosing &#039;&#039;&#039;Yes&#039;&#039;&#039; will overwrite the existing nfo files and artwork. This is useful if you have modified your metadata such as changed the artwork, created or modified movie sets, etc. Any movies/tv shows/music videos that were not present since the last Export will have the nfo and artwork exported to their directory.&lt;br /&gt;
*Choosing &#039;&#039;&#039;No&#039;&#039;&#039; will add nfo files and artwork to those movies/tv shows/music videos that do not already have them. eg they are new and added after the last export. If you made changes to a movie/tv show/music video that already has an nfo created, these changes will &#039;&#039;&#039;not&#039;&#039;&#039; be exported.&lt;br /&gt;
*If this is the first time this option has been run and/or you have no nfo files and artwork saved in your movie/tv show/music video directories, both choices will have the same result.&lt;br /&gt;
&lt;br /&gt;
The Export will commence immediately once the final option is selected. An onscreen progress bar will indicate progress.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=&amp;quot;500&amp;quot; heights=&amp;quot;300&amp;quot;&amp;gt;&lt;br /&gt;
File:LibExp03.png|Do you want to export Thumbnails and Fanart?&lt;br /&gt;
File:LibExp05.jpg|Do you want to export Actors Thumbs?&lt;br /&gt;
File:LibExp04.png|Do you want to Overwrite Old Files?&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Export to Single File ==&lt;br /&gt;
[[File:LibExp06.jpg|400px|right]]&lt;br /&gt;
&#039;&#039;&#039;Note&#039;&#039;&#039;: Do not use this option if you have changed, or intend to change, the filenames or paths of your video files after running the Export. For example, renaming movie files, moving files between Sources or to new Sources. Doing so will leave you with a dead library. The data will be imported but Kodi will not be able to locate the moved files. Use the Separate files method instead.&lt;br /&gt;
&lt;br /&gt;
This option will export all metadata and all artwork to a single directory, to a location nominated by the user, as follows:&lt;br /&gt;
*The only option available is the save location which you will be prompted and required to enter&lt;br /&gt;
*Kodi will create a directory in your selected location named &#039;&#039;xbmc_videodb_yyyy-mm-dd&#039;&#039;&lt;br /&gt;
*Library metadata will be saved into a single &#039;&#039;videodb.xml&#039;&#039; file within that directory&lt;br /&gt;
*Artwork will be saved within multiple sub-directories according to type&lt;br /&gt;
*Subsequent exports &#039;&#039;&#039;will not&#039;&#039;&#039; overwrite existing Single File exports&lt;br /&gt;
*Subsequent exports are &#039;&#039;&#039;full&#039;&#039;&#039; exports. They are &#039;&#039;&#039;not&#039;&#039;&#039; incremental exports.&lt;br /&gt;
&lt;br /&gt;
{{note|Some users may find the single file export problematic in Frodo and higher, due to an issue with artwork. The export process changes the artwork location URL to the folder location of the export, which causes an issue if you need to refresh the image. To fix, you will need to manually source the image in the Information page of the Movie/TV show }}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Import ==&lt;br /&gt;
If you exported your library using the &#039;&#039;&#039;Export to Separate Files&#039;&#039;&#039; option, then you must use the normal scraping process to re-import the data. {{small see also|Updating_or_removing_videos}}&lt;br /&gt;
&lt;br /&gt;
If you exported your library using the &#039;&#039;&#039;Export to Single File&#039;&#039;&#039; option, you will need to use this method to import the data as follows&lt;br /&gt;
*Select &#039;&#039;&#039;Import&#039;&#039;&#039; to commence the import process&lt;br /&gt;
*Locate the the directory for your previously saved single file export&lt;br /&gt;
*If you have multiple single file exports, ensure you have selected the correct one.&lt;br /&gt;
*Select &#039;&#039;&#039;Ok&#039;&#039;&#039;. A progress bar will be displayed to indicate progress&lt;br /&gt;
*Once complete, your library should be functional again&lt;br /&gt;
&lt;br /&gt;
Be aware that if you have removed movies or tv shows or music videos since the export, the metadata for those movies, tv shows and music videos will be re-imported into the library. You will need to run a &#039;&#039;&#039;Clean Library&#039;&#039;&#039; to remove them. This option is located just above the &#039;&#039;&#039;Export&#039;&#039;&#039; entry.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Music Library Export / Import =&lt;br /&gt;
The option is accessed via the Settings menu as detailed in the first image. It is on the same page as the Video Export option. You may have to scroll down to locate it. &lt;br /&gt;
Upon selection of the Export Library setting, you will be required to choose the Export method as depicted in the second image below. The process is similar to the Video Export and Import instructions above, but there are some slight variances. Continue reading for an explanation of the options.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=&amp;quot;700&amp;quot; heights=&amp;quot;400&amp;quot;&amp;gt;&lt;br /&gt;
File:LibExp01.jpg|Location of setting&lt;br /&gt;
File:LibExp02.png|Select which Export option you require.&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Export to Separate Files ==&lt;br /&gt;
This option will export any previously scraped album artist and album information and save it into a nfo file in the locations as follows:&lt;br /&gt;
*Artist nfo file and artwork will be saved in the Artist directory&lt;br /&gt;
*Album nfo file and artwork will be saved in the Album directory&lt;br /&gt;
*If the music source has not been scraped, no nfo file will be written&lt;br /&gt;
*Only Album and Album Artist data is exported. Song artists, those that do not have albums and only appear featured on tracks or on &amp;quot;Various Artists&amp;quot; compilation albums, are not included &lt;br /&gt;
*Song data such as rating, play count, and last time played are not included either. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;MusicExportSingleFile&amp;quot; /&amp;gt;{{note|There are weaknesses in the way that Kodi determines the location of the artist directory. It looks for the folder that is common to all the songs with that album artist, the name of that folder is irrelevent. If you have multiple albums by an artist all under an artist folder then this works perfectly. &lt;br /&gt;
However the algorithm does not work for collaboration albums, those that have more than one album artist e.g. &amp;quot;Riding with the King&amp;quot; by Eric Clapton and BB King, or classical music with composer, orchestra and conductor given as the album artist. It also gets confused when you have only one album by an artist, and takes the album directory as the artist directory. Also if you have not kept all songs by an artist under a unique folder, then the artist directory will probably be mis-identified. The result for export is that the artist.NFO file goes somewhere unexpected, and that location may not be unique, so the NFO will contain the artist information from the last album artist exported}}&amp;lt;section end=&amp;quot;MusicExportSingleFile&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{red|The music section of v18 is undergoing a major overhaul and this issue will be resolved with the release of v18}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After selecting &#039;&#039;&#039;Separate&#039;&#039;&#039;, you will then be asked if you would like to &#039;&#039;&#039;Export thumbnails and fanart?&#039;&#039;&#039;. This will export the Artist and album artwork.&lt;br /&gt;
*Choosing &#039;&#039;&#039;Yes&#039;&#039;&#039; will export a copy of the cached artwork into the appropriate Artist and Album directory.&lt;br /&gt;
*Choosing &#039;&#039;&#039;No&#039;&#039;&#039; will not export the artwork&lt;br /&gt;
&lt;br /&gt;
The final option is &#039;&#039;&#039;Overwrite Old Files&#039;&#039;&#039;.&lt;br /&gt;
*Choosing &#039;&#039;&#039;Yes&#039;&#039;&#039; will overwrite the existing nfo files and artwork. This is useful if you have scraped album or album artist information online that you want to replace any locally held data, or changed the artwork. Any Albums/Artists that were not present since the last Export will have the nfo and artwork exported to their directory.&lt;br /&gt;
*Choosing &#039;&#039;&#039;No&#039;&#039;&#039; will add nfo files and artwork to those Albums/Artists that do not already have them. eg they are new and added after the last export. If you have modified data of an Artist or Album that was previously exported, this change will not be exported.&lt;br /&gt;
*If this is the first time this option has been run and/or you have no nfo files and artwork saved in your Artist/Album directories, both choices will have the same result.&lt;br /&gt;
&lt;br /&gt;
The Export will commence immediately once the final option is selected. An onscreen progress bar will indicate progress.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=&amp;quot;700&amp;quot; heights=&amp;quot;400&amp;quot;&amp;gt;&lt;br /&gt;
File:LibExp03.png|Do you want to export Thumbnails and Fanart?&lt;br /&gt;
File:LibExp04.png|Do you want to Overwrite Old Files?&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Export to Single File ==&lt;br /&gt;
[[File:LibExp06.jpg|400px|right]]&lt;br /&gt;
This option will export previously scraped album artists and album information to a single file, to a location nominated by the user, as follows:&lt;br /&gt;
*Kodi will create a file in your selected location named &#039;&#039;musicdb.xml&#039;&#039;&lt;br /&gt;
*The only option available is the save location which you will be prompted and required to enter&lt;br /&gt;
&lt;br /&gt;
Be aware of the following caveats:&lt;br /&gt;
*Export will write an empty .xml file if none of the album artists or albums have been scraped. &lt;br /&gt;
*Artwork will not be saved&lt;br /&gt;
*Subsequent exports &#039;&#039;&#039;will&#039;&#039;&#039; overwrite the existing Single File exports&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Import ==&lt;br /&gt;
If you exported your library using the &#039;&#039;&#039;Export to Separate Files&#039;&#039;&#039; option, then you must use the normal scraping process to re-import the data. {{see also|Update_Music_Library}}&lt;br /&gt;
&lt;br /&gt;
If you exported your library using the &#039;&#039;&#039;Export to Single File&#039;&#039;&#039; option, you will need to use this method to import the data as follows&lt;br /&gt;
*Select &#039;&#039;&#039;Import&#039;&#039;&#039; to commence the import process&lt;br /&gt;
*Locate the the directory for your previously saved single file export&lt;br /&gt;
*Select the &#039;&#039;musicdb.xml&#039;&#039; file&lt;br /&gt;
*The &#039;&#039;&#039;Import&#039;&#039;&#039; process will commence immediately&lt;br /&gt;
*Once complete, your library should be functional again&lt;br /&gt;
&lt;br /&gt;
Be aware:&lt;br /&gt;
*if you have removed Albums or Artists since the export, the metadata for those Albums and Album Artists will be re-imported into the library. You will need to run a &#039;&#039;&#039;Clean Library&#039;&#039;&#039; to remove them. This option is located just above the &#039;&#039;&#039;Export&#039;&#039;&#039; entry.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= A Note on Artwork =&lt;br /&gt;
&lt;br /&gt;
The optimized image from {{Kodi}}&#039;s [[Artwork/Cache]] is exported, rather than the original full-quality image, so it is best to avoid exporting artwork if at all possible. An easily understandable explanation of the effects of these optimizations can be located in the [https://forum.kodi.tv/showthread.php?tid=315806&amp;amp;pid=2599318#pid2599318 forum here].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Music Videos =&lt;br /&gt;
The Music Videos Export/Import is controlled and run by the [[Import-export_library#Video_Library_Export_.2F_Import|Video Library Export/Import]]. Running the Export/Import for Movies and TV Shows, will also run the Export/Import for Music Videos at the same time as they share the same library.&lt;br /&gt;
&lt;br /&gt;
{{note|When using the Single File export in v17, there is a glitch where the artwork for music videos is not saved in the &#039;&#039;musicvideos&#039;&#039; directory, rather it is saved in the &#039;&#039;movies&#039;&#039; directory along with the Movies artwork}}&lt;br /&gt;
&lt;br /&gt;
{{note|This issue has been fixed for v18 onwards}}&lt;br /&gt;
&lt;br /&gt;
For an explanation of what artwork is exported and imported &#039;&#039;&#039;&#039;&#039;See: [[Music_Video_artwork]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Pictures =&lt;br /&gt;
The Pictures section of Kodi is simply an Image Browser. It does not use a library database. Therefore you cannot Import or Export pictures.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
= Importing library information from &amp;quot;My Movies&amp;quot; media management software =&lt;br /&gt;
[http://www.mymovies.dk/ My Movies (www.mymovies.name)] is an online database for profiling DVD-Video movies. [http://www.mymovies.dk/ My Movies] saves an XML file and a poster cover image which with this patch will get scanned by Kodi in the same way as Kodi&#039;s own XML formatted NFO files are scanned/scraped.&lt;br /&gt;
&lt;br /&gt;
Kodi has the ability to get the import movie library information from &amp;quot;[http://www.mymovies.dk/ My Movies]&amp;quot; via the mymovies.xml files that it generates, these mymovies.xml are checked after the movie.nfo file.--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
{{updated|17}}&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Guides]]&lt;br /&gt;
[[Category:Manual]]&lt;br /&gt;
[[Category:Karellen]]&lt;br /&gt;
[[Category:First time user]]&lt;br /&gt;
[[Category:Music library]]&lt;br /&gt;
[[Category:Advanced topics]]&lt;br /&gt;
[[Category:Quick Start Guide]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Artwork&amp;diff=161943</id>
		<title>Artwork</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Artwork&amp;diff=161943"/>
		<updated>2019-03-23T18:50:40Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* Kodi- Choose Art */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Artwork_Contents}}&lt;br /&gt;
{{mininav|[[Music_library|Music Library]] {{l2|[[Video_library|Video Library]]}} |[[HOW-TO:Create_Music_Library|Create Music Library]] {{l2|[[HOW-TO:Create_Video_Library|Create Video Library]]}}}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;The use of artwork takes pride of place in Kodi. The artwork will transform your mundane media player into a showpiece to be proud of, especially when teamed up with your favourite skin. Kodi   will allow you to display Movie Posters, Fanart, Album Covers, Actor and Artist images to name a few. Install the Kodi slideshow add-on, and you will have a constant display of video or music fanart to brighten your entertainment room.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As the topic covering artwork is comprehensive, it has been broken down into smaller and more manageable pages for ease of reading. Choose the subject that interests you to obtain further information. Information common to all categories is located on this page. Specific category details are located on linked pages.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Be aware that artwork is skin dependent. Not all artwork types are used in all skins.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
= Flexible artwork types =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=350px heights=200px&amp;gt;&lt;br /&gt;
File:Artwork-PosterView01.jpg&lt;br /&gt;
File:Artwork-FanartView01.jpg&lt;br /&gt;
File:Artwork-Banner01.jpg&lt;br /&gt;
File:Artwork-PosterView02.jpg&lt;br /&gt;
File:Artwork-MusicArtist01.jpg&lt;br /&gt;
File:Artwork-ClearLogo02.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Kodi}}&#039;s support for artwork types to represent media items is very flexible: Any number of artwork can be added to a media item with free-form names that have only a few rules.&lt;br /&gt;
&lt;br /&gt;
To view all art types that are already assigned in your Kodi library for any particular media type, use Kodi&#039;s built-in [[Artwork#Kodi- Choose Art| Choose Art]] dialog on nearly any item in the library (movie, TV show, episode, so on), and the list of artwork types shown on this window are assigned to at least one media item of the same type.&lt;br /&gt;
&lt;br /&gt;
== Naming rules ==&lt;br /&gt;
&lt;br /&gt;
* artwork names must be&lt;br /&gt;
** only alphanumeric characters&lt;br /&gt;
** lowercase letters&lt;br /&gt;
** keep them short - 20 characters is a bit long, though not forbidden&lt;br /&gt;
* Named by convention so that skins and JSON-RPC consumers can find and use them reliably&lt;br /&gt;
* Some common types of artwork are &amp;quot;fanart&amp;quot;, &amp;quot;clearlogo&amp;quot;, &amp;quot;landscape&amp;quot;, &amp;quot;banner&amp;quot;, and &amp;quot;poster&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Artwork whitelist ==&lt;br /&gt;
&lt;br /&gt;
Starting with Kodi 18, there is a whitelist configuration for artwork types to be added automatically. This whitelist applies to all artwork added automatically by Kodi, either when scanning in local files or scraping from online sources. This allows you to share one media file library with a full artwork selection and configure individual Kodi clients separately based on processing power, skin selection, or client-local storage space (the local artwork cache takes up the most space of all Kodi running data). It is currently configured with advancedsettings.xml &#039;&#039;&#039;[[Advancedsettings.xml#Extra artwork| for the video library]]&#039;&#039;&#039; and  &#039;&#039;&#039;[[Advancedsettings.xml#Extra artwork 2| for the music library]]&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
= Obtaining Artwork =&lt;br /&gt;
Movie, TV Show and Music artwork can be obtained using a variety of methods. The most common method is via the Kodi scraper.&lt;br /&gt;
&lt;br /&gt;
== Scrapers ==&lt;br /&gt;
A scraper is a Kodi core function which, in combination with the relevant metadata API add-on, will preform an automatic online search for movie, tv show and music information and then retrieve all relevant metadata and artwork and import the data into the Kodi Library and the artwork into the [[Artwork#Cache|cache]]. The default sources for information are: &lt;br /&gt;
&lt;br /&gt;
Movies- [https://www.themoviedb.org/ The MovieDB]&amp;lt;br /&amp;gt;&lt;br /&gt;
TV Shows- [http://thetvdb.com/ The TVDB]&amp;lt;br /&amp;gt;&lt;br /&gt;
Music- [http://www.theaudiodb.com/ The AudioDB]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
There are many other scraper information sources, but most are specialist listings for foreign language movies or Disney movies, for example.&lt;br /&gt;
&lt;br /&gt;
The Video scraping process is reliant on your local directory and file names being named in accordance with the title listed at the scraper site. To ensure correct naming, simply visit the website, search for your title, and copy the title from the site and paste into your directory/filename. &lt;br /&gt;
&lt;br /&gt;
The Music scraping process is reliant on correct file naming and music tags.&lt;br /&gt;
&lt;br /&gt;
Kodi will then match the video or music and download all relevant metadata and artwork. It is important to note that if you already have correctly named artwork in the video and music folder, then Kodi will scrape the local artwork and ignore the online source. Metadata will still be downloaded though.&lt;br /&gt;
&lt;br /&gt;
If you subsequently locate artwork that is preferable, it is possible to replace the Kodi selected artwork. Refer to [[Artwork#Kodi-_Choose_Art|paragraph 2.1]] below.&lt;br /&gt;
; {{see also|Naming video files}}&lt;br /&gt;
; {{see also|Add-on:The Movie Database}}&lt;br /&gt;
; {{see also|Add-on:The TVDB}}&lt;br /&gt;
; {{see also|Add-on:Universal Album Scraper}}&lt;br /&gt;
; {{see also|Add-on:Universal Artist Scraper}}&lt;br /&gt;
&lt;br /&gt;
== Media Managers ==&lt;br /&gt;
There is a range of software that can create nfo files and download artwork and save them to the correct location and correct naming. They perform the same process and function as the Kodi Scraping operation does natively, but they do not add any entries into the Kodi library. Instead they create what is known as &#039;&#039;&#039;[[NFO_files|NFO files]]&#039;&#039;&#039;. This file holds all the metadata for that particular movie, tv show or music. The software will also download associated artwork from the scraper site. Kodi can then read this file and scrape it into the library along with the artwork.&lt;br /&gt;
&lt;br /&gt;
Although these programs are quick and easy to use, they are more suited for use where a movie or tv show is not listed at the scraper site. You are then able to create the metadata from scratch. You would normally use this for, say, home movies, sporting events or other items that are not listed at the scraper site. &lt;br /&gt;
&lt;br /&gt;
It is always best to use Kodi for the normal mainstream scrapes and the Media Managers for the non-listed movie, tv show and music scrapes.&lt;br /&gt;
; {{see also|NFO_files}}&lt;br /&gt;
&lt;br /&gt;
== Web Search ==&lt;br /&gt;
Using an online search engine can help you discover individual artworks, or additional sites where artwork is hosted. When downloading, check that the resolution is of an acceptable standard. Also pay respect to any copyright notices that are attached to the artwork.&lt;br /&gt;
&lt;br /&gt;
Once downloaded, they must be named and saved correctly for the artwork to be visible to Kodi.&lt;br /&gt;
&lt;br /&gt;
== Create Your Own ==&lt;br /&gt;
So you are not happy with the artwork the scraper downloaded? And you just can&#039;t find that perfect artwork by manually searching the internet. Then, you will just have to create your own. For those who are artistically minded and can easily navigate around image editing software, then you should be able to easily create your very own user-defined artwork on your computer.  Only your imagination is the limit, but be mindful that the artwork needs to remain true to the movie or tv show it represents. &lt;br /&gt;
&lt;br /&gt;
If you are unsure where to start, the following links may prove useful. Especially if you plan to share your masterpieces. If this is the case, it is best to stick to the posted guidelines.&lt;br /&gt;
*Fanart.TV- The premier repository for all things artwork. They have an in-depth guide for artwork requirements&lt;br /&gt;
:;&#039;&#039;see : [https://fanart.tv/movie-fanart/&amp;lt;nowiki&amp;gt;Fanart.tv- Image Creation Guide&amp;lt;/nowiki&amp;gt;]&#039;&#039;&lt;br /&gt;
*The MovieDB- The go to movie scraper site for Kodi. In addition to metadata, they also hold a large repository of artwork that are created and uploaded to the site by people just like you. Read their easy to understand artwork creation guide.&lt;br /&gt;
:; &#039;&#039;see : [https://www.themoviedb.org/documentation/editing/images&amp;lt;nowiki&amp;gt;themoviedb- Image Creation Guide&amp;lt;/nowiki&amp;gt;]&#039;&#039;&lt;br /&gt;
*The TVDB- The go to TV Show scraper site for Kodi. In addition to metadata, they also hold a large repository of artwork devoted to TV Shows. Read their easy to understand artwork creation guide.&lt;br /&gt;
:; &#039;&#039;see : [http://www.thetvdb.com/wiki/index.php/Category:Images&amp;lt;nowiki&amp;gt;theTVDB- Image Creation Guide&amp;lt;/nowiki&amp;gt;]&#039;&#039;&lt;br /&gt;
*IMDB- A comprehensive listing of ensuring artwork is appropriate and suitable.&lt;br /&gt;
:; &#039;&#039;see : [https://contribute.imdb.com/updates/guide/images&amp;lt;nowiki&amp;gt;IMDB- Image Submission Guide&amp;lt;/nowiki&amp;gt;]&#039;&#039;&lt;br /&gt;
*TheAudioDB- The go to scraper site for all things music. They hold metadata on Artists, Albums and Songs with a large collection of music artwork.&lt;br /&gt;
:; &#039;&#039;see : [http://theaudiodb.com/forum/viewtopic.php?f=2&amp;amp;t=1&amp;lt;nowiki&amp;gt;TheAudioDB- Image Creation Guide&amp;lt;/nowiki&amp;gt;]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
= Importing-Scanning Artwork =&lt;br /&gt;
{{anchor|Importing-Scraping Artwork}}&lt;br /&gt;
&lt;br /&gt;
This section does not apply to the Kodi scraper or any other add-on scraping process. It only applies to artwork you have manually sourced and saved.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;When performing an Update Library or Scrape, Kodi will always use Local Artwork first if it exists. If there is no local artwork, Kodi will obtain the artwork from online sources.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;It is important to note that once a movie, tv show, artist or album has been scraped into the library, Kodi will ignore them on subsequent scans.&#039;&#039;&#039; If you have made changes to either artwork and/or metadata (in the form of a nfo file), you must instruct Kodi to update using one of the following methods...&lt;br /&gt;
#If the Library has not yet been created, or the source has not yet been added&lt;br /&gt;
#*Ensure your artwork is named and saved correctly. Add the [[Media sources]] to Kodi and allow to update. Artwork will be cached&lt;br /&gt;
#This Movie/TV Show/Album/Artist is new and has not been added to the library yet&lt;br /&gt;
#*An Update Library will scrape and cache the artwork, or&lt;br /&gt;
#*For Videos, navigate Videos&amp;gt;Files, navigate to the item and call up the Information page. This will start an automatic scrape for that single item&lt;br /&gt;
#*For Music, navigate Music&amp;gt;Files, locate and highlight the new artist or album. From the context menu select &#039;&#039;Scan item to library&#039;&#039;&lt;br /&gt;
#I added new artwork for Movie/TV Show/Album/Artist already in the library&lt;br /&gt;
#*For videos follow instructions for &#039;&#039;Kodi- Choose Art&#039;&#039; below&lt;br /&gt;
#*For music follow instructions in [[Music_artwork]]&lt;br /&gt;
#I added new artwork for a lot of Movies/TV Shows/Music already in the library&lt;br /&gt;
#*Update each Movie/TV Show/Music manually using instructions in the previous option, or&lt;br /&gt;
#*Remove the Source and clean library. Re-add the source and allow the Update Library&lt;br /&gt;
:&#039;&#039;&#039;&#039;&#039;See also: [[Updating_or_removing_videos|Update Video Library]]&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Available&amp;quot; artwork ==&lt;br /&gt;
&lt;br /&gt;
Scrapers and NFO files can include multiple images for a single type of artwork. The first image will be assigned to the media item for skins and other interfaces to access for display, and the full list will be saved for the &amp;quot;Choose art&amp;quot; dialog, where you can select a new image for any art type.&lt;br /&gt;
&lt;br /&gt;
== Kodi- Choose Art ==&lt;br /&gt;
From within Kodi, you have the ability to manually change the artwork at any time by following these directions. &lt;br /&gt;
&lt;br /&gt;
#Highlight the media item whose artwork you want to change. &lt;br /&gt;
#Call up the &#039;&#039;Information&#039;&#039; page, (Image 1)&lt;br /&gt;
#* For seasons and movie sets the &amp;quot;Choose Art&amp;quot; option is in the [[Context menu]].&lt;br /&gt;
#Select &#039;&#039;Choose Art&#039;&#039;. (Image 1)&lt;br /&gt;
#From within this page, you will be given the option to select which type of artwork you would like to change. (Image 2)&lt;br /&gt;
#* If the type of artwork you would like to change is not listed, use the &#039;&#039;&#039;Add art type&#039;&#039;&#039; button to add it. An onscreen keyboard will be displayed. Enter the new type of artwork and select &#039;&#039;&#039;Ok&#039;&#039;&#039;.&lt;br /&gt;
#* Examples of artwork type are those listed in the following pages- eg clearlogo, clearart, banner etc...&lt;br /&gt;
#Once selected, you will then be provided with a list of available artwork at the scraper site, or you can navigate to a local or network location. (Image 3)&lt;br /&gt;
#Once you select the desired image, it will replace the existing image. You will be returned to the screen displayed in Image 2&lt;br /&gt;
#If you do not intend to change any other artwork types, simply Esc or Back out of the screen&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=350px heights=200px&amp;gt;&lt;br /&gt;
File:Artwork-ChooseArt03.jpg|Image 1- Choose Art on the Information Page&lt;br /&gt;
File:Artwork-ChooseArt01.jpg|Image 2- Select which type of artwork to change&lt;br /&gt;
File:Artwork-ChooseArt02.jpg|Image 3- List of available remote artworks from the scraper site, as well as the ability to &#039;&#039;Browse&#039;&#039; local and network sources&lt;br /&gt;
File:Artwork-ChooseArt04.jpg|Image 4- Using the Refresh Method&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
An alternative method:&lt;br /&gt;
#Choose &#039;&#039;Refresh&#039;&#039; as seen in Image 1.&lt;br /&gt;
#You will then be asked &#039;&#039;Locally stored information found. Ignore and refresh from Internet?&#039;&#039; (Image 4)&lt;br /&gt;
#*To scrape local artwork and metadata - Select &#039;&#039;&#039;No&#039;&#039;&#039; note- If you have no local nfo file, Kodi will scrape metadata from the online scraper site&lt;br /&gt;
#*To scrape online artwork and metadata - Select &#039;&#039;&#039;Yes&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
= Artwork details for media sections =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=350px heights=200px&amp;gt;&lt;br /&gt;
File:Skin.rapier fullscreen music.jpg&lt;br /&gt;
File:Artwork-MusicBanner01.jpg&lt;br /&gt;
File:Artwork-FanartView02.jpg&lt;br /&gt;
File:Rapier new tvshows.jpg&lt;br /&gt;
File:Artwork-Animated01.gif&lt;br /&gt;
File:Artwork-musiclandscape-EstuaryATF.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Movie Artwork ==&lt;br /&gt;
{{#lst:Movie_artwork|intro}}&lt;br /&gt;
{{see|Movie artwork}}&lt;br /&gt;
&lt;br /&gt;
== TV Show Artwork ==&lt;br /&gt;
{{#lst:TV-Show_artwork|intro}}&lt;br /&gt;
{{see|TV-Show artwork}}&lt;br /&gt;
&lt;br /&gt;
== Music Artwork ==&lt;br /&gt;
{{#lst:Music_artwork|intro}}&lt;br /&gt;
{{see|Music artwork}}&lt;br /&gt;
&lt;br /&gt;
== Music Videos Artwork ==&lt;br /&gt;
{{#lst:Music_Video_artwork|intro}}&lt;br /&gt;
{{see|Music Video artwork}}&lt;br /&gt;
&lt;br /&gt;
== Live TV Artwork ==&lt;br /&gt;
{{#lst:Live_TV_Artwork|intro}}&lt;br /&gt;
{{see|Live TV Artwork}}&lt;br /&gt;
&lt;br /&gt;
== Pictures Artwork ==&lt;br /&gt;
There is no user definable artwork for the Pictures section of Kodi.&amp;lt;br /&amp;gt;&lt;br /&gt;
:&#039;&#039;&#039;&#039;&#039;See: [[Pictures]]&lt;br /&gt;
&lt;br /&gt;
All images added to Pictures are cached as follows:&lt;br /&gt;
#Embedded EXIF previews are scanned and cached. If none available then&lt;br /&gt;
#Preview images are created and cached&lt;br /&gt;
:&#039;&#039;&#039;&#039;&#039;See: [[Artwork#Cache|Artwork Cache]]&#039;&#039;&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To add an image to the folder icon:&lt;br /&gt;
:&#039;&#039;&#039;&#039;&#039;See: [[Movie_artwork#Source Folder Artwork|Folder Image]]&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
= Add-ons to display artwork =&lt;br /&gt;
The following add-ons allow you to display your movie, TV show and music artwork.&lt;br /&gt;
&lt;br /&gt;
=== Screensavers ===&lt;br /&gt;
&lt;br /&gt;
Want to do more with all that wonderful fanart? Install this Kodi screensaver. Just like a screensaver on computers from yesteryear, the Kodi screensaver will produce a slideshow of your Movie and TV Show fanart, or set it to display your Music Fanart. Don&#039;t like either of those? Then setup a directory with your own pictures and it can produce a screensaver from your selection of photos.&lt;br /&gt;
; {{see also|Add-on:Picture Slideshow Screensaver}}&lt;br /&gt;
&lt;br /&gt;
= Managing Artwork =&lt;br /&gt;
There are a number of ways to maintain and improve Kodi&#039;s handling of the artwork. &lt;br /&gt;
&lt;br /&gt;
== Cache ==&lt;br /&gt;
{{#lst:Artwork/Cache|intro}}&lt;br /&gt;
; {{see also|Artwork/Cache}}&lt;br /&gt;
&lt;br /&gt;
== Recovering Disk Space ==&lt;br /&gt;
After years of use, it is expected that your system will gather some clutter- that being either orphaned artwork files or corrupted artwork which will not display. &lt;br /&gt;
; {{see also|HOW-TO:Reduce disk space usage}}&lt;br /&gt;
; {{see also|Artwork/Cache}}&lt;br /&gt;
&lt;br /&gt;
=== Texture Cache Maintenance ===&lt;br /&gt;
{{#lst:Texture_Cache_Maintenance_utility|intro}}&lt;br /&gt;
; {{see also|Texture Cache Maintenance utility}}&lt;br /&gt;
&lt;br /&gt;
== Import/Export ==&lt;br /&gt;
{{#lst:import-export_library|intro}}&lt;br /&gt;
; {{see also|Import-export library}}&lt;br /&gt;
&lt;br /&gt;
= Troubleshooting =&lt;br /&gt;
There are certain scenarios where attempting to replace existing artwork with new artwork, &#039;&#039;&#039;you may experience {{kodi}} refusing to load the new artwork&#039;&#039;&#039;. This occurs when replacing one artwork with another artwork having the same name. eg replacing &#039;&#039;poster.jpg&#039;&#039; with a new &#039;&#039;poster.jpg&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Rest assured that the new image has been accepted, but due to the same filename, {{kodi}} may take upto 24 hrs to check the image hash, realise the image is different and clear out the cached image and replace it with the new one. This is intended behaviour. Further reading available in the following link&lt;br /&gt;
&lt;br /&gt;
; {{see also|Artwork/Cache}}&lt;br /&gt;
&lt;br /&gt;
= Animated artwork - experimental =&lt;br /&gt;
&lt;br /&gt;
Kodi has basic support for displaying animated artwork, and two artwork types have a decent collection of animated options: posters and fanart for movies. The most comprehensive support for animated artwork is Skin Helper Service, which has taken to naming these as &amp;quot;animatedposter&amp;quot; and &amp;quot;animatedfanart&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
New animated movie posters (and textless posters / keyart which could be named &amp;quot;animatedkeyart&amp;quot;) are often posted to [https://forum.kodi.tv/showthread.php?tid=215727 this forum thread].&lt;br /&gt;
&lt;br /&gt;
== Limitations of animated artwork ==&lt;br /&gt;
&lt;br /&gt;
Kodi&#039;s support for displaying animated artwork is basic, and does have some limitations.&lt;br /&gt;
&lt;br /&gt;
Number one is a hard limit on the number of pixels in a single animated artwork. The size of animated artwork is limited to roughly 12 frames of 1920x1080. This limit is defined as fully decoded pixels. The trend for animated posters is for smaller images with more frames (a recent &amp;quot;animatedposter&amp;quot; is 500x713 with 60 frames). Kodi will discard any remaining frames after it has reached this limit, which will probably hitch unpleasantly, so obeying this limit is important.&lt;br /&gt;
* Technically this limit is 11 frames but Kodi will decode full frames until it has decoded MORE than this, so the calculation is&lt;br /&gt;
** 1920 × 1080 = 2,073,600 * 11 =&lt;br /&gt;
*** 22,809,600 pixels &#039;&#039;&#039;plus&#039;&#039;&#039; one more frame&lt;br /&gt;
&lt;br /&gt;
Number two is that Kodi doesn&#039;t save animated artwork to the texture cache and will not play them (only displaying the first frame) unless they are stored on a client-local file system.&lt;br /&gt;
&lt;br /&gt;
= Accessing with skins and JSON-RPC =&lt;br /&gt;
{{#lst:Artwork/Accessing with skins and JSON-RPC|intro}}&lt;br /&gt;
; {{see also|Artwork/Accessing with skins and JSON-RPC}}&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Guides]]&lt;br /&gt;
[[Category:Manual]]&lt;br /&gt;
[[Category:Karellen]]&lt;br /&gt;
[[Category:Video library]]&lt;br /&gt;
[[Category:Music library]]&lt;br /&gt;
[[Category:Advanced topics]]&lt;br /&gt;
[[Category:First time user]]&lt;br /&gt;
[[Category:Quick Start Guide]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Music_artwork&amp;diff=159437</id>
		<title>Music artwork</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Music_artwork&amp;diff=159437"/>
		<updated>2019-02-22T02:28:50Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* Experimental music artwork */ &amp;quot;extrafanart&amp;quot; folder hack doesn&amp;#039;t work in the music library&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MusicLibraryCreate}}&lt;br /&gt;
{{mininav|[[:Category:Music_library|Music Library Index]] |[[Artwork]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;Music artwork are images directly related to an artist or an album, preferably of high quality, that are displayed when viewing the album or artist entry in the library. They may also be used as visualizations while playing music. The artwork support in {{Kodi}}&#039;s music library is very flexible and able to display many types of artwork, but this page will describe the types of artwork readily available for the Music library of Kodi.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{red|&#039;&#039;&#039;It is important to note the following:&#039;&#039;&#039;}}&lt;br /&gt;
* Artwork is skin dependent. This means that some skins display a small number of artwork types, while other skins will display many different artwork types.&lt;br /&gt;
* The default skin, Estuary, displays only a limited selection of artwork. Another skin must be used to see other artwork.&lt;br /&gt;
*To ensure &#039;&#039;&#039;local artwork&#039;&#039;&#039; is added when scanning new media items, the image files must be arranged in a certain folder hierarchy. See [[Music tagging#Folder_and_File_Structure| Music folder and file structure]] for a basic option and the [[Artist information folder]] for a separate directory option just for artist artwork and NFO files.&lt;br /&gt;
* Each artwork type must be &#039;&#039;&#039;[[Advancedsettings.xml#Music library extra artwork| whitelisted in advancedsettings.xml]]&#039;&#039;&#039; to be added to the library automatically during scanning and scraping.&lt;br /&gt;
* Kodi 18 is required for expanded artwork type support in the music library.&lt;br /&gt;
&lt;br /&gt;
= Artist artwork =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=&amp;quot;350px&amp;quot; heights=&amp;quot;200px&amp;quot;&amp;gt;&lt;br /&gt;
File:Artwork-MusicFanart01.jpg|Artist fanart&lt;br /&gt;
File:Artwork-MusicArtist01.jpg|Grid of artist thumb&lt;br /&gt;
File:Artwork-MusicBanner01.jpg|Artist banner and clearlogo&lt;br /&gt;
File:Artwork-TS-clearart-AeonNox5modmaybe.jpg|Artist clearart in center right&lt;br /&gt;
File:Artwork-musiclandscape-EstuaryATF.jpg|Grid of artist landscape&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Artist &amp;quot;fanart&amp;quot; ==&lt;br /&gt;
Fanart is also known as wallpapers, backdrops, or backgrounds.&lt;br /&gt;
;{{See also|wikipedia:Fanart|l1=Fanart on Wikipedia}}&lt;br /&gt;
&lt;br /&gt;
For Kodi they are used as full screen displays to enhance the user experience. The fanart displays the artist or band.&lt;br /&gt;
&lt;br /&gt;
Fanart have a &#039;&#039;&#039;recommended resolution of 1920x1080&#039;&#039;&#039; the display, with a specific &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039; to match the ratio of current generation televisions and monitors, which allows the screen to be completely filled by the image. Fanart also does not have transparency and preferably does not have a logo or title on the image.&lt;br /&gt;
&lt;br /&gt;
== Artist &amp;quot;thumb&amp;quot; ==&lt;br /&gt;
Artist thumbnails display the artist or band members, and are often paired with an artist logo or title of the band.&lt;br /&gt;
&lt;br /&gt;
Artist thumbnails have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039;, with a &#039;&#039;&#039;square (1:1) to somewhat portrait aspect ratio&#039;&#039;&#039;. They do not have transparency and preferably do not have a logo or artist name on the image.&lt;br /&gt;
&lt;br /&gt;
== Artist &amp;quot;banner&amp;quot; ==&lt;br /&gt;
Artist banners are wide and short images that contain the artist or band members and typically includes a clearly visible logo or the name of the band.&lt;br /&gt;
&lt;br /&gt;
Artist banners have a &#039;&#039;&#039;recommended resolution of 1000x185&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.185&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Artist &amp;quot;clearlogo&amp;quot; ==&lt;br /&gt;
Artist logos typically use the distinctive font associated with the musicians and is uncluttered by other images.&lt;br /&gt;
&lt;br /&gt;
Artist logos have a &#039;&#039;&#039;recommended resolution of 800x310&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.388&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Artist &amp;quot;clearart&amp;quot; ==&lt;br /&gt;
Artist clearart have a transparent background with an image of the artist or band along with their logo or name.&lt;br /&gt;
&lt;br /&gt;
Artist clearart have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Artist &amp;quot;landscape&amp;quot; ==&lt;br /&gt;
Landscape images are specially made 16x9 images that contain an image of the artist or band and a logo. They are used in certain page layouts for browsing. Skins can make passable replacements for media items without one with fanart and the clearlogo.&lt;br /&gt;
&lt;br /&gt;
Artist landscape have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. They have no transparency.&lt;br /&gt;
&lt;br /&gt;
== Local artist artwork ==&lt;br /&gt;
&lt;br /&gt;
Local artist artwork can be saved in the &#039;&#039;&#039;[[Artist information folder]]&#039;&#039;&#039; or a &#039;&#039;&#039;[[Music tagging#Folder and File Structure| common artist folder among your music files]]&#039;&#039;&#039; if Kodi can find one. The general rule for artist artwork file names is &amp;quot;&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&amp;quot; with some arttype examples listed below and extension matching the file type. Artist artwork can also be added from online services with an &#039;&#039;&#039;[[Scraping Music| &amp;quot;information provider&amp;quot; scraper add-on]]&#039;&#039;&#039;. * &amp;quot;folder.jpg&amp;quot; to &amp;quot;thumb&amp;quot; is a special case for the music library.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|top|#f5e3ff, #72d2f7}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved artist artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=400px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=300px |&#039;&#039;&#039;&#039;&#039;Recommended resolution&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=500px |&#039;&#039;&#039;&#039;&#039;Aspect ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart&lt;br /&gt;
| width=250px |fanart.jpg&lt;br /&gt;
| width=400px |f:\Music\Madonna\fanart.jpg&amp;lt;br&amp;gt;h:\centralinfo\artists\Madonna\fanart.jpg&lt;br /&gt;
| width=300px |1920x1080&lt;br /&gt;
| width=500px |16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |banner&lt;br /&gt;
| width=250px |banner.jpg&lt;br /&gt;
| width=400px |f:\Music\Madonna\banner.jpg&amp;lt;br&amp;gt;h:\centralinfo\artists\Madonna\banner.jpg&lt;br /&gt;
| width=300px |1000x185&lt;br /&gt;
| width=500px |1:0.185&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |landscape&lt;br /&gt;
| width=250px |landscape.jpg&lt;br /&gt;
| width=400px |f:\Music\Madonna\landscape.jpg&amp;lt;br&amp;gt;h:\centralinfo\artists\Madonna\landscape.jpg&lt;br /&gt;
| width=300px |1000x562&lt;br /&gt;
| width=500px |16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |clearlogo&lt;br /&gt;
| width=250px |clearlogo.png&lt;br /&gt;
| width=400px |f:\Music\Madonna\clearlogo.png&amp;lt;br&amp;gt;h:\centralinfo\artists\Madonna\clearlogo.png&lt;br /&gt;
| width=300px |800x310&lt;br /&gt;
| width=500px  |1:0.388&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |clearart&lt;br /&gt;
| width=250px |clearart.png&lt;br /&gt;
| width=400px |f:\Music\Madonna\clearart.png&amp;lt;br&amp;gt;h:\centralinfo\artists\Madonna\clearart.png&lt;br /&gt;
| width=300px |1000x562&lt;br /&gt;
| width=500px |16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |thumb&lt;br /&gt;
| width=250px |folder.jpg *&lt;br /&gt;
| width=400px |f:\Music\Madonna\folder.jpg *&amp;lt;br&amp;gt;h:\centralinfo\artists\Madonna\folder.jpg *&lt;br /&gt;
| width=300px |1000x1000&lt;br /&gt;
| width=500px |approximately 1:1&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Album artwork =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=&amp;quot;350px&amp;quot; heights=&amp;quot;200px&amp;quot;&amp;gt;&lt;br /&gt;
File:Artwork-MusicAlbum01.jpg|Grid of album &amp;quot;thumb&amp;quot;&lt;br /&gt;
File:Artwork-MusicBanner01.jpg|&amp;quot;discart&amp;quot; in bottom left and bottom right&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Album &amp;quot;thumb&amp;quot; ==&lt;br /&gt;
Album thumbnails are high quality images of the album front cover. The design varies widely and may or may not include the name of the album and or artist.&lt;br /&gt;
&lt;br /&gt;
Album thumbnails have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:1 (square)&#039;&#039;&#039;. Depending on design they can be somewhat wider or somewhat taller, and many skins are designed to accommodate that. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Album &amp;quot;discart&amp;quot; ==&lt;br /&gt;
Album discart replicates the picture on the physical CD or other disc. Although the disc artwork is round, the image itself is square and the disc image is placed in the center on a transparent background.&lt;br /&gt;
&lt;br /&gt;
Album discart have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:1 (square)&#039;&#039;&#039;. They have a transparent background.&lt;br /&gt;
&lt;br /&gt;
== Album &amp;quot;back&amp;quot; ==&lt;br /&gt;
This is the album back cover, which often includes a track listing, though the design varies. They are often used in detail views focused on a single album.&lt;br /&gt;
&lt;br /&gt;
Album backs have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:1 (square)&#039;&#039;&#039;. Depending on design they can be somewhat wider or somewhat taller to match the album cover. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Album &amp;quot;spine&amp;quot; ==&lt;br /&gt;
Album spines replicate the album spine found on standard CD cases. They typically have the name of the album and artist, but are too thin to have much of a design beyond continuing the front or back image. They are often used as thin identifiers for unfocused items in a list of albums.&lt;br /&gt;
&lt;br /&gt;
Album spines have a &#039;&#039;&#039;recommended resolution of 50x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:20&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Local album artwork ==&lt;br /&gt;
&lt;br /&gt;
Local album artwork can be saved in the &#039;&#039;&#039;[[Music tagging#Folder and File Structure| album folder]]&#039;&#039;&#039;. The general rule for album artwork file names is &amp;quot;&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&amp;quot; with some arttype examples listed below and extension matching the file type. Album artwork can also be added from online services with an &#039;&#039;&#039;[[Scraping Music| &amp;quot;information provider&amp;quot; scraper add-on]]&#039;&#039;&#039;. *&amp;quot;folder.jpg&amp;quot; to &amp;quot;thumb&amp;quot; is a special case for the music library.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|top|#f5e3ff, #72d2f7}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved album artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;Recommended resolution&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Aspect ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |thumb&lt;br /&gt;
| width=250px |folder.jpg *&lt;br /&gt;
| width=600px |f:\Music\Madonna\Like A Prayer\folder.jpg *&lt;br /&gt;
| width=250px |1000x1000&lt;br /&gt;
| width=600px |approximately 1:1&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |discart&lt;br /&gt;
| width=250px |discart.png&lt;br /&gt;
| width=600px |f:\Music\Madonna\Like A Prayer\discart.png&lt;br /&gt;
| width=250px |1000x1000&lt;br /&gt;
| width=600px |1:1&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |back&lt;br /&gt;
| width=250px |back.jpg&lt;br /&gt;
| width=600px |f:\Music\Madonna\Like A Prayer\back.jpg&lt;br /&gt;
| width=250px |1000x1000&lt;br /&gt;
| width=600px |approximately 1:1&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |spine&lt;br /&gt;
| width=250px |spine.jpg&lt;br /&gt;
| width=600px |f:\Music\Madonna\Like A Prayer\spine.jpg&lt;br /&gt;
| width=250px |50x1000&lt;br /&gt;
| width=600px |1:20&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Source Folder Artwork =&lt;br /&gt;
[[File:Artwork-VideoFolder01.jpg|400px|right]]&lt;br /&gt;
&lt;br /&gt;
The Folder Artwork, also known as Source Folder thumb,  can be landscape, portrait or square images that are used to replace the standard folder icons when browsing your music sources in the files section. You will not see this artwork in the Music menu. This image file is saved directly within the Source directory.&lt;br /&gt;
&lt;br /&gt;
To enable the image, navigate to Music&amp;gt;Files in the menu system. Highlight a source and call up the Context Menu. Select Choose Thumbnail. If you have saved the image in the correct location, it will be available to select immediately. If not, you will need to navigate to locate and select it. The image must remain in its original location once selected as it will not be cached. Deleting the image will remove it from view in the folder icon.&lt;br /&gt;
&lt;br /&gt;
You are able to also apply the folder thumb by modifying the &#039;&#039;&#039;\userdata\sources.xml&#039;&#039;&#039; as follows&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
   &amp;lt;name&amp;gt;music&amp;lt;/name&amp;gt;&lt;br /&gt;
   &amp;lt;path&amp;gt;xbms://192.168.1.100:1400/Music/&amp;lt;/path&amp;gt;&lt;br /&gt;
   &amp;lt;thumbnail&amp;gt;F:\Apps\XBMC\thumbs\shares\thumb.png&amp;lt;/thumbnail&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|bottom|#f5e3ff, #72d2f7}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Required file properties:&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;Note: The resolution may be increased but ensure the aspect ratio is maintained&amp;lt;/small&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;File Type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Aspect Ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Resolution- &amp;lt;small&amp;gt;recommended&amp;lt;/small&amp;gt;&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px | {{nowrap|*.jpg}} &lt;br /&gt;
| width=200px | {{nowrap|16:9}}&lt;br /&gt;
| width=200px | {{nowrap|640x360}}&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px | {{nowrap|*.jpg}} &lt;br /&gt;
| width=200px | {{nowrap|1:1.5}}&lt;br /&gt;
| width=200px | {{nowrap|400x600}}&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px | {{nowrap|*.jpg}} &lt;br /&gt;
| width=200px | {{nowrap|1:1}}&lt;br /&gt;
| width=200px | {{nowrap|500x500}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|top|#f5e3ff, #72d2f7}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Naming conventions for your own manually sourced artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |&#039;&#039;&#039;&#039;&#039;Source&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |Folder Artwork:&lt;br /&gt;
| width=250px |folder.jpg&lt;br /&gt;
| width=600px |f:\Music\folder.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |Alternative name:&lt;br /&gt;
| width=250px |&amp;lt;foldername&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\Music\Music.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Experimental music artwork =&lt;br /&gt;
&lt;br /&gt;
== Multiple fanart ==&lt;br /&gt;
&lt;br /&gt;
It is possible to download and save additional high quality fanart which the skin can display, usually in a slideshow. Multiple fanart is reliant on a supporting skin and the images have exactly the same properties as the standard fanart described above.&lt;br /&gt;
&lt;br /&gt;
Multiple additional fanart is named &amp;quot;fanart1&amp;quot;, &amp;quot;fanart2&amp;quot;, and so on with the number increasing for each artwork. The number can increase to 10 and beyond, but numbers cannot be zero-padded. Each individual fanart# must be &#039;&#039;&#039;[[Advancedsettings.xml#Extra artwork| whitelisted in advancedsettings.xml]]&#039;&#039;&#039; to be added to the library automatically during scanning and scraping.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|top|#72d2f7, #f5e3ff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved multiple fanart:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart (standard fanart)&lt;br /&gt;
| width=250px |fanart.jpg&lt;br /&gt;
| width=600px |f:\Music\Madonna\fanart.jpg&lt;br /&gt;
h:\centralinfo\artists\Madonna\fanart.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart1&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Music\Madonna\fanart1.jpg&lt;br /&gt;
h:\centralinfo\artists\Madonna\fanart1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart2&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Music\Madonna\fanart2.jpg&lt;br /&gt;
h:\centralinfo\artists\Madonna\fanart2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Embedded Artwork =&lt;br /&gt;
&amp;lt;section begin=&amp;quot;EmbeddedArtwork&amp;quot; /&amp;gt;As of v17, Kodi supports embedded album art in mp3 files with ID3v2 tags, WMA/WMV files with ASF tags, FLAC files with Vorbis comments/Xiph tags, and mp4 files with itunes tags. It does not currently support embedded album art in APEv2 tags or Ogg files.&amp;lt;section end=&amp;quot;EmbeddedArtwork&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Kodi cannot recognise multiple embedded images in a song file. It can only extract the &amp;quot;Front Cover&amp;quot; image assuming they have been tagged correctly within the file. All other images are ignored.&lt;br /&gt;
&lt;br /&gt;
A list of embedded tags recognised by Kodi is available&lt;br /&gt;
; &#039;&#039;&#039;&#039;&#039;see also: [[Music_tagging#Tags_Kodi_reads|Tags Kodi Reads]]&lt;br /&gt;
&lt;br /&gt;
= Library artwork source priority =&lt;br /&gt;
&lt;br /&gt;
# Local artwork files&lt;br /&gt;
#* Local artwork files next to your media items or in the &amp;quot;[[Artist information folder]]&amp;quot;. These are expected to be mid-high quality level for display in an interface like Kodi.&lt;br /&gt;
#* all types of artwork can be saved to local artwork files&lt;br /&gt;
# Artwork embedded in tracks&lt;br /&gt;
#* Artwork embedded in individual tracks of an album. These are expected to be lower quality to reduce the size of the image duplicated to many song files.&lt;br /&gt;
#* Only supports the album front cover&lt;br /&gt;
# Online source from &amp;quot;information provider&amp;quot;/scraper&lt;br /&gt;
#* only if the option in Kodi settings -&amp;gt; Media -&amp;gt; Music -&amp;gt; &amp;quot;Fetch additional information during updates&amp;quot; is enabled&lt;br /&gt;
#* will only be set if there is no local or embedded artwork unless the option in Kodi settings -&amp;gt; Media -&amp;gt; Music -&amp;gt; &amp;quot;Prefer online information&amp;quot; is enabled&lt;br /&gt;
#* all types of artwork can be added from information providers&lt;br /&gt;
&lt;br /&gt;
= File Mode =&lt;br /&gt;
File Mode is similar to using the file manager provided by your operating system- eg Explorer in Windows systems. It is simply a file browser that allows you to view and play your media even though it has not been scanned and/or scraped into the Library. This mode does not provide the added benefits of Extended Artwork and Album/Artist metadata that the properly scanned and scraped library provides. As a result, Music Artwork is handled differently using this mode as follows:&lt;br /&gt;
&lt;br /&gt;
*The only artwork displayed in File Mode is artist thumb and album thumb. &lt;br /&gt;
*You must have local artwork named and saved as detailed in the sections above.&lt;br /&gt;
*These images are not loaded automatically. The Artist or Album must be viewed once to allow Kodi to locate and cache the image.&lt;br /&gt;
*When &#039;&#039;&#039;Enable tag reading&#039;&#039;&#039; is &#039;&#039;&#039;&#039;&#039;Enabled&#039;&#039;&#039;&#039;&#039; the song must be viewed to allow Kodi to scan for embedded images if no local image is available.&lt;br /&gt;
&lt;br /&gt;
Kodi looks for and caches artwork in the following order:&lt;br /&gt;
*&#039;&#039;&#039;For Artist artwork:&#039;&#039;&#039;&lt;br /&gt;
*#Local artwork named and saved as detailed in the sections above. There is no fallback image&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;For Album artwork:&#039;&#039;&#039;&lt;br /&gt;
*#Local artwork named and saved as detailed in the sections above. If there is no local artwork then&lt;br /&gt;
*#If you have &#039;&#039;&#039;Enable tag reading&#039;&#039;&#039; set as &#039;&#039;&#039;&#039;&#039;Disabled&#039;&#039;&#039;&#039;&#039; in Settings&amp;gt;Media Settings&amp;gt;Music then there is no fallback image&lt;br /&gt;
*#If you have &#039;&#039;&#039;Enable tag reading&#039;&#039;&#039; set as &#039;&#039;&#039;&#039;&#039;Enabled&#039;&#039;&#039;&#039;&#039; in Settings&amp;gt;Media Settings&amp;gt;Music then Kodi will search for an embedded image to cache.&lt;br /&gt;
&lt;br /&gt;
Be aware that if you use File Mode, then upgrade to Library Mode at a later stage, your existing cached artwork may interfere with the correct scanning and scraping of new artwork. There is no simple fix for this. Your choices are&lt;br /&gt;
#Manually amend the affected artwork as described in chapter 2 above&lt;br /&gt;
#Perform the [[Artwork/Cache#Advanced: delete textures13.db|delete textures13.db]] procedure. This will also affect your Video Library.&lt;br /&gt;
&lt;br /&gt;
= {{Kodi}} version updates =&lt;br /&gt;
&lt;br /&gt;
* {{Kodi}} 17 and before did not have the &amp;quot;Artist information folder&amp;quot; option, so could have trouble identifying a local folder for artist artwork in some cases.&lt;br /&gt;
* {{Kodi}} 17 and before was &#039;&#039;&#039;limited to just &amp;quot;fanart&amp;quot; and &amp;quot;thumb&amp;quot; for artist images&#039;&#039;&#039; and &#039;&#039;&#039;&amp;quot;thumb&amp;quot; for album images&#039;&#039;&#039;, it did not have the flexibility to add a wide variety of artwork. Expanded artwork is new and still being explored from multiple angles, so not all skins or scrapers or tools will support a full selection.&lt;br /&gt;
** Skins for versions of Kodi prior to v18 could use Skin Helper Service for some support of expanded artwork, but that has been superseded with this Kodi built-in functionality.&lt;br /&gt;
* {{Kodi}} 18 adds a flexible collection of artwork for music items, but each artwork type must be &#039;&#039;&#039;[[Advancedsettings.xml#Music library extra artwork| whitelisted in advancedsettings.xml]]&#039;&#039;&#039; so that {{Kodi}} will add the specified artwork from scrapers and the file system automatically.&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Guides]]&lt;br /&gt;
[[Category:Manual]]&lt;br /&gt;
[[Category:Karellen]]&lt;br /&gt;
[[Category:First time user]]&lt;br /&gt;
[[Category:Music library]]&lt;br /&gt;
[[Category:Advanced topics]]&lt;br /&gt;
[[Category:Quick Start Guide]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Artwork&amp;diff=159431</id>
		<title>Artwork</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Artwork&amp;diff=159431"/>
		<updated>2019-02-17T20:35:14Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* Flexible artwork types */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Artwork_Contents}}&lt;br /&gt;
{{mininav|[[Music_library|Music Library]] {{l2|[[Video_library|Video Library]]}} |[[HOW-TO:Create_Music_Library|Create Music Library]] {{l2|[[HOW-TO:Create_Video_Library|Create Video Library]]}}}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;The use of artwork takes pride of place in Kodi. The artwork will transform your mundane media player into a showpiece to be proud of, especially when teamed up with your favourite skin. Kodi   will allow you to display Movie Posters, Fanart, Album Covers, Actor and Artist images to name a few. Install the Kodi slideshow add-on, and you will have a constant display of video or music fanart to brighten your entertainment room.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As the topic covering artwork is comprehensive, it has been broken down into smaller and more manageable pages for ease of reading. Choose the subject that interests you to obtain further information. Information common to all categories is located on this page. Specific category details are located on linked pages.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Be aware that artwork is skin dependent. Not all artwork types are used in all skins.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
= Flexible artwork types =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=350px heights=200px&amp;gt;&lt;br /&gt;
File:Artwork-PosterView01.jpg&lt;br /&gt;
File:Artwork-FanartView01.jpg&lt;br /&gt;
File:Artwork-Banner01.jpg&lt;br /&gt;
File:Artwork-PosterView02.jpg&lt;br /&gt;
File:Artwork-MusicArtist01.jpg&lt;br /&gt;
File:Artwork-ClearLogo02.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Kodi}}&#039;s support for artwork types to represent media items is very flexible: Any number of artwork can be added to a media item with free-form names that have only a few rules.&lt;br /&gt;
&lt;br /&gt;
To view all art types that are already assigned in your Kodi library for any particular media type, use Kodi&#039;s built-in [[Artwork#Kodi- Choose Art| Choose Art]] dialog on nearly any item in the library (movie, TV show, episode, so on), and the list of artwork types shown on this window are assigned to at least one media item of the same type.&lt;br /&gt;
&lt;br /&gt;
== Naming rules ==&lt;br /&gt;
&lt;br /&gt;
* artwork names must be&lt;br /&gt;
** only alphanumeric characters&lt;br /&gt;
** lowercase letters&lt;br /&gt;
** keep them short - 20 characters is a bit long, though not forbidden&lt;br /&gt;
* Named by convention so that skins and JSON-RPC consumers can find and use them reliably&lt;br /&gt;
* Some common types of artwork are &amp;quot;fanart&amp;quot;, &amp;quot;clearlogo&amp;quot;, &amp;quot;landscape&amp;quot;, &amp;quot;banner&amp;quot;, and &amp;quot;poster&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Artwork whitelist ==&lt;br /&gt;
&lt;br /&gt;
Starting with Kodi 18, there is a whitelist configuration for artwork types to be added automatically. This whitelist applies to all artwork added automatically by Kodi, either when scanning in local files or scraping from online sources. This allows you to share one media file library with a full artwork selection and configure individual Kodi clients separately based on processing power, skin selection, or client-local storage space (the local artwork cache takes up the most space of all Kodi running data). It is currently configured with advancedsettings.xml &#039;&#039;&#039;[[Advancedsettings.xml#Extra artwork| for the video library]]&#039;&#039;&#039; and  &#039;&#039;&#039;[[Advancedsettings.xml#Extra artwork 2| for the music library]]&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
= Obtaining Artwork =&lt;br /&gt;
Movie, TV Show and Music artwork can be obtained using a variety of methods. The most common method is via the Kodi scraper.&lt;br /&gt;
&lt;br /&gt;
== Scrapers ==&lt;br /&gt;
A scraper is a Kodi core function which, in combination with the relevant metadata API add-on, will preform an automatic online search for movie, tv show and music information and then retrieve all relevant metadata and artwork and import the data into the Kodi Library and the artwork into the [[Artwork#Cache|cache]]. The default sources for information are: &lt;br /&gt;
&lt;br /&gt;
Movies- [https://www.themoviedb.org/ The MovieDB]&amp;lt;br /&amp;gt;&lt;br /&gt;
TV Shows- [http://thetvdb.com/ The TVDB]&amp;lt;br /&amp;gt;&lt;br /&gt;
Music- [http://www.theaudiodb.com/ The AudioDB]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
There are many other scraper information sources, but most are specialist listings for foreign language movies or Disney movies, for example.&lt;br /&gt;
&lt;br /&gt;
The Video scraping process is reliant on your local directory and file names being named in accordance with the title listed at the scraper site. To ensure correct naming, simply visit the website, search for your title, and copy the title from the site and paste into your directory/filename. &lt;br /&gt;
&lt;br /&gt;
The Music scraping process is reliant on correct file naming and music tags.&lt;br /&gt;
&lt;br /&gt;
Kodi will then match the video or music and download all relevant metadata and artwork. It is important to note that if you already have correctly named artwork in the video and music folder, then Kodi will scrape the local artwork and ignore the online source. Metadata will still be downloaded though.&lt;br /&gt;
&lt;br /&gt;
If you subsequently locate artwork that is preferable, it is possible to replace the Kodi selected artwork. Refer to [[Artwork#Kodi-_Choose_Art|paragraph 2.1]] below.&lt;br /&gt;
; {{see also|Naming video files}}&lt;br /&gt;
; {{see also|Add-on:The Movie Database}}&lt;br /&gt;
; {{see also|Add-on:The TVDB}}&lt;br /&gt;
; {{see also|Add-on:Universal Album Scraper}}&lt;br /&gt;
; {{see also|Add-on:Universal Artist Scraper}}&lt;br /&gt;
&lt;br /&gt;
== Media Managers ==&lt;br /&gt;
There is a range of software that can create nfo files and download artwork and save them to the correct location and correct naming. They perform the same process and function as the Kodi Scraping operation does natively, but they do not add any entries into the Kodi library. Instead they create what is known as &#039;&#039;&#039;[[NFO_files|NFO files]]&#039;&#039;&#039;. This file holds all the metadata for that particular movie, tv show or music. The software will also download associated artwork from the scraper site. Kodi can then read this file and scrape it into the library along with the artwork.&lt;br /&gt;
&lt;br /&gt;
Although these programs are quick and easy to use, they are more suited for use where a movie or tv show is not listed at the scraper site. You are then able to create the metadata from scratch. You would normally use this for, say, home movies, sporting events or other items that are not listed at the scraper site. &lt;br /&gt;
&lt;br /&gt;
It is always best to use Kodi for the normal mainstream scrapes and the Media Managers for the non-listed movie, tv show and music scrapes.&lt;br /&gt;
; {{see also|NFO_files}}&lt;br /&gt;
&lt;br /&gt;
== Web Search ==&lt;br /&gt;
Using an online search engine can help you discover individual artworks, or additional sites where artwork is hosted. When downloading, check that the resolution is of an acceptable standard. Also pay respect to any copyright notices that are attached to the artwork.&lt;br /&gt;
&lt;br /&gt;
Once downloaded, they must be named and saved correctly for the artwork to be visible to Kodi.&lt;br /&gt;
&lt;br /&gt;
== Create Your Own ==&lt;br /&gt;
So you are not happy with the artwork the scraper downloaded? And you just can&#039;t find that perfect artwork by manually searching the internet. Then, you will just have to create your own. For those who are artistically minded and can easily navigate around image editing software, then you should be able to easily create your very own user-defined artwork on your computer.  Only your imagination is the limit, but be mindful that the artwork needs to remain true to the movie or tv show it represents. &lt;br /&gt;
&lt;br /&gt;
If you are unsure where to start, the following links may prove useful. Especially if you plan to share your masterpieces. If this is the case, it is best to stick to the posted guidelines.&lt;br /&gt;
*Fanart.TV- The premier repository for all things artwork. They have an in-depth guide for artwork requirements&lt;br /&gt;
:;&#039;&#039;see : [https://fanart.tv/movie-fanart/&amp;lt;nowiki&amp;gt;Fanart.tv- Image Creation Guide&amp;lt;/nowiki&amp;gt;]&#039;&#039;&lt;br /&gt;
*The MovieDB- The go to movie scraper site for Kodi. In addition to metadata, they also hold a large repository of artwork that are created and uploaded to the site by people just like you. Read their easy to understand artwork creation guide.&lt;br /&gt;
:; &#039;&#039;see : [https://www.themoviedb.org/documentation/editing/images&amp;lt;nowiki&amp;gt;themoviedb- Image Creation Guide&amp;lt;/nowiki&amp;gt;]&#039;&#039;&lt;br /&gt;
*The TVDB- The go to TV Show scraper site for Kodi. In addition to metadata, they also hold a large repository of artwork devoted to TV Shows. Read their easy to understand artwork creation guide.&lt;br /&gt;
:; &#039;&#039;see : [http://www.thetvdb.com/wiki/index.php/Category:Images&amp;lt;nowiki&amp;gt;theTVDB- Image Creation Guide&amp;lt;/nowiki&amp;gt;]&#039;&#039;&lt;br /&gt;
*IMDB- A comprehensive listing of ensuring artwork is appropriate and suitable.&lt;br /&gt;
:; &#039;&#039;see : [https://contribute.imdb.com/updates/guide/images&amp;lt;nowiki&amp;gt;IMDB- Image Submission Guide&amp;lt;/nowiki&amp;gt;]&#039;&#039;&lt;br /&gt;
*TheAudioDB- The go to scraper site for all things music. They hold metadata on Artists, Albums and Songs with a large collection of music artwork.&lt;br /&gt;
:; &#039;&#039;see : [http://theaudiodb.com/forum/viewtopic.php?f=2&amp;amp;t=1&amp;lt;nowiki&amp;gt;TheAudioDB- Image Creation Guide&amp;lt;/nowiki&amp;gt;]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
= Importing-Scanning Artwork =&lt;br /&gt;
{{anchor|Importing-Scraping Artwork}}&lt;br /&gt;
&lt;br /&gt;
This section does not apply to the Kodi scraper or any other add-on scraping process. It only applies to artwork you have manually sourced and saved.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;When performing an Update Library or Scrape, Kodi will always use Local Artwork first if it exists. If there is no local artwork, Kodi will obtain the artwork from online sources.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;It is important to note that once a movie, tv show, artist or album has been scraped into the library, Kodi will ignore them on subsequent scans.&#039;&#039;&#039; If you have made changes to either artwork and/or metadata (in the form of a nfo file), you must instruct Kodi to update using one of the following methods...&lt;br /&gt;
#If the Library has not yet been created, or the source has not yet been added&lt;br /&gt;
#*Ensure your artwork is named and saved correctly. Add the [[Media sources]] to Kodi and allow to update. Artwork will be cached&lt;br /&gt;
#This Movie/TV Show/Album/Artist is new and has not been added to the library yet&lt;br /&gt;
#*An Update Library will scrape and cache the artwork, or&lt;br /&gt;
#*For Videos, navigate Videos&amp;gt;Files, navigate to the item and call up the Information page. This will start an automatic scrape for that single item&lt;br /&gt;
#*For Music, navigate Music&amp;gt;Files, locate and highlight the new artist or album. From the context menu select &#039;&#039;Scan item to library&#039;&#039;&lt;br /&gt;
#I added new artwork for Movie/TV Show/Album/Artist already in the library&lt;br /&gt;
#*For videos follow instructions for &#039;&#039;Kodi- Choose Art&#039;&#039; below&lt;br /&gt;
#*For music follow instructions in [[Music_artwork]]&lt;br /&gt;
#I added new artwork for a lot of Movies/TV Shows/Music already in the library&lt;br /&gt;
#*Update each Movie/TV Show/Music manually using instructions in the previous option, or&lt;br /&gt;
#*Remove the Source and clean library. Re-add the source and allow the Update Library&lt;br /&gt;
:&#039;&#039;&#039;&#039;&#039;See also: [[Updating_or_removing_videos|Update Video Library]]&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Available&amp;quot; artwork ==&lt;br /&gt;
&lt;br /&gt;
Scrapers and NFO files can include multiple images for a single type of artwork. The first image will be assigned to the media item for skins and other interfaces to access for display, and the full list will be saved for the &amp;quot;Choose art&amp;quot; dialog, where you can select a new image for any art type.&lt;br /&gt;
&lt;br /&gt;
== Kodi- Choose Art ==&lt;br /&gt;
From within Kodi, you have the ability to manually change the artwork at any time by following these directions. &lt;br /&gt;
&lt;br /&gt;
#Highlight the media item whose artwork you want to change. &lt;br /&gt;
#Call up the &#039;&#039;Information&#039;&#039; page, (Image 1)&lt;br /&gt;
#* For seasons and movie sets the &amp;quot;Choose Art&amp;quot; option is in the [[Context menu]].&lt;br /&gt;
#Select &#039;&#039;Choose Art&#039;&#039;. (Image 1)&lt;br /&gt;
#From within this page, you will be given the option to select which type of artwork you would like to change. (Image 2)&lt;br /&gt;
#* This dialog is filled with artwork already assigned to similar media items in the library. If your type of artwork is not listed, then use the &#039;&#039;&#039;Add art&#039;&#039;&#039; button. An onscreen keyboard will be displayed. Enter the new type of artwork and select &#039;&#039;&#039;Ok&#039;&#039;&#039;.&lt;br /&gt;
#* Examples of artwork type are those listed in the following pages- eg clearlogo, clearart, banner etc...&lt;br /&gt;
#Once selected, you will then be provided with a list of available artwork at the scraper site, or you can navigate to a local or network location. (Image 3)&lt;br /&gt;
#Once you select the desired image, it will replace the existing image. You will be returned to the screen displayed in Image 2&lt;br /&gt;
#If you do not intend to change any other artwork types, simply Esc or Back out of the screen&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=350px heights=200px&amp;gt;&lt;br /&gt;
File:Artwork-ChooseArt03.jpg|Image 1- Choose Art on the Information Page&lt;br /&gt;
File:Artwork-ChooseArt01.jpg|Image 2- Select which type of artwork to change&lt;br /&gt;
File:Artwork-ChooseArt02.jpg|Image 3- List of available remote artworks from the scraper site, as well as the ability to &#039;&#039;Browse&#039;&#039; local and network sources&lt;br /&gt;
File:Artwork-ChooseArt04.jpg|Image 4- Using the Refresh Method&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
An alternative method:&lt;br /&gt;
#Choose &#039;&#039;Refresh&#039;&#039; as seen in Image 1.&lt;br /&gt;
#You will then be asked &#039;&#039;Locally stored information found. Ignore and refresh from Internet?&#039;&#039; (Image 4)&lt;br /&gt;
#*To scrape local artwork and metadata - Select &#039;&#039;&#039;No&#039;&#039;&#039; note- If you have no local nfo file, Kodi will scrape metadata from the online scraper site&lt;br /&gt;
#*To scrape online artwork and metadata - Select &#039;&#039;&#039;Yes&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
= Artwork details for media sections =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=350px heights=200px&amp;gt;&lt;br /&gt;
File:Skin.rapier fullscreen music.jpg&lt;br /&gt;
File:Artwork-MusicBanner01.jpg&lt;br /&gt;
File:Artwork-FanartView02.jpg&lt;br /&gt;
File:Rapier new tvshows.jpg&lt;br /&gt;
File:Artwork-Animated01.gif&lt;br /&gt;
File:Artwork-musiclandscape-EstuaryATF.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Movie Artwork ==&lt;br /&gt;
{{#lst:Movie_artwork|intro}}&lt;br /&gt;
{{see|Movie artwork}}&lt;br /&gt;
&lt;br /&gt;
== TV Show Artwork ==&lt;br /&gt;
{{#lst:TV-Show_artwork|intro}}&lt;br /&gt;
{{see|TV-Show artwork}}&lt;br /&gt;
&lt;br /&gt;
== Music Artwork ==&lt;br /&gt;
{{#lst:Music_artwork|intro}}&lt;br /&gt;
{{see|Music artwork}}&lt;br /&gt;
&lt;br /&gt;
== Music Videos Artwork ==&lt;br /&gt;
{{#lst:Music_Video_artwork|intro}}&lt;br /&gt;
{{see|Music Video artwork}}&lt;br /&gt;
&lt;br /&gt;
== Live TV Artwork ==&lt;br /&gt;
{{#lst:Live_TV_Artwork|intro}}&lt;br /&gt;
{{see|Live TV Artwork}}&lt;br /&gt;
&lt;br /&gt;
== Pictures Artwork ==&lt;br /&gt;
There is no user definable artwork for the Pictures section of Kodi.&amp;lt;br /&amp;gt;&lt;br /&gt;
:&#039;&#039;&#039;&#039;&#039;See: [[Pictures]]&lt;br /&gt;
&lt;br /&gt;
All images added to Pictures are cached as follows:&lt;br /&gt;
#Embedded EXIF previews are scanned and cached. If none available then&lt;br /&gt;
#Preview images are created and cached&lt;br /&gt;
:&#039;&#039;&#039;&#039;&#039;See: [[Artwork#Cache|Artwork Cache]]&#039;&#039;&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To add an image to the folder icon:&lt;br /&gt;
:&#039;&#039;&#039;&#039;&#039;See: [[Movie_artwork#Source Folder Artwork|Folder Image]]&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
= Add-ons to display artwork =&lt;br /&gt;
The following add-ons allow you to display your movie, TV show and music artwork.&lt;br /&gt;
&lt;br /&gt;
=== Screensavers ===&lt;br /&gt;
&lt;br /&gt;
Want to do more with all that wonderful fanart? Install this Kodi screensaver. Just like a screensaver on computers from yesteryear, the Kodi screensaver will produce a slideshow of your Movie and TV Show fanart, or set it to display your Music Fanart. Don&#039;t like either of those? Then setup a directory with your own pictures and it can produce a screensaver from your selection of photos.&lt;br /&gt;
; {{see also|Add-on:Picture Slideshow Screensaver}}&lt;br /&gt;
&lt;br /&gt;
= Managing Artwork =&lt;br /&gt;
There are a number of ways to maintain and improve Kodi&#039;s handling of the artwork. &lt;br /&gt;
&lt;br /&gt;
== Cache ==&lt;br /&gt;
{{#lst:Artwork/Cache|intro}}&lt;br /&gt;
; {{see also|Artwork/Cache}}&lt;br /&gt;
&lt;br /&gt;
== Recovering Disk Space ==&lt;br /&gt;
After years of use, it is expected that your system will gather some clutter- that being either orphaned artwork files or corrupted artwork which will not display. &lt;br /&gt;
; {{see also|HOW-TO:Reduce disk space usage}}&lt;br /&gt;
; {{see also|Artwork/Cache}}&lt;br /&gt;
&lt;br /&gt;
=== Texture Cache Maintenance ===&lt;br /&gt;
{{#lst:Texture_Cache_Maintenance_utility|intro}}&lt;br /&gt;
; {{see also|Texture Cache Maintenance utility}}&lt;br /&gt;
&lt;br /&gt;
== Import/Export ==&lt;br /&gt;
{{#lst:import-export_library|intro}}&lt;br /&gt;
; {{see also|Import-export library}}&lt;br /&gt;
&lt;br /&gt;
= Troubleshooting =&lt;br /&gt;
There are certain scenarios where attempting to replace existing artwork with new artwork, &#039;&#039;&#039;you may experience {{kodi}} refusing to load the new artwork&#039;&#039;&#039;. This occurs when replacing one artwork with another artwork having the same name. eg replacing &#039;&#039;poster.jpg&#039;&#039; with a new &#039;&#039;poster.jpg&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Rest assured that the new image has been accepted, but due to the same filename, {{kodi}} may take upto 24 hrs to check the image hash, realise the image is different and clear out the cached image and replace it with the new one. This is intended behaviour. Further reading available in the following link&lt;br /&gt;
&lt;br /&gt;
; {{see also|Artwork/Cache}}&lt;br /&gt;
&lt;br /&gt;
= Animated artwork - experimental =&lt;br /&gt;
&lt;br /&gt;
Kodi has basic support for displaying animated artwork, and two artwork types have a decent collection of animated options: posters and fanart for movies. The most comprehensive support for animated artwork is Skin Helper Service, which has taken to naming these as &amp;quot;animatedposter&amp;quot; and &amp;quot;animatedfanart&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
New animated movie posters (and textless posters / keyart which could be named &amp;quot;animatedkeyart&amp;quot;) are often posted to [https://forum.kodi.tv/showthread.php?tid=215727 this forum thread].&lt;br /&gt;
&lt;br /&gt;
== Limitations of animated artwork ==&lt;br /&gt;
&lt;br /&gt;
Kodi&#039;s support for displaying animated artwork is basic, and does have some limitations.&lt;br /&gt;
&lt;br /&gt;
Number one is a hard limit on the number of pixels in a single animated artwork. The size of animated artwork is limited to roughly 12 frames of 1920x1080. This limit is defined as fully decoded pixels. The trend for animated posters is for smaller images with more frames (a recent &amp;quot;animatedposter&amp;quot; is 500x713 with 60 frames). Kodi will discard any remaining frames after it has reached this limit, which will probably hitch unpleasantly, so obeying this limit is important.&lt;br /&gt;
* Technically this limit is 11 frames but Kodi will decode full frames until it has decoded MORE than this, so the calculation is&lt;br /&gt;
** 1920 × 1080 = 2,073,600 * 11 =&lt;br /&gt;
*** 22,809,600 pixels &#039;&#039;&#039;plus&#039;&#039;&#039; one more frame&lt;br /&gt;
&lt;br /&gt;
Number two is that Kodi doesn&#039;t save animated artwork to the texture cache and will not play them (only displaying the first frame) unless they are stored on a client-local file system.&lt;br /&gt;
&lt;br /&gt;
= Accessing with skins and JSON-RPC =&lt;br /&gt;
{{#lst:Artwork/Accessing with skins and JSON-RPC|intro}}&lt;br /&gt;
; {{see also|Artwork/Accessing with skins and JSON-RPC}}&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Guides]]&lt;br /&gt;
[[Category:Manual]]&lt;br /&gt;
[[Category:Karellen]]&lt;br /&gt;
[[Category:Video library]]&lt;br /&gt;
[[Category:Music library]]&lt;br /&gt;
[[Category:Advanced topics]]&lt;br /&gt;
[[Category:First time user]]&lt;br /&gt;
[[Category:Quick Start Guide]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Movie_artwork&amp;diff=159417</id>
		<title>Movie artwork</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Movie_artwork&amp;diff=159417"/>
		<updated>2019-02-12T02:31:39Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* Local movie artwork */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Artwork_Contents}}&lt;br /&gt;
{{mininav|[[:Category:Video_library|Video Library Index]] |[[Artwork]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;Movie artwork are images directly related to a movie or movie collection / set, preferably of high quality, that are displayed when viewing the movie or collection entry in the library. The artwork support in {{Kodi}}&#039;s video library is very flexible and able to display many types of artwork, but this page will describe the types of artwork readily available for the Movie library of Kodi.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{red|&#039;&#039;&#039;It is important to note the following:&#039;&#039;&#039;}}&lt;br /&gt;
* Artwork is skin dependent. This means that some skins display a small number of artwork types, while other skins will display many different artwork types.&lt;br /&gt;
* The default skin, Estuary, displays only a limited selection of artwork. Another skin must be used to see other artwork.&lt;br /&gt;
* Each artwork type must be &#039;&#039;&#039;[[Advancedsettings.xml#Extra artwork| whitelisted in advancedsettings.xml]]&#039;&#039;&#039; to be added to the library automatically during scanning and scraping.&lt;br /&gt;
&lt;br /&gt;
= Movie artwork =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=&amp;quot;350px&amp;quot; heights=&amp;quot;200px&amp;quot;&amp;gt;&lt;br /&gt;
File:Artwork-FanartView02.jpg|Movie fanart&lt;br /&gt;
File:Artwork-PosterView01.jpg|Movie poster&lt;br /&gt;
File:Artwork-Banner02.jpg|Movie banner&lt;br /&gt;
File:Artwork-ClearArt01.jpg|Movie clearart&lt;br /&gt;
File:Artwork-ClearLogo.jpg|Movie clearlogo&lt;br /&gt;
File:Artwork-Thumbs01.jpg|Movie landscape&lt;br /&gt;
File:Artwork-DiscArt01.jpg|Movie discart&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;fanart&amp;quot; ==&lt;br /&gt;
Fanart is also known as wallpapers, backdrops, or backgrounds.&lt;br /&gt;
;{{See also|wikipedia:Fanart|l1=Fanart on Wikipedia}}&lt;br /&gt;
&lt;br /&gt;
For Kodi they are used as full screen displays to enhance the user experience.&lt;br /&gt;
&lt;br /&gt;
Fanart have a &#039;&#039;&#039;recommended resolution of 1920x1080&#039;&#039;&#039; the display, with a specific &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039; to match the ratio of current generation televisions and monitors, which allows the screen to be completely filled by the image. Fanart also does not have transparency and preferably does not have a logo or title on the image.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;poster&amp;quot; ==&lt;br /&gt;
Movie posters replicates the movie posters often seen in cinema complexes, or the front cover of home video releases, and contain a clearly visible logo or name of the movie.&lt;br /&gt;
&lt;br /&gt;
Movie posters have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;banner&amp;quot; ==&lt;br /&gt;
Movie banners are wide and short images that contain recognizable characters or props from the movie and typically includes a clearly visible logo or the name of the movie.&lt;br /&gt;
&lt;br /&gt;
Movie banners have a &#039;&#039;&#039;recommended resolution of 1000x185&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.185&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;clearlogo&amp;quot; ==&lt;br /&gt;
Movie logos typically use the distinctive font associated with the movie and is uncluttered by other images.&lt;br /&gt;
&lt;br /&gt;
Movie logos have a &#039;&#039;&#039;recommended resolution of 800x310&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.388&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;clearart&amp;quot; ==&lt;br /&gt;
Movie clearart have a transparent background with recognizable characters or props from the movie along with a logo or name.&lt;br /&gt;
&lt;br /&gt;
Movie clearart have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;landscape&amp;quot; ==&lt;br /&gt;
Landscape images are specially made 16x9 images that contain recognizable characters or props from the movie and a logo. They are used in certain page layouts for browsing. Skins can make passable replacements for media items without one with fanart and the clearlogo.&lt;br /&gt;
&lt;br /&gt;
Movie landscape have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. They have no transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;discart&amp;quot; ==&lt;br /&gt;
Movie discart replicates the picture on the physical Blu-ray or other disc. Although the disc artwork is round, the image itself is square and the disc image is placed in the center on a transparent background.&lt;br /&gt;
&lt;br /&gt;
Movie discart have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:1 (square)&#039;&#039;&#039;. They have a transparent background.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;keyart&amp;quot; ==&lt;br /&gt;
Movie keyart is a poster without text or a logo. This is useful as a separate item in a skinner&#039;s toolbox as it can be paired with a clearlogo or large text title elsewhere on the window, and without text it is less distracting in the background or half-obscured, similar to fanart.&lt;br /&gt;
&lt;br /&gt;
Movie keyart have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;thumb&amp;quot; ==&lt;br /&gt;
Movie thumbnails are still images from the movie itself, and can be generated from the video file in your library.&lt;br /&gt;
&lt;br /&gt;
Movie thumbnails are often displayed in small boxes and have a &#039;&#039;&#039;recommended resolution of about 960x540&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
== Local movie artwork ==&lt;br /&gt;
&lt;br /&gt;
Local movie artwork can be saved in the same folder the [[Naming_video_files/Movies#Movie_Folder_.26_Filename|movie file]] is saved. The default name for movie artwork file names is &#039;&#039;&#039;&amp;lt;movie file name&amp;gt;-&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&#039;&#039;&#039; - with some arttype examples listed below and extension matching the image type. There is also a short name &amp;quot;&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&amp;quot; that can be used if your movie source folder is configured with [[Adding video sources#Set Content |Movies are in separate folders that match the movie title]], but the long name &amp;quot;&amp;lt;movie file name&amp;gt;-&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&amp;quot; still takes precedence. Movie artwork can also be added from online services with an &#039;&#039;&#039;&amp;quot;information provider&amp;quot; scraper add-on&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved movie artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| movie file&lt;br /&gt;
| Blade Runner 2049 (2017).mkv&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017).mkv&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=100px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=200px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Recommended resolution&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Aspect ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| fanart&lt;br /&gt;
| fanart.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-fanart.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
| 1920x1080&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| poster&lt;br /&gt;
| poster.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-poster.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\poster.jpg&lt;br /&gt;
| 1000x1500&lt;br /&gt;
| approximately 1:1.5&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| banner&lt;br /&gt;
| banner.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-banner.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\banner.jpg&lt;br /&gt;
| 1000x185&lt;br /&gt;
| 1:0.185&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| landscape&lt;br /&gt;
| landscape.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-landscape.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\landscape.jpg&lt;br /&gt;
| 1000x562&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| clearlogo&lt;br /&gt;
| clearlogo.png&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-clearlogo.png&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\clearlogo.jpg&lt;br /&gt;
| 800x310&lt;br /&gt;
| 1:0.388&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| clearart&lt;br /&gt;
| clearart.png&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-clearart.png&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\clearart.jpg&lt;br /&gt;
| 1000x562&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| keyart&lt;br /&gt;
| keyart.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-keyart.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\keyart.jpg&lt;br /&gt;
| 1000x1500&lt;br /&gt;
| approximately 1:1.5&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| thumb&lt;br /&gt;
| thumb.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-thumb.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\thumb.jpg&lt;br /&gt;
| 960x540&lt;br /&gt;
| match video aspect&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Movie set artwork =&lt;br /&gt;
&lt;br /&gt;
Movie collections / sets have the same art types available as movies. Kodi currently does not support adding movie set artwork from the local file system, but it is supported with scrapers.&lt;br /&gt;
; {{see also|Movie_sets}}&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;fanart&amp;quot; ==&lt;br /&gt;
Fanart is also known as wallpapers, backdrops, or backgrounds.&lt;br /&gt;
;{{See also|wikipedia:Fanart|l1=Fanart on Wikipedia}}&lt;br /&gt;
&lt;br /&gt;
For Kodi they are used as full screen displays to enhance the user experience.&lt;br /&gt;
&lt;br /&gt;
Fanart have a &#039;&#039;&#039;recommended resolution of 1920x1080&#039;&#039;&#039; the display, with a specific &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039; to match the ratio of current generation televisions and monitors, which allows the screen to be completely filled by the image. Fanart also does not have transparency and preferably does not have a logo or title on the image.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;poster&amp;quot; ==&lt;br /&gt;
Movie posters replicates the movie posters often seen in cinema complexes, or the front cover of home video releases, and contain a clearly visible logo or name of the movie set.&lt;br /&gt;
&lt;br /&gt;
Movie set posters have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency but do have the movie set logo or name on the image.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;banner&amp;quot; ==&lt;br /&gt;
Movie set banners are wide and short images that contain recognizable characters or props from the movie set and typically includes a clearly visible logo or the name of the movie set.&lt;br /&gt;
&lt;br /&gt;
Movie set banners have a &#039;&#039;&#039;recommended resolution of 1000x185&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.185&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;clearlogo&amp;quot; ==&lt;br /&gt;
Movie set logos typically use the distinctive font associated with the movie set and is uncluttered by other images.&lt;br /&gt;
&lt;br /&gt;
Movie set logos have a &#039;&#039;&#039;recommended resolution of 800x310&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.388&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;clearart&amp;quot; ==&lt;br /&gt;
Movie set clearart have a transparent background with recognizable characters or props from the movie set along with its logo or name.&lt;br /&gt;
&lt;br /&gt;
Movie set clearart have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;landscape&amp;quot; ==&lt;br /&gt;
Landscape images are specially made 16x9 images that contain recognizable characters or props from the movie set and a logo. They are used in certain page layouts for browsing. Skins can make passable replacements for media items without one with fanart and the clearlogo.&lt;br /&gt;
&lt;br /&gt;
Movie set landscape have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. They have no transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;discart&amp;quot; ==&lt;br /&gt;
Movie set discart replicates the picture on the physical Blu-ray or other disc. Although the disc artwork is round, the image itself is square and the disc image is placed in the center on a transparent background.&lt;br /&gt;
&lt;br /&gt;
Movie set discart have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:1 (square)&#039;&#039;&#039;. They have a transparent background.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;keyart&amp;quot; ==&lt;br /&gt;
Movie set keyart is a poster without text or a logo. This is useful as a separate item in a skinner&#039;s toolbox as it can be paired with a clearlogo or large text title elsewhere on the window, and without text it is less distracting in the background or half-obscured, similar to fanart.&lt;br /&gt;
&lt;br /&gt;
Movie set keyart have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Local movie set artwork ==&lt;br /&gt;
&lt;br /&gt;
Local movie set artwork is not supported in Kodi, but it can be added from online services with an &#039;&#039;&#039;&amp;quot;information provider&amp;quot; scraper add-on&#039;&#039;&#039;.&lt;br /&gt;
The add-on [https://forum.kodi.tv/showthread.php?tid=258886 Artwork Beef] can add local movie set artwork to your library. [https://forum.kodi.tv/showthread.php?tid=153502 Movie Set Artwork Automator] hasn&#039;t been supported for some time, but it is also capable of adding local movie set artwork to your library.&lt;br /&gt;
&lt;br /&gt;
= Actor Image =&lt;br /&gt;
[[File:Artwork-Actors02.jpg|400px|right]]&lt;br /&gt;
&lt;br /&gt;
The Actor artwork is a portrait of an actor for easy identification. The image is named as follows &#039;&#039;&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The image to the right is displaying the Actor images of five actors along the top row. They are portrait, medium to high quality images.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Required file properties:&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;Note: The resolution may be increased but ensure the aspect ratio is maintained&amp;lt;/small&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;File Type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Aspect Ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Resolution- &amp;lt;small&amp;gt;recommended&amp;lt;/small&amp;gt;&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px | {{nowrap|*.jpg}} &lt;br /&gt;
| width=200px | {{nowrap|1:1.5}}&lt;br /&gt;
| width=200px | {{nowrap|1000x1500}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Naming conventions for your own manually sourced artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;Saved movies as&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save Location&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |BluRay Structure:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:MyMovies\Big Buck Bunny (2008)\BDMV\.actors\Amy_Adams.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |DVD Structure:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\Big Buck Bunny (2008)\VIDEO_TS\.actors\Amy_Adams.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |Single movie in Directory:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\Big Buck Bunny (2008)\.actors\Amy_Adams.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |Two or more movies in single Directory:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\.actors\Amy_Adams.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Source Folder Artwork =&lt;br /&gt;
[[File:Artwork-VideoFolder01.jpg|400px|right]]&lt;br /&gt;
&lt;br /&gt;
The Folder Artwork, also known as Source Folder thumb,  are landscape images that can be used to replace the standard folder icons when browsing your movie sources in the Video menu. You will not see this artwork in the Movies menu. This image file is saved directly within the Source directory.&lt;br /&gt;
&lt;br /&gt;
To enable the image, navigate to Videos&amp;gt;Files in the menu system. Highlight a source and call up the Context Menu. Select Choose Thumbnail. If you have saved in the image in the correct location, it will be available to select immediately. If not, you will need to navigate to locate and select it. The image must remain in its original location once selected. Deleting the image will remove it from view in the folder icon.&lt;br /&gt;
&lt;br /&gt;
You are able to also apply the folder thumb by modifying the &#039;&#039;&#039;\userdata\sources.xml&#039;&#039;&#039; as follows&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
   &amp;lt;name&amp;gt;Movie&amp;lt;/name&amp;gt;&lt;br /&gt;
   &amp;lt;path&amp;gt;xbms://192.168.1.100:1400/Movie/&amp;lt;/path&amp;gt;&lt;br /&gt;
   &amp;lt;thumbnail&amp;gt;F:\MyMovies\folder.jpg&amp;lt;/thumbnail&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Required file properties:&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;Note: The resolution may be increased but ensure the aspect ratio is maintained&amp;lt;/small&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;File Type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Aspect Ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Resolution- &amp;lt;small&amp;gt;recommended&amp;lt;/small&amp;gt;&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px | {{nowrap|*.jpg}} &lt;br /&gt;
| width=200px | {{nowrap|16:9}}&lt;br /&gt;
| width=200px | {{nowrap|640x360}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Naming conventions for your own manually sourced artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |&#039;&#039;&#039;&#039;&#039;Saved movies as&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save Location&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |Folder Artwork:&lt;br /&gt;
| width=250px |folder.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\folder.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |Alternative name:&lt;br /&gt;
| width=250px |&amp;lt;foldername&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\MyMovies.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Experimental movie artwork =&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;extrafanart&amp;quot; folder ==&lt;br /&gt;
{{anchor|Extra Fanart}}&lt;br /&gt;
&lt;br /&gt;
It is possible to download and save additional high quality fanart which the skin can display, usually in a slideshow. Extra fanart is reliant on a supporting skin and the images have exactly the same properties as the standard fanart described above. This is older and more widely supported in skins.&lt;br /&gt;
&lt;br /&gt;
Extra Fanart is stored in a separate Folder named &amp;quot;extrafanart&amp;quot;. Create a Folder named &#039;&#039;&#039;extrafanart&#039;&#039;&#039; in the folder of the movie, and place each extra fanart image in it. This artwork is not added to the Kodi library, instead skins list the folder directly; this can wake hard drives while browsing the library. The filename is mostly not important.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved extrafanart::&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart0.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrafanart\fanart0.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrafanart\fanart1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrafanart\fanart2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Multiple fanart ==&lt;br /&gt;
&lt;br /&gt;
Multiple fanart is an alternative to &amp;quot;extrafanart&amp;quot; that adds all of the fanart images to the Kodi library, and they are treated just like any other artwork type. This is newer and not supported in as many skins as extrafanart.&lt;br /&gt;
&lt;br /&gt;
Multiple additional fanart is named &amp;quot;fanart1&amp;quot;, &amp;quot;fanart2&amp;quot;, and so on with the number increasing for each artwork. The number can increase to 10 and beyond, but numbers cannot be zero-padded. This currently requires more work from skins to display than &amp;quot;extrafanart&amp;quot; and can be awkward to configure because each numbered fanart needs to be added to the artwork whitelist, but the improved performance and behavior that matches other artwork is worth it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved multiple fanart:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart (standard fanart)&lt;br /&gt;
| width=250px |fanart.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart1&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\fanart1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart2&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\fanart2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;extrathumbs&amp;quot; folder ==&lt;br /&gt;
{{anchor|Extra Thumbs}}&lt;br /&gt;
&lt;br /&gt;
It is possible to download and save additional thumbnails which the skin can display. Extra thumbs are reliant on a supporting skin and the images have exactly the same properties as the standard thumb described above.&lt;br /&gt;
&lt;br /&gt;
Extra Thumbs are stored in a separate Folder named &amp;quot;extrathumbs&amp;quot;. Create a Folder named &#039;&#039;&#039;extrathumbs&#039;&#039;&#039; in the folder of the Movie.  Each Extra Thumb must be named &#039;&#039;thumbX.jpg&#039;&#039; where &#039;&#039;X&#039;&#039; is a sequential number starting with 0 &#039;&#039;(thumb0.jpg, thumb1.jpg, thumb2.jpg, etc)&#039;&#039;. There is a limit of 10 thumb images allowable. Be aware that some skins utilise less than 10 of the images. The location of the extrathumbs Folder is as follows.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved extrathumbs::&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart0.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrathumbs\thumb0.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrathumbs\thumb1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrathumbs\thumb2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Guides]]&lt;br /&gt;
[[Category:Manual]]&lt;br /&gt;
[[Category:Karellen]]&lt;br /&gt;
[[Category:Video library]]&lt;br /&gt;
[[Category:First time user]]&lt;br /&gt;
[[Category:Advanced topics]]&lt;br /&gt;
[[Category:Quick Start Guide]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Movie_artwork&amp;diff=159416</id>
		<title>Movie artwork</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Movie_artwork&amp;diff=159416"/>
		<updated>2019-02-12T02:22:34Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* Local movie artwork */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Artwork_Contents}}&lt;br /&gt;
{{mininav|[[:Category:Video_library|Video Library Index]] |[[Artwork]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;Movie artwork are images directly related to a movie or movie collection / set, preferably of high quality, that are displayed when viewing the movie or collection entry in the library. The artwork support in {{Kodi}}&#039;s video library is very flexible and able to display many types of artwork, but this page will describe the types of artwork readily available for the Movie library of Kodi.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{red|&#039;&#039;&#039;It is important to note the following:&#039;&#039;&#039;}}&lt;br /&gt;
* Artwork is skin dependent. This means that some skins display a small number of artwork types, while other skins will display many different artwork types.&lt;br /&gt;
* The default skin, Estuary, displays only a limited selection of artwork. Another skin must be used to see other artwork.&lt;br /&gt;
* Each artwork type must be &#039;&#039;&#039;[[Advancedsettings.xml#Extra artwork| whitelisted in advancedsettings.xml]]&#039;&#039;&#039; to be added to the library automatically during scanning and scraping.&lt;br /&gt;
&lt;br /&gt;
= Movie artwork =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=&amp;quot;350px&amp;quot; heights=&amp;quot;200px&amp;quot;&amp;gt;&lt;br /&gt;
File:Artwork-FanartView02.jpg|Movie fanart&lt;br /&gt;
File:Artwork-PosterView01.jpg|Movie poster&lt;br /&gt;
File:Artwork-Banner02.jpg|Movie banner&lt;br /&gt;
File:Artwork-ClearArt01.jpg|Movie clearart&lt;br /&gt;
File:Artwork-ClearLogo.jpg|Movie clearlogo&lt;br /&gt;
File:Artwork-Thumbs01.jpg|Movie landscape&lt;br /&gt;
File:Artwork-DiscArt01.jpg|Movie discart&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;fanart&amp;quot; ==&lt;br /&gt;
Fanart is also known as wallpapers, backdrops, or backgrounds.&lt;br /&gt;
;{{See also|wikipedia:Fanart|l1=Fanart on Wikipedia}}&lt;br /&gt;
&lt;br /&gt;
For Kodi they are used as full screen displays to enhance the user experience.&lt;br /&gt;
&lt;br /&gt;
Fanart have a &#039;&#039;&#039;recommended resolution of 1920x1080&#039;&#039;&#039; the display, with a specific &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039; to match the ratio of current generation televisions and monitors, which allows the screen to be completely filled by the image. Fanart also does not have transparency and preferably does not have a logo or title on the image.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;poster&amp;quot; ==&lt;br /&gt;
Movie posters replicates the movie posters often seen in cinema complexes, or the front cover of home video releases, and contain a clearly visible logo or name of the movie.&lt;br /&gt;
&lt;br /&gt;
Movie posters have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;banner&amp;quot; ==&lt;br /&gt;
Movie banners are wide and short images that contain recognizable characters or props from the movie and typically includes a clearly visible logo or the name of the movie.&lt;br /&gt;
&lt;br /&gt;
Movie banners have a &#039;&#039;&#039;recommended resolution of 1000x185&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.185&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;clearlogo&amp;quot; ==&lt;br /&gt;
Movie logos typically use the distinctive font associated with the movie and is uncluttered by other images.&lt;br /&gt;
&lt;br /&gt;
Movie logos have a &#039;&#039;&#039;recommended resolution of 800x310&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.388&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;clearart&amp;quot; ==&lt;br /&gt;
Movie clearart have a transparent background with recognizable characters or props from the movie along with a logo or name.&lt;br /&gt;
&lt;br /&gt;
Movie clearart have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;landscape&amp;quot; ==&lt;br /&gt;
Landscape images are specially made 16x9 images that contain recognizable characters or props from the movie and a logo. They are used in certain page layouts for browsing. Skins can make passable replacements for media items without one with fanart and the clearlogo.&lt;br /&gt;
&lt;br /&gt;
Movie landscape have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. They have no transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;discart&amp;quot; ==&lt;br /&gt;
Movie discart replicates the picture on the physical Blu-ray or other disc. Although the disc artwork is round, the image itself is square and the disc image is placed in the center on a transparent background.&lt;br /&gt;
&lt;br /&gt;
Movie discart have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:1 (square)&#039;&#039;&#039;. They have a transparent background.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;keyart&amp;quot; ==&lt;br /&gt;
Movie keyart is a poster without text or a logo. This is useful as a separate item in a skinner&#039;s toolbox as it can be paired with a clearlogo or large text title elsewhere on the window, and without text it is less distracting in the background or half-obscured, similar to fanart.&lt;br /&gt;
&lt;br /&gt;
Movie keyart have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;thumb&amp;quot; ==&lt;br /&gt;
Movie thumbnails are still images from the movie itself, and can be generated from the video file in your library.&lt;br /&gt;
&lt;br /&gt;
Movie thumbnails are often displayed in small boxes and have a &#039;&#039;&#039;recommended resolution of about 960x540&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
== Local movie artwork ==&lt;br /&gt;
&lt;br /&gt;
Local movie artwork can be saved in the same folder the [[Naming_video_files/Movies#Movie_Folder_.26_Filename|movie file]] is saved. The default name for movie artwork file names is &#039;&#039;&#039;&amp;lt;movie file name&amp;gt;-&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&#039;&#039;&#039; - with some arttype examples listed below and extension matching the image type. There is also a short name &amp;quot;&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&amp;quot; that can be used if your movie source folder is configured with [[Adding video sources#Set Content |Movies are in separate folders that match the movie title]], but the long name &amp;quot;&amp;lt;movie file name&amp;gt;-&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&amp;quot; still takes precedence. Movie artwork can also be added from online services with an &#039;&#039;&#039;&amp;quot;information provider&amp;quot; scraper add-on&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved movie artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| movie file&lt;br /&gt;
| Blade Runner 2049 (2017).mkv&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017).mkv&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=100px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=200px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Recommended resolution&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Aspect ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| fanart&lt;br /&gt;
| fanart.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-fanart.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
| 1920x1080&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| poster&lt;br /&gt;
| poster.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-poster.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
| 1000x1500&lt;br /&gt;
| approximately 1:1.5&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| banner&lt;br /&gt;
| banner.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-banner.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
| 1000x185&lt;br /&gt;
| 1:0.185&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| landscape&lt;br /&gt;
| landscape.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-landscape.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
| 1000x562&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| clearlogo&lt;br /&gt;
| clearlogo.png&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-clearlogo.png&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
| 800x310&lt;br /&gt;
| 1:0.388&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| clearart&lt;br /&gt;
| clearart.png&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-clearart.png&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
| 1000x562&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| keyart&lt;br /&gt;
| keyart.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-keyart.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
| 1000x1500&lt;br /&gt;
| approximately 1:1.5&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| thumb&lt;br /&gt;
| thumb.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-thumb.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
| 960x540&lt;br /&gt;
| match video aspect&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Movie set artwork =&lt;br /&gt;
&lt;br /&gt;
Movie collections / sets have the same art types available as movies. Kodi currently does not support adding movie set artwork from the local file system, but it is supported with scrapers.&lt;br /&gt;
; {{see also|Movie_sets}}&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;fanart&amp;quot; ==&lt;br /&gt;
Fanart is also known as wallpapers, backdrops, or backgrounds.&lt;br /&gt;
;{{See also|wikipedia:Fanart|l1=Fanart on Wikipedia}}&lt;br /&gt;
&lt;br /&gt;
For Kodi they are used as full screen displays to enhance the user experience.&lt;br /&gt;
&lt;br /&gt;
Fanart have a &#039;&#039;&#039;recommended resolution of 1920x1080&#039;&#039;&#039; the display, with a specific &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039; to match the ratio of current generation televisions and monitors, which allows the screen to be completely filled by the image. Fanart also does not have transparency and preferably does not have a logo or title on the image.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;poster&amp;quot; ==&lt;br /&gt;
Movie posters replicates the movie posters often seen in cinema complexes, or the front cover of home video releases, and contain a clearly visible logo or name of the movie set.&lt;br /&gt;
&lt;br /&gt;
Movie set posters have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency but do have the movie set logo or name on the image.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;banner&amp;quot; ==&lt;br /&gt;
Movie set banners are wide and short images that contain recognizable characters or props from the movie set and typically includes a clearly visible logo or the name of the movie set.&lt;br /&gt;
&lt;br /&gt;
Movie set banners have a &#039;&#039;&#039;recommended resolution of 1000x185&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.185&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;clearlogo&amp;quot; ==&lt;br /&gt;
Movie set logos typically use the distinctive font associated with the movie set and is uncluttered by other images.&lt;br /&gt;
&lt;br /&gt;
Movie set logos have a &#039;&#039;&#039;recommended resolution of 800x310&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.388&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;clearart&amp;quot; ==&lt;br /&gt;
Movie set clearart have a transparent background with recognizable characters or props from the movie set along with its logo or name.&lt;br /&gt;
&lt;br /&gt;
Movie set clearart have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;landscape&amp;quot; ==&lt;br /&gt;
Landscape images are specially made 16x9 images that contain recognizable characters or props from the movie set and a logo. They are used in certain page layouts for browsing. Skins can make passable replacements for media items without one with fanart and the clearlogo.&lt;br /&gt;
&lt;br /&gt;
Movie set landscape have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. They have no transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;discart&amp;quot; ==&lt;br /&gt;
Movie set discart replicates the picture on the physical Blu-ray or other disc. Although the disc artwork is round, the image itself is square and the disc image is placed in the center on a transparent background.&lt;br /&gt;
&lt;br /&gt;
Movie set discart have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:1 (square)&#039;&#039;&#039;. They have a transparent background.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;keyart&amp;quot; ==&lt;br /&gt;
Movie set keyart is a poster without text or a logo. This is useful as a separate item in a skinner&#039;s toolbox as it can be paired with a clearlogo or large text title elsewhere on the window, and without text it is less distracting in the background or half-obscured, similar to fanart.&lt;br /&gt;
&lt;br /&gt;
Movie set keyart have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Local movie set artwork ==&lt;br /&gt;
&lt;br /&gt;
Local movie set artwork is not supported in Kodi, but it can be added from online services with an &#039;&#039;&#039;&amp;quot;information provider&amp;quot; scraper add-on&#039;&#039;&#039;.&lt;br /&gt;
The add-on [https://forum.kodi.tv/showthread.php?tid=258886 Artwork Beef] can add local movie set artwork to your library. [https://forum.kodi.tv/showthread.php?tid=153502 Movie Set Artwork Automator] hasn&#039;t been supported for some time, but it is also capable of adding local movie set artwork to your library.&lt;br /&gt;
&lt;br /&gt;
= Actor Image =&lt;br /&gt;
[[File:Artwork-Actors02.jpg|400px|right]]&lt;br /&gt;
&lt;br /&gt;
The Actor artwork is a portrait of an actor for easy identification. The image is named as follows &#039;&#039;&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The image to the right is displaying the Actor images of five actors along the top row. They are portrait, medium to high quality images.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Required file properties:&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;Note: The resolution may be increased but ensure the aspect ratio is maintained&amp;lt;/small&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;File Type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Aspect Ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Resolution- &amp;lt;small&amp;gt;recommended&amp;lt;/small&amp;gt;&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px | {{nowrap|*.jpg}} &lt;br /&gt;
| width=200px | {{nowrap|1:1.5}}&lt;br /&gt;
| width=200px | {{nowrap|1000x1500}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Naming conventions for your own manually sourced artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;Saved movies as&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save Location&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |BluRay Structure:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:MyMovies\Big Buck Bunny (2008)\BDMV\.actors\Amy_Adams.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |DVD Structure:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\Big Buck Bunny (2008)\VIDEO_TS\.actors\Amy_Adams.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |Single movie in Directory:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\Big Buck Bunny (2008)\.actors\Amy_Adams.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |Two or more movies in single Directory:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\.actors\Amy_Adams.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Source Folder Artwork =&lt;br /&gt;
[[File:Artwork-VideoFolder01.jpg|400px|right]]&lt;br /&gt;
&lt;br /&gt;
The Folder Artwork, also known as Source Folder thumb,  are landscape images that can be used to replace the standard folder icons when browsing your movie sources in the Video menu. You will not see this artwork in the Movies menu. This image file is saved directly within the Source directory.&lt;br /&gt;
&lt;br /&gt;
To enable the image, navigate to Videos&amp;gt;Files in the menu system. Highlight a source and call up the Context Menu. Select Choose Thumbnail. If you have saved in the image in the correct location, it will be available to select immediately. If not, you will need to navigate to locate and select it. The image must remain in its original location once selected. Deleting the image will remove it from view in the folder icon.&lt;br /&gt;
&lt;br /&gt;
You are able to also apply the folder thumb by modifying the &#039;&#039;&#039;\userdata\sources.xml&#039;&#039;&#039; as follows&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
   &amp;lt;name&amp;gt;Movie&amp;lt;/name&amp;gt;&lt;br /&gt;
   &amp;lt;path&amp;gt;xbms://192.168.1.100:1400/Movie/&amp;lt;/path&amp;gt;&lt;br /&gt;
   &amp;lt;thumbnail&amp;gt;F:\MyMovies\folder.jpg&amp;lt;/thumbnail&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Required file properties:&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;Note: The resolution may be increased but ensure the aspect ratio is maintained&amp;lt;/small&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;File Type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Aspect Ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Resolution- &amp;lt;small&amp;gt;recommended&amp;lt;/small&amp;gt;&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px | {{nowrap|*.jpg}} &lt;br /&gt;
| width=200px | {{nowrap|16:9}}&lt;br /&gt;
| width=200px | {{nowrap|640x360}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Naming conventions for your own manually sourced artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |&#039;&#039;&#039;&#039;&#039;Saved movies as&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save Location&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |Folder Artwork:&lt;br /&gt;
| width=250px |folder.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\folder.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |Alternative name:&lt;br /&gt;
| width=250px |&amp;lt;foldername&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\MyMovies.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Experimental movie artwork =&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;extrafanart&amp;quot; folder ==&lt;br /&gt;
{{anchor|Extra Fanart}}&lt;br /&gt;
&lt;br /&gt;
It is possible to download and save additional high quality fanart which the skin can display, usually in a slideshow. Extra fanart is reliant on a supporting skin and the images have exactly the same properties as the standard fanart described above. This is older and more widely supported in skins.&lt;br /&gt;
&lt;br /&gt;
Extra Fanart is stored in a separate Folder named &amp;quot;extrafanart&amp;quot;. Create a Folder named &#039;&#039;&#039;extrafanart&#039;&#039;&#039; in the folder of the movie, and place each extra fanart image in it. This artwork is not added to the Kodi library, instead skins list the folder directly; this can wake hard drives while browsing the library. The filename is mostly not important.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved extrafanart::&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart0.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrafanart\fanart0.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrafanart\fanart1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrafanart\fanart2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Multiple fanart ==&lt;br /&gt;
&lt;br /&gt;
Multiple fanart is an alternative to &amp;quot;extrafanart&amp;quot; that adds all of the fanart images to the Kodi library, and they are treated just like any other artwork type. This is newer and not supported in as many skins as extrafanart.&lt;br /&gt;
&lt;br /&gt;
Multiple additional fanart is named &amp;quot;fanart1&amp;quot;, &amp;quot;fanart2&amp;quot;, and so on with the number increasing for each artwork. The number can increase to 10 and beyond, but numbers cannot be zero-padded. This currently requires more work from skins to display than &amp;quot;extrafanart&amp;quot; and can be awkward to configure because each numbered fanart needs to be added to the artwork whitelist, but the improved performance and behavior that matches other artwork is worth it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved multiple fanart:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart (standard fanart)&lt;br /&gt;
| width=250px |fanart.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart1&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\fanart1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart2&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\fanart2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;extrathumbs&amp;quot; folder ==&lt;br /&gt;
{{anchor|Extra Thumbs}}&lt;br /&gt;
&lt;br /&gt;
It is possible to download and save additional thumbnails which the skin can display. Extra thumbs are reliant on a supporting skin and the images have exactly the same properties as the standard thumb described above.&lt;br /&gt;
&lt;br /&gt;
Extra Thumbs are stored in a separate Folder named &amp;quot;extrathumbs&amp;quot;. Create a Folder named &#039;&#039;&#039;extrathumbs&#039;&#039;&#039; in the folder of the Movie.  Each Extra Thumb must be named &#039;&#039;thumbX.jpg&#039;&#039; where &#039;&#039;X&#039;&#039; is a sequential number starting with 0 &#039;&#039;(thumb0.jpg, thumb1.jpg, thumb2.jpg, etc)&#039;&#039;. There is a limit of 10 thumb images allowable. Be aware that some skins utilise less than 10 of the images. The location of the extrathumbs Folder is as follows.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved extrathumbs::&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart0.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrathumbs\thumb0.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrathumbs\thumb1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrathumbs\thumb2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Guides]]&lt;br /&gt;
[[Category:Manual]]&lt;br /&gt;
[[Category:Karellen]]&lt;br /&gt;
[[Category:Video library]]&lt;br /&gt;
[[Category:First time user]]&lt;br /&gt;
[[Category:Advanced topics]]&lt;br /&gt;
[[Category:Quick Start Guide]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Movie_artwork&amp;diff=159415</id>
		<title>Movie artwork</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Movie_artwork&amp;diff=159415"/>
		<updated>2019-02-12T02:12:19Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* Local movie artwork */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Artwork_Contents}}&lt;br /&gt;
{{mininav|[[:Category:Video_library|Video Library Index]] |[[Artwork]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;Movie artwork are images directly related to a movie or movie collection / set, preferably of high quality, that are displayed when viewing the movie or collection entry in the library. The artwork support in {{Kodi}}&#039;s video library is very flexible and able to display many types of artwork, but this page will describe the types of artwork readily available for the Movie library of Kodi.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{red|&#039;&#039;&#039;It is important to note the following:&#039;&#039;&#039;}}&lt;br /&gt;
* Artwork is skin dependent. This means that some skins display a small number of artwork types, while other skins will display many different artwork types.&lt;br /&gt;
* The default skin, Estuary, displays only a limited selection of artwork. Another skin must be used to see other artwork.&lt;br /&gt;
* Each artwork type must be &#039;&#039;&#039;[[Advancedsettings.xml#Extra artwork| whitelisted in advancedsettings.xml]]&#039;&#039;&#039; to be added to the library automatically during scanning and scraping.&lt;br /&gt;
&lt;br /&gt;
= Movie artwork =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=&amp;quot;350px&amp;quot; heights=&amp;quot;200px&amp;quot;&amp;gt;&lt;br /&gt;
File:Artwork-FanartView02.jpg|Movie fanart&lt;br /&gt;
File:Artwork-PosterView01.jpg|Movie poster&lt;br /&gt;
File:Artwork-Banner02.jpg|Movie banner&lt;br /&gt;
File:Artwork-ClearArt01.jpg|Movie clearart&lt;br /&gt;
File:Artwork-ClearLogo.jpg|Movie clearlogo&lt;br /&gt;
File:Artwork-Thumbs01.jpg|Movie landscape&lt;br /&gt;
File:Artwork-DiscArt01.jpg|Movie discart&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;fanart&amp;quot; ==&lt;br /&gt;
Fanart is also known as wallpapers, backdrops, or backgrounds.&lt;br /&gt;
;{{See also|wikipedia:Fanart|l1=Fanart on Wikipedia}}&lt;br /&gt;
&lt;br /&gt;
For Kodi they are used as full screen displays to enhance the user experience.&lt;br /&gt;
&lt;br /&gt;
Fanart have a &#039;&#039;&#039;recommended resolution of 1920x1080&#039;&#039;&#039; the display, with a specific &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039; to match the ratio of current generation televisions and monitors, which allows the screen to be completely filled by the image. Fanart also does not have transparency and preferably does not have a logo or title on the image.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;poster&amp;quot; ==&lt;br /&gt;
Movie posters replicates the movie posters often seen in cinema complexes, or the front cover of home video releases, and contain a clearly visible logo or name of the movie.&lt;br /&gt;
&lt;br /&gt;
Movie posters have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;banner&amp;quot; ==&lt;br /&gt;
Movie banners are wide and short images that contain recognizable characters or props from the movie and typically includes a clearly visible logo or the name of the movie.&lt;br /&gt;
&lt;br /&gt;
Movie banners have a &#039;&#039;&#039;recommended resolution of 1000x185&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.185&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;clearlogo&amp;quot; ==&lt;br /&gt;
Movie logos typically use the distinctive font associated with the movie and is uncluttered by other images.&lt;br /&gt;
&lt;br /&gt;
Movie logos have a &#039;&#039;&#039;recommended resolution of 800x310&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.388&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;clearart&amp;quot; ==&lt;br /&gt;
Movie clearart have a transparent background with recognizable characters or props from the movie along with a logo or name.&lt;br /&gt;
&lt;br /&gt;
Movie clearart have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;landscape&amp;quot; ==&lt;br /&gt;
Landscape images are specially made 16x9 images that contain recognizable characters or props from the movie and a logo. They are used in certain page layouts for browsing. Skins can make passable replacements for media items without one with fanart and the clearlogo.&lt;br /&gt;
&lt;br /&gt;
Movie landscape have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. They have no transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;discart&amp;quot; ==&lt;br /&gt;
Movie discart replicates the picture on the physical Blu-ray or other disc. Although the disc artwork is round, the image itself is square and the disc image is placed in the center on a transparent background.&lt;br /&gt;
&lt;br /&gt;
Movie discart have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:1 (square)&#039;&#039;&#039;. They have a transparent background.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;keyart&amp;quot; ==&lt;br /&gt;
Movie keyart is a poster without text or a logo. This is useful as a separate item in a skinner&#039;s toolbox as it can be paired with a clearlogo or large text title elsewhere on the window, and without text it is less distracting in the background or half-obscured, similar to fanart.&lt;br /&gt;
&lt;br /&gt;
Movie keyart have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;thumb&amp;quot; ==&lt;br /&gt;
Movie thumbnails are still images from the movie itself, and can be generated from the video file in your library.&lt;br /&gt;
&lt;br /&gt;
Movie thumbnails are often displayed in small boxes and have a &#039;&#039;&#039;recommended resolution of about 960x540&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
== Local movie artwork ==&lt;br /&gt;
&lt;br /&gt;
Local movie artwork can be saved in the same folder the [[Naming_video_files/Movies#Movie_Folder_.26_Filename|movie file]] is saved. The general rule for movie artwork file names is &#039;&#039;&#039;&amp;lt;movie file name&amp;gt;-&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&#039;&#039;&#039; - with some arttype examples listed below and extension matching the image type. There is also a short name &amp;quot;&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&amp;quot; that can be used if your movie source folder is configured with [[Adding video sources#Set Content |Movies are in separate folders that match the movie title]], but the long name &amp;quot;&amp;lt;movie file name&amp;gt;-&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&amp;quot; still takes precedence. Movie artwork can also be added from online services with an &#039;&#039;&#039;&amp;quot;information provider&amp;quot; scraper add-on&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved movie artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| movie file&lt;br /&gt;
| Blade Runner 2049 (2017).mkv&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017).mkv&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=100px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=200px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Recommended resolution&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Aspect ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| fanart&lt;br /&gt;
| fanart.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-fanart.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
| 1920x1080&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| poster&lt;br /&gt;
| poster.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-poster.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
| 1000x1500&lt;br /&gt;
| approximately 1:1.5&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| banner&lt;br /&gt;
| banner.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-banner.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
| 1000x185&lt;br /&gt;
| 1:0.185&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| landscape&lt;br /&gt;
| landscape.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-landscape.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
| 1000x562&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| clearlogo&lt;br /&gt;
| clearlogo.png&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-clearlogo.png&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
| 800x310&lt;br /&gt;
| 1:0.388&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| clearart&lt;br /&gt;
| clearart.png&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-clearart.png&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
| 1000x562&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| keyart&lt;br /&gt;
| keyart.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-keyart.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
| 1000x1500&lt;br /&gt;
| approximately 1:1.5&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| thumb&lt;br /&gt;
| thumb.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-thumb.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
| 960x540&lt;br /&gt;
| match video aspect&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Movie set artwork =&lt;br /&gt;
&lt;br /&gt;
Movie collections / sets have the same art types available as movies. Kodi currently does not support adding movie set artwork from the local file system, but it is supported with scrapers.&lt;br /&gt;
; {{see also|Movie_sets}}&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;fanart&amp;quot; ==&lt;br /&gt;
Fanart is also known as wallpapers, backdrops, or backgrounds.&lt;br /&gt;
;{{See also|wikipedia:Fanart|l1=Fanart on Wikipedia}}&lt;br /&gt;
&lt;br /&gt;
For Kodi they are used as full screen displays to enhance the user experience.&lt;br /&gt;
&lt;br /&gt;
Fanart have a &#039;&#039;&#039;recommended resolution of 1920x1080&#039;&#039;&#039; the display, with a specific &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039; to match the ratio of current generation televisions and monitors, which allows the screen to be completely filled by the image. Fanart also does not have transparency and preferably does not have a logo or title on the image.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;poster&amp;quot; ==&lt;br /&gt;
Movie posters replicates the movie posters often seen in cinema complexes, or the front cover of home video releases, and contain a clearly visible logo or name of the movie set.&lt;br /&gt;
&lt;br /&gt;
Movie set posters have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency but do have the movie set logo or name on the image.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;banner&amp;quot; ==&lt;br /&gt;
Movie set banners are wide and short images that contain recognizable characters or props from the movie set and typically includes a clearly visible logo or the name of the movie set.&lt;br /&gt;
&lt;br /&gt;
Movie set banners have a &#039;&#039;&#039;recommended resolution of 1000x185&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.185&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;clearlogo&amp;quot; ==&lt;br /&gt;
Movie set logos typically use the distinctive font associated with the movie set and is uncluttered by other images.&lt;br /&gt;
&lt;br /&gt;
Movie set logos have a &#039;&#039;&#039;recommended resolution of 800x310&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.388&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;clearart&amp;quot; ==&lt;br /&gt;
Movie set clearart have a transparent background with recognizable characters or props from the movie set along with its logo or name.&lt;br /&gt;
&lt;br /&gt;
Movie set clearart have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;landscape&amp;quot; ==&lt;br /&gt;
Landscape images are specially made 16x9 images that contain recognizable characters or props from the movie set and a logo. They are used in certain page layouts for browsing. Skins can make passable replacements for media items without one with fanart and the clearlogo.&lt;br /&gt;
&lt;br /&gt;
Movie set landscape have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. They have no transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;discart&amp;quot; ==&lt;br /&gt;
Movie set discart replicates the picture on the physical Blu-ray or other disc. Although the disc artwork is round, the image itself is square and the disc image is placed in the center on a transparent background.&lt;br /&gt;
&lt;br /&gt;
Movie set discart have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:1 (square)&#039;&#039;&#039;. They have a transparent background.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;keyart&amp;quot; ==&lt;br /&gt;
Movie set keyart is a poster without text or a logo. This is useful as a separate item in a skinner&#039;s toolbox as it can be paired with a clearlogo or large text title elsewhere on the window, and without text it is less distracting in the background or half-obscured, similar to fanart.&lt;br /&gt;
&lt;br /&gt;
Movie set keyart have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Local movie set artwork ==&lt;br /&gt;
&lt;br /&gt;
Local movie set artwork is not supported in Kodi, but it can be added from online services with an &#039;&#039;&#039;&amp;quot;information provider&amp;quot; scraper add-on&#039;&#039;&#039;.&lt;br /&gt;
The add-on [https://forum.kodi.tv/showthread.php?tid=258886 Artwork Beef] can add local movie set artwork to your library. [https://forum.kodi.tv/showthread.php?tid=153502 Movie Set Artwork Automator] hasn&#039;t been supported for some time, but it is also capable of adding local movie set artwork to your library.&lt;br /&gt;
&lt;br /&gt;
= Actor Image =&lt;br /&gt;
[[File:Artwork-Actors02.jpg|400px|right]]&lt;br /&gt;
&lt;br /&gt;
The Actor artwork is a portrait of an actor for easy identification. The image is named as follows &#039;&#039;&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The image to the right is displaying the Actor images of five actors along the top row. They are portrait, medium to high quality images.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Required file properties:&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;Note: The resolution may be increased but ensure the aspect ratio is maintained&amp;lt;/small&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;File Type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Aspect Ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Resolution- &amp;lt;small&amp;gt;recommended&amp;lt;/small&amp;gt;&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px | {{nowrap|*.jpg}} &lt;br /&gt;
| width=200px | {{nowrap|1:1.5}}&lt;br /&gt;
| width=200px | {{nowrap|1000x1500}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Naming conventions for your own manually sourced artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;Saved movies as&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save Location&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |BluRay Structure:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:MyMovies\Big Buck Bunny (2008)\BDMV\.actors\Amy_Adams.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |DVD Structure:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\Big Buck Bunny (2008)\VIDEO_TS\.actors\Amy_Adams.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |Single movie in Directory:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\Big Buck Bunny (2008)\.actors\Amy_Adams.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |Two or more movies in single Directory:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\.actors\Amy_Adams.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Source Folder Artwork =&lt;br /&gt;
[[File:Artwork-VideoFolder01.jpg|400px|right]]&lt;br /&gt;
&lt;br /&gt;
The Folder Artwork, also known as Source Folder thumb,  are landscape images that can be used to replace the standard folder icons when browsing your movie sources in the Video menu. You will not see this artwork in the Movies menu. This image file is saved directly within the Source directory.&lt;br /&gt;
&lt;br /&gt;
To enable the image, navigate to Videos&amp;gt;Files in the menu system. Highlight a source and call up the Context Menu. Select Choose Thumbnail. If you have saved in the image in the correct location, it will be available to select immediately. If not, you will need to navigate to locate and select it. The image must remain in its original location once selected. Deleting the image will remove it from view in the folder icon.&lt;br /&gt;
&lt;br /&gt;
You are able to also apply the folder thumb by modifying the &#039;&#039;&#039;\userdata\sources.xml&#039;&#039;&#039; as follows&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
   &amp;lt;name&amp;gt;Movie&amp;lt;/name&amp;gt;&lt;br /&gt;
   &amp;lt;path&amp;gt;xbms://192.168.1.100:1400/Movie/&amp;lt;/path&amp;gt;&lt;br /&gt;
   &amp;lt;thumbnail&amp;gt;F:\MyMovies\folder.jpg&amp;lt;/thumbnail&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Required file properties:&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;Note: The resolution may be increased but ensure the aspect ratio is maintained&amp;lt;/small&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;File Type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Aspect Ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Resolution- &amp;lt;small&amp;gt;recommended&amp;lt;/small&amp;gt;&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px | {{nowrap|*.jpg}} &lt;br /&gt;
| width=200px | {{nowrap|16:9}}&lt;br /&gt;
| width=200px | {{nowrap|640x360}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Naming conventions for your own manually sourced artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |&#039;&#039;&#039;&#039;&#039;Saved movies as&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save Location&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |Folder Artwork:&lt;br /&gt;
| width=250px |folder.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\folder.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |Alternative name:&lt;br /&gt;
| width=250px |&amp;lt;foldername&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\MyMovies.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Experimental movie artwork =&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;extrafanart&amp;quot; folder ==&lt;br /&gt;
{{anchor|Extra Fanart}}&lt;br /&gt;
&lt;br /&gt;
It is possible to download and save additional high quality fanart which the skin can display, usually in a slideshow. Extra fanart is reliant on a supporting skin and the images have exactly the same properties as the standard fanart described above. This is older and more widely supported in skins.&lt;br /&gt;
&lt;br /&gt;
Extra Fanart is stored in a separate Folder named &amp;quot;extrafanart&amp;quot;. Create a Folder named &#039;&#039;&#039;extrafanart&#039;&#039;&#039; in the folder of the movie, and place each extra fanart image in it. This artwork is not added to the Kodi library, instead skins list the folder directly; this can wake hard drives while browsing the library. The filename is mostly not important.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved extrafanart::&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart0.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrafanart\fanart0.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrafanart\fanart1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrafanart\fanart2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Multiple fanart ==&lt;br /&gt;
&lt;br /&gt;
Multiple fanart is an alternative to &amp;quot;extrafanart&amp;quot; that adds all of the fanart images to the Kodi library, and they are treated just like any other artwork type. This is newer and not supported in as many skins as extrafanart.&lt;br /&gt;
&lt;br /&gt;
Multiple additional fanart is named &amp;quot;fanart1&amp;quot;, &amp;quot;fanart2&amp;quot;, and so on with the number increasing for each artwork. The number can increase to 10 and beyond, but numbers cannot be zero-padded. This currently requires more work from skins to display than &amp;quot;extrafanart&amp;quot; and can be awkward to configure because each numbered fanart needs to be added to the artwork whitelist, but the improved performance and behavior that matches other artwork is worth it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved multiple fanart:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart (standard fanart)&lt;br /&gt;
| width=250px |fanart.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart1&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\fanart1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart2&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\fanart2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;extrathumbs&amp;quot; folder ==&lt;br /&gt;
{{anchor|Extra Thumbs}}&lt;br /&gt;
&lt;br /&gt;
It is possible to download and save additional thumbnails which the skin can display. Extra thumbs are reliant on a supporting skin and the images have exactly the same properties as the standard thumb described above.&lt;br /&gt;
&lt;br /&gt;
Extra Thumbs are stored in a separate Folder named &amp;quot;extrathumbs&amp;quot;. Create a Folder named &#039;&#039;&#039;extrathumbs&#039;&#039;&#039; in the folder of the Movie.  Each Extra Thumb must be named &#039;&#039;thumbX.jpg&#039;&#039; where &#039;&#039;X&#039;&#039; is a sequential number starting with 0 &#039;&#039;(thumb0.jpg, thumb1.jpg, thumb2.jpg, etc)&#039;&#039;. There is a limit of 10 thumb images allowable. Be aware that some skins utilise less than 10 of the images. The location of the extrathumbs Folder is as follows.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved extrathumbs::&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart0.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrathumbs\thumb0.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrathumbs\thumb1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrathumbs\thumb2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Guides]]&lt;br /&gt;
[[Category:Manual]]&lt;br /&gt;
[[Category:Karellen]]&lt;br /&gt;
[[Category:Video library]]&lt;br /&gt;
[[Category:First time user]]&lt;br /&gt;
[[Category:Advanced topics]]&lt;br /&gt;
[[Category:Quick Start Guide]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Movie_artwork&amp;diff=159414</id>
		<title>Movie artwork</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Movie_artwork&amp;diff=159414"/>
		<updated>2019-02-12T01:10:46Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* Local movie artwork */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Artwork_Contents}}&lt;br /&gt;
{{mininav|[[:Category:Video_library|Video Library Index]] |[[Artwork]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;Movie artwork are images directly related to a movie or movie collection / set, preferably of high quality, that are displayed when viewing the movie or collection entry in the library. The artwork support in {{Kodi}}&#039;s video library is very flexible and able to display many types of artwork, but this page will describe the types of artwork readily available for the Movie library of Kodi.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{red|&#039;&#039;&#039;It is important to note the following:&#039;&#039;&#039;}}&lt;br /&gt;
* Artwork is skin dependent. This means that some skins display a small number of artwork types, while other skins will display many different artwork types.&lt;br /&gt;
* The default skin, Estuary, displays only a limited selection of artwork. Another skin must be used to see other artwork.&lt;br /&gt;
* Each artwork type must be &#039;&#039;&#039;[[Advancedsettings.xml#Extra artwork| whitelisted in advancedsettings.xml]]&#039;&#039;&#039; to be added to the library automatically during scanning and scraping.&lt;br /&gt;
&lt;br /&gt;
= Movie artwork =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=&amp;quot;350px&amp;quot; heights=&amp;quot;200px&amp;quot;&amp;gt;&lt;br /&gt;
File:Artwork-FanartView02.jpg|Movie fanart&lt;br /&gt;
File:Artwork-PosterView01.jpg|Movie poster&lt;br /&gt;
File:Artwork-Banner02.jpg|Movie banner&lt;br /&gt;
File:Artwork-ClearArt01.jpg|Movie clearart&lt;br /&gt;
File:Artwork-ClearLogo.jpg|Movie clearlogo&lt;br /&gt;
File:Artwork-Thumbs01.jpg|Movie landscape&lt;br /&gt;
File:Artwork-DiscArt01.jpg|Movie discart&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;fanart&amp;quot; ==&lt;br /&gt;
Fanart is also known as wallpapers, backdrops, or backgrounds.&lt;br /&gt;
;{{See also|wikipedia:Fanart|l1=Fanart on Wikipedia}}&lt;br /&gt;
&lt;br /&gt;
For Kodi they are used as full screen displays to enhance the user experience.&lt;br /&gt;
&lt;br /&gt;
Fanart have a &#039;&#039;&#039;recommended resolution of 1920x1080&#039;&#039;&#039; the display, with a specific &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039; to match the ratio of current generation televisions and monitors, which allows the screen to be completely filled by the image. Fanart also does not have transparency and preferably does not have a logo or title on the image.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;poster&amp;quot; ==&lt;br /&gt;
Movie posters replicates the movie posters often seen in cinema complexes, or the front cover of home video releases, and contain a clearly visible logo or name of the movie.&lt;br /&gt;
&lt;br /&gt;
Movie posters have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;banner&amp;quot; ==&lt;br /&gt;
Movie banners are wide and short images that contain recognizable characters or props from the movie and typically includes a clearly visible logo or the name of the movie.&lt;br /&gt;
&lt;br /&gt;
Movie banners have a &#039;&#039;&#039;recommended resolution of 1000x185&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.185&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;clearlogo&amp;quot; ==&lt;br /&gt;
Movie logos typically use the distinctive font associated with the movie and is uncluttered by other images.&lt;br /&gt;
&lt;br /&gt;
Movie logos have a &#039;&#039;&#039;recommended resolution of 800x310&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.388&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;clearart&amp;quot; ==&lt;br /&gt;
Movie clearart have a transparent background with recognizable characters or props from the movie along with a logo or name.&lt;br /&gt;
&lt;br /&gt;
Movie clearart have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;landscape&amp;quot; ==&lt;br /&gt;
Landscape images are specially made 16x9 images that contain recognizable characters or props from the movie and a logo. They are used in certain page layouts for browsing. Skins can make passable replacements for media items without one with fanart and the clearlogo.&lt;br /&gt;
&lt;br /&gt;
Movie landscape have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. They have no transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;discart&amp;quot; ==&lt;br /&gt;
Movie discart replicates the picture on the physical Blu-ray or other disc. Although the disc artwork is round, the image itself is square and the disc image is placed in the center on a transparent background.&lt;br /&gt;
&lt;br /&gt;
Movie discart have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:1 (square)&#039;&#039;&#039;. They have a transparent background.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;keyart&amp;quot; ==&lt;br /&gt;
Movie keyart is a poster without text or a logo. This is useful as a separate item in a skinner&#039;s toolbox as it can be paired with a clearlogo or large text title elsewhere on the window, and without text it is less distracting in the background or half-obscured, similar to fanart.&lt;br /&gt;
&lt;br /&gt;
Movie keyart have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;thumb&amp;quot; ==&lt;br /&gt;
Movie thumbnails are still images from the movie itself, and can be generated from the video file in your library.&lt;br /&gt;
&lt;br /&gt;
Movie thumbnails are often displayed in small boxes and have a &#039;&#039;&#039;recommended resolution of about 960x540&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
== Local movie artwork ==&lt;br /&gt;
&lt;br /&gt;
Local movie artwork can be saved in the same folder the [[Naming_video_files/Movies#Movie_Folder_.26_Filename|movie file]] is saved. The general rule for movie artwork file names is &#039;&#039;&#039;&amp;lt;movie file name&amp;gt;-&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&#039;&#039;&#039; - with some arttype examples listed below and extension matching the image type. There is also a short name &amp;quot;&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&amp;quot; that can be used if your movie source folder is configured with [[Adding video sources#Set Content |Movies are in separate folders that match the movie title]], but the long name &amp;quot;&amp;lt;movie file name&amp;gt;-&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&amp;quot; will always work. Movie artwork can also be added from online services with an &#039;&#039;&#039;&amp;quot;information provider&amp;quot; scraper add-on&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved movie artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| movie file&lt;br /&gt;
| Blade Runner 2049 (2017).mkv&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017).mkv&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=100px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=200px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Recommended resolution&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Aspect ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| fanart&lt;br /&gt;
| fanart.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-fanart.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
| 1920x1080&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| poster&lt;br /&gt;
| poster.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-poster.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
| 1000x1500&lt;br /&gt;
| approximately 1:1.5&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| banner&lt;br /&gt;
| banner.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-banner.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
| 1000x185&lt;br /&gt;
| 1:0.185&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| landscape&lt;br /&gt;
| landscape.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-landscape.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
| 1000x562&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| clearlogo&lt;br /&gt;
| clearlogo.png&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-clearlogo.png&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
| 800x310&lt;br /&gt;
| 1:0.388&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| clearart&lt;br /&gt;
| clearart.png&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-clearart.png&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
| 1000x562&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| keyart&lt;br /&gt;
| keyart.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-keyart.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
| 1000x1500&lt;br /&gt;
| approximately 1:1.5&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| thumb&lt;br /&gt;
| thumb.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-thumb.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
| 960x540&lt;br /&gt;
| match video aspect&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Movie set artwork =&lt;br /&gt;
&lt;br /&gt;
Movie collections / sets have the same art types available as movies. Kodi currently does not support adding movie set artwork from the local file system, but it is supported with scrapers.&lt;br /&gt;
; {{see also|Movie_sets}}&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;fanart&amp;quot; ==&lt;br /&gt;
Fanart is also known as wallpapers, backdrops, or backgrounds.&lt;br /&gt;
;{{See also|wikipedia:Fanart|l1=Fanart on Wikipedia}}&lt;br /&gt;
&lt;br /&gt;
For Kodi they are used as full screen displays to enhance the user experience.&lt;br /&gt;
&lt;br /&gt;
Fanart have a &#039;&#039;&#039;recommended resolution of 1920x1080&#039;&#039;&#039; the display, with a specific &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039; to match the ratio of current generation televisions and monitors, which allows the screen to be completely filled by the image. Fanart also does not have transparency and preferably does not have a logo or title on the image.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;poster&amp;quot; ==&lt;br /&gt;
Movie posters replicates the movie posters often seen in cinema complexes, or the front cover of home video releases, and contain a clearly visible logo or name of the movie set.&lt;br /&gt;
&lt;br /&gt;
Movie set posters have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency but do have the movie set logo or name on the image.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;banner&amp;quot; ==&lt;br /&gt;
Movie set banners are wide and short images that contain recognizable characters or props from the movie set and typically includes a clearly visible logo or the name of the movie set.&lt;br /&gt;
&lt;br /&gt;
Movie set banners have a &#039;&#039;&#039;recommended resolution of 1000x185&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.185&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;clearlogo&amp;quot; ==&lt;br /&gt;
Movie set logos typically use the distinctive font associated with the movie set and is uncluttered by other images.&lt;br /&gt;
&lt;br /&gt;
Movie set logos have a &#039;&#039;&#039;recommended resolution of 800x310&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.388&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;clearart&amp;quot; ==&lt;br /&gt;
Movie set clearart have a transparent background with recognizable characters or props from the movie set along with its logo or name.&lt;br /&gt;
&lt;br /&gt;
Movie set clearart have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;landscape&amp;quot; ==&lt;br /&gt;
Landscape images are specially made 16x9 images that contain recognizable characters or props from the movie set and a logo. They are used in certain page layouts for browsing. Skins can make passable replacements for media items without one with fanart and the clearlogo.&lt;br /&gt;
&lt;br /&gt;
Movie set landscape have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. They have no transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;discart&amp;quot; ==&lt;br /&gt;
Movie set discart replicates the picture on the physical Blu-ray or other disc. Although the disc artwork is round, the image itself is square and the disc image is placed in the center on a transparent background.&lt;br /&gt;
&lt;br /&gt;
Movie set discart have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:1 (square)&#039;&#039;&#039;. They have a transparent background.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;keyart&amp;quot; ==&lt;br /&gt;
Movie set keyart is a poster without text or a logo. This is useful as a separate item in a skinner&#039;s toolbox as it can be paired with a clearlogo or large text title elsewhere on the window, and without text it is less distracting in the background or half-obscured, similar to fanart.&lt;br /&gt;
&lt;br /&gt;
Movie set keyart have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Local movie set artwork ==&lt;br /&gt;
&lt;br /&gt;
Local movie set artwork is not supported in Kodi, but it can be added from online services with an &#039;&#039;&#039;&amp;quot;information provider&amp;quot; scraper add-on&#039;&#039;&#039;.&lt;br /&gt;
The add-on [https://forum.kodi.tv/showthread.php?tid=258886 Artwork Beef] can add local movie set artwork to your library. [https://forum.kodi.tv/showthread.php?tid=153502 Movie Set Artwork Automator] hasn&#039;t been supported for some time, but it is also capable of adding local movie set artwork to your library.&lt;br /&gt;
&lt;br /&gt;
= Actor Image =&lt;br /&gt;
[[File:Artwork-Actors02.jpg|400px|right]]&lt;br /&gt;
&lt;br /&gt;
The Actor artwork is a portrait of an actor for easy identification. The image is named as follows &#039;&#039;&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The image to the right is displaying the Actor images of five actors along the top row. They are portrait, medium to high quality images.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Required file properties:&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;Note: The resolution may be increased but ensure the aspect ratio is maintained&amp;lt;/small&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;File Type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Aspect Ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Resolution- &amp;lt;small&amp;gt;recommended&amp;lt;/small&amp;gt;&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px | {{nowrap|*.jpg}} &lt;br /&gt;
| width=200px | {{nowrap|1:1.5}}&lt;br /&gt;
| width=200px | {{nowrap|1000x1500}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Naming conventions for your own manually sourced artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;Saved movies as&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save Location&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |BluRay Structure:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:MyMovies\Big Buck Bunny (2008)\BDMV\.actors\Amy_Adams.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |DVD Structure:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\Big Buck Bunny (2008)\VIDEO_TS\.actors\Amy_Adams.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |Single movie in Directory:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\Big Buck Bunny (2008)\.actors\Amy_Adams.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |Two or more movies in single Directory:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\.actors\Amy_Adams.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Source Folder Artwork =&lt;br /&gt;
[[File:Artwork-VideoFolder01.jpg|400px|right]]&lt;br /&gt;
&lt;br /&gt;
The Folder Artwork, also known as Source Folder thumb,  are landscape images that can be used to replace the standard folder icons when browsing your movie sources in the Video menu. You will not see this artwork in the Movies menu. This image file is saved directly within the Source directory.&lt;br /&gt;
&lt;br /&gt;
To enable the image, navigate to Videos&amp;gt;Files in the menu system. Highlight a source and call up the Context Menu. Select Choose Thumbnail. If you have saved in the image in the correct location, it will be available to select immediately. If not, you will need to navigate to locate and select it. The image must remain in its original location once selected. Deleting the image will remove it from view in the folder icon.&lt;br /&gt;
&lt;br /&gt;
You are able to also apply the folder thumb by modifying the &#039;&#039;&#039;\userdata\sources.xml&#039;&#039;&#039; as follows&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
   &amp;lt;name&amp;gt;Movie&amp;lt;/name&amp;gt;&lt;br /&gt;
   &amp;lt;path&amp;gt;xbms://192.168.1.100:1400/Movie/&amp;lt;/path&amp;gt;&lt;br /&gt;
   &amp;lt;thumbnail&amp;gt;F:\MyMovies\folder.jpg&amp;lt;/thumbnail&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Required file properties:&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;Note: The resolution may be increased but ensure the aspect ratio is maintained&amp;lt;/small&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;File Type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Aspect Ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Resolution- &amp;lt;small&amp;gt;recommended&amp;lt;/small&amp;gt;&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px | {{nowrap|*.jpg}} &lt;br /&gt;
| width=200px | {{nowrap|16:9}}&lt;br /&gt;
| width=200px | {{nowrap|640x360}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Naming conventions for your own manually sourced artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |&#039;&#039;&#039;&#039;&#039;Saved movies as&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save Location&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |Folder Artwork:&lt;br /&gt;
| width=250px |folder.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\folder.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |Alternative name:&lt;br /&gt;
| width=250px |&amp;lt;foldername&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\MyMovies.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Experimental movie artwork =&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;extrafanart&amp;quot; folder ==&lt;br /&gt;
{{anchor|Extra Fanart}}&lt;br /&gt;
&lt;br /&gt;
It is possible to download and save additional high quality fanart which the skin can display, usually in a slideshow. Extra fanart is reliant on a supporting skin and the images have exactly the same properties as the standard fanart described above. This is older and more widely supported in skins.&lt;br /&gt;
&lt;br /&gt;
Extra Fanart is stored in a separate Folder named &amp;quot;extrafanart&amp;quot;. Create a Folder named &#039;&#039;&#039;extrafanart&#039;&#039;&#039; in the folder of the movie, and place each extra fanart image in it. This artwork is not added to the Kodi library, instead skins list the folder directly; this can wake hard drives while browsing the library. The filename is mostly not important.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved extrafanart::&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart0.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrafanart\fanart0.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrafanart\fanart1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrafanart\fanart2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Multiple fanart ==&lt;br /&gt;
&lt;br /&gt;
Multiple fanart is an alternative to &amp;quot;extrafanart&amp;quot; that adds all of the fanart images to the Kodi library, and they are treated just like any other artwork type. This is newer and not supported in as many skins as extrafanart.&lt;br /&gt;
&lt;br /&gt;
Multiple additional fanart is named &amp;quot;fanart1&amp;quot;, &amp;quot;fanart2&amp;quot;, and so on with the number increasing for each artwork. The number can increase to 10 and beyond, but numbers cannot be zero-padded. This currently requires more work from skins to display than &amp;quot;extrafanart&amp;quot; and can be awkward to configure because each numbered fanart needs to be added to the artwork whitelist, but the improved performance and behavior that matches other artwork is worth it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved multiple fanart:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart (standard fanart)&lt;br /&gt;
| width=250px |fanart.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart1&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\fanart1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart2&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\fanart2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;extrathumbs&amp;quot; folder ==&lt;br /&gt;
{{anchor|Extra Thumbs}}&lt;br /&gt;
&lt;br /&gt;
It is possible to download and save additional thumbnails which the skin can display. Extra thumbs are reliant on a supporting skin and the images have exactly the same properties as the standard thumb described above.&lt;br /&gt;
&lt;br /&gt;
Extra Thumbs are stored in a separate Folder named &amp;quot;extrathumbs&amp;quot;. Create a Folder named &#039;&#039;&#039;extrathumbs&#039;&#039;&#039; in the folder of the Movie.  Each Extra Thumb must be named &#039;&#039;thumbX.jpg&#039;&#039; where &#039;&#039;X&#039;&#039; is a sequential number starting with 0 &#039;&#039;(thumb0.jpg, thumb1.jpg, thumb2.jpg, etc)&#039;&#039;. There is a limit of 10 thumb images allowable. Be aware that some skins utilise less than 10 of the images. The location of the extrathumbs Folder is as follows.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved extrathumbs::&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart0.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrathumbs\thumb0.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrathumbs\thumb1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrathumbs\thumb2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Guides]]&lt;br /&gt;
[[Category:Manual]]&lt;br /&gt;
[[Category:Karellen]]&lt;br /&gt;
[[Category:Video library]]&lt;br /&gt;
[[Category:First time user]]&lt;br /&gt;
[[Category:Advanced topics]]&lt;br /&gt;
[[Category:Quick Start Guide]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Movie_artwork&amp;diff=158787</id>
		<title>Movie artwork</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Movie_artwork&amp;diff=158787"/>
		<updated>2019-02-09T00:51:12Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* Local movie artwork */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Artwork_Contents}}&lt;br /&gt;
{{mininav|[[:Category:Video_library|Video Library Index]] |[[Artwork]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;Movie artwork are images directly related to a movie or movie collection / set, preferably of high quality, that are displayed when viewing the movie or collection entry in the library. The artwork support in {{Kodi}}&#039;s video library is very flexible and able to display many types of artwork, but this page will describe the types of artwork readily available for the Movie library of Kodi.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{red|&#039;&#039;&#039;It is important to note the following:&#039;&#039;&#039;}}&lt;br /&gt;
* Artwork is skin dependent. This means that some skins display a small number of artwork types, while other skins will display many different artwork types.&lt;br /&gt;
* The default skin, Estuary, displays only a limited selection of artwork. Another skin must be used to see other artwork.&lt;br /&gt;
* Each artwork type must be &#039;&#039;&#039;[[Advancedsettings.xml#Extra artwork| whitelisted in advancedsettings.xml]]&#039;&#039;&#039; to be added to the library automatically during scanning and scraping.&lt;br /&gt;
&lt;br /&gt;
= Movie artwork =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=&amp;quot;350px&amp;quot; heights=&amp;quot;200px&amp;quot;&amp;gt;&lt;br /&gt;
File:Artwork-FanartView02.jpg|Movie fanart&lt;br /&gt;
File:Artwork-PosterView01.jpg|Movie poster&lt;br /&gt;
File:Artwork-Banner02.jpg|Movie banner&lt;br /&gt;
File:Artwork-ClearArt01.jpg|Movie clearart&lt;br /&gt;
File:Artwork-ClearLogo.jpg|Movie clearlogo&lt;br /&gt;
File:Artwork-Thumbs01.jpg|Movie landscape&lt;br /&gt;
File:Artwork-DiscArt01.jpg|Movie discart&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;fanart&amp;quot; ==&lt;br /&gt;
Fanart is also known as wallpapers, backdrops, or backgrounds.&lt;br /&gt;
;{{See also|wikipedia:Fanart|l1=Fanart on Wikipedia}}&lt;br /&gt;
&lt;br /&gt;
For Kodi they are used as full screen displays to enhance the user experience.&lt;br /&gt;
&lt;br /&gt;
Fanart have a &#039;&#039;&#039;recommended resolution of 1920x1080&#039;&#039;&#039; the display, with a specific &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039; to match the ratio of current generation televisions and monitors, which allows the screen to be completely filled by the image. Fanart also does not have transparency and preferably does not have a logo or title on the image.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;poster&amp;quot; ==&lt;br /&gt;
Movie posters replicates the movie posters often seen in cinema complexes, or the front cover of home video releases, and contain a clearly visible logo or name of the movie.&lt;br /&gt;
&lt;br /&gt;
Movie posters have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;banner&amp;quot; ==&lt;br /&gt;
Movie banners are wide and short images that contain recognizable characters or props from the movie and typically includes a clearly visible logo or the name of the movie.&lt;br /&gt;
&lt;br /&gt;
Movie banners have a &#039;&#039;&#039;recommended resolution of 1000x185&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.185&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;clearlogo&amp;quot; ==&lt;br /&gt;
Movie logos typically use the distinctive font associated with the movie and is uncluttered by other images.&lt;br /&gt;
&lt;br /&gt;
Movie logos have a &#039;&#039;&#039;recommended resolution of 800x310&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.388&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;clearart&amp;quot; ==&lt;br /&gt;
Movie clearart have a transparent background with recognizable characters or props from the movie along with a logo or name.&lt;br /&gt;
&lt;br /&gt;
Movie clearart have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;landscape&amp;quot; ==&lt;br /&gt;
Landscape images are specially made 16x9 images that contain recognizable characters or props from the movie and a logo. They are used in certain page layouts for browsing. Skins can make passable replacements for media items without one with fanart and the clearlogo.&lt;br /&gt;
&lt;br /&gt;
Movie landscape have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. They have no transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;discart&amp;quot; ==&lt;br /&gt;
Movie discart replicates the picture on the physical Blu-ray or other disc. Although the disc artwork is round, the image itself is square and the disc image is placed in the center on a transparent background.&lt;br /&gt;
&lt;br /&gt;
Movie discart have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:1 (square)&#039;&#039;&#039;. They have a transparent background.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;keyart&amp;quot; ==&lt;br /&gt;
Movie keyart is a poster without text or a logo. This is useful as a separate item in a skinner&#039;s toolbox as it can be paired with a clearlogo or large text title elsewhere on the window, and without text it is less distracting in the background or half-obscured, similar to fanart.&lt;br /&gt;
&lt;br /&gt;
Movie keyart have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;thumb&amp;quot; ==&lt;br /&gt;
Movie thumbnails are still images from the movie itself, and can be generated from the video file in your library.&lt;br /&gt;
&lt;br /&gt;
Movie thumbnails are often displayed in small boxes and have a &#039;&#039;&#039;recommended resolution of about 960x540&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
== Local movie artwork ==&lt;br /&gt;
&lt;br /&gt;
Local movie artwork can be saved in the same folder the [[Naming_video_files/Movies#Movie_Folder_.26_Filename|movie file]] is saved. The general rule for movie artwork file names is &#039;&#039;&#039;&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&#039;&#039;&#039; or &#039;&#039;&#039;&amp;lt;movie file name&amp;gt;-&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&#039;&#039;&#039; - with some arttype examples listed below and extension matching the file type. The short name &amp;quot;&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&amp;quot; can only be used if your movie source folder is configured with &#039;&#039;&#039;[[Adding video sources#Set Content |Movies are in separate folders that match the movie title]]&#039;&#039;&#039;, but the long name &amp;quot;&amp;lt;movie file name&amp;gt;-&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&amp;quot; will always work. Movie artwork can also be added from online services with an &#039;&#039;&#039;&amp;quot;information provider&amp;quot; scraper add-on&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved movie artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Recommended resolution&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Aspect ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| fanart&lt;br /&gt;
| fanart.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-fanart.jpg&lt;br /&gt;
| 1920x1080&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| poster&lt;br /&gt;
| poster.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\poster.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-poster.jpg&lt;br /&gt;
| 1000x1500&lt;br /&gt;
| approximately 1:1.5&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| banner&lt;br /&gt;
| banner.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\banner.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-banner.jpg&lt;br /&gt;
| 1000x185&lt;br /&gt;
| 1:0.185&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| landscape&lt;br /&gt;
| landscape.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\landscape.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-landscape.jpg&lt;br /&gt;
| 1000x562&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| clearlogo&lt;br /&gt;
| clearlogo.png&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\clearlogo.png&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-clearlogo.png&lt;br /&gt;
| 800x310&lt;br /&gt;
| 1:0.388&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| clearart&lt;br /&gt;
| clearart.png&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\clearart.png&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-clearart.png&lt;br /&gt;
| 1000x562&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| keyart&lt;br /&gt;
| keyart.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\keyart.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-keyart.jpg&lt;br /&gt;
| 1000x1500&lt;br /&gt;
| approximately 1:1.5&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| thumb&lt;br /&gt;
| thumb.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\thumb.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-thumb.jpg&lt;br /&gt;
| 960x540&lt;br /&gt;
| match video resolution&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Movie set artwork =&lt;br /&gt;
&lt;br /&gt;
Movie collections / sets have the same art types available as movies. Kodi currently does not support adding movie set artwork from the local file system, but it is supported with scrapers.&lt;br /&gt;
; {{see also|Movie_sets}}&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;fanart&amp;quot; ==&lt;br /&gt;
Fanart is also known as wallpapers, backdrops, or backgrounds.&lt;br /&gt;
;{{See also|wikipedia:Fanart|l1=Fanart on Wikipedia}}&lt;br /&gt;
&lt;br /&gt;
For Kodi they are used as full screen displays to enhance the user experience.&lt;br /&gt;
&lt;br /&gt;
Fanart have a &#039;&#039;&#039;recommended resolution of 1920x1080&#039;&#039;&#039; the display, with a specific &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039; to match the ratio of current generation televisions and monitors, which allows the screen to be completely filled by the image. Fanart also does not have transparency and preferably does not have a logo or title on the image.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;poster&amp;quot; ==&lt;br /&gt;
Movie posters replicates the movie posters often seen in cinema complexes, or the front cover of home video releases, and contain a clearly visible logo or name of the movie set.&lt;br /&gt;
&lt;br /&gt;
Movie set posters have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency but do have the movie set logo or name on the image.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;banner&amp;quot; ==&lt;br /&gt;
Movie set banners are wide and short images that contain recognizable characters or props from the movie set and typically includes a clearly visible logo or the name of the movie set.&lt;br /&gt;
&lt;br /&gt;
Movie set banners have a &#039;&#039;&#039;recommended resolution of 1000x185&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.185&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;clearlogo&amp;quot; ==&lt;br /&gt;
Movie set logos typically use the distinctive font associated with the movie set and is uncluttered by other images.&lt;br /&gt;
&lt;br /&gt;
Movie set logos have a &#039;&#039;&#039;recommended resolution of 800x310&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.388&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;clearart&amp;quot; ==&lt;br /&gt;
Movie set clearart have a transparent background with recognizable characters or props from the movie set along with its logo or name.&lt;br /&gt;
&lt;br /&gt;
Movie set clearart have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;landscape&amp;quot; ==&lt;br /&gt;
Landscape images are specially made 16x9 images that contain recognizable characters or props from the movie set and a logo. They are used in certain page layouts for browsing. Skins can make passable replacements for media items without one with fanart and the clearlogo.&lt;br /&gt;
&lt;br /&gt;
Movie set landscape have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. They have no transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;discart&amp;quot; ==&lt;br /&gt;
Movie set discart replicates the picture on the physical Blu-ray or other disc. Although the disc artwork is round, the image itself is square and the disc image is placed in the center on a transparent background.&lt;br /&gt;
&lt;br /&gt;
Movie set discart have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:1 (square)&#039;&#039;&#039;. They have a transparent background.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;keyart&amp;quot; ==&lt;br /&gt;
Movie set keyart is a poster without text or a logo. This is useful as a separate item in a skinner&#039;s toolbox as it can be paired with a clearlogo or large text title elsewhere on the window, and without text it is less distracting in the background or half-obscured, similar to fanart.&lt;br /&gt;
&lt;br /&gt;
Movie set keyart have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Local movie set artwork ==&lt;br /&gt;
&lt;br /&gt;
Local movie set artwork is not supported in Kodi, but it can be added from online services with an &#039;&#039;&#039;&amp;quot;information provider&amp;quot; scraper add-on&#039;&#039;&#039;.&lt;br /&gt;
The add-on [https://forum.kodi.tv/showthread.php?tid=258886 Artwork Beef] can add local movie set artwork to your library. [https://forum.kodi.tv/showthread.php?tid=153502 Movie Set Artwork Automator] hasn&#039;t been supported for some time, but it is also capable of adding local movie set artwork to your library.&lt;br /&gt;
&lt;br /&gt;
= Actor Image =&lt;br /&gt;
[[File:Artwork-Actors02.jpg|400px|right]]&lt;br /&gt;
&lt;br /&gt;
The Actor artwork is a portrait of an actor for easy identification. The image is named as follows &#039;&#039;&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The image to the right is displaying the Actor images of five actors along the top row. They are portrait, medium to high quality images.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Required file properties:&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;Note: The resolution may be increased but ensure the aspect ratio is maintained&amp;lt;/small&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;File Type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Aspect Ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Resolution- &amp;lt;small&amp;gt;recommended&amp;lt;/small&amp;gt;&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px | {{nowrap|*.jpg}} &lt;br /&gt;
| width=200px | {{nowrap|1:1.5}}&lt;br /&gt;
| width=200px | {{nowrap|1000x1500}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Naming conventions for your own manually sourced artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;Saved movies as&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save Location&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |BluRay Structure:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:MyMovies\Big Buck Bunny (2008)\BDMV\.actors\Amy_Adams.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |DVD Structure:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\Big Buck Bunny (2008)\VIDEO_TS\.actors\Amy_Adams.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |Single movie in Directory:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\Big Buck Bunny (2008)\.actors\Amy_Adams.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |Two or more movies in single Directory:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\.actors\Amy_Adams.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Source Folder Artwork =&lt;br /&gt;
[[File:Artwork-VideoFolder01.jpg|400px|right]]&lt;br /&gt;
&lt;br /&gt;
The Folder Artwork, also known as Source Folder thumb,  are landscape images that can be used to replace the standard folder icons when browsing your movie sources in the Video menu. You will not see this artwork in the Movies menu. This image file is saved directly within the Source directory.&lt;br /&gt;
&lt;br /&gt;
To enable the image, navigate to Videos&amp;gt;Files in the menu system. Highlight a source and call up the Context Menu. Select Choose Thumbnail. If you have saved in the image in the correct location, it will be available to select immediately. If not, you will need to navigate to locate and select it. The image must remain in its original location once selected. Deleting the image will remove it from view in the folder icon.&lt;br /&gt;
&lt;br /&gt;
You are able to also apply the folder thumb by modifying the &#039;&#039;&#039;\userdata\sources.xml&#039;&#039;&#039; as follows&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
   &amp;lt;name&amp;gt;Movie&amp;lt;/name&amp;gt;&lt;br /&gt;
   &amp;lt;path&amp;gt;xbms://192.168.1.100:1400/Movie/&amp;lt;/path&amp;gt;&lt;br /&gt;
   &amp;lt;thumbnail&amp;gt;F:\MyMovies\folder.jpg&amp;lt;/thumbnail&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Required file properties:&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;Note: The resolution may be increased but ensure the aspect ratio is maintained&amp;lt;/small&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;File Type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Aspect Ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Resolution- &amp;lt;small&amp;gt;recommended&amp;lt;/small&amp;gt;&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px | {{nowrap|*.jpg}} &lt;br /&gt;
| width=200px | {{nowrap|16:9}}&lt;br /&gt;
| width=200px | {{nowrap|640x360}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Naming conventions for your own manually sourced artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |&#039;&#039;&#039;&#039;&#039;Saved movies as&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save Location&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |Folder Artwork:&lt;br /&gt;
| width=250px |folder.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\folder.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |Alternative name:&lt;br /&gt;
| width=250px |&amp;lt;foldername&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\MyMovies.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Experimental movie artwork =&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;extrafanart&amp;quot; folder ==&lt;br /&gt;
{{anchor|Extra Fanart}}&lt;br /&gt;
&lt;br /&gt;
It is possible to download and save additional high quality fanart which the skin can display, usually in a slideshow. Extra fanart is reliant on a supporting skin and the images have exactly the same properties as the standard fanart described above. This is older and more widely supported in skins.&lt;br /&gt;
&lt;br /&gt;
Extra Fanart is stored in a separate Folder named &amp;quot;extrafanart&amp;quot;. Create a Folder named &#039;&#039;&#039;extrafanart&#039;&#039;&#039; in the folder of the movie, and place each extra fanart image in it. This artwork is not added to the Kodi library, instead skins list the folder directly; this can wake hard drives while browsing the library. The filename is mostly not important.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved extrafanart::&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart0.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrafanart\fanart0.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrafanart\fanart1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrafanart\fanart2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Multiple fanart ==&lt;br /&gt;
&lt;br /&gt;
Multiple fanart is an alternative to &amp;quot;extrafanart&amp;quot; that adds all of the fanart images to the Kodi library, and they are treated just like any other artwork type. This is newer and not supported in as many skins as extrafanart.&lt;br /&gt;
&lt;br /&gt;
Multiple additional fanart is named &amp;quot;fanart1&amp;quot;, &amp;quot;fanart2&amp;quot;, and so on with the number increasing for each artwork. The number can increase to 10 and beyond, but numbers cannot be zero-padded. This currently requires more work from skins to display than &amp;quot;extrafanart&amp;quot; and can be awkward to configure because each numbered fanart needs to be added to the artwork whitelist, but the improved performance and behavior that matches other artwork is worth it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved multiple fanart:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart (standard fanart)&lt;br /&gt;
| width=250px |fanart.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart1&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\fanart1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart2&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\fanart2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;extrathumbs&amp;quot; folder ==&lt;br /&gt;
{{anchor|Extra Thumbs}}&lt;br /&gt;
&lt;br /&gt;
It is possible to download and save additional thumbnails which the skin can display. Extra thumbs are reliant on a supporting skin and the images have exactly the same properties as the standard thumb described above.&lt;br /&gt;
&lt;br /&gt;
Extra Thumbs are stored in a separate Folder named &amp;quot;extrathumbs&amp;quot;. Create a Folder named &#039;&#039;&#039;extrathumbs&#039;&#039;&#039; in the folder of the Movie.  Each Extra Thumb must be named &#039;&#039;thumbX.jpg&#039;&#039; where &#039;&#039;X&#039;&#039; is a sequential number starting with 0 &#039;&#039;(thumb0.jpg, thumb1.jpg, thumb2.jpg, etc)&#039;&#039;. There is a limit of 10 thumb images allowable. Be aware that some skins utilise less than 10 of the images. The location of the extrathumbs Folder is as follows.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved extrathumbs::&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart0.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrathumbs\thumb0.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrathumbs\thumb1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrathumbs\thumb2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Guides]]&lt;br /&gt;
[[Category:Manual]]&lt;br /&gt;
[[Category:Karellen]]&lt;br /&gt;
[[Category:Video library]]&lt;br /&gt;
[[Category:First time user]]&lt;br /&gt;
[[Category:Advanced topics]]&lt;br /&gt;
[[Category:Quick Start Guide]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Movie_artwork&amp;diff=158785</id>
		<title>Movie artwork</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Movie_artwork&amp;diff=158785"/>
		<updated>2019-02-08T02:12:55Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* Local movie artwork */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Artwork_Contents}}&lt;br /&gt;
{{mininav|[[:Category:Video_library|Video Library Index]] |[[Artwork]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;Movie artwork are images directly related to a movie or movie collection / set, preferably of high quality, that are displayed when viewing the movie or collection entry in the library. The artwork support in {{Kodi}}&#039;s video library is very flexible and able to display many types of artwork, but this page will describe the types of artwork readily available for the Movie library of Kodi.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{red|&#039;&#039;&#039;It is important to note the following:&#039;&#039;&#039;}}&lt;br /&gt;
* Artwork is skin dependent. This means that some skins display a small number of artwork types, while other skins will display many different artwork types.&lt;br /&gt;
* The default skin, Estuary, displays only a limited selection of artwork. Another skin must be used to see other artwork.&lt;br /&gt;
* Each artwork type must be &#039;&#039;&#039;[[Advancedsettings.xml#Extra artwork| whitelisted in advancedsettings.xml]]&#039;&#039;&#039; to be added to the library automatically during scanning and scraping.&lt;br /&gt;
&lt;br /&gt;
= Movie artwork =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=&amp;quot;350px&amp;quot; heights=&amp;quot;200px&amp;quot;&amp;gt;&lt;br /&gt;
File:Artwork-FanartView02.jpg|Movie fanart&lt;br /&gt;
File:Artwork-PosterView01.jpg|Movie poster&lt;br /&gt;
File:Artwork-Banner02.jpg|Movie banner&lt;br /&gt;
File:Artwork-ClearArt01.jpg|Movie clearart&lt;br /&gt;
File:Artwork-ClearLogo.jpg|Movie clearlogo&lt;br /&gt;
File:Artwork-Thumbs01.jpg|Movie landscape&lt;br /&gt;
File:Artwork-DiscArt01.jpg|Movie discart&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;fanart&amp;quot; ==&lt;br /&gt;
Fanart is also known as wallpapers, backdrops, or backgrounds.&lt;br /&gt;
;{{See also|wikipedia:Fanart|l1=Fanart on Wikipedia}}&lt;br /&gt;
&lt;br /&gt;
For Kodi they are used as full screen displays to enhance the user experience.&lt;br /&gt;
&lt;br /&gt;
Fanart have a &#039;&#039;&#039;recommended resolution of 1920x1080&#039;&#039;&#039; the display, with a specific &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039; to match the ratio of current generation televisions and monitors, which allows the screen to be completely filled by the image. Fanart also does not have transparency and preferably does not have a logo or title on the image.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;poster&amp;quot; ==&lt;br /&gt;
Movie posters replicates the movie posters often seen in cinema complexes, or the front cover of home video releases, and contain a clearly visible logo or name of the movie.&lt;br /&gt;
&lt;br /&gt;
Movie posters have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;banner&amp;quot; ==&lt;br /&gt;
Movie banners are wide and short images that contain recognizable characters or props from the movie and typically includes a clearly visible logo or the name of the movie.&lt;br /&gt;
&lt;br /&gt;
Movie banners have a &#039;&#039;&#039;recommended resolution of 1000x185&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.185&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;clearlogo&amp;quot; ==&lt;br /&gt;
Movie logos typically use the distinctive font associated with the movie and is uncluttered by other images.&lt;br /&gt;
&lt;br /&gt;
Movie logos have a &#039;&#039;&#039;recommended resolution of 800x310&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.388&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;clearart&amp;quot; ==&lt;br /&gt;
Movie clearart have a transparent background with recognizable characters or props from the movie along with a logo or name.&lt;br /&gt;
&lt;br /&gt;
Movie clearart have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;landscape&amp;quot; ==&lt;br /&gt;
Landscape images are specially made 16x9 images that contain recognizable characters or props from the movie and a logo. They are used in certain page layouts for browsing. Skins can make passable replacements for media items without one with fanart and the clearlogo.&lt;br /&gt;
&lt;br /&gt;
Movie landscape have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. They have no transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;discart&amp;quot; ==&lt;br /&gt;
Movie discart replicates the picture on the physical Blu-ray or other disc. Although the disc artwork is round, the image itself is square and the disc image is placed in the center on a transparent background.&lt;br /&gt;
&lt;br /&gt;
Movie discart have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:1 (square)&#039;&#039;&#039;. They have a transparent background.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;keyart&amp;quot; ==&lt;br /&gt;
Movie keyart is a poster without text or a logo. This is useful as a separate item in a skinner&#039;s toolbox as it can be paired with a clearlogo or large text title elsewhere on the window, and without text it is less distracting in the background or half-obscured, similar to fanart.&lt;br /&gt;
&lt;br /&gt;
Movie keyart have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;thumb&amp;quot; ==&lt;br /&gt;
Movie thumbnails are still images from the movie itself, and can be generated from the video file in your library.&lt;br /&gt;
&lt;br /&gt;
Movie thumbnails are often displayed in small boxes and have a &#039;&#039;&#039;recommended resolution of about 960x540&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
== Local movie artwork ==&lt;br /&gt;
&lt;br /&gt;
Local movie artwork can be saved in the same folder the [[Naming_video_files/Movies#Movie_Folder_.26_Filename|movie file]] is saved. The general rule for movie artwork file names is &amp;quot;&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&amp;quot; or &amp;quot;&amp;lt;movie file name&amp;gt;-&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&amp;quot; - with some arttype examples listed below and extension matching the file type. The short name can only be used if your movie source folder is configured with &#039;&#039;&#039;[[Adding video sources#Set Content |Movies are in separate folders that match the movie title]]&#039;&#039;&#039;. Movie artwork can also be added from online services with an &#039;&#039;&#039;&amp;quot;information provider&amp;quot; scraper add-on&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved movie artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Recommended resolution&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Aspect ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| fanart&lt;br /&gt;
| fanart.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-fanart.jpg&lt;br /&gt;
| 1920x1080&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| poster&lt;br /&gt;
| poster.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\poster.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-poster.jpg&lt;br /&gt;
| 1000x1500&lt;br /&gt;
| approximately 1:1.5&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| banner&lt;br /&gt;
| banner.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\banner.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-banner.jpg&lt;br /&gt;
| 1000x185&lt;br /&gt;
| 1:0.185&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| landscape&lt;br /&gt;
| landscape.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\landscape.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-landscape.jpg&lt;br /&gt;
| 1000x562&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| clearlogo&lt;br /&gt;
| clearlogo.png&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\clearlogo.png&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-clearlogo.png&lt;br /&gt;
| 800x310&lt;br /&gt;
| 1:0.388&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| clearart&lt;br /&gt;
| clearart.png&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\clearart.png&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-clearart.png&lt;br /&gt;
| 1000x562&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| keyart&lt;br /&gt;
| keyart.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\keyart.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-keyart.jpg&lt;br /&gt;
| 1000x1500&lt;br /&gt;
| approximately 1:1.5&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| thumb&lt;br /&gt;
| thumb.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\thumb.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-thumb.jpg&lt;br /&gt;
| 960x540&lt;br /&gt;
| match video resolution&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Movie set artwork =&lt;br /&gt;
&lt;br /&gt;
Movie collections / sets have the same art types available as movies. Kodi currently does not support adding movie set artwork from the local file system, but it is supported with scrapers.&lt;br /&gt;
; {{see also|Movie_sets}}&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;fanart&amp;quot; ==&lt;br /&gt;
Fanart is also known as wallpapers, backdrops, or backgrounds.&lt;br /&gt;
;{{See also|wikipedia:Fanart|l1=Fanart on Wikipedia}}&lt;br /&gt;
&lt;br /&gt;
For Kodi they are used as full screen displays to enhance the user experience.&lt;br /&gt;
&lt;br /&gt;
Fanart have a &#039;&#039;&#039;recommended resolution of 1920x1080&#039;&#039;&#039; the display, with a specific &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039; to match the ratio of current generation televisions and monitors, which allows the screen to be completely filled by the image. Fanart also does not have transparency and preferably does not have a logo or title on the image.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;poster&amp;quot; ==&lt;br /&gt;
Movie posters replicates the movie posters often seen in cinema complexes, or the front cover of home video releases, and contain a clearly visible logo or name of the movie set.&lt;br /&gt;
&lt;br /&gt;
Movie set posters have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency but do have the movie set logo or name on the image.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;banner&amp;quot; ==&lt;br /&gt;
Movie set banners are wide and short images that contain recognizable characters or props from the movie set and typically includes a clearly visible logo or the name of the movie set.&lt;br /&gt;
&lt;br /&gt;
Movie set banners have a &#039;&#039;&#039;recommended resolution of 1000x185&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.185&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;clearlogo&amp;quot; ==&lt;br /&gt;
Movie set logos typically use the distinctive font associated with the movie set and is uncluttered by other images.&lt;br /&gt;
&lt;br /&gt;
Movie set logos have a &#039;&#039;&#039;recommended resolution of 800x310&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.388&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;clearart&amp;quot; ==&lt;br /&gt;
Movie set clearart have a transparent background with recognizable characters or props from the movie set along with its logo or name.&lt;br /&gt;
&lt;br /&gt;
Movie set clearart have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;landscape&amp;quot; ==&lt;br /&gt;
Landscape images are specially made 16x9 images that contain recognizable characters or props from the movie set and a logo. They are used in certain page layouts for browsing. Skins can make passable replacements for media items without one with fanart and the clearlogo.&lt;br /&gt;
&lt;br /&gt;
Movie set landscape have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. They have no transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;discart&amp;quot; ==&lt;br /&gt;
Movie set discart replicates the picture on the physical Blu-ray or other disc. Although the disc artwork is round, the image itself is square and the disc image is placed in the center on a transparent background.&lt;br /&gt;
&lt;br /&gt;
Movie set discart have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:1 (square)&#039;&#039;&#039;. They have a transparent background.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;keyart&amp;quot; ==&lt;br /&gt;
Movie set keyart is a poster without text or a logo. This is useful as a separate item in a skinner&#039;s toolbox as it can be paired with a clearlogo or large text title elsewhere on the window, and without text it is less distracting in the background or half-obscured, similar to fanart.&lt;br /&gt;
&lt;br /&gt;
Movie set keyart have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Local movie set artwork ==&lt;br /&gt;
&lt;br /&gt;
Local movie set artwork is not supported in Kodi, but it can be added from online services with an &#039;&#039;&#039;&amp;quot;information provider&amp;quot; scraper add-on&#039;&#039;&#039;.&lt;br /&gt;
The add-on [https://forum.kodi.tv/showthread.php?tid=258886 Artwork Beef] can add local movie set artwork to your library. [https://forum.kodi.tv/showthread.php?tid=153502 Movie Set Artwork Automator] hasn&#039;t been supported for some time, but it is also capable of adding local movie set artwork to your library.&lt;br /&gt;
&lt;br /&gt;
= Actor Image =&lt;br /&gt;
[[File:Artwork-Actors02.jpg|400px|right]]&lt;br /&gt;
&lt;br /&gt;
The Actor artwork is a portrait of an actor for easy identification. The image is named as follows &#039;&#039;&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The image to the right is displaying the Actor images of five actors along the top row. They are portrait, medium to high quality images.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Required file properties:&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;Note: The resolution may be increased but ensure the aspect ratio is maintained&amp;lt;/small&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;File Type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Aspect Ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Resolution- &amp;lt;small&amp;gt;recommended&amp;lt;/small&amp;gt;&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px | {{nowrap|*.jpg}} &lt;br /&gt;
| width=200px | {{nowrap|1:1.5}}&lt;br /&gt;
| width=200px | {{nowrap|1000x1500}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Naming conventions for your own manually sourced artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;Saved movies as&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save Location&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |BluRay Structure:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:MyMovies\Big Buck Bunny (2008)\BDMV\.actors\Amy_Adams.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |DVD Structure:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\Big Buck Bunny (2008)\VIDEO_TS\.actors\Amy_Adams.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |Single movie in Directory:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\Big Buck Bunny (2008)\.actors\Amy_Adams.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |Two or more movies in single Directory:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\.actors\Amy_Adams.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Source Folder Artwork =&lt;br /&gt;
[[File:Artwork-VideoFolder01.jpg|400px|right]]&lt;br /&gt;
&lt;br /&gt;
The Folder Artwork, also known as Source Folder thumb,  are landscape images that can be used to replace the standard folder icons when browsing your movie sources in the Video menu. You will not see this artwork in the Movies menu. This image file is saved directly within the Source directory.&lt;br /&gt;
&lt;br /&gt;
To enable the image, navigate to Videos&amp;gt;Files in the menu system. Highlight a source and call up the Context Menu. Select Choose Thumbnail. If you have saved in the image in the correct location, it will be available to select immediately. If not, you will need to navigate to locate and select it. The image must remain in its original location once selected. Deleting the image will remove it from view in the folder icon.&lt;br /&gt;
&lt;br /&gt;
You are able to also apply the folder thumb by modifying the &#039;&#039;&#039;\userdata\sources.xml&#039;&#039;&#039; as follows&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
   &amp;lt;name&amp;gt;Movie&amp;lt;/name&amp;gt;&lt;br /&gt;
   &amp;lt;path&amp;gt;xbms://192.168.1.100:1400/Movie/&amp;lt;/path&amp;gt;&lt;br /&gt;
   &amp;lt;thumbnail&amp;gt;F:\MyMovies\folder.jpg&amp;lt;/thumbnail&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Required file properties:&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;Note: The resolution may be increased but ensure the aspect ratio is maintained&amp;lt;/small&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;File Type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Aspect Ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Resolution- &amp;lt;small&amp;gt;recommended&amp;lt;/small&amp;gt;&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px | {{nowrap|*.jpg}} &lt;br /&gt;
| width=200px | {{nowrap|16:9}}&lt;br /&gt;
| width=200px | {{nowrap|640x360}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Naming conventions for your own manually sourced artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |&#039;&#039;&#039;&#039;&#039;Saved movies as&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save Location&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |Folder Artwork:&lt;br /&gt;
| width=250px |folder.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\folder.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |Alternative name:&lt;br /&gt;
| width=250px |&amp;lt;foldername&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\MyMovies.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Experimental movie artwork =&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;extrafanart&amp;quot; folder ==&lt;br /&gt;
{{anchor|Extra Fanart}}&lt;br /&gt;
&lt;br /&gt;
It is possible to download and save additional high quality fanart which the skin can display, usually in a slideshow. Extra fanart is reliant on a supporting skin and the images have exactly the same properties as the standard fanart described above. This is older and more widely supported in skins.&lt;br /&gt;
&lt;br /&gt;
Extra Fanart is stored in a separate Folder named &amp;quot;extrafanart&amp;quot;. Create a Folder named &#039;&#039;&#039;extrafanart&#039;&#039;&#039; in the folder of the movie, and place each extra fanart image in it. This artwork is not added to the Kodi library, instead skins list the folder directly; this can wake hard drives while browsing the library. The filename is mostly not important.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved extrafanart::&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart0.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrafanart\fanart0.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrafanart\fanart1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrafanart\fanart2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Multiple fanart ==&lt;br /&gt;
&lt;br /&gt;
Multiple fanart is an alternative to &amp;quot;extrafanart&amp;quot; that adds all of the fanart images to the Kodi library, and they are treated just like any other artwork type. This is newer and not supported in as many skins as extrafanart.&lt;br /&gt;
&lt;br /&gt;
Multiple additional fanart is named &amp;quot;fanart1&amp;quot;, &amp;quot;fanart2&amp;quot;, and so on with the number increasing for each artwork. The number can increase to 10 and beyond, but numbers cannot be zero-padded. This currently requires more work from skins to display than &amp;quot;extrafanart&amp;quot; and can be awkward to configure because each numbered fanart needs to be added to the artwork whitelist, but the improved performance and behavior that matches other artwork is worth it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved multiple fanart:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart (standard fanart)&lt;br /&gt;
| width=250px |fanart.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart1&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\fanart1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart2&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\fanart2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;extrathumbs&amp;quot; folder ==&lt;br /&gt;
{{anchor|Extra Thumbs}}&lt;br /&gt;
&lt;br /&gt;
It is possible to download and save additional thumbnails which the skin can display. Extra thumbs are reliant on a supporting skin and the images have exactly the same properties as the standard thumb described above.&lt;br /&gt;
&lt;br /&gt;
Extra Thumbs are stored in a separate Folder named &amp;quot;extrathumbs&amp;quot;. Create a Folder named &#039;&#039;&#039;extrathumbs&#039;&#039;&#039; in the folder of the Movie.  Each Extra Thumb must be named &#039;&#039;thumbX.jpg&#039;&#039; where &#039;&#039;X&#039;&#039; is a sequential number starting with 0 &#039;&#039;(thumb0.jpg, thumb1.jpg, thumb2.jpg, etc)&#039;&#039;. There is a limit of 10 thumb images allowable. Be aware that some skins utilise less than 10 of the images. The location of the extrathumbs Folder is as follows.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved extrathumbs::&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart0.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrathumbs\thumb0.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrathumbs\thumb1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrathumbs\thumb2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Guides]]&lt;br /&gt;
[[Category:Manual]]&lt;br /&gt;
[[Category:Karellen]]&lt;br /&gt;
[[Category:Video library]]&lt;br /&gt;
[[Category:First time user]]&lt;br /&gt;
[[Category:Advanced topics]]&lt;br /&gt;
[[Category:Quick Start Guide]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=User:Rmrector&amp;diff=157169</id>
		<title>User:Rmrector</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=User:Rmrector&amp;diff=157169"/>
		<updated>2019-02-02T20:01:26Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* Merged */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== v18 Artwork updates ===&lt;br /&gt;
* &#039;&#039;Nothing in progress&#039;&#039;&lt;br /&gt;
* But still need to update the Music Videos pages&lt;br /&gt;
&lt;br /&gt;
==== Merged ====&lt;br /&gt;
* [[User:Rmrector/Artwork/Accessing with skins and JSON-RPC - new]]&lt;br /&gt;
* [[User:Rmrector/Artwork - updates for Kodi 18]]&lt;br /&gt;
* [[User:Rmrector/Music artwork - for Kodi 18]]&lt;br /&gt;
* [[Movie artwork]] - updated directly&lt;br /&gt;
* [[TV-Show artwork]] - updated directly&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=User:Rmrector&amp;diff=157168</id>
		<title>User:Rmrector</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=User:Rmrector&amp;diff=157168"/>
		<updated>2019-02-02T20:01:05Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* Merged */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== v18 Artwork updates ===&lt;br /&gt;
* &#039;&#039;Nothing in progress&#039;&#039;&lt;br /&gt;
* But still need to update the Music Videos pages&lt;br /&gt;
&lt;br /&gt;
==== Merged ====&lt;br /&gt;
* [[User:Rmrector/Artwork/Accessing with skins and JSON-RPC - new]]&lt;br /&gt;
* [[User:Rmrector/Artwork - updates for Kodi 18]]&lt;br /&gt;
* [[User:Rmrector/Music artwork - for Kodi 18]]&lt;br /&gt;
* [[Movie artwork]] - updated directly&lt;br /&gt;
* [[TV Show artwork]] - updated directly&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=User:Rmrector&amp;diff=157167</id>
		<title>User:Rmrector</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=User:Rmrector&amp;diff=157167"/>
		<updated>2019-02-02T20:00:54Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* v18 Artwork updates */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== v18 Artwork updates ===&lt;br /&gt;
* &#039;&#039;Nothing in progress&#039;&#039;&lt;br /&gt;
* But still need to update the Music Videos pages&lt;br /&gt;
&lt;br /&gt;
==== Merged ====&lt;br /&gt;
* [[User:Rmrector/Artwork/Accessing with skins and JSON-RPC - new]]&lt;br /&gt;
* [[User:Rmrector/Artwork - updates for Kodi 18]]&lt;br /&gt;
* [[User:Rmrector/Music artwork - for Kodi 18]]&lt;br /&gt;
* [[Movie artwork]] - updated directly&lt;br /&gt;
* [[TV show artwork]] - updated directly&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Movie_artwork&amp;diff=157166</id>
		<title>Movie artwork</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Movie_artwork&amp;diff=157166"/>
		<updated>2019-02-02T19:56:01Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Artwork_Contents}}&lt;br /&gt;
{{mininav|[[:Category:Video_library|Video Library Index]] |[[Artwork]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;Movie artwork are images directly related to a movie or movie collection / set, preferably of high quality, that are displayed when viewing the movie or collection entry in the library. The artwork support in {{Kodi}}&#039;s video library is very flexible and able to display many types of artwork, but this page will describe the types of artwork readily available for the Movie library of Kodi.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{red|&#039;&#039;&#039;It is important to note the following:&#039;&#039;&#039;}}&lt;br /&gt;
* Artwork is skin dependent. This means that some skins display a small number of artwork types, while other skins will display many different artwork types.&lt;br /&gt;
* The default skin, Estuary, displays only a limited selection of artwork. Another skin must be used to see other artwork.&lt;br /&gt;
* Each artwork type must be &#039;&#039;&#039;[[Advancedsettings.xml#Extra artwork| whitelisted in advancedsettings.xml]]&#039;&#039;&#039; to be added to the library automatically during scanning and scraping.&lt;br /&gt;
&lt;br /&gt;
= Movie artwork =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=&amp;quot;350px&amp;quot; heights=&amp;quot;200px&amp;quot;&amp;gt;&lt;br /&gt;
File:Artwork-FanartView02.jpg|Movie fanart&lt;br /&gt;
File:Artwork-PosterView01.jpg|Movie poster&lt;br /&gt;
File:Artwork-Banner02.jpg|Movie banner&lt;br /&gt;
File:Artwork-ClearArt01.jpg|Movie clearart&lt;br /&gt;
File:Artwork-ClearLogo.jpg|Movie clearlogo&lt;br /&gt;
File:Artwork-Thumbs01.jpg|Movie landscape&lt;br /&gt;
File:Artwork-DiscArt01.jpg|Movie discart&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;fanart&amp;quot; ==&lt;br /&gt;
Fanart is also known as wallpapers, backdrops, or backgrounds.&lt;br /&gt;
;{{See also|wikipedia:Fanart|l1=Fanart on Wikipedia}}&lt;br /&gt;
&lt;br /&gt;
For Kodi they are used as full screen displays to enhance the user experience.&lt;br /&gt;
&lt;br /&gt;
Fanart have a &#039;&#039;&#039;recommended resolution of 1920x1080&#039;&#039;&#039; the display, with a specific &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039; to match the ratio of current generation televisions and monitors, which allows the screen to be completely filled by the image. Fanart also does not have transparency and preferably does not have a logo or title on the image.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;poster&amp;quot; ==&lt;br /&gt;
Movie posters replicates the movie posters often seen in cinema complexes, or the front cover of home video releases, and contain a clearly visible logo or name of the movie.&lt;br /&gt;
&lt;br /&gt;
Movie posters have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;banner&amp;quot; ==&lt;br /&gt;
Movie banners are wide and short images that contain recognizable characters or props from the movie and typically includes a clearly visible logo or the name of the movie.&lt;br /&gt;
&lt;br /&gt;
Movie banners have a &#039;&#039;&#039;recommended resolution of 1000x185&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.185&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;clearlogo&amp;quot; ==&lt;br /&gt;
Movie logos typically use the distinctive font associated with the movie and is uncluttered by other images.&lt;br /&gt;
&lt;br /&gt;
Movie logos have a &#039;&#039;&#039;recommended resolution of 800x310&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.388&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;clearart&amp;quot; ==&lt;br /&gt;
Movie clearart have a transparent background with recognizable characters or props from the movie along with a logo or name.&lt;br /&gt;
&lt;br /&gt;
Movie clearart have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;landscape&amp;quot; ==&lt;br /&gt;
Landscape images are specially made 16x9 images that contain recognizable characters or props from the movie and a logo. They are used in certain page layouts for browsing. Skins can make passable replacements for media items without one with fanart and the clearlogo.&lt;br /&gt;
&lt;br /&gt;
Movie landscape have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. They have no transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;discart&amp;quot; ==&lt;br /&gt;
Movie discart replicates the picture on the physical Blu-ray or other disc. Although the disc artwork is round, the image itself is square and the disc image is placed in the center on a transparent background.&lt;br /&gt;
&lt;br /&gt;
Movie discart have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:1 (square)&#039;&#039;&#039;. They have a transparent background.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;keyart&amp;quot; ==&lt;br /&gt;
Movie keyart is a poster without text or a logo. This is useful as a separate item in a skinner&#039;s toolbox as it can be paired with a clearlogo or large text title elsewhere on the window, and without text it is less distracting in the background or half-obscured, similar to fanart.&lt;br /&gt;
&lt;br /&gt;
Movie keyart have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;thumb&amp;quot; ==&lt;br /&gt;
Movie thumbnails are still images from the movie itself, and can be generated from the video file in your library.&lt;br /&gt;
&lt;br /&gt;
Movie thumbnails are often displayed in small boxes and have a &#039;&#039;&#039;recommended resolution of about 960x540&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
== Local movie artwork ==&lt;br /&gt;
&lt;br /&gt;
Local movie artwork can be saved in the same folder the [[Naming_video_files/Movies#Movie_Folder_.26_Filename|movie file]] is saved. The general rule for movie artwork file names is &amp;quot;&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&amp;quot; or &amp;quot;&amp;lt;movie file name&amp;gt;-&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&amp;quot; - with some arttype examples listed below and extension matching the file type. Movie artwork can also be added from online services with an &#039;&#039;&#039;&amp;quot;information provider&amp;quot; scraper add-on&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved movie artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Recommended resolution&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Aspect ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| fanart&lt;br /&gt;
| fanart.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-fanart.jpg&lt;br /&gt;
| 1920x1080&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| poster&lt;br /&gt;
| poster.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\poster.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-poster.jpg&lt;br /&gt;
| 1000x1500&lt;br /&gt;
| approximately 1:1.5&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| banner&lt;br /&gt;
| banner.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\banner.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-banner.jpg&lt;br /&gt;
| 1000x185&lt;br /&gt;
| 1:0.185&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| landscape&lt;br /&gt;
| landscape.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\landscape.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-landscape.jpg&lt;br /&gt;
| 1000x562&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| clearlogo&lt;br /&gt;
| clearlogo.png&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\clearlogo.png&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-clearlogo.png&lt;br /&gt;
| 800x310&lt;br /&gt;
| 1:0.388&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| clearart&lt;br /&gt;
| clearart.png&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\clearart.png&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-clearart.png&lt;br /&gt;
| 1000x562&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| keyart&lt;br /&gt;
| keyart.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\keyart.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-keyart.jpg&lt;br /&gt;
| 1000x1500&lt;br /&gt;
| approximately 1:1.5&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| thumb&lt;br /&gt;
| thumb.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\thumb.jpg&amp;lt;br&amp;gt;f:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-thumb.jpg&lt;br /&gt;
| 960x540&lt;br /&gt;
| match video resolution&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Movie set artwork =&lt;br /&gt;
&lt;br /&gt;
Movie collections / sets have the same art types available as movies. Kodi currently does not support adding movie set artwork from the local file system, but it is supported with scrapers.&lt;br /&gt;
; {{see also|Movie_sets}}&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;fanart&amp;quot; ==&lt;br /&gt;
Fanart is also known as wallpapers, backdrops, or backgrounds.&lt;br /&gt;
;{{See also|wikipedia:Fanart|l1=Fanart on Wikipedia}}&lt;br /&gt;
&lt;br /&gt;
For Kodi they are used as full screen displays to enhance the user experience.&lt;br /&gt;
&lt;br /&gt;
Fanart have a &#039;&#039;&#039;recommended resolution of 1920x1080&#039;&#039;&#039; the display, with a specific &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039; to match the ratio of current generation televisions and monitors, which allows the screen to be completely filled by the image. Fanart also does not have transparency and preferably does not have a logo or title on the image.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;poster&amp;quot; ==&lt;br /&gt;
Movie posters replicates the movie posters often seen in cinema complexes, or the front cover of home video releases, and contain a clearly visible logo or name of the movie set.&lt;br /&gt;
&lt;br /&gt;
Movie set posters have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency but do have the movie set logo or name on the image.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;banner&amp;quot; ==&lt;br /&gt;
Movie set banners are wide and short images that contain recognizable characters or props from the movie set and typically includes a clearly visible logo or the name of the movie set.&lt;br /&gt;
&lt;br /&gt;
Movie set banners have a &#039;&#039;&#039;recommended resolution of 1000x185&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.185&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;clearlogo&amp;quot; ==&lt;br /&gt;
Movie set logos typically use the distinctive font associated with the movie set and is uncluttered by other images.&lt;br /&gt;
&lt;br /&gt;
Movie set logos have a &#039;&#039;&#039;recommended resolution of 800x310&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.388&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;clearart&amp;quot; ==&lt;br /&gt;
Movie set clearart have a transparent background with recognizable characters or props from the movie set along with its logo or name.&lt;br /&gt;
&lt;br /&gt;
Movie set clearart have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;landscape&amp;quot; ==&lt;br /&gt;
Landscape images are specially made 16x9 images that contain recognizable characters or props from the movie set and a logo. They are used in certain page layouts for browsing. Skins can make passable replacements for media items without one with fanart and the clearlogo.&lt;br /&gt;
&lt;br /&gt;
Movie set landscape have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. They have no transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;discart&amp;quot; ==&lt;br /&gt;
Movie set discart replicates the picture on the physical Blu-ray or other disc. Although the disc artwork is round, the image itself is square and the disc image is placed in the center on a transparent background.&lt;br /&gt;
&lt;br /&gt;
Movie set discart have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:1 (square)&#039;&#039;&#039;. They have a transparent background.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;keyart&amp;quot; ==&lt;br /&gt;
Movie set keyart is a poster without text or a logo. This is useful as a separate item in a skinner&#039;s toolbox as it can be paired with a clearlogo or large text title elsewhere on the window, and without text it is less distracting in the background or half-obscured, similar to fanart.&lt;br /&gt;
&lt;br /&gt;
Movie set keyart have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Local movie set artwork ==&lt;br /&gt;
&lt;br /&gt;
Local movie set artwork is not supported in Kodi, but it can be added from online services with an &#039;&#039;&#039;&amp;quot;information provider&amp;quot; scraper add-on&#039;&#039;&#039;.&lt;br /&gt;
The add-on [https://forum.kodi.tv/showthread.php?tid=258886 Artwork Beef] can add local movie set artwork to your library. [https://forum.kodi.tv/showthread.php?tid=153502 Movie Set Artwork Automator] hasn&#039;t been supported for some time, but it is also capable of adding local movie set artwork to your library.&lt;br /&gt;
&lt;br /&gt;
= Actor Image =&lt;br /&gt;
[[File:Artwork-Actors02.jpg|400px|right]]&lt;br /&gt;
&lt;br /&gt;
The Actor artwork is a portrait of an actor for easy identification. The image is named as follows &#039;&#039;&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The image to the right is displaying the Actor images of five actors along the top row. They are portrait, medium to high quality images.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Required file properties:&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;Note: The resolution may be increased but ensure the aspect ratio is maintained&amp;lt;/small&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;File Type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Aspect Ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Resolution- &amp;lt;small&amp;gt;recommended&amp;lt;/small&amp;gt;&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px | {{nowrap|*.jpg}} &lt;br /&gt;
| width=200px | {{nowrap|1:1.5}}&lt;br /&gt;
| width=200px | {{nowrap|1000x1500}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Naming conventions for your own manually sourced artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;Saved movies as&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save Location&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |BluRay Structure:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:MyMovies\Big Buck Bunny (2008)\BDMV\.actors\Amy_Adams.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |DVD Structure:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\Big Buck Bunny (2008)\VIDEO_TS\.actors\Amy_Adams.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |Single movie in Directory:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\Big Buck Bunny (2008)\.actors\Amy_Adams.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |Two or more movies in single Directory:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\.actors\Amy_Adams.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Source Folder Artwork =&lt;br /&gt;
[[File:Artwork-VideoFolder01.jpg|400px|right]]&lt;br /&gt;
&lt;br /&gt;
The Folder Artwork, also known as Source Folder thumb,  are landscape images that can be used to replace the standard folder icons when browsing your movie sources in the Video menu. You will not see this artwork in the Movies menu. This image file is saved directly within the Source directory.&lt;br /&gt;
&lt;br /&gt;
To enable the image, navigate to Videos&amp;gt;Files in the menu system. Highlight a source and call up the Context Menu. Select Choose Thumbnail. If you have saved in the image in the correct location, it will be available to select immediately. If not, you will need to navigate to locate and select it. The image must remain in its original location once selected. Deleting the image will remove it from view in the folder icon.&lt;br /&gt;
&lt;br /&gt;
You are able to also apply the folder thumb by modifying the &#039;&#039;&#039;\userdata\sources.xml&#039;&#039;&#039; as follows&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
   &amp;lt;name&amp;gt;Movie&amp;lt;/name&amp;gt;&lt;br /&gt;
   &amp;lt;path&amp;gt;xbms://192.168.1.100:1400/Movie/&amp;lt;/path&amp;gt;&lt;br /&gt;
   &amp;lt;thumbnail&amp;gt;F:\MyMovies\folder.jpg&amp;lt;/thumbnail&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Required file properties:&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;Note: The resolution may be increased but ensure the aspect ratio is maintained&amp;lt;/small&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;File Type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Aspect Ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Resolution- &amp;lt;small&amp;gt;recommended&amp;lt;/small&amp;gt;&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px | {{nowrap|*.jpg}} &lt;br /&gt;
| width=200px | {{nowrap|16:9}}&lt;br /&gt;
| width=200px | {{nowrap|640x360}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Naming conventions for your own manually sourced artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |&#039;&#039;&#039;&#039;&#039;Saved movies as&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save Location&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |Folder Artwork:&lt;br /&gt;
| width=250px |folder.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\folder.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |Alternative name:&lt;br /&gt;
| width=250px |&amp;lt;foldername&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\MyMovies.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Experimental movie artwork =&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;extrafanart&amp;quot; folder ==&lt;br /&gt;
{{anchor|Extra Fanart}}&lt;br /&gt;
&lt;br /&gt;
It is possible to download and save additional high quality fanart which the skin can display, usually in a slideshow. Extra fanart is reliant on a supporting skin and the images have exactly the same properties as the standard fanart described above. This is older and more widely supported in skins.&lt;br /&gt;
&lt;br /&gt;
Extra Fanart is stored in a separate Folder named &amp;quot;extrafanart&amp;quot;. Create a Folder named &#039;&#039;&#039;extrafanart&#039;&#039;&#039; in the folder of the movie, and place each extra fanart image in it. This artwork is not added to the Kodi library, instead skins list the folder directly; this can wake hard drives while browsing the library. The filename is mostly not important.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved extrafanart::&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart0.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrafanart\fanart0.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrafanart\fanart1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrafanart\fanart2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Multiple fanart ==&lt;br /&gt;
&lt;br /&gt;
Multiple fanart is an alternative to &amp;quot;extrafanart&amp;quot; that adds all of the fanart images to the Kodi library, and they are treated just like any other artwork type. This is newer and not supported in as many skins as extrafanart.&lt;br /&gt;
&lt;br /&gt;
Multiple additional fanart is named &amp;quot;fanart1&amp;quot;, &amp;quot;fanart2&amp;quot;, and so on with the number increasing for each artwork. The number can increase to 10 and beyond, but numbers cannot be zero-padded. This currently requires more work from skins to display than &amp;quot;extrafanart&amp;quot; and can be awkward to configure because each numbered fanart needs to be added to the artwork whitelist, but the improved performance and behavior that matches other artwork is worth it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved multiple fanart:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart (standard fanart)&lt;br /&gt;
| width=250px |fanart.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart1&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\fanart1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart2&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\fanart2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;extrathumbs&amp;quot; folder ==&lt;br /&gt;
{{anchor|Extra Thumbs}}&lt;br /&gt;
&lt;br /&gt;
It is possible to download and save additional thumbnails which the skin can display. Extra thumbs are reliant on a supporting skin and the images have exactly the same properties as the standard thumb described above.&lt;br /&gt;
&lt;br /&gt;
Extra Thumbs are stored in a separate Folder named &amp;quot;extrathumbs&amp;quot;. Create a Folder named &#039;&#039;&#039;extrathumbs&#039;&#039;&#039; in the folder of the Movie.  Each Extra Thumb must be named &#039;&#039;thumbX.jpg&#039;&#039; where &#039;&#039;X&#039;&#039; is a sequential number starting with 0 &#039;&#039;(thumb0.jpg, thumb1.jpg, thumb2.jpg, etc)&#039;&#039;. There is a limit of 10 thumb images allowable. Be aware that some skins utilise less than 10 of the images. The location of the extrathumbs Folder is as follows.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved extrathumbs::&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart0.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrathumbs\thumb0.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrathumbs\thumb1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrathumbs\thumb2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Guides]]&lt;br /&gt;
[[Category:Manual]]&lt;br /&gt;
[[Category:Karellen]]&lt;br /&gt;
[[Category:Video library]]&lt;br /&gt;
[[Category:First time user]]&lt;br /&gt;
[[Category:Advanced topics]]&lt;br /&gt;
[[Category:Quick Start Guide]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=TV-Show_artwork&amp;diff=157165</id>
		<title>TV-Show artwork</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=TV-Show_artwork&amp;diff=157165"/>
		<updated>2019-02-02T19:55:18Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Artwork_Contents}}&lt;br /&gt;
{{mininav|[[:Category:Video_library|Video Library Index]] |[[Artwork]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;TV Show artwork are images directly related to a TV Show, preferably of high quality, that are displayed when viewing the entry in the library. The artwork support in {{Kodi}}&#039;s video library is very flexible and able to display many types of artwork, but this page will describe the types of artwork readily available for the TV show library of Kodi.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{red|&#039;&#039;&#039;It is important to note the following:&#039;&#039;&#039;}}&lt;br /&gt;
* Artwork is skin dependent. This means that some skins display a small number of artwork types, while other skins will display many different artwork types.&lt;br /&gt;
* The default skin, Estuary, displays only a limited selection of artwork. Another skin must be used to see other artwork.&lt;br /&gt;
* Each artwork type must be &#039;&#039;&#039;[[Advancedsettings.xml#Extra artwork| whitelisted in advancedsettings.xml]]&#039;&#039;&#039; to be added to the library automatically during scanning and scraping.&lt;br /&gt;
&lt;br /&gt;
= TV show artwork =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=&amp;quot;350px&amp;quot; heights=&amp;quot;200px&amp;quot;&amp;gt;&lt;br /&gt;
File:Artwork-PosterView02.jpg|TV show poster&lt;br /&gt;
File:Artwork-FanartView03.jpg|TV show fanart&lt;br /&gt;
File:Artwork-Banner01.jpg|TV show banner&lt;br /&gt;
File:Artwork-ClearArt02.jpg|TV show clearart&lt;br /&gt;
File:Artwork-ClearLogo02.jpg|TV show  clearlogo&lt;br /&gt;
File:Artwork-Landscape01.jpg|TV show landscape&lt;br /&gt;
File:Artwork-CharacterArt01.jpg|TV show characterart&lt;br /&gt;
File:Artwork-EpisodeThumb01.jpg|Episode thumb&lt;br /&gt;
File:Artwork-EpisodeFanart01.jpg|Episode fanart&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== TV show &amp;quot;fanart&amp;quot; ==&lt;br /&gt;
Fanart is also known as wallpapers, backdrops, or backgrounds.&lt;br /&gt;
;{{See also|wikipedia:Fanart|l1=Fanart on Wikipedia}}&lt;br /&gt;
&lt;br /&gt;
For Kodi they are used as full screen displays to enhance the user experience.&lt;br /&gt;
&lt;br /&gt;
Fanart have a &#039;&#039;&#039;recommended resolution of 1920x1080&#039;&#039;&#039; the display, with a specific &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039; to match the ratio of current generation televisions and monitors, which allows the screen to be completely filled by the image. Fanart also does not have transparency and preferably does not have a logo or title on the image.&lt;br /&gt;
&lt;br /&gt;
== TV show &amp;quot;poster&amp;quot; ==&lt;br /&gt;
TV show posters replicates the movie posters often seen in cinema complexes, or the front cover of home video releases, and contain a clearly visible logo or name.&lt;br /&gt;
&lt;br /&gt;
TV show posters have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== TV show &amp;quot;banner&amp;quot; ==&lt;br /&gt;
TV show banners are wide and short images that contain recognizable characters or props and typically includes a clearly visible logo or the name.&lt;br /&gt;
&lt;br /&gt;
TV show banners have a &#039;&#039;&#039;recommended resolution of 1000x185&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.185&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== TV show &amp;quot;clearlogo&amp;quot; ==&lt;br /&gt;
TV show logos typically use the distinctive font associated with the TV show and is uncluttered by other images.&lt;br /&gt;
&lt;br /&gt;
TV show logos have a &#039;&#039;&#039;recommended resolution of 800x310&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.388&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== TV show &amp;quot;clearart&amp;quot; ==&lt;br /&gt;
TV show clearart have a transparent background with recognizable characters or props along with a logo or name.&lt;br /&gt;
&lt;br /&gt;
TV show clearart have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== TV show &amp;quot;landscape&amp;quot; ==&lt;br /&gt;
Landscape images are specially made 16x9 images that contain recognizable characters or props and a logo. They are used in certain page layouts for browsing. Skins can make passable replacements for media items without one with fanart and the clearlogo.&lt;br /&gt;
&lt;br /&gt;
TV show landscape have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. They have no transparency.&lt;br /&gt;
&lt;br /&gt;
== TV show &amp;quot;characterart&amp;quot; ==&lt;br /&gt;
TV show character art is an image of the main or prominent character in a TV show. It uses a transparent background in a similar fashion to clearlogo and clearart.&lt;br /&gt;
&lt;br /&gt;
TV show characterart have a &#039;&#039;&#039;recommended resolution of 800x310&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. They have a transparent background.&lt;br /&gt;
&lt;br /&gt;
== TV show &amp;quot;keyart&amp;quot; ==&lt;br /&gt;
TV show keyart is a poster without text or a logo. This is useful as a separate item in a skinner&#039;s toolbox as it can be paired with a clearlogo or large text title elsewhere on the window, and without text it is less distracting in the background or half-obscured, similar to fanart.&lt;br /&gt;
&lt;br /&gt;
TV show keyart have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Local TV show artwork ==&lt;br /&gt;
&lt;br /&gt;
Local TV show artwork can be saved in the top level folder [[Naming_video_files/TV_shows#Recommended|of the TV show]]. The general rule for TV show artwork file names is &amp;quot;&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&amp;quot;, with some arttype examples listed below and extension matching the file type. TV show artwork can also be added from online services with an &#039;&#039;&#039;&amp;quot;information provider&amp;quot; scraper add-on&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|top|#f5f5a1, #a1f5e4}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved TV show artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=450px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Recommended resolution&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Aspect ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| fanart&lt;br /&gt;
| fanart.jpg&lt;br /&gt;
| f:\TVShows\Angel\fanart.jpg&lt;br /&gt;
| 1920x1080&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| poster&lt;br /&gt;
| poster.jpg&lt;br /&gt;
| f:\TVShows\Angel\poster.jpg&lt;br /&gt;
| 1000x1500&lt;br /&gt;
| approximately 1:1.5&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| banner&lt;br /&gt;
| banner.jpg&lt;br /&gt;
| f:\TVShows\Angel\banner.jpg&lt;br /&gt;
| 1000x185&lt;br /&gt;
| 1:0.185&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| landscape&lt;br /&gt;
| landscape.jpg&lt;br /&gt;
| f:\TVShows\Angel\landscape.jpg&lt;br /&gt;
| 1000x562&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| clearlogo&lt;br /&gt;
| clearlogo.png&lt;br /&gt;
| f:\TVShows\Angel\clearlogo.png&lt;br /&gt;
| 800x310&lt;br /&gt;
| 1:0.388&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| clearart&lt;br /&gt;
| clearart.png&lt;br /&gt;
| f:\TVShows\Angel\clearart.png&lt;br /&gt;
| 1000x562&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| characterart&lt;br /&gt;
| characterart.jpg&lt;br /&gt;
| f:\TVShows\Angel\characterart.jpg&lt;br /&gt;
| 800x310&lt;br /&gt;
| approximately 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| keyart&lt;br /&gt;
| keyart.jpg&lt;br /&gt;
| f:\TVShows\Angel\keyart.jpg&lt;br /&gt;
| 1000x1500&lt;br /&gt;
| approximately 1:1.5&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Season artwork =&lt;br /&gt;
&lt;br /&gt;
== Season &amp;quot;poster&amp;quot; ==&lt;br /&gt;
Season posters replicates the movie posters often seen in cinema complexes, or the front cover of home video releases, and contain a clearly visible logo or name and season number.&lt;br /&gt;
&lt;br /&gt;
Season posters have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Season &amp;quot;banner&amp;quot; ==&lt;br /&gt;
Season banners are wide and short images that contain recognizable characters or props and typically includes a clearly visible logo or the name and season number.&lt;br /&gt;
&lt;br /&gt;
Season banners have a &#039;&#039;&#039;recommended resolution of 1000x185&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.185&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Season &amp;quot;landscape&amp;quot; ==&lt;br /&gt;
Landscape images are specially made 16x9 images that contain recognizable characters or props and a logo and season number. They are used in certain page layouts for browsing. Skins can make passable replacements for media items without one with fanart and season name / number.&lt;br /&gt;
&lt;br /&gt;
Season landscape have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. They have no transparency.&lt;br /&gt;
&lt;br /&gt;
== Local season artwork ==&lt;br /&gt;
&lt;br /&gt;
Local Season artwork can be saved in the top level folder [[Naming_video_files/TV_shows#Recommended|of the TV show]]. The general rule for Season artwork file names is &amp;quot;season&amp;lt;num&amp;gt;-&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&amp;quot;, with some arttype examples listed below and extension matching the file type - artwork can be saved for the &amp;quot;Specials&amp;quot; season as &amp;quot;season-specials-&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&amp;quot; and &amp;quot;season-all-&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&amp;quot; for the &amp;quot;All seasons&amp;quot; entry. Season artwork can also be added from online services with an &#039;&#039;&#039;&amp;quot;information provider&amp;quot; scraper add-on&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|top|#f5f5a1, #a1f5e4}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved Season artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=450px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Recommended resolution&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Aspect ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| poster&lt;br /&gt;
| poster.jpg&lt;br /&gt;
| f:\TVShows\Angel\season01-poster.jpg&lt;br /&gt;
f:\TVShows\Angel\season-specials-poster.jpg&lt;br /&gt;
| 1000x1500&lt;br /&gt;
| approximately 1:1.5&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| banner&lt;br /&gt;
| banner.jpg&lt;br /&gt;
| f:\TVShows\Angel\season01-banner.jpg&lt;br /&gt;
| 1000x185&lt;br /&gt;
| 1:0.185&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| landscape&lt;br /&gt;
| landscape.jpg&lt;br /&gt;
| f:\TVShows\Angel\season01-landscape.jpg&lt;br /&gt;
| 1000x562&lt;br /&gt;
| 16:9&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Episode artwork =&lt;br /&gt;
&lt;br /&gt;
== Episode thumbnail ==&lt;br /&gt;
The Episode Thumbnail is an individual and specific image to a particular episode. It usually is a snapshot of a memorable scene in that particular episode.&lt;br /&gt;
&lt;br /&gt;
These images are often shown in a small box with several on screen at once, so have a &#039;&#039;&#039;recommended resolution of about 960x540&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
== Episode fanart ==&lt;br /&gt;
&lt;br /&gt;
The Episode fanart is a high resolution press-shot or capture of a particular episode. It usually is a snapshot of a memorable scene in that particular episode.&lt;br /&gt;
&lt;br /&gt;
Fanart have a &#039;&#039;&#039;recommended resolution of 1920x1080&#039;&#039;&#039; the display, with a specific &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039; to match the ratio of current generation televisions and monitors, which allows the screen to be completely filled by the image.&lt;br /&gt;
&lt;br /&gt;
== Local episode artwork ==&lt;br /&gt;
&lt;br /&gt;
Local episode artwork can be saved next to the [[Naming_video_files/TV_shows#Recommended|episode file]]. The general rule for episode artwork file names is &amp;quot;&amp;lt;episode filename&amp;gt;-&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&amp;quot;, with some arttype examples listed below and extension matching the file type. Episode artwork can also be added from online services with an &#039;&#039;&#039;&amp;quot;information provider&amp;quot; scraper add-on&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|top|#f5f5a1, #a1f5e4}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved episode artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=450px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Recommended resolution&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Aspect ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| thumb&lt;br /&gt;
| thumb.jpg&lt;br /&gt;
| f:\TVShows\Angel\Angel - 01x01 - City Of-thumb.jpg&lt;br /&gt;
| 960x540&lt;br /&gt;
| match video resolution&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| fanart&lt;br /&gt;
| fanart.jpg&lt;br /&gt;
| f:\TVShows\Angel\Angel - 01x01 - City Of-fanart.jpg&lt;br /&gt;
| 1920x1080&lt;br /&gt;
| 16:9&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Actor Image =&lt;br /&gt;
[[File:Artwork-Actors01.jpg|400px|right]]&lt;br /&gt;
&lt;br /&gt;
The Actor artwork is a portrait of an actor for easy identification.&lt;br /&gt;
&lt;br /&gt;
The image to the right is displaying the Actor images of five actors along the top row. They are portrait, medium to high quality images.&lt;br /&gt;
&lt;br /&gt;
{{Red|It is important to note the following limitation with actor artwork. Kodi cannot download actor images for every listed actor in the show. This is due to a limitation with the TMDB and TVDB scraper sites. Those sites list only biographical data and images for the &#039;&#039;&#039;main cast actors&#039;&#039;&#039; only. Episode actors (those actors that appear in only one or two episodes) are line entries at the scraper sites, which means that the actor has no profile page or image attached to them.}}&lt;br /&gt;
&lt;br /&gt;
{{red|If that episode actor is a main cast actor in another tv show or movie listed within your Kodi library, then an Actor Image and biographical data will be available for display. When viewing the actors for a tv show in Kodi, it is normal to see missing actor artwork. These limitations are being worked on and should become available when the relevant sites update their API&#039;s. For TVDB this should become available when they finalise their v2 API. It will then be possible to link episode actors to their profile pages on IMDB. This is beyond the control of Kodi.}}&lt;br /&gt;
&amp;lt;!--https://forums.thetvdb.com/viewtopic.php?f=86&amp;amp;t=38214&amp;amp;p=116408#p116380 --&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|bottom|#f5f5a1, #a1f5e4}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Required file properties:&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;Note: The resolution may be increased but ensure the aspect ratio is maintained&amp;lt;/small&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;File Type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Aspect Ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Resolution- &amp;lt;small&amp;gt;recommended&amp;lt;/small&amp;gt;&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px | {{nowrap|*.jpg}} &lt;br /&gt;
| width=200px | {{nowrap|1:1.5}}&lt;br /&gt;
| width=200px | {{nowrap|1000x1500}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|top|#f5f5a1, #a1f5e4}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Naming conventions for your own manually sourced artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |&#039;&#039;&#039;&#039;&#039;Saved movies as&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save Location&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |BluRay &amp;amp; DVD Structure:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\TVShows\Dominion\.actors\Amy_Adams.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |One episode per directory in the TV Show:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\TVShows\Dominion\.actors\Amy_Adams.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |All episodes in TV Show directory:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\TVShows\Dominion\.actors\Amy_Adams.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Source Folder Artwork =&lt;br /&gt;
[[File:Artwork-VideoFolder01.jpg|400px|right]]&lt;br /&gt;
&lt;br /&gt;
The Folder Artwork, also known as Source Folder thumb,  are landscape images that can be used to replace the standard folder icons when browsing your tv show sources in the Video menu. You will not see this artwork in the TV Show menu. This image file is saved directly within the Source directory.&lt;br /&gt;
&lt;br /&gt;
To enable the image, navigate to Videos&amp;gt;Files in the menu system. Highlight a source and call up the Context Menu. Select Choose Thumbnail. If you have saved the image in the correct location, it will be available to select immediately. If not, you will need to navigate to locate and select it. The image must remain in its original location once selected as it will not be cached. Deleting the image will remove it from view in the folder icon.&lt;br /&gt;
&lt;br /&gt;
You are able to also apply the folder thumb by modifying the &#039;&#039;&#039;\userdata\sources.xml&#039;&#039;&#039; as follows&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
   &amp;lt;name&amp;gt;tv show&amp;lt;/name&amp;gt;&lt;br /&gt;
   &amp;lt;path&amp;gt;xbms://192.168.1.100:1400/tv show/&amp;lt;/path&amp;gt;&lt;br /&gt;
   &amp;lt;thumbnail&amp;gt;F:\My TV Shows\folder.jpg&amp;lt;/thumbnail&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|bottom|#f5f5a1, #a1f5e4}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Required file properties:&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;Note: The resolution may be increased but ensure the aspect ratio is maintained&amp;lt;/small&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;File Type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Aspect Ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Resolution- &amp;lt;small&amp;gt;recommended&amp;lt;/small&amp;gt;&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px | {{nowrap|*.jpg}} &lt;br /&gt;
| width=200px | {{nowrap|16:9}}&lt;br /&gt;
| width=200px | {{nowrap|640x360}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|top|#f5f5a1, #a1f5e4}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Naming conventions for your own manually sourced artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |&#039;&#039;&#039;&#039;&#039;Saved movies as&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save Location&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |Folder Artwork:&lt;br /&gt;
| width=250px |folder.jpg&lt;br /&gt;
| width=600px |f:\TVShows\folder.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |Alternative name:&lt;br /&gt;
| width=250px |&amp;lt;foldername&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\TVShows\MyMovies.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Experimental TV show artwork =&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;extrafanart&amp;quot; folder ==&lt;br /&gt;
{{anchor|Extra Fanart}}&lt;br /&gt;
&lt;br /&gt;
It is possible to download and save additional high quality fanart which the skin can display, usually in a slideshow. Extra fanart is reliant on a supporting skin and the images have exactly the same properties as the standard fanart described above. This is older and more widely supported in skins.&lt;br /&gt;
&lt;br /&gt;
Extra fanart is stored in a separate Folder named &amp;quot;extrafanart&amp;quot;. Create a folder named &#039;&#039;&#039;extrafanart&#039;&#039;&#039; in the folder of the TV show, and place each extra fanart image in it. This artwork is not added to the Kodi library, instead skins list the folder directly; this can wake hard drives while browsing the library. The filename is mostly not important.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|top|#f5f5a1, #a1f5e4}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved extrafanart::&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart0.jpg&lt;br /&gt;
| width=600px |f:\TVShows\Angel\extrafanart\fanart0.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\TVShows\Angel\extrafanart\fanart1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\TVShows\Angel\extrafanart\fanart2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Multiple fanart ==&lt;br /&gt;
&lt;br /&gt;
Multiple fanart is an alternative to &amp;quot;extrafanart&amp;quot; that adds all of the fanart images to the Kodi library, and they are treated just like any other artwork type. This is newer and not supported in as many skins as extrafanart.&lt;br /&gt;
&lt;br /&gt;
Multiple additional fanart is named &amp;quot;fanart1&amp;quot;, &amp;quot;fanart2&amp;quot;, and so on with the number increasing for each artwork. The number can increase to 10 and beyond, but numbers cannot be zero-padded. This currently requires more work from skins to display than &amp;quot;extrafanart&amp;quot; and can be awkward to configure because each numbered fanart needs to be added to the artwork whitelist, but the improved performance and behavior that matches other artwork is worth it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|top|#f5f5a1, #a1f5e4}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved multiple fanart:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart (standard fanart)&lt;br /&gt;
| width=250px |fanart.jpg&lt;br /&gt;
| width=600px |f:\TVShows\Angel\fanart.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart1&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\TVShows\Angel\fanart1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart2&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\TVShows\Angel\fanart2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;br /&gt;
[[Category:Guides]]&lt;br /&gt;
[[Category:First time user]]&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
[[Category:Manual]]&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Karellen]]&lt;br /&gt;
[[Category:Video library]]&lt;br /&gt;
[[Category:Quick Start Guide]]&lt;br /&gt;
[[Category:Advanced topics]]&lt;br /&gt;
[[User:Karellen|Karellen]] ([[User talk:Karellen|talk]]) 01:57, 29 June 2017 (EDT)&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=File:Artwork-EpisodeFanart01.jpg&amp;diff=157164</id>
		<title>File:Artwork-EpisodeFanart01.jpg</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=File:Artwork-EpisodeFanart01.jpg&amp;diff=157164"/>
		<updated>2019-02-02T19:46:26Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Music_artwork&amp;diff=157163</id>
		<title>Music artwork</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Music_artwork&amp;diff=157163"/>
		<updated>2019-02-02T19:12:21Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MusicLibraryCreate}}&lt;br /&gt;
{{mininav|[[:Category:Music_library|Music Library Index]] |[[Artwork]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;Music artwork are images directly related to an artist or an album, preferably of high quality, that are displayed when viewing the album or artist entry in the library. They may also be used as visualizations while playing music. The artwork support in {{Kodi}}&#039;s music library is very flexible and able to display many types of artwork, but this page will describe the types of artwork readily available for the Music library of Kodi.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{red|&#039;&#039;&#039;It is important to note the following:&#039;&#039;&#039;}}&lt;br /&gt;
* Artwork is skin dependent. This means that some skins display a small number of artwork types, while other skins will display many different artwork types.&lt;br /&gt;
* The default skin, Estuary, displays only a limited selection of artwork. Another skin must be used to see other artwork.&lt;br /&gt;
*To ensure &#039;&#039;&#039;local artwork&#039;&#039;&#039; is added when scanning new media items, the image files must be arranged in a certain folder hierarchy. See [[Music tagging#Folder_and_File_Structure| Music folder and file structure]] for a basic option and the [[Artist information folder]] for a separate directory option just for artist artwork and NFO files.&lt;br /&gt;
* Each artwork type must be &#039;&#039;&#039;[[Advancedsettings.xml#Music library extra artwork| whitelisted in advancedsettings.xml]]&#039;&#039;&#039; to be added to the library automatically during scanning and scraping.&lt;br /&gt;
* Kodi 18 is required for expanded artwork type support in the music library.&lt;br /&gt;
&lt;br /&gt;
= Artist artwork =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=&amp;quot;350px&amp;quot; heights=&amp;quot;200px&amp;quot;&amp;gt;&lt;br /&gt;
File:Artwork-MusicFanart01.jpg|Artist fanart&lt;br /&gt;
File:Artwork-MusicArtist01.jpg|Grid of artist thumb&lt;br /&gt;
File:Artwork-MusicBanner01.jpg|Artist banner and clearlogo&lt;br /&gt;
File:Artwork-TS-clearart-AeonNox5modmaybe.jpg|Artist clearart in center right&lt;br /&gt;
File:Artwork-musiclandscape-EstuaryATF.jpg|Grid of artist landscape&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Artist &amp;quot;fanart&amp;quot; ==&lt;br /&gt;
Fanart is also known as wallpapers, backdrops, or backgrounds.&lt;br /&gt;
;{{See also|wikipedia:Fanart|l1=Fanart on Wikipedia}}&lt;br /&gt;
&lt;br /&gt;
For Kodi they are used as full screen displays to enhance the user experience. The fanart displays the artist or band.&lt;br /&gt;
&lt;br /&gt;
Fanart have a &#039;&#039;&#039;recommended resolution of 1920x1080&#039;&#039;&#039; the display, with a specific &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039; to match the ratio of current generation televisions and monitors, which allows the screen to be completely filled by the image. Fanart also does not have transparency and preferably does not have a logo or title on the image.&lt;br /&gt;
&lt;br /&gt;
== Artist &amp;quot;thumb&amp;quot; ==&lt;br /&gt;
Artist thumbnails display the artist or band members, and are often paired with an artist logo or title of the band.&lt;br /&gt;
&lt;br /&gt;
Artist thumbnails have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039;, with a &#039;&#039;&#039;square (1:1) to somewhat portrait aspect ratio&#039;&#039;&#039;. They do not have transparency and preferably do not have a logo or artist name on the image.&lt;br /&gt;
&lt;br /&gt;
== Artist &amp;quot;banner&amp;quot; ==&lt;br /&gt;
Artist banners are wide and short images that contain the artist or band members and typically includes a clearly visible logo or the name of the band.&lt;br /&gt;
&lt;br /&gt;
Artist banners have a &#039;&#039;&#039;recommended resolution of 1000x185&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.185&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Artist &amp;quot;clearlogo&amp;quot; ==&lt;br /&gt;
Artist logos typically use the distinctive font associated with the musicians and is uncluttered by other images.&lt;br /&gt;
&lt;br /&gt;
Artist logos have a &#039;&#039;&#039;recommended resolution of 800x310&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.388&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Artist &amp;quot;clearart&amp;quot; ==&lt;br /&gt;
Artist clearart have a transparent background with an image of the artist or band along with their logo or name.&lt;br /&gt;
&lt;br /&gt;
Artist clearart have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Artist &amp;quot;landscape&amp;quot; ==&lt;br /&gt;
Landscape images are specially made 16x9 images that contain an image of the artist or band and a logo. They are used in certain page layouts for browsing. Skins can make passable replacements for media items without one with fanart and the clearlogo.&lt;br /&gt;
&lt;br /&gt;
Artist landscape have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. They have no transparency.&lt;br /&gt;
&lt;br /&gt;
== Local artist artwork ==&lt;br /&gt;
&lt;br /&gt;
Local artist artwork can be saved in the &#039;&#039;&#039;[[Artist information folder]]&#039;&#039;&#039; or a &#039;&#039;&#039;[[Music tagging#Folder and File Structure| common artist folder among your music files]]&#039;&#039;&#039; if Kodi can find one. The general rule for artist artwork file names is &amp;quot;&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&amp;quot; with some arttype examples listed below and extension matching the file type. Artist artwork can also be added from online services with an &#039;&#039;&#039;[[Scraping Music| &amp;quot;information provider&amp;quot; scraper add-on]]&#039;&#039;&#039;. * &amp;quot;folder.jpg&amp;quot; to &amp;quot;thumb&amp;quot; is a special case for the music library.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|top|#f5e3ff, #72d2f7}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved artist artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=400px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=300px |&#039;&#039;&#039;&#039;&#039;Recommended resolution&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=500px |&#039;&#039;&#039;&#039;&#039;Aspect ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart&lt;br /&gt;
| width=250px |fanart.jpg&lt;br /&gt;
| width=400px |f:\Music\Madonna\fanart.jpg&amp;lt;br&amp;gt;h:\centralinfo\artists\Madonna\fanart.jpg&lt;br /&gt;
| width=300px |1920x1080&lt;br /&gt;
| width=500px |16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |banner&lt;br /&gt;
| width=250px |banner.jpg&lt;br /&gt;
| width=400px |f:\Music\Madonna\banner.jpg&amp;lt;br&amp;gt;h:\centralinfo\artists\Madonna\banner.jpg&lt;br /&gt;
| width=300px |1000x185&lt;br /&gt;
| width=500px |1:0.185&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |landscape&lt;br /&gt;
| width=250px |landscape.jpg&lt;br /&gt;
| width=400px |f:\Music\Madonna\landscape.jpg&amp;lt;br&amp;gt;h:\centralinfo\artists\Madonna\landscape.jpg&lt;br /&gt;
| width=300px |1000x562&lt;br /&gt;
| width=500px |16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |clearlogo&lt;br /&gt;
| width=250px |clearlogo.png&lt;br /&gt;
| width=400px |f:\Music\Madonna\clearlogo.png&amp;lt;br&amp;gt;h:\centralinfo\artists\Madonna\clearlogo.png&lt;br /&gt;
| width=300px |800x310&lt;br /&gt;
| width=500px  |1:0.388&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |clearart&lt;br /&gt;
| width=250px |clearart.png&lt;br /&gt;
| width=400px |f:\Music\Madonna\clearart.png&amp;lt;br&amp;gt;h:\centralinfo\artists\Madonna\clearart.png&lt;br /&gt;
| width=300px |1000x562&lt;br /&gt;
| width=500px |16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |thumb&lt;br /&gt;
| width=250px |folder.jpg *&lt;br /&gt;
| width=400px |f:\Music\Madonna\folder.jpg *&amp;lt;br&amp;gt;h:\centralinfo\artists\Madonna\folder.jpg *&lt;br /&gt;
| width=300px |1000x1000&lt;br /&gt;
| width=500px |approximately 1:1&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Album artwork =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=&amp;quot;350px&amp;quot; heights=&amp;quot;200px&amp;quot;&amp;gt;&lt;br /&gt;
File:Artwork-MusicAlbum01.jpg|Grid of album &amp;quot;thumb&amp;quot;&lt;br /&gt;
File:Artwork-MusicBanner01.jpg|&amp;quot;discart&amp;quot; in bottom left and bottom right&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Album &amp;quot;thumb&amp;quot; ==&lt;br /&gt;
Album thumbnails are high quality images of the album front cover. The design varies widely and may or may not include the name of the album and or artist.&lt;br /&gt;
&lt;br /&gt;
Album thumbnails have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:1 (square)&#039;&#039;&#039;. Depending on design they can be somewhat wider or somewhat taller, and many skins are designed to accommodate that. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Album &amp;quot;discart&amp;quot; ==&lt;br /&gt;
Album discart replicates the picture on the physical CD or other disc. Although the disc artwork is round, the image itself is square and the disc image is placed in the center on a transparent background.&lt;br /&gt;
&lt;br /&gt;
Album discart have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:1 (square)&#039;&#039;&#039;. They have a transparent background.&lt;br /&gt;
&lt;br /&gt;
== Album &amp;quot;back&amp;quot; ==&lt;br /&gt;
This is the album back cover, which often includes a track listing, though the design varies. They are often used in detail views focused on a single album.&lt;br /&gt;
&lt;br /&gt;
Album backs have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:1 (square)&#039;&#039;&#039;. Depending on design they can be somewhat wider or somewhat taller to match the album cover. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Album &amp;quot;spine&amp;quot; ==&lt;br /&gt;
Album spines replicate the album spine found on standard CD cases. They typically have the name of the album and artist, but are too thin to have much of a design beyond continuing the front or back image. They are often used as thin identifiers for unfocused items in a list of albums.&lt;br /&gt;
&lt;br /&gt;
Album spines have a &#039;&#039;&#039;recommended resolution of 50x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:20&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Local album artwork ==&lt;br /&gt;
&lt;br /&gt;
Local album artwork can be saved in the &#039;&#039;&#039;[[Music tagging#Folder and File Structure| album folder]]&#039;&#039;&#039;. The general rule for album artwork file names is &amp;quot;&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&amp;quot; with some arttype examples listed below and extension matching the file type. Album artwork can also be added from online services with an &#039;&#039;&#039;[[Scraping Music| &amp;quot;information provider&amp;quot; scraper add-on]]&#039;&#039;&#039;. *&amp;quot;folder.jpg&amp;quot; to &amp;quot;thumb&amp;quot; is a special case for the music library.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|top|#f5e3ff, #72d2f7}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved album artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;Recommended resolution&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Aspect ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |thumb&lt;br /&gt;
| width=250px |folder.jpg *&lt;br /&gt;
| width=600px |f:\Music\Madonna\Like A Prayer\folder.jpg *&lt;br /&gt;
| width=250px |1000x1000&lt;br /&gt;
| width=600px |approximately 1:1&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |discart&lt;br /&gt;
| width=250px |discart.png&lt;br /&gt;
| width=600px |f:\Music\Madonna\Like A Prayer\discart.png&lt;br /&gt;
| width=250px |1000x1000&lt;br /&gt;
| width=600px |1:1&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |back&lt;br /&gt;
| width=250px |back.jpg&lt;br /&gt;
| width=600px |f:\Music\Madonna\Like A Prayer\back.jpg&lt;br /&gt;
| width=250px |1000x1000&lt;br /&gt;
| width=600px |approximately 1:1&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |spine&lt;br /&gt;
| width=250px |spine.jpg&lt;br /&gt;
| width=600px |f:\Music\Madonna\Like A Prayer\spine.jpg&lt;br /&gt;
| width=250px |50x1000&lt;br /&gt;
| width=600px |1:20&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Source Folder Artwork =&lt;br /&gt;
[[File:Artwork-VideoFolder01.jpg|400px|right]]&lt;br /&gt;
&lt;br /&gt;
The Folder Artwork, also known as Source Folder thumb,  can be landscape, portrait or square images that are used to replace the standard folder icons when browsing your music sources in the files section. You will not see this artwork in the Music menu. This image file is saved directly within the Source directory.&lt;br /&gt;
&lt;br /&gt;
To enable the image, navigate to Music&amp;gt;Files in the menu system. Highlight a source and call up the Context Menu. Select Choose Thumbnail. If you have saved the image in the correct location, it will be available to select immediately. If not, you will need to navigate to locate and select it. The image must remain in its original location once selected as it will not be cached. Deleting the image will remove it from view in the folder icon.&lt;br /&gt;
&lt;br /&gt;
You are able to also apply the folder thumb by modifying the &#039;&#039;&#039;\userdata\sources.xml&#039;&#039;&#039; as follows&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
   &amp;lt;name&amp;gt;music&amp;lt;/name&amp;gt;&lt;br /&gt;
   &amp;lt;path&amp;gt;xbms://192.168.1.100:1400/Music/&amp;lt;/path&amp;gt;&lt;br /&gt;
   &amp;lt;thumbnail&amp;gt;F:\Apps\XBMC\thumbs\shares\thumb.png&amp;lt;/thumbnail&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|bottom|#f5e3ff, #72d2f7}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Required file properties:&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;Note: The resolution may be increased but ensure the aspect ratio is maintained&amp;lt;/small&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;File Type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Aspect Ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Resolution- &amp;lt;small&amp;gt;recommended&amp;lt;/small&amp;gt;&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px | {{nowrap|*.jpg}} &lt;br /&gt;
| width=200px | {{nowrap|16:9}}&lt;br /&gt;
| width=200px | {{nowrap|640x360}}&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px | {{nowrap|*.jpg}} &lt;br /&gt;
| width=200px | {{nowrap|1:1.5}}&lt;br /&gt;
| width=200px | {{nowrap|400x600}}&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px | {{nowrap|*.jpg}} &lt;br /&gt;
| width=200px | {{nowrap|1:1}}&lt;br /&gt;
| width=200px | {{nowrap|500x500}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|top|#f5e3ff, #72d2f7}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Naming conventions for your own manually sourced artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |&#039;&#039;&#039;&#039;&#039;Source&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |Folder Artwork:&lt;br /&gt;
| width=250px |folder.jpg&lt;br /&gt;
| width=600px |f:\Music\folder.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |Alternative name:&lt;br /&gt;
| width=250px |&amp;lt;foldername&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\Music\Music.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Experimental music artwork =&lt;br /&gt;
&lt;br /&gt;
== Artist &amp;quot;extrafanart&amp;quot; folder ==&lt;br /&gt;
{{anchor|Extra Fanart}}&lt;br /&gt;
&lt;br /&gt;
It is possible to download and save additional high quality Fanart which the skin can display, usually in a slideshow. Extra fanart is reliant on a supporting skin and the images have exactly the same properties as the standard Fanart described above. This is older and more widely supported in skins.&lt;br /&gt;
&lt;br /&gt;
Extra Fanart is stored in a separate Folder named &amp;quot;extrafanart&amp;quot;. Create a Folder named &#039;&#039;&#039;extrafanart&#039;&#039;&#039; in the folder of the Artist, and place each extra fanart image in it. This artwork is not added to the Kodi library, instead skins list the folder directly; this can wake hard drives while browsing the library. The filename is mostly not important.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|top|#72d2f7, #f5e3ff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved extrafanart::&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |&#039;&#039;&#039;&#039;&#039;Music saved as&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |Artist\Album\Songs&lt;br /&gt;
| width=250px |fanart0.jpg&lt;br /&gt;
| width=600px |f:\Music\Madonna\extrafanart\fanart0.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |Artist\Album\Songs&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Music\Madonna\extrafanart\fanart1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |Artist\Album\Songs&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Music\Madonna\extrafanart\fanart2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Multiple fanart ==&lt;br /&gt;
&lt;br /&gt;
Multiple fanart is an alternative to &amp;quot;extrafanart&amp;quot; that adds all of the fanart images to the Kodi library, and they are treated just like any other artwork type. This is newer and not supported in as many skins as extrafanart.&lt;br /&gt;
&lt;br /&gt;
Multiple additional fanart is named &amp;quot;fanart1&amp;quot;, &amp;quot;fanart2&amp;quot;, and so on with the number increasing for each artwork. The number can increase to 10 and beyond, but numbers cannot be zero-padded. This currently requires more work from skins to display than &amp;quot;extrafanart&amp;quot; and can be awkward to configure because each numbered fanart needs to be added to the artwork whitelist, but the improved performance and behavior that matches other artwork is worth it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|top|#72d2f7, #f5e3ff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved multiple fanart:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart (standard fanart)&lt;br /&gt;
| width=250px |fanart.jpg&lt;br /&gt;
| width=600px |f:\Music\Madonna\fanart.jpg&lt;br /&gt;
h:\centralinfo\artists\Madonna\fanart.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart1&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Music\Madonna\fanart1.jpg&lt;br /&gt;
h:\centralinfo\artists\Madonna\fanart1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart2&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Music\Madonna\fanart2.jpg&lt;br /&gt;
h:\centralinfo\artists\Madonna\fanart2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Embedded Artwork =&lt;br /&gt;
&amp;lt;section begin=&amp;quot;EmbeddedArtwork&amp;quot; /&amp;gt;As of v17, Kodi supports embedded album art in mp3 files with ID3v2 tags, WMA/WMV files with ASF tags, FLAC files with Vorbis comments/Xiph tags, and mp4 files with itunes tags. It does not currently support embedded album art in APEv2 tags or Ogg files.&amp;lt;section end=&amp;quot;EmbeddedArtwork&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Kodi cannot recognise multiple embedded images in a song file. It can only extract the &amp;quot;Front Cover&amp;quot; image assuming they have been tagged correctly within the file. All other images are ignored.&lt;br /&gt;
&lt;br /&gt;
A list of embedded tags recognised by Kodi is available&lt;br /&gt;
; &#039;&#039;&#039;&#039;&#039;see also: [[Music_tagging#Tags_Kodi_reads|Tags Kodi Reads]]&lt;br /&gt;
&lt;br /&gt;
= Library artwork source priority =&lt;br /&gt;
&lt;br /&gt;
# Local artwork files&lt;br /&gt;
#* Local artwork files next to your media items or in the &amp;quot;[[Artist information folder]]&amp;quot;. These are expected to be mid-high quality level for display in an interface like Kodi.&lt;br /&gt;
#* all types of artwork can be saved to local artwork files&lt;br /&gt;
# Artwork embedded in tracks&lt;br /&gt;
#* Artwork embedded in individual tracks of an album. These are expected to be lower quality to reduce the size of the image duplicated to many song files.&lt;br /&gt;
#* Only supports the album front cover&lt;br /&gt;
# Online source from &amp;quot;information provider&amp;quot;/scraper&lt;br /&gt;
#* only if the option in Kodi settings -&amp;gt; Media -&amp;gt; Music -&amp;gt; &amp;quot;Fetch additional information during updates&amp;quot; is enabled&lt;br /&gt;
#* will only be set if there is no local or embedded artwork unless the option in Kodi settings -&amp;gt; Media -&amp;gt; Music -&amp;gt; &amp;quot;Prefer online information&amp;quot; is enabled&lt;br /&gt;
#* all types of artwork can be added from information providers&lt;br /&gt;
&lt;br /&gt;
= File Mode =&lt;br /&gt;
File Mode is similar to using the file manager provided by your operating system- eg Explorer in Windows systems. It is simply a file browser that allows you to view and play your media even though it has not been scanned and/or scraped into the Library. This mode does not provide the added benefits of Extended Artwork and Album/Artist metadata that the properly scanned and scraped library provides. As a result, Music Artwork is handled differently using this mode as follows:&lt;br /&gt;
&lt;br /&gt;
*The only artwork displayed in File Mode is artist thumb and album thumb. &lt;br /&gt;
*You must have local artwork named and saved as detailed in the sections above.&lt;br /&gt;
*These images are not loaded automatically. The Artist or Album must be viewed once to allow Kodi to locate and cache the image.&lt;br /&gt;
*When &#039;&#039;&#039;Enable tag reading&#039;&#039;&#039; is &#039;&#039;&#039;&#039;&#039;Enabled&#039;&#039;&#039;&#039;&#039; the song must be viewed to allow Kodi to scan for embedded images if no local image is available.&lt;br /&gt;
&lt;br /&gt;
Kodi looks for and caches artwork in the following order:&lt;br /&gt;
*&#039;&#039;&#039;For Artist artwork:&#039;&#039;&#039;&lt;br /&gt;
*#Local artwork named and saved as detailed in the sections above. There is no fallback image&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;For Album artwork:&#039;&#039;&#039;&lt;br /&gt;
*#Local artwork named and saved as detailed in the sections above. If there is no local artwork then&lt;br /&gt;
*#If you have &#039;&#039;&#039;Enable tag reading&#039;&#039;&#039; set as &#039;&#039;&#039;&#039;&#039;Disabled&#039;&#039;&#039;&#039;&#039; in Settings&amp;gt;Media Settings&amp;gt;Music then there is no fallback image&lt;br /&gt;
*#If you have &#039;&#039;&#039;Enable tag reading&#039;&#039;&#039; set as &#039;&#039;&#039;&#039;&#039;Enabled&#039;&#039;&#039;&#039;&#039; in Settings&amp;gt;Media Settings&amp;gt;Music then Kodi will search for an embedded image to cache.&lt;br /&gt;
&lt;br /&gt;
Be aware that if you use File Mode, then upgrade to Library Mode at a later stage, your existing cached artwork may interfere with the correct scanning and scraping of new artwork. There is no simple fix for this. Your choices are&lt;br /&gt;
#Manually amend the affected artwork as described in chapter 2 above&lt;br /&gt;
#Perform the [[Artwork/Cache#Advanced: delete textures13.db|delete textures13.db]] procedure. This will also affect your Video Library.&lt;br /&gt;
&lt;br /&gt;
= {{Kodi}} version updates =&lt;br /&gt;
&lt;br /&gt;
* {{Kodi}} 17 and before did not have the &amp;quot;Artist information folder&amp;quot; option, so could have trouble identifying a local folder for artist artwork in some cases.&lt;br /&gt;
* {{Kodi}} 17 and before was &#039;&#039;&#039;limited to just &amp;quot;fanart&amp;quot; and &amp;quot;thumb&amp;quot; for artist images&#039;&#039;&#039; and &#039;&#039;&#039;&amp;quot;thumb&amp;quot; for album images&#039;&#039;&#039;, it did not have the flexibility to add a wide variety of artwork. Expanded artwork is new and still being explored from multiple angles, so not all skins or scrapers or tools will support a full selection.&lt;br /&gt;
** Skins for versions of Kodi prior to v18 could use Skin Helper Service for some support of expanded artwork, but that has been superseded with this Kodi built-in functionality.&lt;br /&gt;
* {{Kodi}} 18 adds a flexible collection of artwork for music items, but each artwork type must be &#039;&#039;&#039;[[Advancedsettings.xml#Music library extra artwork| whitelisted in advancedsettings.xml]]&#039;&#039;&#039; so that {{Kodi}} will add the specified artwork from scrapers and the file system automatically.&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Guides]]&lt;br /&gt;
[[Category:Manual]]&lt;br /&gt;
[[Category:Karellen]]&lt;br /&gt;
[[Category:First time user]]&lt;br /&gt;
[[Category:Music library]]&lt;br /&gt;
[[Category:Advanced topics]]&lt;br /&gt;
[[Category:Quick Start Guide]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=User:Rmrector&amp;diff=157162</id>
		<title>User:Rmrector</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=User:Rmrector&amp;diff=157162"/>
		<updated>2019-02-02T19:11:12Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== v18 Artwork updates ===&lt;br /&gt;
* &#039;&#039;Nothing in progress&#039;&#039;&lt;br /&gt;
* But still need to update the TV shows and Music Videos pages&lt;br /&gt;
&lt;br /&gt;
==== Merged ====&lt;br /&gt;
* [[User:Rmrector/Artwork/Accessing with skins and JSON-RPC - new]]&lt;br /&gt;
* [[User:Rmrector/Artwork - updates for Kodi 18]]&lt;br /&gt;
* [[User:Rmrector/Music artwork - for Kodi 18]]&lt;br /&gt;
* [[Movie artwork]] - updated directly&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=User:Rmrector&amp;diff=157161</id>
		<title>User:Rmrector</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=User:Rmrector&amp;diff=157161"/>
		<updated>2019-02-02T19:10:42Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== v18 Artwork updates ===&lt;br /&gt;
* &#039;&#039;Nothing in progress&#039;&#039;&lt;br /&gt;
* But still need to update the TV shows and Music Videos pages&lt;br /&gt;
&lt;br /&gt;
==== Merged ====&lt;br /&gt;
* [[User:Rmrector/Artwork/Accessing with skins and JSON-RPC - new]]&lt;br /&gt;
* [[User:Rmrector/Artwork - updates for Kodi 18]]&lt;br /&gt;
* [[User:Rmrector/Music artwork - for Kodi 18]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Movie_artwork&amp;diff=157160</id>
		<title>Movie artwork</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Movie_artwork&amp;diff=157160"/>
		<updated>2019-02-02T19:09:34Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Artwork_Contents}}&lt;br /&gt;
{{mininav|[[:Category:Video_library|Video Library Index]] |[[Artwork]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;Movie artwork are images directly related to a movie or movie collection / set, preferably of high quality, that are displayed when viewing the movie or collection entry in the library. The artwork support in {{Kodi}}&#039;s music library is very flexible and able to display many types of artwork, but this page will describe the types of artwork readily available for the Movie library of Kodi.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{red|&#039;&#039;&#039;It is important to note the following:&#039;&#039;&#039;}}&lt;br /&gt;
* Artwork is skin dependent. This means that some skins display a small number of artwork types, while other skins will display many different artwork types.&lt;br /&gt;
* The default skin, Estuary, displays only a limited selection of artwork. Another skin must be used to see other artwork.&lt;br /&gt;
* Each artwork type must be &#039;&#039;&#039;[[Advancedsettings.xml#Extra artwork| whitelisted in advancedsettings.xml]]&#039;&#039;&#039; to be added to the library automatically during scanning and scraping.&lt;br /&gt;
&lt;br /&gt;
= Movie artwork =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=&amp;quot;350px&amp;quot; heights=&amp;quot;200px&amp;quot;&amp;gt;&lt;br /&gt;
File:Artwork-FanartView02.jpg|Movie fanart&lt;br /&gt;
File:Artwork-PosterView01.jpg|Movie poster&lt;br /&gt;
File:Artwork-Banner02.jpg|Movie banner&lt;br /&gt;
File:Artwork-ClearArt01.jpg|Movie clearart&lt;br /&gt;
File:Artwork-ClearLogo.jpg|Movie clearlogo&lt;br /&gt;
File:Artwork-Thumbs01.jpg|Movie landscape&lt;br /&gt;
File:Artwork-DiscArt01.jpg|Movie discart&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;fanart&amp;quot; ==&lt;br /&gt;
Fanart is also known as wallpapers, backdrops, or backgrounds.&lt;br /&gt;
;{{See also|wikipedia:Fanart|l1=Fanart on Wikipedia}}&lt;br /&gt;
&lt;br /&gt;
For Kodi they are used as full screen displays to enhance the user experience.&lt;br /&gt;
&lt;br /&gt;
Fanart have a &#039;&#039;&#039;recommended resolution of 1920x1080&#039;&#039;&#039; the display, with a specific &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039; to match the ratio of current generation televisions and monitors, which allows the screen to be completely filled by the image. Fanart also does not have transparency and preferably does not have a logo or title on the image.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;poster&amp;quot; ==&lt;br /&gt;
Movie posters replicates the movie posters often seen in cinema complexes, or the front cover of home video releases, and contain a clearly visible logo or name of the movie.&lt;br /&gt;
&lt;br /&gt;
Movie posters have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency but do have the movie logo or name on the image.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;banner&amp;quot; ==&lt;br /&gt;
Movie banners are wide and short images that contain recognizable characters or props from the movie and typically includes a clearly visible logo or the name of the movie.&lt;br /&gt;
&lt;br /&gt;
Movie banners have a &#039;&#039;&#039;recommended resolution of 1000x185&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.185&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;clearlogo&amp;quot; ==&lt;br /&gt;
Movie logos typically use the distinctive font associated with the movie and is uncluttered by other images.&lt;br /&gt;
&lt;br /&gt;
Movie logos have a &#039;&#039;&#039;recommended resolution of 800x310&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.388&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;clearart&amp;quot; ==&lt;br /&gt;
Movie clearart have a transparent background with recognizable characters or props from the movie along with a logo or name.&lt;br /&gt;
&lt;br /&gt;
Movie clearart have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;landscape&amp;quot; ==&lt;br /&gt;
Landscape images are specially made 16x9 images that contain recognizable characters or props from the movie and a logo. They are used in certain page layouts for browsing. Skins can make passable replacements for media items without one with fanart and the clearlogo.&lt;br /&gt;
&lt;br /&gt;
Movie landscape have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. They have no transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;discart&amp;quot; ==&lt;br /&gt;
Movie discart replicates the picture on the physical Blu-ray or other disc. Although the disc artwork is round, the image itself is square and the disc image is placed in the center on a transparent background.&lt;br /&gt;
&lt;br /&gt;
Movie discart have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:1 (square)&#039;&#039;&#039;. They have a transparent background.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;keyart&amp;quot; ==&lt;br /&gt;
Movie keyart is a poster without text or a logo. This is useful as a separate item in a skinner&#039;s toolbox as it can be paired with a clearlogo or large text title elsewhere on the window, and without text it is less distracting in the background or half-obscured, similar to fanart.&lt;br /&gt;
&lt;br /&gt;
Movie keyart have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie &amp;quot;thumb&amp;quot; ==&lt;br /&gt;
Movie thumbnails are still images from the movie itself, and can be generated from the video file in your library.&lt;br /&gt;
&lt;br /&gt;
Movie thumbnails have a recommended resolution that matches the resolution of the video file.&lt;br /&gt;
&lt;br /&gt;
== Local movie artwork ==&lt;br /&gt;
&lt;br /&gt;
Local movie artwork can be saved in the same folder the [[Naming_video_files/Movies#Movie_Folder_.26_Filename|movie file]] is saved. The general rule for movie artwork file names is &amp;quot;&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&amp;quot; or &amp;quot;&amp;lt;movie file name&amp;gt;-&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&amp;quot; - with some arttype examples listed below and extension matching the file type. Movie artwork can also be added from online services with an &#039;&#039;&#039;&amp;quot;information provider&amp;quot; scraper add-on&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved movie artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Recommended resolution&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=150px |&#039;&#039;&#039;&#039;&#039;Aspect ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| fanart&lt;br /&gt;
| fanart.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&amp;lt;br&amp;gt;h:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-fanart.jpg&lt;br /&gt;
| 1920x1080&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| poster&lt;br /&gt;
| poster.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\poster.jpg&amp;lt;br&amp;gt;h:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-poster.jpg&lt;br /&gt;
| 1000x1500&lt;br /&gt;
| approximately 1:1.5&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| banner&lt;br /&gt;
| banner.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\banner.jpg&amp;lt;br&amp;gt;h:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-banner.jpg&lt;br /&gt;
| 1000x185&lt;br /&gt;
| 1:0.185&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| landscape&lt;br /&gt;
| landscape.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\landscape.jpg&amp;lt;br&amp;gt;h:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-landscape.jpg&lt;br /&gt;
| 1000x562&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| clearlogo&lt;br /&gt;
| clearlogo.png&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\clearlogo.png&amp;lt;br&amp;gt;h:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-clearlogo.png&lt;br /&gt;
| 800x310&lt;br /&gt;
| 1:0.388&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| clearart&lt;br /&gt;
| clearart.png&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\clearart.png&amp;lt;br&amp;gt;h:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-clearart.png&lt;br /&gt;
| 1000x562&lt;br /&gt;
| 16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| keyart&lt;br /&gt;
| keyart.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\keyart.jpg&amp;lt;br&amp;gt;h:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-keyart.jpg&lt;br /&gt;
| 1000x1500&lt;br /&gt;
| approximately 1:1.5&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| thumb&lt;br /&gt;
| thumb.jpg&lt;br /&gt;
| f:\Movies\Blade Runner 2049 (2017)\thumb.jpg&amp;lt;br&amp;gt;h:\Movies\Blade Runner 2049 (2017)\Blade Runner 2049 (2017)-thumb.jpg&lt;br /&gt;
| 1000x1500&lt;br /&gt;
| approximately 1:1.5&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Movie set artwork =&lt;br /&gt;
&lt;br /&gt;
Movie collections / sets have the same art types available as movies. Kodi currently does not support adding movie set artwork from the local file system, but it is supported with scrapers.&lt;br /&gt;
; {{see also|Movie_sets}}&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;fanart&amp;quot; ==&lt;br /&gt;
Fanart is also known as wallpapers, backdrops, or backgrounds.&lt;br /&gt;
;{{See also|wikipedia:Fanart|l1=Fanart on Wikipedia}}&lt;br /&gt;
&lt;br /&gt;
For Kodi they are used as full screen displays to enhance the user experience.&lt;br /&gt;
&lt;br /&gt;
Fanart have a &#039;&#039;&#039;recommended resolution of 1920x1080&#039;&#039;&#039; the display, with a specific &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039; to match the ratio of current generation televisions and monitors, which allows the screen to be completely filled by the image. Fanart also does not have transparency and preferably does not have a logo or title on the image.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;poster&amp;quot; ==&lt;br /&gt;
Movie posters replicates the movie posters often seen in cinema complexes, or the front cover of home video releases, and contain a clearly visible logo or name of the movie set.&lt;br /&gt;
&lt;br /&gt;
Movie set posters have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency but do have the movie set logo or name on the image.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;banner&amp;quot; ==&lt;br /&gt;
Movie set banners are wide and short images that contain recognizable characters or props from the movie set and typically includes a clearly visible logo or the name of the movie set.&lt;br /&gt;
&lt;br /&gt;
Movie set banners have a &#039;&#039;&#039;recommended resolution of 1000x185&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.185&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;clearlogo&amp;quot; ==&lt;br /&gt;
Movie set logos typically use the distinctive font associated with the movie set and is uncluttered by other images.&lt;br /&gt;
&lt;br /&gt;
Movie set logos have a &#039;&#039;&#039;recommended resolution of 800x310&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.388&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;clearart&amp;quot; ==&lt;br /&gt;
Movie set clearart have a transparent background with recognizable characters or props from the movie set along with its logo or name.&lt;br /&gt;
&lt;br /&gt;
Movie set clearart have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;landscape&amp;quot; ==&lt;br /&gt;
Landscape images are specially made 16x9 images that contain recognizable characters or props from the movie set and a logo. They are used in certain page layouts for browsing. Skins can make passable replacements for media items without one with fanart and the clearlogo.&lt;br /&gt;
&lt;br /&gt;
Movie set landscape have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. They have no transparency.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;discart&amp;quot; ==&lt;br /&gt;
Movie set discart replicates the picture on the physical Blu-ray or other disc. Although the disc artwork is round, the image itself is square and the disc image is placed in the center on a transparent background.&lt;br /&gt;
&lt;br /&gt;
Movie set discart have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:1 (square)&#039;&#039;&#039;. They have a transparent background.&lt;br /&gt;
&lt;br /&gt;
== Movie set &amp;quot;keyart&amp;quot; ==&lt;br /&gt;
Movie set keyart is a poster without text or a logo. This is useful as a separate item in a skinner&#039;s toolbox as it can be paired with a clearlogo or large text title elsewhere on the window, and without text it is less distracting in the background or half-obscured, similar to fanart.&lt;br /&gt;
&lt;br /&gt;
Movie set keyart have a &#039;&#039;&#039;recommended resolution of 1000x1500&#039;&#039;&#039;, with an &#039;&#039;&#039;aspect ratio of approximately 1:1.5&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Local movie set artwork ==&lt;br /&gt;
&lt;br /&gt;
Local movie set artwork is not supported in Kodi, but it can be added from online services with an &#039;&#039;&#039;&amp;quot;information provider&amp;quot; scraper add-on&#039;&#039;&#039;.&lt;br /&gt;
The add-on [https://forum.kodi.tv/showthread.php?tid=258886 Artwork Beef] can add local movie set artwork to your library. [https://forum.kodi.tv/showthread.php?tid=153502 Movie Set Artwork Automator] hasn&#039;t been supported for some time, but it is also capable of adding local movie set artwork to your library.&lt;br /&gt;
&lt;br /&gt;
== Actor Image ==&lt;br /&gt;
[[File:Artwork-Actors02.jpg|400px|right]]&lt;br /&gt;
&lt;br /&gt;
The Actor artwork is a portrait of an actor for easy identification. The image is named as follows &#039;&#039;&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The image to the right is displaying the Actor images of five actors along the top row. They are portrait, medium to high quality images.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Required file properties:&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;Note: The resolution may be increased but ensure the aspect ratio is maintained&amp;lt;/small&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;File Type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Aspect Ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Resolution- &amp;lt;small&amp;gt;recommended&amp;lt;/small&amp;gt;&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px | {{nowrap|*.jpg}} &lt;br /&gt;
| width=200px | {{nowrap|1:1.5}}&lt;br /&gt;
| width=200px | {{nowrap|1000x1500}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Naming conventions for your own manually sourced artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;Saved movies as&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save Location&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |BluRay Structure:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:MyMovies\Big Buck Bunny (2008)\BDMV\.actors\Amy_Adams.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |DVD Structure:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\Big Buck Bunny (2008)\VIDEO_TS\.actors\Amy_Adams.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |Single movie in Directory:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\Big Buck Bunny (2008)\.actors\Amy_Adams.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |Two or more movies in single Directory:&lt;br /&gt;
| width=250px |&amp;lt;FirstName&amp;gt;_&amp;lt;LastName&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\.actors\Amy_Adams.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Source Folder Artwork ==&lt;br /&gt;
[[File:Artwork-VideoFolder01.jpg|400px|right]]&lt;br /&gt;
&lt;br /&gt;
The Folder Artwork, also known as Source Folder thumb,  are landscape images that can be used to replace the standard folder icons when browsing your movie sources in the Video menu. You will not see this artwork in the Movies menu. This image file is saved directly within the Source directory.&lt;br /&gt;
&lt;br /&gt;
To enable the image, navigate to Videos&amp;gt;Files in the menu system. Highlight a source and call up the Context Menu. Select Choose Thumbnail. If you have saved in the image in the correct location, it will be available to select immediately. If not, you will need to navigate to locate and select it. The image must remain in its original location once selected. Deleting the image will remove it from view in the folder icon.&lt;br /&gt;
&lt;br /&gt;
You are able to also apply the folder thumb by modifying the &#039;&#039;&#039;\userdata\sources.xml&#039;&#039;&#039; as follows&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
   &amp;lt;name&amp;gt;Movie&amp;lt;/name&amp;gt;&lt;br /&gt;
   &amp;lt;path&amp;gt;xbms://192.168.1.100:1400/Movie/&amp;lt;/path&amp;gt;&lt;br /&gt;
   &amp;lt;thumbnail&amp;gt;F:\MyMovies\folder.jpg&amp;lt;/thumbnail&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Required file properties:&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;Note: The resolution may be increased but ensure the aspect ratio is maintained&amp;lt;/small&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;File Type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Aspect Ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Resolution- &amp;lt;small&amp;gt;recommended&amp;lt;/small&amp;gt;&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px | {{nowrap|*.jpg}} &lt;br /&gt;
| width=200px | {{nowrap|16:9}}&lt;br /&gt;
| width=200px | {{nowrap|640x360}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Naming conventions for your own manually sourced artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |&#039;&#039;&#039;&#039;&#039;Saved movies as&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save Location&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |Folder Artwork:&lt;br /&gt;
| width=250px |folder.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\folder.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |Alternative name:&lt;br /&gt;
| width=250px |&amp;lt;foldername&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\MyMovies\MyMovies.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Experimental movie artwork =&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;extrafanart&amp;quot; folder ==&lt;br /&gt;
{{anchor|Extra Fanart}}&lt;br /&gt;
&lt;br /&gt;
It is possible to download and save additional high quality fanart which the skin can display, usually in a slideshow. Extra fanart is reliant on a supporting skin and the images have exactly the same properties as the standard fanart described above. This is older and more widely supported in skins.&lt;br /&gt;
&lt;br /&gt;
Extra Fanart is stored in a separate Folder named &amp;quot;extrafanart&amp;quot;. Create a Folder named &#039;&#039;&#039;extrafanart&#039;&#039;&#039; in the folder of the movie, and place each extra fanart image in it. This artwork is not added to the Kodi library, instead skins list the folder directly; this can wake hard drives while browsing the library. The filename is mostly not important.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved extrafanart::&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart0.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrafanart\fanart0.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrafanart\fanart1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrafanart\fanart2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Multiple fanart ==&lt;br /&gt;
&lt;br /&gt;
Multiple fanart is an alternative to &amp;quot;extrafanart&amp;quot; that adds all of the fanart images to the Kodi library, and they are treated just like any other artwork type. This is newer and not supported in as many skins as extrafanart.&lt;br /&gt;
&lt;br /&gt;
Multiple additional fanart is named &amp;quot;fanart1&amp;quot;, &amp;quot;fanart2&amp;quot;, and so on with the number increasing for each artwork. The number can increase to 10 and beyond, but numbers cannot be zero-padded. This currently requires more work from skins to display than &amp;quot;extrafanart&amp;quot; and can be awkward to configure because each numbered fanart needs to be added to the artwork whitelist, but the improved performance and behavior that matches other artwork is worth it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved multiple fanart:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart (standard fanart)&lt;br /&gt;
| width=250px |fanart.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\fanart.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart1&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\fanart1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart2&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\fanart2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;extrathumbs&amp;quot; folder ==&lt;br /&gt;
{{anchor|Extra Thumbs}}&lt;br /&gt;
&lt;br /&gt;
It is possible to download and save additional thumbnails which the skin can display. Extra thumbs are reliant on a supporting skin and the images have exactly the same properties as the standard thumb described above.&lt;br /&gt;
&lt;br /&gt;
Extra Thumbs are stored in a separate Folder named &amp;quot;extrathumbs&amp;quot;. Create a Folder named &#039;&#039;&#039;extrathumbs&#039;&#039;&#039; in the folder of the Movie.  Each Extra Thumb must be named &#039;&#039;thumbX.jpg&#039;&#039; where &#039;&#039;X&#039;&#039; is a sequential number starting with 0 &#039;&#039;(thumb0.jpg, thumb1.jpg, thumb2.jpg, etc)&#039;&#039;. There is a limit of 10 thumb images allowable. Be aware that some skins utilise less than 10 of the images. The location of the extrathumbs Folder is as follows.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|left|#ffdddd, #ddffdd 50%, #ddddff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved extrathumbs::&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart0.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrathumbs\thumb0.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrathumbs\thumb1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Movies\Blade Runner 2049 (2017)\extrathumbs\thumb2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Guides]]&lt;br /&gt;
[[Category:Manual]]&lt;br /&gt;
[[Category:Karellen]]&lt;br /&gt;
[[Category:Video library]]&lt;br /&gt;
[[Category:First time user]]&lt;br /&gt;
[[Category:Advanced topics]]&lt;br /&gt;
[[Category:Quick Start Guide]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Music_artwork&amp;diff=157159</id>
		<title>Music artwork</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Music_artwork&amp;diff=157159"/>
		<updated>2019-02-02T17:51:19Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MusicLibraryCreate}}&lt;br /&gt;
{{mininav|[[:Category:Music_library|Music Library Index]] |[[Artwork]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;Music artwork are images directly related to an artist or an album, preferably of high quality, that are displayed when viewing the album or artist entry in the library. They may also be used as visualizations while playing music. The artwork support in {{Kodi}}&#039;s music library is very flexible and able to display many types of artwork, but this page will describe the types of artwork readily available for the Music library of Kodi.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{red|&#039;&#039;&#039;It is important to note the following:&#039;&#039;&#039;}}&lt;br /&gt;
* Artwork is skin dependent. This means that some skins display a small number of artwork types, while other skins will display many different artwork types.&lt;br /&gt;
* The default skin, Estuary, displays only a limited selection of artwork. Another skin must be used to see other artwork.&lt;br /&gt;
*To ensure &#039;&#039;&#039;local artwork&#039;&#039;&#039; is added when scanning new media items, the image files must be arranged in a certain folder hierarchy. See [[Music tagging#Folder_and_File_Structure| Music folder and file structure]] for a basic option and the [[Artist information folder]] for a separate directory option just for artist artwork and NFO files.&lt;br /&gt;
* Each artwork type must be &#039;&#039;&#039;[[Advancedsettings.xml#Music library extra artwork| whitelisted in advancedsettings.xml]]&#039;&#039;&#039; to be added to the library automatically during scanning and scraping.&lt;br /&gt;
* Kodi 18 is required for expanded artwork type support in the music library.&lt;br /&gt;
; {{see also|Music_library}}&lt;br /&gt;
&lt;br /&gt;
= Artist artwork =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=&amp;quot;350px&amp;quot; heights=&amp;quot;200px&amp;quot;&amp;gt;&lt;br /&gt;
File:Artwork-MusicFanart01.jpg|Artist fanart&lt;br /&gt;
File:Artwork-MusicArtist01.jpg|Grid of artist thumb&lt;br /&gt;
File:Artwork-MusicBanner01.jpg|Artist banner and clearlogo&lt;br /&gt;
File:Artwork-TS-clearart-AeonNox5modmaybe.jpg|Artist clearart in center right&lt;br /&gt;
File:Artwork-musiclandscape-EstuaryATF.jpg|Grid of artist landscape&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Artist &amp;quot;fanart&amp;quot; ==&lt;br /&gt;
Fanart is also known as wallpapers, backdrops, or backgrounds.&lt;br /&gt;
;{{See also|wikipedia:Fanart|l1=Fanart on Wikipedia}}&lt;br /&gt;
&lt;br /&gt;
For Kodi they are used as full screen displays to enhance the user experience. The fanart displays the artist or band.&lt;br /&gt;
&lt;br /&gt;
Fanart have a &#039;&#039;&#039;recommended resolution of 1920x1080&#039;&#039;&#039; the display, with a specific &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039; to match the ratio of current generation televisions and monitors, which allows the screen to be completely filled by the image. Fanart also does not have transparency and preferably does not have a logo or title on the image.&lt;br /&gt;
&lt;br /&gt;
== Artist &amp;quot;thumb&amp;quot; ==&lt;br /&gt;
Artist thumbnails display the artist or band members, and are often paired with an artist logo or title of the band.&lt;br /&gt;
&lt;br /&gt;
Artist thumbnails have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039;, with a &#039;&#039;&#039;square (1:1) to somewhat portrait aspect ratio&#039;&#039;&#039;. They do not have transparency and preferably do not have a logo or artist name on the image.&lt;br /&gt;
&lt;br /&gt;
== Artist &amp;quot;banner&amp;quot; ==&lt;br /&gt;
Artist banners display the artist or band members and typically includes a clearly visible logo or the name of the band.&lt;br /&gt;
&lt;br /&gt;
Artist banners have a &#039;&#039;&#039;recommended resolution of 1000x185&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.185&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Artist &amp;quot;clearlogo&amp;quot; ==&lt;br /&gt;
Artist logos typically use the distinctive font associated with the musicians and is uncluttered by other images.&lt;br /&gt;
&lt;br /&gt;
Artist logos have a &#039;&#039;&#039;recommended resolution of 800x310&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:0.388&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Artist &amp;quot;clearart&amp;quot; ==&lt;br /&gt;
Artist clearart have a transparent background with an image of the artist or band along with their logo or name.&lt;br /&gt;
&lt;br /&gt;
Artist clearart have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. The transparent background allows it to be overlaid on other images or video with minimal impact.&lt;br /&gt;
&lt;br /&gt;
== Artist &amp;quot;landscape&amp;quot; ==&lt;br /&gt;
Landscape images are specially made 16x9 images that contain an image of the artist or band and a logo. They are used in certain page layouts for browsing. Skins can make passable replacements for media items without one with fanart and the clearlogo.&lt;br /&gt;
&lt;br /&gt;
Artist landscape have a &#039;&#039;&#039;recommended resolution of 1000x562&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 16:9&#039;&#039;&#039;. They have no transparency.&lt;br /&gt;
&lt;br /&gt;
== Local artist artwork ==&lt;br /&gt;
&lt;br /&gt;
Local artist artwork can be saved in the &#039;&#039;&#039;[[Artist information folder]]&#039;&#039;&#039; or a &#039;&#039;&#039;[[Music tagging#Folder and File Structure| common artist folder among your music files]]&#039;&#039;&#039; if Kodi can find one. The general rule for artist artwork file names is &amp;quot;&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&amp;quot; with some arttype examples listed below and extension matching the file type. Artist artwork can also be added from online services with an &#039;&#039;&#039;[[Scraping Music| &amp;quot;information provider&amp;quot; scraper add-on]]&#039;&#039;&#039;. * &amp;quot;folder.jpg&amp;quot; to &amp;quot;thumb&amp;quot; is a special case for the music library.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|top|#f5e3ff, #72d2f7}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved artist artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=400px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=300px |&#039;&#039;&#039;&#039;&#039;Recommended resolution&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=500px |&#039;&#039;&#039;&#039;&#039;Aspect ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart&lt;br /&gt;
| width=250px |fanart.jpg&lt;br /&gt;
| width=400px |f:\Music\Madonna\fanart.jpg&amp;lt;br&amp;gt;h:\centralinfo\artists\Madonna\fanart.jpg&lt;br /&gt;
| width=300px |1920x1080&lt;br /&gt;
| width=500px |16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |banner&lt;br /&gt;
| width=250px |banner.jpg&lt;br /&gt;
| width=400px |f:\Music\Madonna\banner.jpg&amp;lt;br&amp;gt;h:\centralinfo\artists\Madonna\banner.jpg&lt;br /&gt;
| width=300px |1000x185&lt;br /&gt;
| width=500px |1:0.185&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |landscape&lt;br /&gt;
| width=250px |landscape.jpg&lt;br /&gt;
| width=400px |f:\Music\Madonna\landscape.jpg&amp;lt;br&amp;gt;h:\centralinfo\artists\Madonna\landscape.jpg&lt;br /&gt;
| width=300px |1000x562&lt;br /&gt;
| width=500px |16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |clearlogo&lt;br /&gt;
| width=250px |clearlogo.png&lt;br /&gt;
| width=400px |f:\Music\Madonna\clearlogo.png&amp;lt;br&amp;gt;h:\centralinfo\artists\Madonna\clearlogo.png&lt;br /&gt;
| width=300px |800x310&lt;br /&gt;
| width=500px  |1:0.388&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |clearart&lt;br /&gt;
| width=250px |clearart.png&lt;br /&gt;
| width=400px |f:\Music\Madonna\clearart.png&amp;lt;br&amp;gt;h:\centralinfo\artists\Madonna\clearart.png&lt;br /&gt;
| width=300px |1000x562&lt;br /&gt;
| width=500px |16:9&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |thumb&lt;br /&gt;
| width=250px |folder.jpg *&lt;br /&gt;
| width=400px |f:\Music\Madonna\folder.jpg *&amp;lt;br&amp;gt;h:\centralinfo\artists\Madonna\folder.jpg *&lt;br /&gt;
| width=300px |1000x1000&lt;br /&gt;
| width=500px |approximately 1:1&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Album artwork =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=&amp;quot;350px&amp;quot; heights=&amp;quot;200px&amp;quot;&amp;gt;&lt;br /&gt;
File:Artwork-MusicAlbum01.jpg|Grid of album &amp;quot;thumb&amp;quot;&lt;br /&gt;
File:Artwork-MusicBanner01.jpg|&amp;quot;discart&amp;quot; in bottom left and bottom right&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Album &amp;quot;thumb&amp;quot; ==&lt;br /&gt;
Album thumbnails are high quality images of the album front cover. The design varies widely and may or may not include the name of the album and or artist.&lt;br /&gt;
&lt;br /&gt;
Album thumbnails have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:1 (square)&#039;&#039;&#039;. Depending on design they can be somewhat wider or somewhat taller, and many skins are designed to accommodate that. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Album &amp;quot;discart&amp;quot; ==&lt;br /&gt;
Album discart replicates the picture on the physical CD or other disc. Although the disc artwork is round, the image itself is square and the disc image is placed in the center on a transparent background.&lt;br /&gt;
&lt;br /&gt;
Album discart have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:1 (square)&#039;&#039;&#039;. They have a transparent background.&lt;br /&gt;
&lt;br /&gt;
== Album &amp;quot;back&amp;quot; ==&lt;br /&gt;
This is the album back cover, which often includes a track listing, though the design varies. They are often used in detail views focused on a single album.&lt;br /&gt;
&lt;br /&gt;
Album backs have a &#039;&#039;&#039;recommended resolution of 1000x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:1 (square)&#039;&#039;&#039;. Depending on design they can be somewhat wider or somewhat taller to match the album cover. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Album &amp;quot;spine&amp;quot; ==&lt;br /&gt;
Album spines replicate the album spine found on standard CD cases. They typically have the name of the album and artist, but are too thin to have much of a design beyond continuing the front or back image. They are often used as thin identifiers for unfocused items in a list of albums.&lt;br /&gt;
&lt;br /&gt;
Album spines have a &#039;&#039;&#039;recommended resolution of 50x1000&#039;&#039;&#039; with an &#039;&#039;&#039;aspect ratio of 1:20&#039;&#039;&#039;. They do not have transparency.&lt;br /&gt;
&lt;br /&gt;
== Local album artwork ==&lt;br /&gt;
&lt;br /&gt;
Local album artwork can be saved in the &#039;&#039;&#039;[[Music tagging#Folder and File Structure| album folder]]&#039;&#039;&#039;. The general rule for album artwork file names is &amp;quot;&amp;lt;arttype&amp;gt;.&amp;lt;ext&amp;gt;&amp;quot; with some arttype examples listed below and extension matching the file type. Album artwork can also be added from online services with an &#039;&#039;&#039;[[Scraping Music| &amp;quot;information provider&amp;quot; scraper add-on]]&#039;&#039;&#039;. *&amp;quot;folder.jpg&amp;quot; to &amp;quot;thumb&amp;quot; is a special case for the music library.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|top|#f5e3ff, #72d2f7}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved album artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;Recommended resolution&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Aspect ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |thumb&lt;br /&gt;
| width=250px |folder.jpg *&lt;br /&gt;
| width=600px |f:\Music\Madonna\Like A Prayer\folder.jpg *&lt;br /&gt;
| width=250px |1000x1000&lt;br /&gt;
| width=600px |approximately 1:1&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |discart&lt;br /&gt;
| width=250px |discart.png&lt;br /&gt;
| width=600px |f:\Music\Madonna\Like A Prayer\discart.png&lt;br /&gt;
| width=250px |1000x1000&lt;br /&gt;
| width=600px |1:1&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |back&lt;br /&gt;
| width=250px |back.jpg&lt;br /&gt;
| width=600px |f:\Music\Madonna\Like A Prayer\back.jpg&lt;br /&gt;
| width=250px |1000x1000&lt;br /&gt;
| width=600px |approximately 1:1&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |spine&lt;br /&gt;
| width=250px |spine.jpg&lt;br /&gt;
| width=600px |f:\Music\Madonna\Like A Prayer\spine.jpg&lt;br /&gt;
| width=250px |50x1000&lt;br /&gt;
| width=600px |1:20&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Source Folder Artwork =&lt;br /&gt;
[[File:Artwork-VideoFolder01.jpg|400px|right]]&lt;br /&gt;
&lt;br /&gt;
The Folder Artwork, also known as Source Folder thumb,  can be landscape, portrait or square images that are used to replace the standard folder icons when browsing your music sources in the files section. You will not see this artwork in the Music menu. This image file is saved directly within the Source directory.&lt;br /&gt;
&lt;br /&gt;
To enable the image, navigate to Music&amp;gt;Files in the menu system. Highlight a source and call up the Context Menu. Select Choose Thumbnail. If you have saved the image in the correct location, it will be available to select immediately. If not, you will need to navigate to locate and select it. The image must remain in its original location once selected as it will not be cached. Deleting the image will remove it from view in the folder icon.&lt;br /&gt;
&lt;br /&gt;
You are able to also apply the folder thumb by modifying the &#039;&#039;&#039;\userdata\sources.xml&#039;&#039;&#039; as follows&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
   &amp;lt;name&amp;gt;music&amp;lt;/name&amp;gt;&lt;br /&gt;
   &amp;lt;path&amp;gt;xbms://192.168.1.100:1400/Music/&amp;lt;/path&amp;gt;&lt;br /&gt;
   &amp;lt;thumbnail&amp;gt;F:\Apps\XBMC\thumbs\shares\thumb.png&amp;lt;/thumbnail&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|bottom|#f5e3ff, #72d2f7}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Required file properties:&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;Note: The resolution may be increased but ensure the aspect ratio is maintained&amp;lt;/small&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;File Type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Aspect Ratio&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;&#039;&#039;Resolution- &amp;lt;small&amp;gt;recommended&amp;lt;/small&amp;gt;&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px | {{nowrap|*.jpg}} &lt;br /&gt;
| width=200px | {{nowrap|16:9}}&lt;br /&gt;
| width=200px | {{nowrap|640x360}}&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px | {{nowrap|*.jpg}} &lt;br /&gt;
| width=200px | {{nowrap|1:1.5}}&lt;br /&gt;
| width=200px | {{nowrap|400x600}}&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=150px | {{nowrap|*.jpg}} &lt;br /&gt;
| width=200px | {{nowrap|1:1}}&lt;br /&gt;
| width=200px | {{nowrap|500x500}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|top|#f5e3ff, #72d2f7}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Naming conventions for your own manually sourced artwork:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |&#039;&#039;&#039;&#039;&#039;Source&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |Folder Artwork:&lt;br /&gt;
| width=250px |folder.jpg&lt;br /&gt;
| width=600px |f:\Music\folder.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=200px |Alternative name:&lt;br /&gt;
| width=250px |&amp;lt;foldername&amp;gt;.jpg&lt;br /&gt;
| width=600px |f:\Music\Music.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Experimental music artwork =&lt;br /&gt;
&lt;br /&gt;
== Artist &amp;quot;extrafanart&amp;quot; folder ==&lt;br /&gt;
{{anchor|Extra Fanart}}&lt;br /&gt;
&lt;br /&gt;
It is possible to download and save additional high quality Fanart which the skin can display, usually in a slideshow. Extra fanart is reliant on a supporting skin and the images have exactly the same properties as the standard Fanart described above. This is older and more widely supported in skins.&lt;br /&gt;
&lt;br /&gt;
Extra Fanart is stored in a separate Folder named &amp;quot;extrafanart&amp;quot;. Create a Folder named &#039;&#039;&#039;extrafanart&#039;&#039;&#039; in the folder of the Artist, and place each extra fanart image in it. This artwork is not added to the Kodi library, instead skins list the folder directly; this can wake hard drives while browsing the library. The filename is mostly not important.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|top|#72d2f7, #f5e3ff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved extrafanart::&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |&#039;&#039;&#039;&#039;&#039;Music saved as&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |Artist\Album\Songs&lt;br /&gt;
| width=250px |fanart0.jpg&lt;br /&gt;
| width=600px |f:\Music\Madonna\extrafanart\fanart0.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |Artist\Album\Songs&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Music\Madonna\extrafanart\fanart1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |Artist\Album\Songs&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Music\Madonna\extrafanart\fanart2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Multiple fanart ==&lt;br /&gt;
&lt;br /&gt;
Multiple fanart is an alternative to &amp;quot;extrafanart&amp;quot; that adds all of the fanart images to the Kodi library, and they are treated just like any other artwork type. This is newer and not supported in as many skins as extrafanart.&lt;br /&gt;
&lt;br /&gt;
Multiple additional fanart is named &amp;quot;fanart1&amp;quot;, &amp;quot;fanart2&amp;quot;, and so on with the number increasing for each artwork. The number can increase to 10 and beyond, but numbers cannot be zero-padded. This currently requires more work from skins to display than &amp;quot;extrafanart&amp;quot; and can be awkward to configure because each numbered fanart needs to be added to the artwork whitelist, but the improved performance and behavior that matches other artwork is worth it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;{{linear-gradient|top|#72d2f7, #f5e3ff}}&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Example naming convention for locally saved multiple fanart:&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |&#039;&#039;&#039;&#039;&#039;Artwork type&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=250px |&#039;&#039;&#039;&#039;&#039;File Name&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
| width=600px |&#039;&#039;&#039;&#039;&#039;Save name &amp;amp; location example&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart (standard fanart)&lt;br /&gt;
| width=250px |fanart.jpg&lt;br /&gt;
| width=600px |f:\Music\Madonna\fanart.jpg&lt;br /&gt;
h:\centralinfo\artists\Madonna\fanart.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart1&lt;br /&gt;
| width=250px |fanart1.jpg&lt;br /&gt;
| width=600px |f:\Music\Madonna\fanart1.jpg&lt;br /&gt;
h:\centralinfo\artists\Madonna\fanart1.jpg&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=300px |fanart2&lt;br /&gt;
| width=250px |fanart2.jpg&lt;br /&gt;
| width=600px |f:\Music\Madonna\fanart2.jpg&lt;br /&gt;
h:\centralinfo\artists\Madonna\fanart2.jpg&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Embedded Artwork =&lt;br /&gt;
&amp;lt;section begin=&amp;quot;EmbeddedArtwork&amp;quot; /&amp;gt;As of v17, Kodi supports embedded album art in mp3 files with ID3v2 tags, WMA/WMV files with ASF tags, FLAC files with Vorbis comments/Xiph tags, and mp4 files with itunes tags. It does not currently support embedded album art in APEv2 tags or Ogg files.&amp;lt;section end=&amp;quot;EmbeddedArtwork&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Kodi cannot recognise multiple embedded images in a song file. It can only extract the &amp;quot;Front Cover&amp;quot; image assuming they have been tagged correctly within the file. All other images are ignored.&lt;br /&gt;
&lt;br /&gt;
A list of embedded tags recognised by Kodi is available&lt;br /&gt;
; &#039;&#039;&#039;&#039;&#039;see also: [[Music_tagging#Tags_Kodi_reads|Tags Kodi Reads]]&lt;br /&gt;
&lt;br /&gt;
= Library artwork source priority =&lt;br /&gt;
&lt;br /&gt;
# Local artwork files&lt;br /&gt;
#* Local artwork files next to your media items or in the &amp;quot;[[Artist information folder]]&amp;quot;. These are expected to be mid-high quality level for display in an interface like Kodi.&lt;br /&gt;
#* all types of artwork can be saved to local artwork files&lt;br /&gt;
# Artwork embedded in tracks&lt;br /&gt;
#* Artwork embedded in individual tracks of an album. These are expected to be lower quality to reduce the size of the image duplicated to many song files.&lt;br /&gt;
#* Only supports the album front cover&lt;br /&gt;
# Online source from &amp;quot;information provider&amp;quot;/scraper&lt;br /&gt;
#* only if the option in Kodi settings -&amp;gt; Media -&amp;gt; Music -&amp;gt; &amp;quot;Fetch additional information during updates&amp;quot; is enabled&lt;br /&gt;
#* will only be set if there is no local or embedded artwork unless the option in Kodi settings -&amp;gt; Media -&amp;gt; Music -&amp;gt; &amp;quot;Prefer online information&amp;quot; is enabled&lt;br /&gt;
#* all types of artwork can be added from information providers&lt;br /&gt;
&lt;br /&gt;
= File Mode =&lt;br /&gt;
File Mode is similar to using the file manager provided by your operating system- eg Explorer in Windows systems. It is simply a file browser that allows you to view and play your media even though it has not been scanned and/or scraped into the Library. This mode does not provide the added benefits of Extended Artwork and Album/Artist metadata that the properly scanned and scraped library provides. As a result, Music Artwork is handled differently using this mode as follows:&lt;br /&gt;
&lt;br /&gt;
*The only artwork displayed in File Mode is artist thumb and album thumb. &lt;br /&gt;
*You must have local artwork named and saved as detailed in the sections above.&lt;br /&gt;
*These images are not loaded automatically. The Artist or Album must be viewed once to allow Kodi to locate and cache the image.&lt;br /&gt;
*When &#039;&#039;&#039;Enable tag reading&#039;&#039;&#039; is &#039;&#039;&#039;&#039;&#039;Enabled&#039;&#039;&#039;&#039;&#039; the song must be viewed to allow Kodi to scan for embedded images if no local image is available.&lt;br /&gt;
&lt;br /&gt;
Kodi looks for and caches artwork in the following order:&lt;br /&gt;
*&#039;&#039;&#039;For Artist artwork:&#039;&#039;&#039;&lt;br /&gt;
*#Local artwork named and saved as detailed in the sections above. There is no fallback image&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;For Album artwork:&#039;&#039;&#039;&lt;br /&gt;
*#Local artwork named and saved as detailed in the sections above. If there is no local artwork then&lt;br /&gt;
*#If you have &#039;&#039;&#039;Enable tag reading&#039;&#039;&#039; set as &#039;&#039;&#039;&#039;&#039;Disabled&#039;&#039;&#039;&#039;&#039; in Settings&amp;gt;Media Settings&amp;gt;Music then there is no fallback image&lt;br /&gt;
*#If you have &#039;&#039;&#039;Enable tag reading&#039;&#039;&#039; set as &#039;&#039;&#039;&#039;&#039;Enabled&#039;&#039;&#039;&#039;&#039; in Settings&amp;gt;Media Settings&amp;gt;Music then Kodi will search for an embedded image to cache.&lt;br /&gt;
&lt;br /&gt;
Be aware that if you use File Mode, then upgrade to Library Mode at a later stage, your existing cached artwork may interfere with the correct scanning and scraping of new artwork. There is no simple fix for this. Your choices are&lt;br /&gt;
#Manually amend the affected artwork as described in chapter 2 above&lt;br /&gt;
#Perform the [[Artwork/Cache#Advanced: delete textures13.db|delete textures13.db]] procedure. This will also affect your Video Library.&lt;br /&gt;
&lt;br /&gt;
= {{Kodi}} version updates =&lt;br /&gt;
&lt;br /&gt;
* {{Kodi}} 17 and before did not have the &amp;quot;Artist information folder&amp;quot; option, so could have trouble identifying a local folder for artist artwork in some cases.&lt;br /&gt;
* {{Kodi}} 17 and before was &#039;&#039;&#039;limited to just &amp;quot;fanart&amp;quot; and &amp;quot;thumb&amp;quot; for artist images&#039;&#039;&#039; and &#039;&#039;&#039;&amp;quot;thumb&amp;quot; for album images&#039;&#039;&#039;, it did not have the flexibility to add a wide variety of artwork. Expanded artwork is new and still being explored from multiple angles, so not all skins or scrapers or tools will support a full selection.&lt;br /&gt;
** Skins for versions of Kodi prior to v18 could use Skin Helper Service for some support of expanded artwork, but that has been superseded with this Kodi built-in functionality.&lt;br /&gt;
* {{Kodi}} 18 adds a flexible collection of artwork for music items, but each artwork type must be &#039;&#039;&#039;[[Advancedsettings.xml#Music library extra artwork| whitelisted in advancedsettings.xml]]&#039;&#039;&#039; so that {{Kodi}} will add the specified artwork from scrapers and the file system automatically.&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Guides]]&lt;br /&gt;
[[Category:Manual]]&lt;br /&gt;
[[Category:Karellen]]&lt;br /&gt;
[[Category:First time user]]&lt;br /&gt;
[[Category:Music library]]&lt;br /&gt;
[[Category:Advanced topics]]&lt;br /&gt;
[[Category:Quick Start Guide]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Artwork/Accessing_with_skins_and_JSON-RPC&amp;diff=157158</id>
		<title>Artwork/Accessing with skins and JSON-RPC</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Artwork/Accessing_with_skins_and_JSON-RPC&amp;diff=157158"/>
		<updated>2019-02-02T17:33:22Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* {{Kodi}} version updates */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[Development]]|[[Artwork]]}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;The primary usage of artwork is to be displayed, and to that end, they can be accessed by name in skins and over JSON-RPC.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Media items with a &amp;quot;parent&amp;quot; media type, such as episodes to their TV show, can also access their parent&#039;s artwork with certain prefixes, like &amp;quot;tvshow.poster&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
= From skins =&lt;br /&gt;
&lt;br /&gt;
Skins can access library artwork for media items in a list with &amp;quot;ListItem.Art(&amp;lt;arttype&amp;gt;)&amp;quot; and artwork for the currently playing item with &amp;quot;Player.Art(&amp;lt;arttype&amp;gt;)&amp;quot;. &amp;quot;Container.Art(&amp;lt;arttype&amp;gt;)&amp;quot; can also be filled in some instances. Some examples are {{code|Player.Art(poster)}}, {{code|Player.Art(fanart)}}, {{code|ListItem.Art(banner)}}, and {{code|ListItem.Art(tvshow.clearlogo)}}.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|+ Additional InfoLabels&lt;br /&gt;
! Skin InfoLabel&lt;br /&gt;
! style=&amp;quot;width:80%&amp;quot; | Description&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| ListItem.Art(poster)&lt;br /&gt;
| Artwork for the currently focused ListItem.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| Player.Art(poster)&lt;br /&gt;
| Artwork for the currently playing item.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| Container.Art(poster)&lt;br /&gt;
| Artwork for the currently focused Container. Container artwork may be filled with &amp;quot;parent&amp;quot; type media item artwork if navigating a single item, like a list of episodes from a single TV show.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| Container(555).ListItem.Art(poster)&lt;br /&gt;
| Artwork for the currently focused ListItem in a specific container.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Additional InfoLabels for artwork ==&lt;br /&gt;
&lt;br /&gt;
There are other InfoLabels for artwork that don&#039;t match the above pattern, but many of them are deprecated. A set of them that can still be useful are&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|+ Additional InfoLabels&lt;br /&gt;
! Skin InfoLabel&lt;br /&gt;
! style=&amp;quot;width:30%&amp;quot; | Description&lt;br /&gt;
! Examples&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| MusicPlayer.offset(number).Cover&lt;br /&gt;
| Cover of the item offset by &#039;&#039;number&#039;&#039; from the currently playing item in the currently playing music player queue.&lt;br /&gt;
| {{code|MusicPlayer.offset(1).Cover}} - next item in queue&lt;br /&gt;
{{code|MusicPlayer.offset(-1).Cover}} - previous item in queue&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  MusicPlayer.Position(number).Cover&lt;br /&gt;
|  Cover of the item in position &#039;&#039;number&#039;&#039; of currently playing music player queue.&lt;br /&gt;
| {{code|MusicPlayer.Position(1).Cover}} - first item in queue&lt;br /&gt;
{{code|MusicPlayer.Position(2).Cover}} - second item in queue&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  MusicPlayer.Position(number).Property(Fanart_Image)&lt;br /&gt;
|  Fanart of the item in position &#039;&#039;number&#039;&#039; of the currently playing music player queue.&lt;br /&gt;
| {{code|MusicPlayer.Position(1).Property(Fanart_Image)}} - first item in queue&lt;br /&gt;
{{code|MusicPlayer.Position(2).Property(Fanart_Image)}} - second item in queue&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= From JSON-RPC =&lt;br /&gt;
&lt;br /&gt;
Several JSON-RPC methods (like &amp;quot;VideoLibrary.GetMovies&amp;quot;, &amp;quot;AudioLibrary.GetAlbumDetails&amp;quot;, and &amp;quot;Playlist.GetItems&amp;quot;) return info for media items in the library, and requesting the &amp;quot;art&amp;quot; property will return an &amp;quot;art&amp;quot; dictionary that maps all available artwork for the media item. The key is the artwork type and the value is a Kodi-encoded URL or path to the assigned artwork.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
example request:&lt;br /&gt;
 {&amp;quot;jsonrpc&amp;quot;:&amp;quot;2.0&amp;quot;,&amp;quot;id&amp;quot;:11,&amp;quot;method&amp;quot;:&amp;quot;VideoLibrary.GetEpisodes&amp;quot;,&amp;quot;params&amp;quot;:{&amp;quot;properties&amp;quot;:[&amp;quot;art&amp;quot;],&amp;quot;limits&amp;quot;:{&amp;quot;end&amp;quot;:1},&amp;quot;sort&amp;quot;:{&amp;quot;method&amp;quot;:&amp;quot;random&amp;quot;}}}&lt;br /&gt;
&lt;br /&gt;
and a possible response:&lt;br /&gt;
 {&lt;br /&gt;
     &amp;quot;id&amp;quot;: 11,&lt;br /&gt;
     &amp;quot;jsonrpc&amp;quot;: &amp;quot;2.0&amp;quot;,&lt;br /&gt;
     &amp;quot;result&amp;quot;: {&lt;br /&gt;
         &amp;quot;episodes&amp;quot;: [&lt;br /&gt;
            {&lt;br /&gt;
                 &amp;quot;art&amp;quot;: {&lt;br /&gt;
                     &amp;quot;season.banner&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fseason02-banner.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;season.landscape&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fseason02-landscape.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;season.poster&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fseason02-poster.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;thumb&amp;quot;: &amp;quot;image://video@nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fV%20(2009)%20-%2002x05%20-%20Concordia%20-%20720p%20WEB-DL.mkv/&amp;quot;,&lt;br /&gt;
                     &amp;quot;tvshow.banner&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fbanner.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;tvshow.clearlogo&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fclearlogo.png/&amp;quot;,&lt;br /&gt;
                     &amp;quot;tvshow.fanart&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2ffanart.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;tvshow.poster&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fposter.jpg/&amp;quot;&lt;br /&gt;
                 },&lt;br /&gt;
                 &amp;quot;episodeid&amp;quot;: 2196,&lt;br /&gt;
                 &amp;quot;label&amp;quot;: &amp;quot;2x05. Concordia&amp;quot;&lt;br /&gt;
             }&lt;br /&gt;
         ],&lt;br /&gt;
         &amp;quot;limits&amp;quot;: {&lt;br /&gt;
             &amp;quot;end&amp;quot;: 1,&lt;br /&gt;
             &amp;quot;start&amp;quot;: 0,&lt;br /&gt;
             &amp;quot;total&amp;quot;: 3352&lt;br /&gt;
         }&lt;br /&gt;
     }&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
== Kodi-encoded URL ==&lt;br /&gt;
&lt;br /&gt;
The image paths returned by JSON-RPC are the path or URL to the image encoded as Kodi&#039;s internal &amp;quot;image://&amp;quot; path.&lt;br /&gt;
&lt;br /&gt;
To turn that path into a URL that can actually be displayed in another application, you will need to encode it as a URI component (examples are [https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent encodeURIComponent] in JS and [https://docs.python.org/3/library/urllib.parse.html#urllib.parse.quote urllib.parse.quote] in Python 3), then add that to the end of the &amp;quot;images/&amp;quot; path of the Kodi HTTP server (like &amp;lt;nowiki&amp;gt;http://kodihost:8080/images/&amp;lt;/nowiki&amp;gt;). With these URLs you can display images wherever they happen to be stored; Kodi will handle opening a file over SMB or NFS if they are stored on a NAS next to the media items, for instance.&lt;br /&gt;
&lt;br /&gt;
The final URL will look like &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;http://kodihost:8080/images/image%3A%2F%2Fnfs%253a%252f%252fCUBER%252fmedia%252fpreserved%252fTVShows%252fV%2520(2009)%252fposter.jpg%2F&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can also turn the &amp;quot;image://&amp;quot; URL into a more traditional looking path/URL (https:// or smb:// or H:\) by chopping off the &amp;quot;image://&amp;quot; up front and the slash at the end, then decoding the rest as a URI component.&lt;br /&gt;
&lt;br /&gt;
= Access &amp;quot;parent&amp;quot; artwork =&lt;br /&gt;
&lt;br /&gt;
For several media types, it is possible to access artwork for the &amp;quot;parent&amp;quot; media item as well as the item&#039;s own artwork. This works for skins and JSON-RPC. For instance, TV episodes can access the artwork for the containing season and TV show. Use &amp;quot;&amp;lt;parenttype&amp;gt;.&amp;lt;arttype&amp;gt;&amp;quot; as the art type.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|+ Media types and their parent types&lt;br /&gt;
! style=&amp;quot;width:8%&amp;quot; | Media type&lt;br /&gt;
! Parent type&lt;br /&gt;
! style=&amp;quot;width:40%&amp;quot; | Description&lt;br /&gt;
! style=&amp;quot;width:30%&amp;quot; | Skin examples&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  TV episodes&lt;br /&gt;
|  &amp;quot;season&amp;quot;, &amp;quot;tvshow&amp;quot;&lt;br /&gt;
|  TV episodes can access artwork for their containing season and TV show&lt;br /&gt;
|  &amp;quot;Player.Art(tvshow.clearlogo)&amp;quot;, &amp;quot;Player.Art(season.poster)&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  Seasons&lt;br /&gt;
|  &amp;quot;tvshow&amp;quot;&lt;br /&gt;
|  TV show artwork&lt;br /&gt;
|  &amp;quot;ListItem.Art(tvshow.banner)&amp;quot;, &amp;quot;ListItem.Art(tvshow.clearlogo)&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  Movies&lt;br /&gt;
|  &amp;quot;set&amp;quot;&lt;br /&gt;
|  In Kodi 18, movies can access artwork for their containing set / collection&lt;br /&gt;
|  &amp;quot;ListItem.Art(set.clearlogo)&amp;quot;, &amp;quot;ListItem.Art(set.poster)&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  Songs&lt;br /&gt;
|  &amp;quot;album&amp;quot;, &amp;quot;artist&amp;quot;, &amp;quot;albumartist&amp;quot;, &amp;quot;artist1&amp;quot;, &amp;quot;albumartist1&amp;quot;&lt;br /&gt;
|  Songs can access the artwork for their containing album and all artists. Songs can have multiple artists; in Kodi 18 &amp;quot;artist1&amp;quot; will be artwork for the second artist - &amp;quot;artist2&amp;quot;, &amp;quot;artist3&amp;quot;, and so on will be filled for additional artists. &amp;quot;albumartist&amp;quot; works the same for album artists.&lt;br /&gt;
|  &amp;quot;Player.Art(album.thumb)&amp;quot;, &amp;quot;Player.Art(artist.fanart)&amp;quot;, &amp;quot;Player.Art(albumartist.clearlogo)&amp;quot;, &amp;quot;Player.Art(artist1.fanart)&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  Albums&lt;br /&gt;
|  &amp;quot;artist&amp;quot;, &amp;quot;artist1&amp;quot;&lt;br /&gt;
|  Albums can access the artwork for their containing album. Albums can have multiple artists; in Kodi 18 &amp;quot;artist1&amp;quot; will be artwork for the second artist - &amp;quot;artist2&amp;quot;, &amp;quot;artist3&amp;quot;, and so on will be filled for additional artists.&lt;br /&gt;
|  &amp;quot;ListItem.Art(artist.fanart)&amp;quot;, &amp;quot;ListItem.Art(artist.clearlogo)&amp;quot;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Example artwork types ==&lt;br /&gt;
&lt;br /&gt;
Here is a short list of example artwork types and how to access them. Kodi&#039;s artwork system allows any number of artwork types, so it&#039;s impossible to list all that may be available here. See the artwork pages for different library sections like [[Movie artwork]] or [[Music artwork]] for a list of generally available artwork types, or navigate to image 2 of [[Artwork#Kodi- Choose Art]] on a media item in your local Kodi installation to see what types of artwork are currently available for at least one of that media type in your local library.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|+ Example artwork types and skin access&lt;br /&gt;
! Artwork type&lt;br /&gt;
! Skin InfoLabel&lt;br /&gt;
! style=&amp;quot;50%&amp;quot; | Description&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  poster&lt;br /&gt;
|  ListItem.Art(poster)&lt;br /&gt;
|  Poster of the currently focused media item (like a movie or TV show)&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  fanart&lt;br /&gt;
|  ListItem.Art(fanart)&lt;br /&gt;
|  Fanart of the currently focused media item&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  landscape&lt;br /&gt;
|  ListItem.Art(landscape)&lt;br /&gt;
|  Landscape of the currently focused media item&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  clearlogo&lt;br /&gt;
|  Player.Art(clearlogo)&lt;br /&gt;
|  Clearlogo of the currently playing media item&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  tvshow.poster&lt;br /&gt;
|  Player.Art(tvshow.poster)&lt;br /&gt;
|  For a currently playing TV episode, this is the poster of the parent TV show&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  set.poster&lt;br /&gt;
|  Player.Art(set.clearlogo)&lt;br /&gt;
|  For currently playing movies, this is the clearlogo of the containing movie set&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  album.thumb&lt;br /&gt;
|  Player.Art(album.thumb)&lt;br /&gt;
|  For currently playing music, this is the cover of the album&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  album.thumb&lt;br /&gt;
|  ListItem.Art(thumb)&lt;br /&gt;
|  Thumb of the currently focused media item. This has some notable fallback behavior in the video library. It will be the artwork type named exactly &amp;quot;thumb&amp;quot; if it exists for the current item, but will fall back to &amp;quot;poster&amp;quot; then &amp;quot;banner&amp;quot; if not.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= {{Kodi}} version updates =&lt;br /&gt;
&lt;br /&gt;
* The &#039;&#039;&#039;music library&#039;&#039;&#039; in {{Kodi}} 17 and before was &#039;&#039;&#039;limited to just &amp;quot;fanart&amp;quot; and &amp;quot;thumb&amp;quot; for artist images&#039;&#039;&#039; and &#039;&#039;&#039;&amp;quot;thumb&amp;quot; for album images&#039;&#039;&#039;, it did not have the flexibility to add a wide variety of artwork. The video library has had this level of support for some time now.&lt;br /&gt;
* {{Kodi}} 18 adds a &#039;&#039;&#039;[[Advancedsettings.xml#Music library extra artwork| whitelist in advancedsettings.xml]]&#039;&#039;&#039; ([[Advancedsettings.xml#Extra artwork|for the video library]]) so that {{Kodi}} will add any specified artwork from scrapers and the file system automatically.&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=InfoLabels&amp;diff=157157</id>
		<title>InfoLabels</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=InfoLabels&amp;diff=157157"/>
		<updated>2019-02-02T17:14:22Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* Images Available in Kodi */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[Development]]|[[Add-on development]]|[[Skinning]]}}&lt;br /&gt;
&amp;lt;section begin=&amp;quot;main content&amp;quot; /&amp;gt;&lt;br /&gt;
Skins can use infolabels with $INFO[infolabel] or the &amp;lt;info&amp;gt; tag. Scripts can read infolabels with &amp;lt;code&amp;gt;xbmc.getInfoLabel(&#039;infolabel&#039;)&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
An up-to-date list can be found here [https://github.com/xbmc/xbmc/blob/master/xbmc/GUIInfoManager.cpp GUIInfoManager.cpp]&lt;br /&gt;
&lt;br /&gt;
=== Container ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Content&lt;br /&gt;
|  Shows content of the current container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.FolderPath&lt;br /&gt;
|  Shows complete path of currently displayed folder&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.FolderName&lt;br /&gt;
|  Shows top most folder in currently displayed folder&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Viewmode&lt;br /&gt;
|  Returns the current viewmode (list, icons etc.)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.SortMethod&lt;br /&gt;
|  Returns the current sort method (name, year, rating, etc.)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.SortOrder&lt;br /&gt;
|  Returns the current sort order (Ascending/Descending)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.PluginName&lt;br /&gt;
|  Returns the current plugins base folder name&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.PluginCategory&lt;br /&gt;
|  Returns the current plugins category (set by the scripter)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.ShowPlot&lt;br /&gt;
|  Returns the TV Show plot of the current container and can be used at season and episode level&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.ShowTitle&lt;br /&gt;
|  Returns the TV Show title of the current container and can be used at season and episode level&lt;br /&gt;
|  v17 addition&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).NumPages&lt;br /&gt;
|  Number of pages in the container with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).NumItems&lt;br /&gt;
|  Number of items in the container or grouplist with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).NumAllItems&lt;br /&gt;
|  Number of all items in the container or grouplist with given id including parent folder item.&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).NumNonFolderItems&lt;br /&gt;
|  Number of items in the container or grouplist with given id excluding all folder items.&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).CurrentPage&lt;br /&gt;
|  Current page in the container with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).CurrentItem&lt;br /&gt;
|  Current item in the container or grouplist with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).Position&lt;br /&gt;
|  Returns the current focused position of container / grouplist (id) as a numeric label.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).Column&lt;br /&gt;
|  Returns the column number of the focused position in a panel container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).Row&lt;br /&gt;
|  Returns the row number of the focused position in a panel container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).Totaltime&lt;br /&gt;
|  Returns the total time of all items in the current container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).TotalWatched&lt;br /&gt;
|  Returns the number of watched items in the current container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).TotalUnWatched&lt;br /&gt;
|  Returns the number of unwatched items in the current container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Label&lt;br /&gt;
|  Shows ListItem.Label for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(2).Label )&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Label2&lt;br /&gt;
|  Shows ListItem.Label2 for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(-2).Label2 )&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Icon&lt;br /&gt;
|  Shows ListItem.Icon for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(52).Listitem(1).Icon)&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).ActualIcon&lt;br /&gt;
|  Shows ListItem.ActualIcon for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(0).ActualIcon )&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Thumb&lt;br /&gt;
|  Shows ListItem.Thumb for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(0).Thumb )&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItemNoWrap(offset).Property&lt;br /&gt;
|  Basically returns the same as ListItem(offset) but it won&#039;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. &#039;&#039;Property&#039;&#039; has to be replaced with Label, Label2, Icon etc. &#039;&#039;( eg: Container(50).ListitemNoWrap(1).Plot )&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItemPosition(id).[infolabel]&lt;br /&gt;
|  Shows the infolabel for an item in a Container. the item id is the position in the container relative to the cursor position. &#039;&#039;( eg: Container(50).ListItemPosition(4).Genre )&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItemAbsolute(id).[infolabel]&lt;br /&gt;
|  Shows the infolabel for an item in a Container. the item id is the absolute position in the container. &#039;&#039;( eg: Container(50).ListItemAbsolute(4).Genre )&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Property(addoncategory)&lt;br /&gt;
|  Returns the current add-on category&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Property(reponame)&lt;br /&gt;
|  Returns the current add-on repository name&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.ViewCount&lt;br /&gt;
| The number of available skin view modes for the current container listing.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Control ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Control.GetLabel(id)[.index()]&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Fanart ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Color1&lt;br /&gt;
|  Returns the first of three colors included in the currently selected &#039;&#039;&#039;[[Fanart]]&#039;&#039;&#039; theme for the parent TV Show.  Colors are arranged Lightest to Darkest.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Color2&lt;br /&gt;
|  Returns the second of three colors included in the currently selected &#039;&#039;&#039;[[Fanart]]&#039;&#039;&#039; theme for the parent TV Show.  Colors are arranged Lightest to Darkest.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Color3&lt;br /&gt;
|  Returns the third of three colors included in the currently selected &#039;&#039;&#039;[[Fanart]]&#039;&#039;&#039; theme for the parent TV Show.  Colors are arranged Lightest to Darkest.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Game ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Game.Title&lt;br /&gt;
|  Name of the game&lt;br /&gt;
| v18&lt;br /&gt;
|-&lt;br /&gt;
|  Game.Platform&lt;br /&gt;
|  Platform the game runs on (eg. Atari 2600)&lt;br /&gt;
| v18&lt;br /&gt;
|-&lt;br /&gt;
|  Game.Genres&lt;br /&gt;
|  Gerne of the game (eg. Action)&lt;br /&gt;
| v18&lt;br /&gt;
|-&lt;br /&gt;
|  Game.Publisher&lt;br /&gt;
|  Publishing company of the game (eg. Nintendo)&lt;br /&gt;
| v18&lt;br /&gt;
|-&lt;br /&gt;
|  Game.Developer&lt;br /&gt;
|  Developer of the game&lt;br /&gt;
| v18&lt;br /&gt;
|-&lt;br /&gt;
|  Game.Overview&lt;br /&gt;
|  Game description&lt;br /&gt;
| v18&lt;br /&gt;
|-&lt;br /&gt;
|  Game.Year&lt;br /&gt;
|  Year the game was released&lt;br /&gt;
| v18&lt;br /&gt;
|-&lt;br /&gt;
|  Game.GameClient&lt;br /&gt;
|  Name of the used emulator&lt;br /&gt;
| v18&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== ListItem ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Label&lt;br /&gt;
|  Shows the left label of the currently selected item in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Label2&lt;br /&gt;
|  Shows the right label of the currently selected item in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Title&lt;br /&gt;
|  Shows the title of the currently selected song or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.OriginalTitle&lt;br /&gt;
|  Shows the original title of the currently selected movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.SortLetter&lt;br /&gt;
|  Shows the first letter of the current file in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.TrackNumber&lt;br /&gt;
|  Shows the track number of the currently selected song in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Artist&lt;br /&gt;
|  Shows the artist of the currently selected song in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AlbumArtist&lt;br /&gt;
|  Shows the artist of the currently selected album in a list&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Born)&lt;br /&gt;
|  Date of Birth of the currently selected Artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Died)&lt;br /&gt;
|  Date of Death of the currently selected Artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Formed)&lt;br /&gt;
|  Formation date of the currently selected Band&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Disbanded)&lt;br /&gt;
|  Disbanding date of the currently selected Band&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_YearsActive)&lt;br /&gt;
|  Years the currently selected artist has been active&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Instrument)&lt;br /&gt;
|  Instruments played by the currently selected artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Description)&lt;br /&gt;
|  Shows a biography of the currently selected artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Mood)&lt;br /&gt;
|  Shows the moods of the currently selected artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Style)&lt;br /&gt;
|  Shows the styles of the currently selected artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Genre)&lt;br /&gt;
|  Shows the genre of the currently selected artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Property(Artist_Sortname)&lt;br /&gt;
|  Sortname of the currently selected Artist&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Property(Artist_Type)&lt;br /&gt;
|  Type of the currently selected Artist - person, group, orchestra, choir etc.&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Property(Artist_Gender)&lt;br /&gt;
|  Gender of the currently selected Artist - male, female, other&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Property(Artist_Disambiguation)&lt;br /&gt;
|  Brief description of the currently selected Artist that differentiates them from others with the same name&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Album&lt;br /&gt;
|  Shows the album of the currently selected song in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Mood)&lt;br /&gt;
|  Shows the moods of the currently selected Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Style)&lt;br /&gt;
|  Shows the styles of the currently selected Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Theme)&lt;br /&gt;
|  Shows the themes of the currently selected Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Type)&lt;br /&gt;
|  Shows the Album Type (e.g. compilation, enhanced, explicit lyrics) of the currently selected Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Label)&lt;br /&gt;
|  Shows the record label of the currently selected Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Description)&lt;br /&gt;
|  Shows a review of the currently selected Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DiscNumber&lt;br /&gt;
|  Shows the disc number of the currently selected song in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Year&lt;br /&gt;
|  Shows the year of the currently selected song, album or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Premiered&lt;br /&gt;
|  Shows the release/aired date of the currently selected episode, show, movie or EPG item in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Genre&lt;br /&gt;
|  Shows the genre of the currently selected song, album or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Director&lt;br /&gt;
|  Shows the director of the currently selected movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Country&lt;br /&gt;
|  Shows the production country of the currently selected movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Episode&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Season&lt;br /&gt;
|  Shows the season value for the currently selected tvshow&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.TVShowTitle&lt;br /&gt;
|  Shows the name value for the currently selected tvshow in the season and episode depth of the video library&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(TotalSeasons)&lt;br /&gt;
|  Shows the total number of seasons for the currently selected tvshow&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(TotalEpisodes)&lt;br /&gt;
|  Shows the total number of episodes for the currently selected tvshow or season&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(WatchedEpisodes)&lt;br /&gt;
|  Shows the number of watched episodes for the currently selected tvshow or season&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(UnWatchedEpisodes)&lt;br /&gt;
|  Shows the number of unwatched episodes for the currently selected tvshow or season&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(NumEpisodes)&lt;br /&gt;
|  Shows the number of total, watched or unwatched episodes for the currently selected tvshow or season, based on the the current watched filter.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureAperture&lt;br /&gt;
|  Shows the F-stop used to take the selected picture. This is the value of the EXIF FNumber tag (hex code 0x829D).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureAuthor&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureByline&lt;br /&gt;
|  Shows the name of the person who created the selected picture.  This is the value of the IPTC Byline tag (hex code 0x50).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureBylineTitle&lt;br /&gt;
|  Shows the title of the person who created the selected picture. This is the value of the IPTC BylineTitle tag (hex code 0x55).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCamMake&lt;br /&gt;
|  Shows the manufacturer of the camera used to take the selected picture. This is the value of the EXIF Make tag (hex code 0x010F).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCamModel&lt;br /&gt;
|  Shows the manufacturer&#039;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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCaption&lt;br /&gt;
|  Shows a description of the selected picture. This is the value of the IPTC Caption tag (hex code 0x78).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCategory&lt;br /&gt;
|  Shows the subject of the selected picture as a category code. This is the value of the IPTC Category tag (hex code 0x0F).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCCDWidth&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCity&lt;br /&gt;
|  Shows the city where the selected picture was taken. This is the value of the IPTC City tag (hex code 0x5A).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureColour&lt;br /&gt;
|  Shows whether the selected picture is &amp;quot;Colour&amp;quot; or &amp;quot;Black and White&amp;quot;.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureComment&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCopyrightNotice&lt;br /&gt;
|  Shows the copyright notice of the selected picture. This is the value of the IPTC Copyright tag (hex code 0x74).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCountry&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCountryCode&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCredit&lt;br /&gt;
|  Shows who provided the selected picture. This is the value of the IPTC Credit tag (hex code 0x6E).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDate&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDatetime&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDesc&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDigitalZoom&lt;br /&gt;
|  Shows the digital zoom ratio when the selected picture was taken. This is the value of the EXIF DigitalZoomRatio tag (hex code 0xA404).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExpMode&lt;br /&gt;
|  Shows the exposure mode of the selected picture. The possible values are &amp;quot;Automatic&amp;quot;, &amp;quot;Manual&amp;quot;, and &amp;quot;Auto bracketing&amp;quot;. This is the value of the EXIF ExposureMode tag (hex code 0xA402).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExposure&lt;br /&gt;
|  Shows the class of the program used by the camera to set exposure when the selected picture was taken. Values include &amp;quot;Manual&amp;quot;, &amp;quot;Program (Auto)&amp;quot;, &amp;quot;Aperture priority (Semi-Auto)&amp;quot;, &amp;quot;Shutter priority (semi-auto)&amp;quot;, etc. This is the value of the EXIF ExposureProgram tag (hex code 0x8822).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExposureBias&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExpTime&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureFlashUsed&lt;br /&gt;
|  Shows the status of flash when the selected picture was taken. The value will be either &amp;quot;Yes&amp;quot; or &amp;quot;No&amp;quot;, and might include additional information. This is the value of the EXIF Flash tag (hex code 0x9209).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureFocalLen&lt;br /&gt;
|  Shows the lens focal length of the selected picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureFocusDist&lt;br /&gt;
|  Shows the focal length of the lens, in mm. This is the value of the EXIF FocalLength tag (hex code 0x920A).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureGPSLat&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureGPSLon&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureGPSAlt&lt;br /&gt;
|  Shows the altitude in meters where the selected picture was taken. This is the value of the EXIF GPSInfo.GPSAltitude tag.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureHeadline&lt;br /&gt;
|  Shows a synopsis of the contents of the selected picture. This is the value of the IPTC Headline tag (hex code 0x69).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureImageType&lt;br /&gt;
|  Shows the color components of the selected picture. This is the value of the IPTC ImageType tag (hex code 0x82).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureIPTCDate&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureIPTCTime&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureISO&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureKeywords&lt;br /&gt;
|  Shows keywords assigned to the selected picture. This is the value of the IPTC Keywords tag (hex code 0x19).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureLightSource&lt;br /&gt;
|  Shows the kind of light source when the picture was taken. Possible values include &amp;quot;Daylight&amp;quot;, &amp;quot;Fluorescent&amp;quot;, &amp;quot;Incandescent&amp;quot;, etc. This is the value of the EXIF LightSource tag (hex code 0x9208).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureLongDate&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureLongDatetime&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureMeteringMode&lt;br /&gt;
|  Shows the metering mode used when the selected picture was taken. The possible values are &amp;quot;Center weight&amp;quot;, &amp;quot;Spot&amp;quot;, or &amp;quot;Matrix&amp;quot;. This is the value of the EXIF MeteringMode tag (hex code 0x9207).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureObjectName&lt;br /&gt;
|  Shows a shorthand reference for the selected picture. This is the value of the IPTC ObjectName tag (hex code 0x05).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureOrientation&lt;br /&gt;
|  Shows the orientation of the selected picture. Possible values are &amp;quot;Top Left&amp;quot;, &amp;quot;Top Right&amp;quot;, &amp;quot;Left Top&amp;quot;, &amp;quot;Right Bottom&amp;quot;, etc. This is the value of the EXIF Orientation tag (hex code 0x0112).&lt;br /&gt;
|&lt;br /&gt;
|-     &lt;br /&gt;
|  ListItem.PicturePath&lt;br /&gt;
|  Shows the filename and path of the selected picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureProcess&lt;br /&gt;
|  Shows the process used to compress the selected picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureReferenceService&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureResolution&lt;br /&gt;
|  Shows the dimensions of the selected picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSource&lt;br /&gt;
|  Shows the original owner of the selected picture. This is the value of the IPTC Source tag (hex code 0x73).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSpecialInstructions&lt;br /&gt;
|  Shows other editorial instructions concerning the use of the selected picture. This is the value of the IPTC SpecialInstructions tag (hex code 0x28).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureState&lt;br /&gt;
|  Shows the State/Province where the selected picture was taken. This is the value of the IPTC ProvinceState tag (hex code 0x5F).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSublocation&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSupplementalCategories&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureTransmissionReference&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureUrgency&lt;br /&gt;
|  Shows the urgency of the selected picture. Values are 1-9. The &amp;quot;1&amp;quot; is most urgent. Some image management programs use urgency to indicate picture rating, where urgency &amp;quot;1&amp;quot; is 5 stars and urgency &amp;quot;5&amp;quot; is 1 star. Urgencies 6-9 are not used for rating. This is the value of the IPTC Urgency tag (hex code 0x0A).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureWhiteBalance&lt;br /&gt;
|  Shows the white balance mode set when the selected picture was taken. The possible values are &amp;quot;Manual&amp;quot; and &amp;quot;Auto&amp;quot;. This is the value of the EXIF WhiteBalance tag (hex code 0xA403).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FileName&lt;br /&gt;
|  Shows the filename of the currently selected song or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Path&lt;br /&gt;
|  Shows the complete path of the currently selected song or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FolderName&lt;br /&gt;
|  Shows top most folder of the path of the currently selected song or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FolderPath&lt;br /&gt;
|  Shows the complete path of the currently selected song or movie in a container (without user details).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FileNameAndPath&lt;br /&gt;
|  Shows the full path with filename of the currently selected song or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FileExtension&lt;br /&gt;
|  Shows the file extension (without leading dot) of the currently selected item in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Date&lt;br /&gt;
|  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)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DateAdded&lt;br /&gt;
|  Shows the date the currently selected item was added to the library / Date and time of an event in the EventLog window.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Size&lt;br /&gt;
|  Shows the file size of the currently selected song or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Rating[(name)]&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Set&lt;br /&gt;
|  Shows the name of the set the movie is part of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.SetId&lt;br /&gt;
|  Shows the id of the set the movie is part of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.UserRating&lt;br /&gt;
|  Shows the user rating of the currently selected item in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Votes[(name)]&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.RatingAndVotes[(name)]&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Mpaa&lt;br /&gt;
|  Show the MPAA rating of the currently selected movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ProgramCount&lt;br /&gt;
|  Shows the number of times an xbe has been run from &amp;quot;my programs&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Duration[(format)]&lt;br /&gt;
|  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). &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DBTYPE&lt;br /&gt;
|  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 &amp;quot;*all seasons&amp;quot; entry does give a DBTYPE &amp;quot;season&amp;quot; and a DBID, but you can&#039;t get the details of that entry since it&#039;s a virtual entry in the Video Library.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DBID&lt;br /&gt;
|  Shows the database id of the currently selected listitem in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Cast&lt;br /&gt;
|  Shows a concatenated string of cast members of the currently selected movie, for use in dialogvideoinfo.xml&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.CastAndRole&lt;br /&gt;
|  Shows a concatenated string of cast members and roles of the currently selected movie, for use in dialogvideoinfo.xml&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Studio&lt;br /&gt;
|  Studio of current selected Music Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Top250&lt;br /&gt;
|  Shows the IMDb top250 position of the currently selected listitem in a container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Trailer&lt;br /&gt;
|  Shows the full trailer path with filename of the currently selected movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Writer&lt;br /&gt;
|  Name of Writer of current Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Tagline&lt;br /&gt;
|  Small Summary of current Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PlotOutline&lt;br /&gt;
|  Small Summary of current Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Plot&lt;br /&gt;
|  Complete Text Summary of Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.IMDBNumber&lt;br /&gt;
|  The IMDB iD of the selected Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EpisodeName&lt;br /&gt;
|  (PVR only) The name of the episode if the selected EPG item is a TV Show&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PercentPlayed&lt;br /&gt;
|  Returns percentage value [0-100] of how far the selected video has been played&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.LastPlayed&lt;br /&gt;
|  Last play date of Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PlayCount&lt;br /&gt;
|  Playcount of Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartTime&lt;br /&gt;
|  Start time of current selected TV programme in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EndTime&lt;br /&gt;
|  End time of current selected TV programme in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartDate&lt;br /&gt;
|  Start date of current selected TV programme in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelName&lt;br /&gt;
|  Name of current selected TV channel in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.VideoCodec&lt;br /&gt;
|  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)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.VideoResolution&lt;br /&gt;
|  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.&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.VideoAspect&lt;br /&gt;
|  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)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AudioCodec&lt;br /&gt;
|  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)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AudioChannels&lt;br /&gt;
|  Shows the number of audio channels of the currently selected video (possible values: 1, 2, 4, 5, 6, 7, 8, 10)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AudioLanguage&lt;br /&gt;
|  Shows the audio language of the currently selected video (returns an ISO 639-2 three character code, e.g. eng, epo, deu)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.SubtitleLanguage&lt;br /&gt;
|  Shows the subtitle language of the currently selected video (returns an ISO 639-2 three character code, e.g. eng, epo, deu)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(AudioCodec.[n])&lt;br /&gt;
|  Shows the audio codec of the currently selected video, &#039;n&#039; defines the number of the audiostream (values: see ListItem.AudioCodec)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(AudioChannels.[n])&lt;br /&gt;
|  Shows the number of audio channels of the currently selected video, &#039;n&#039; defines the number of the audiostream (values: see ListItem.AudioChannels)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(AudioLanguage.[n])&lt;br /&gt;
|  Shows the audio language of the currently selected video, &#039;n&#039; defines the number of the audiostream (values: see ListItem.AudioLanguage)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(SubtitleLanguage.[n])&lt;br /&gt;
|  Shows the subtitle language of the currently selected video, &#039;n&#039; defines the number of the subtitle (values: see ListItem.SubtitleLanguage)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonName&lt;br /&gt;
|  Shows the name of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonVersion&lt;br /&gt;
|  Shows the version of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonSummary&lt;br /&gt;
|  Shows a short description of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonDescription&lt;br /&gt;
|  Shows the full description of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonType&lt;br /&gt;
|  Shows the type (screensaver, script, skin, etc...) of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonCreator&lt;br /&gt;
|  Shows the name of the author the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonDisclaimer&lt;br /&gt;
|  Shows the disclaimer of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonBroken&lt;br /&gt;
|  Shows a message when the addon is marked as broken in the repo&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Changelog)&lt;br /&gt;
|  Shows the changelog of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.ID)&lt;br /&gt;
|  Shows the identifier of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Status)&lt;br /&gt;
|  Shows the status of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Path)&lt;br /&gt;
|  Shows the path of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartTime&lt;br /&gt;
|  Start time of the selected item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EndTime&lt;br /&gt;
|  End time of the selected item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartDate&lt;br /&gt;
|  Start date of the selected item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EndDate&lt;br /&gt;
|  End date of the selected item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextTitle&lt;br /&gt;
|  Title of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextGenre&lt;br /&gt;
|  Genre of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextPlot&lt;br /&gt;
|  Plot of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextPlotOutline&lt;br /&gt;
|  Plot outline of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextStartTime&lt;br /&gt;
|  Start time of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextEndTime&lt;br /&gt;
|  End of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextStartDate&lt;br /&gt;
|  Start date of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextEndDate&lt;br /&gt;
|  End date of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.NextDuration&lt;br /&gt;
|  Duration of the next item (PVR).&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelName&lt;br /&gt;
|  Channelname of the selected item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelNumber&lt;br /&gt;
|  Channel number of the selected item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelNumberLabel&lt;br /&gt;
|  Channel and subchannel number of the currently selected channel that&#039;s currently playing (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Progress&lt;br /&gt;
|  Part of the programme that&#039;s been played (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StereoscopicMode&lt;br /&gt;
|  Returns the stereomode of the selected video (i.e. mono, split_vertical, split_horizontal, row_interleaved, anaglyph_cyan_red, anaglyph_green_magenta)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Comment&lt;br /&gt;
|  Comment assigned to the item (PVR/MUSIC).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonInstallDate&lt;br /&gt;
| Date the addon was installed&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonLastUpdated&lt;br /&gt;
| Date the addon was last updated&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonLastUsed&lt;br /&gt;
| Date the addon was used last&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonNews&lt;br /&gt;
| Returns a brief changelog, taken from the addons&#039; addon.xml file&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonSize&lt;br /&gt;
| Filesize of the addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Contributors&lt;br /&gt;
| List of all people who&#039;ve contributed to the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ContributorAndRole&lt;br /&gt;
| List of all people and their role who&#039;ve contributed to the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EndTimeResume&lt;br /&gt;
| Returns the time a video will end if you resume it, instead of playing it from the beginning.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Mood&lt;br /&gt;
| Mood of the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Status&lt;br /&gt;
| For use with tv shows. It can return one of the following: &#039;returning series&#039;,&#039;in production&#039;,&#039;planned&#039;,&#039;cancelled&#039; or &#039;ended&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Tag&lt;br /&gt;
| Will return the name of the &#039;tag&#039; this movie is part of.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Arranger)&lt;br /&gt;
| Returns the name of the person who arranged the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Composer)&lt;br /&gt;
| Returns the name of the person who composed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Conductor)&lt;br /&gt;
| Returns the name of the person who conducted the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.DJMixer)&lt;br /&gt;
| Returns the name of the dj who remixed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Engineer)&lt;br /&gt;
| Returns the name of the person who was the engineer of the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Lyricist)&lt;br /&gt;
| Returns the name of the person who wrote the lyrics of the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Mixer)&lt;br /&gt;
| Returns the name of the person who mixed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Orchestra)&lt;br /&gt;
| Returns the name of the orchestra performing the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Producer)&lt;br /&gt;
| Returns the name of the person who produced the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Remixer)&lt;br /&gt;
| Returns the name of the person who remixed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Appearances&lt;br /&gt;
| Returns the number of movies featuring the selected actor / directed by the selected director&lt;br /&gt;
| v17 addition&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PrivacyPolicy&lt;br /&gt;
| Returns the official Kodi privacy-policy&lt;br /&gt;
| v17 addition&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Property(game.videofilter)&lt;br /&gt;
|  Name of the video filter (eg. Bilinear)&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Property(game.stretchmode)&lt;br /&gt;
|  Name of the stretch mode (eg. Stretch 4:3)&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Property(game.videorotation)&lt;br /&gt;
|  Angle of the rotation&lt;br /&gt;
|  v18&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Musicpartymode labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.SongsPlayed&lt;br /&gt;
|  Number of songs played during Party Mode&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.MatchingSongs&lt;br /&gt;
|  Number of songs available to Party Mode&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.MatchingSongsPicked&lt;br /&gt;
|  Number of songs picked already for Party Mode&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.MatchingSongsLeft&lt;br /&gt;
|  Number of songs left to be picked from for Party Mode&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.RelaxedSongsPicked&lt;br /&gt;
|  Not currently used&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.RandomSongsPicked&lt;br /&gt;
|  Number of unique random songs picked during Party Mode&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Network labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Network.IsDHCP&lt;br /&gt;
|  Network type is DHCP or FIXED&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.IPAddress&lt;br /&gt;
|  The system&#039;s IP Address (&amp;lt;ipaddress&amp;gt; is returned as a string)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.LinkState&lt;br /&gt;
|  Network linkstate e.g. 10mbit/100mbit etc.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.MacAddress&lt;br /&gt;
|  The system&#039;s  mac address&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.SubnetMask&lt;br /&gt;
|  Network subnet mask&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.GatewayAddress&lt;br /&gt;
|  Network gateway address&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.DNS1Address&lt;br /&gt;
|  Network dns server 1 address&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.DNS2Address&lt;br /&gt;
|  Network dns server 2 address&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.DHCPAddress&lt;br /&gt;
|  DHCP server ip address&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Player labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Player.FinishTime&lt;br /&gt;
|  Time playing media will end&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.FinishTime(format)&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Chapter&lt;br /&gt;
|  Current chapter of current playing media&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.ChapterCount&lt;br /&gt;
|  Total number of chapters of current playing media&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Time&lt;br /&gt;
|  Elapsed time of current playing media&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Time(format)&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.TimeRemaining&lt;br /&gt;
|  Remaining time of current playing media&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.TimeRemaining(format)&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Duration&lt;br /&gt;
|  Total duration of the current playing media&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Duration(format)&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekTime&lt;br /&gt;
|  Time to which the user is seeking&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekOffset&lt;br /&gt;
|  Indicates the seek offset after a seek press (eg user presses BigStepForward, player.seekoffset returns +10:00)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekOffset(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekStepSize&lt;br /&gt;
|  Displays the seek step size. (v15 addition)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.ProgressCache&lt;br /&gt;
|  Shows how much of the file is cached above current play percentage&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Folderpath&lt;br /&gt;
|  Shows the full path of the currently playing song or movie&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Filenameandpath&lt;br /&gt;
|  Shows the full path with filename of the currently playing song or movie&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.StartTime&lt;br /&gt;
|  Returns the starttime (from the epg) of a tv program, for all other videos it will return the time you started watching this video.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.StartTime(format)&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Title&lt;br /&gt;
|  Returns the musicplayer title for audio and the videoplayer title for videos.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Filename&lt;br /&gt;
|  Returns the filename of the currently playing media.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Volume&lt;br /&gt;
| Returns the volume level in dB&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(AudioBitsPerSample)&lt;br /&gt;
| Bits per sample of the currently playing item&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(AudioChannels)&lt;br /&gt;
| Number of audiochannels of the currently playing item&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(AudioDecoder)&lt;br /&gt;
| Audiodecoder name of the currently playing item&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(AudioSamplerate)&lt;br /&gt;
| Samplerate  f the currently playing item&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(DeintMethod)&lt;br /&gt;
| Deinterlace method of the currently playing video&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(PixFormat)&lt;br /&gt;
| Pixel format of the currently playing video&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(VideoDAR)&lt;br /&gt;
| Display aspect ratio of the currently playing video&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(VideoFPS)&lt;br /&gt;
| Video framerate of the currently playing video&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(VideoHeight)&lt;br /&gt;
| Height of the currently playing video&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(VideoDecoder)&lt;br /&gt;
| Videodecoder name of the currently playing video&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(VideoWidth)&lt;br /&gt;
| Width of the currently playing video&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Music player ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Title&lt;br /&gt;
|  Title of the currently playing song,  also available are &amp;quot;MusicPlayer.offset(number).Title&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Title&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Album&lt;br /&gt;
|  Album from which the current song is from,   also available are &amp;quot;MusicPlayer.offset(number).Album&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Album&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Mood)&lt;br /&gt;
|  Shows the moods of the currently playing Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Style)&lt;br /&gt;
|  Shows the styles of the currently playing Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Theme)&lt;br /&gt;
|  Shows the themes of the currently playing Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Type)&lt;br /&gt;
|  Shows the Album Type (e.g. compilation, enhanced, explicit lyrics) of the currently playing Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Label)&lt;br /&gt;
|  Shows the record label of the currently playing Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Description)&lt;br /&gt;
|  Shows a review of the currently playing Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Artist&lt;br /&gt;
|  Artist(s) of current song,  also available are &amp;quot;MusicPlayer.offset(number).Artist&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Artist&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Born)&lt;br /&gt;
|  Date of Birth of the currently playing Artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Died)&lt;br /&gt;
|  Date of Death of the currently playing Artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Formed)&lt;br /&gt;
|  Formation date of the currently playing Artist/Band&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Disbanded)&lt;br /&gt;
|  Disbanding date of the currently playing Artist/Band&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_YearsActive)&lt;br /&gt;
|  Years the currently Playing artist has been active&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Instrument)&lt;br /&gt;
|  Instruments played by the currently playing artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Description)&lt;br /&gt;
|  Shows a biography of the currently playing artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Mood)&lt;br /&gt;
|  Shows the moods of the currently playing artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Style)&lt;br /&gt;
|  Shows the styles of the currently playing artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Genre)&lt;br /&gt;
|  Shows the genre of the currently playing artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Sortname)&lt;br /&gt;
|  Sortname of the currently playing Artist&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Type)&lt;br /&gt;
|  Type of the currently playing Artist - person, group, orchestra, choir etc.&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Gender)&lt;br /&gt;
|  Gender of the currently playing Artist - male, female, other&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Disambiguation)&lt;br /&gt;
|  Brief description of the currently playing Artist that differentiates them from others with the same name&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Genre&lt;br /&gt;
|  Genre(s) of current song,  also available are &amp;quot;MusicPlayer.offset(number).Genre&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Genre&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Lyrics&lt;br /&gt;
|  Lyrics of current song stored in ID tag info&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Year&lt;br /&gt;
|  Year of release of current song,  also available are &amp;quot;MusicPlayer.offset(number).Year&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Year&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Rating&lt;br /&gt;
|  Numeric Rating of current song,  also available are &amp;quot;MusicPlayer.offset(number).Rating&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Rating&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.DiscNumber&lt;br /&gt;
|  Disc Number of current song stored in ID tag info,  also available are &amp;quot;MusicPlayer.offset(number).DiscNumber&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).DiscNumber&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Comment&lt;br /&gt;
|  Comment of current song stored in ID tag info,  also available are &amp;quot;MusicPlayer.offset(number).Comment&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Comment&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Time&lt;br /&gt;
|  Current time in song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.TimeRemaining&lt;br /&gt;
|  Current remaining time in song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.TimeSpeed&lt;br /&gt;
|  Both the time and the playspeed formatted up. eg 1:23 (2x)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.TrackNumber&lt;br /&gt;
|  Track number of current song,   also available are &amp;quot;MusicPlayer.offset(number).TrackNumber&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).TrackNumber&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Duration&lt;br /&gt;
|  Duration of current song,   also available are &amp;quot;MusicPlayer.offset(number).Duration&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Duration&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.BitRate&lt;br /&gt;
|  Bitrate of current song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Channels&lt;br /&gt;
|  Number of channels of current song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.BitsPerSample&lt;br /&gt;
|  Number of bits per sample of current song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.SampleRate&lt;br /&gt;
|  Samplerate of current song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Codec&lt;br /&gt;
|  Codec of current song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.PlaylistPosition&lt;br /&gt;
|  Position of the current song in the current music playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.PlaylistLength&lt;br /&gt;
|  Total size of the current music playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ChannelName&lt;br /&gt;
|  Channel name of the radio programme that&#039;s currently playing (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ChannelNumberLabel&lt;br /&gt;
|  Channel and subchannel number of the radio channel that&#039;s currently playing (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ChannelGroup&lt;br /&gt;
|  Channel group of  of the radio programme that&#039;s currently playing (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Contributors&lt;br /&gt;
| List of all people who&#039;ve contributed to the currently playing song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ContributorAndRole&lt;br /&gt;
| List of all people and their role who&#039;ve contributed to the currently playing song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Mood&lt;br /&gt;
| Mood of the currently playing song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Arranger)&lt;br /&gt;
| Returns the name of the person who arranged the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Composer)&lt;br /&gt;
| Returns the name of the person who composed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Conductor)&lt;br /&gt;
| Returns the name of the person who conducted the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.DJMixer)&lt;br /&gt;
| Returns the name of the dj who remixed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Engineer)&lt;br /&gt;
| Returns the name of the person who was the engineer of the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Lyricist)&lt;br /&gt;
| Returns the name of the person who wrote the lyrics of the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Mixer)&lt;br /&gt;
| Returns the name of the person who mixed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Orchestra)&lt;br /&gt;
| Returns the name of the orchestra performing the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Producer)&lt;br /&gt;
| Returns the name of the person who produced the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Remixer)&lt;br /&gt;
| Returns the name of the person who remixed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.UserRating&lt;br /&gt;
| The rating the user gave to the currently playing song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.DBID&lt;br /&gt;
| The database id of the currently playing song&lt;br /&gt;
| v17 Addition&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Video player ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Time&lt;br /&gt;
|  Current time in movie&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.TimeRemaining&lt;br /&gt;
|  Current remaining time in movie&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.TimeSpeed&lt;br /&gt;
|  Current time + playspeed. eg 1:23:14 (-4x)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Duration&lt;br /&gt;
|  Length of current movie&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Title&lt;br /&gt;
|  Title of currently playing video. If it&#039;s in the database it will return the database title, else the filename&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.TVShowTitle&lt;br /&gt;
|  Title of currently playing episode&#039;s tvshow name&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Season&lt;br /&gt;
|  Season number of the currently playing episode, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Episode&lt;br /&gt;
|  Episode number of the currently playing episode&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Genre&lt;br /&gt;
|  Genre(s) of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Director&lt;br /&gt;
|  Director of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Country&lt;br /&gt;
|  Production country of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Year&lt;br /&gt;
|  Year of release of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Rating&lt;br /&gt;
|  IMDb user rating of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.UserRating&lt;br /&gt;
|  Shows the user rating of the currently playing item&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Votes&lt;br /&gt;
|  IMDb votes of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.RatingAndVotes&lt;br /&gt;
|  IMDb user rating and votes of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.mpaa&lt;br /&gt;
|  MPAA rating of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.IMDBNumber&lt;br /&gt;
|  The IMDB iD of the current video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.EpisodeName&lt;br /&gt;
|  (PVR only) The name of the episode if the playing video is a TV Show, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.PlaylistPosition&lt;br /&gt;
|  Position of the current song in the current video playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.PlaylistLength&lt;br /&gt;
|  Total size of the current video playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Cast&lt;br /&gt;
|  A concatenated string of cast members of the current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.CastAndRole&lt;br /&gt;
|  A concatenated string of cast members and roles of the current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Album&lt;br /&gt;
|  Album from which the current Music Video is from, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Artist&lt;br /&gt;
|  Artist(s) of current Music Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Studio&lt;br /&gt;
|  Studio of current Music Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Writer&lt;br /&gt;
|  Name of Writer of current playing Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Tagline&lt;br /&gt;
|  Small Summary of current playing Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.PlotOutline&lt;br /&gt;
|  Small Summary of current playing Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Plot&lt;br /&gt;
|  Complete Text Summary of current playing Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.LastPlayed&lt;br /&gt;
|  Last play date of current playing Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|- class=&amp;quot;userrow&lt;br /&gt;
|  VideoPlayer.PlayCount&lt;br /&gt;
|  Playcount of current playing Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|- class=&amp;quot;userrow&lt;br /&gt;
|  VideoPlayer.VideoCodec&lt;br /&gt;
|  Shows the video codec of the currently playing video (common values: see ListItem.VideoCodec)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.VideoResolution&lt;br /&gt;
|  Shows the video resolution of the currently playing video (possible values: see ListItem.VideoResolution)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.VideoAspect&lt;br /&gt;
|  Shows the aspect ratio of the currently playing video (possible values: see ListItem.VideoAspect)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.AudioCodec&lt;br /&gt;
|  Shows the audio codec of the currently playing video, optionally &#039;n&#039; defines the number of the audiostream (common values: see ListItem.AudioCodec)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.AudioChannels&lt;br /&gt;
|  Shows the number of audio channels of the currently playing video (possible values: see ListItem.AudioChannels)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.AudioLanguage&lt;br /&gt;
|  Shows the language of the audio of the currently playing video(possible values: see ListItem.AudioLanguage)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.SubtitlesLanguage&lt;br /&gt;
|  Shows the language of the subtitle of the currently playing video (possible values: see ListItem.SubtitlesLanguage)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.StereoscopicMode&lt;br /&gt;
|  Shows the stereoscopic mode of the currently playing video (possible values: see ListItem.StereoscopicMode)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.EndTime&lt;br /&gt;
|  End date of the currently playing programme (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextTitle&lt;br /&gt;
|  Title of the programme that will be played next (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextGenre&lt;br /&gt;
|  Genre of the programme that will be played next (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextPlot&lt;br /&gt;
|  Plot of the programme that will be played next (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextPlotOutline&lt;br /&gt;
|  Plot outline of the programme that will be played next (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextStartTime&lt;br /&gt;
|  Start time of the programme that will be played next (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextEndTime&lt;br /&gt;
|  End time of the programme that will be played next (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextDuration&lt;br /&gt;
|  Duration of the programme that will be played next (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ChannelName&lt;br /&gt;
|  Name of the curently tuned channel (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ChannelNumberLabel&lt;br /&gt;
|  Channel and subchannel number of the tv channel that&#039;s currently playing (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ChannelGroup&lt;br /&gt;
|  Group of the curently tuned channel (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ParentalRating&lt;br /&gt;
|  Parental rating of the currently playing programme (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.DBID&lt;br /&gt;
| The database id of the currently playing video&lt;br /&gt;
| v17 Addition&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Playlist ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Length(media)&lt;br /&gt;
|  Total size of the current playlist. optional parameter media is either video or music.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Position(media)&lt;br /&gt;
|  Position of the current item in the current playlist. optional parameter media is either video or music.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Random&lt;br /&gt;
|  Returns &#039;On&#039; or &#039;Off&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Repeat&lt;br /&gt;
|  Returns string ID&#039;s 592 (Repeat One), 593 (Repeat All), or 594 (Repeat Off)&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== PVR ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.NowRecordingTitle&lt;br /&gt;
|  Title of the programme being recorded&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.NowRecordingDateTime&lt;br /&gt;
|  Start date and time of the current recording&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.NowRecordingChannel&lt;br /&gt;
|  Channel number that&#039;s being recorded&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.NextRecordingTitle&lt;br /&gt;
|  Title of the next programme that will be recorded&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.NextRecordingDateTime&lt;br /&gt;
|  Start date and time of the next recording&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.NextRecordingChannel&lt;br /&gt;
|  Channel name of the next recording&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendName&lt;br /&gt;
|  Name of the backend being used&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendVersion&lt;br /&gt;
|  Version of the backend that&#039;s being used&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendHost&lt;br /&gt;
|  Backend hostname&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendDiskSpace&lt;br /&gt;
|  Available diskspace on the backend&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendChannels&lt;br /&gt;
|  Number of available channels the backend provides&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendTimers&lt;br /&gt;
|  Number of timers set for the backend&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendRecordings&lt;br /&gt;
|  Number of recording available on the backend&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
|  PVR.BackendDiskspace&lt;br /&gt;
|  Free diskspace available for recordings on the backend&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendNumber&lt;br /&gt;
|  Backend number&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TotalDiscSpace&lt;br /&gt;
|  Total diskspace available for recordings&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.NextTimer&lt;br /&gt;
|  Next timer date&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.EpgEventDuration[(format)]&lt;br /&gt;
|  Returns the duration of the currently played title on TV. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.EpgEventElapsedTime[(format)]&lt;br /&gt;
|  Returns the time position of the currently played title on TV. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.EpgEventRemainingTime[(format)]&lt;br /&gt;
|  Returns the remaining time for currently playing epg event. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.EpgEventFinishTime[(format)]&lt;br /&gt;
|  Returns the time the currently playing epg event will end. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.EpgEventSeekTime[(format)]&lt;br /&gt;
|  Returns the seek time of the currently playing epg event. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.EpgEventProgress&lt;br /&gt;
|  Returns the position of currently played title on TV as integer&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeShiftStart[(format)]&lt;br /&gt;
|  Start position of the timeshift. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeShiftEnd[(format)]&lt;br /&gt;
|  End position of the timeshift. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeShiftCur[(format)]&lt;br /&gt;
|  Current position of the timeshift. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeShiftOffset[(format)]&lt;br /&gt;
|  Current offset of the timeshift. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeShiftProgress&lt;br /&gt;
|  Returns the position of currently timeshifted title on TV as interger&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamClient&lt;br /&gt;
| Stream client name&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamDevice&lt;br /&gt;
| Stream device name&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamStatus&lt;br /&gt;
| Status of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamSignal&lt;br /&gt;
| Signal quality of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamSnr&lt;br /&gt;
| Signal to noise ratio of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamBer&lt;br /&gt;
| Bit error rate of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamUnc&lt;br /&gt;
| UNC value of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamVideoBitRate&lt;br /&gt;
| Video bitrate of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamAudioBitRate&lt;br /&gt;
| Audio bitrate of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamDolbyBitRate&lt;br /&gt;
| Dolby bitrate of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamProgrSignal&lt;br /&gt;
| Signal quality of the programme&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamProgrSnr&lt;br /&gt;
| Signal to noise ratio of the programme&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamEncryptionName&lt;br /&gt;
| Encryption used on the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNowRecordingTitle&lt;br /&gt;
| Title of the tv programme being recorded&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNowRecordingDateTime&lt;br /&gt;
| Start date and time of the current tv recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNowRecordingChannel&lt;br /&gt;
| Channel name of the current tv recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNowRecordingChannelIcon&lt;br /&gt;
| Icon of the current recording TV channel&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNextRecordingTitle&lt;br /&gt;
| Title of the next tv programme that will be recorded&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNextRecordingDateTime&lt;br /&gt;
| Start date and time of the next tv recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNextRecordingChannel&lt;br /&gt;
| Channel name of the next tv recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNextRecordingChannelIcon&lt;br /&gt;
| Icon of the next recording tv channel&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.RadioNowRecordingTitle&lt;br /&gt;
| Title of the radio programme being recorded&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.RadioNowRecordingDateTime&lt;br /&gt;
| Start date and time of the current radio recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.RadioNowRecordingChannel&lt;br /&gt;
| Channel name of the current radio recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.RadioNowRecordingChannelIcon&lt;br /&gt;
| Icon of the current recording radio channel&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.RadioNextRecordingTitle&lt;br /&gt;
| Title of the next radio programme that will be recorded&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.RadioNextRecordingDateTime&lt;br /&gt;
| Start date and time of the next radio recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.RadioNextRecordingChannel&lt;br /&gt;
| Channel name of the next radio recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.ChannelNumberInput&lt;br /&gt;
|  Label displaying the number the user entered on remote or keyboard&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressDuration&lt;br /&gt;
|  Returns the duration of the PVR timeshift progress in the format hh:mm:ss. hh: will be omitted if hours value is zero&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressDuration(format)&lt;br /&gt;
|  Returns the duration of the PVR timeshift progress in different formats, hours (hh), minutes (mm) or seconds (ss)&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressStartTime&lt;br /&gt;
|  Returns the start time of the PVR timeshift progress in the format hh:mm:ss. hh: will be omitted if hours value is zero&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressStartTime(format)&lt;br /&gt;
|  Returns the start time of the PVR timeshift progress in different formats, hours (hh), minutes (mm) or seconds (ss)&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressEndTime&lt;br /&gt;
|  Returns the end time of the PVR timeshift progress in the format hh:mm:ss. hh: will be omitted if hours value is zero&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressEndTime(format)&lt;br /&gt;
|  Returns the end time of the PVR timeshift progress in different formats, hours (hh), minutes (mm) or seconds (ss)&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressPlayPos&lt;br /&gt;
|  Returns the percentage of the current play position within the PVR timeshift progress&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressEpgStart&lt;br /&gt;
|  Returns the percentage of the start of the currently playing epg event within the PVR timeshift progress&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressEpgEnd&lt;br /&gt;
|  Returns the percentage of the end of the currently playing epg event within the PVR timeshift progress&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressBufferStart&lt;br /&gt;
|  Returns the percentage of the start of the timeshift buffer within the PVR timeshift progress&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressBufferEnd&lt;br /&gt;
|  Returns the percentage of the end of the timeshift buffer within the PVR timeshift progress&lt;br /&gt;
|  v18&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== RDS ===&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  RDS.AudioLanguage&lt;br /&gt;
|  The from RDS reported audio language of channel&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ChannelCountry&lt;br /&gt;
|  Country where the radio channel is sended&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.GetLine(number)&lt;br /&gt;
|  Returns the last sended RDS text messages on givern number, 0 is thelast and 4 rows are supported (0-3)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.Title&lt;br /&gt;
|  Title of item; e.g. track title of an album (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.Artist&lt;br /&gt;
|  A person or band/collective generally considered responsible for the work (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.Band&lt;br /&gt;
|  Band/orchestra/accompaniment/musician (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.Composer&lt;br /&gt;
|  Name of the original composer/author (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.Conductor&lt;br /&gt;
|  The artist(s) who performed the work. In classical music this would bethe conductor (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.Album&lt;br /&gt;
|  The collection name to which this track belongs (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.TrackNumber&lt;br /&gt;
|  The track number of the item on the album on which it was originallyreleased. (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.RadioStyle&lt;br /&gt;
|  The from radio channel used style of currently played part, e.g &amp;quot;popmusic&amp;quot;, &amp;quot;news&amp;quot; or &amp;quot;weather&amp;quot;&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.Comment&lt;br /&gt;
|  Radio station comment string if available (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoNews&lt;br /&gt;
|  Message / headline (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoNewsLocal&lt;br /&gt;
|  Local information news sended from radio channel (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoStock&lt;br /&gt;
|  Quote information; either as one part or as several distinct parts:&amp;quot;name 99latest value 99change 99high 99low 99volume&amp;quot; (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoStockSize&lt;br /&gt;
|  Number of rows present in stock information (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoSport&lt;br /&gt;
|  Result of a game; either as one part or as several distinct parts:&amp;quot;match 99result&amp;quot;, e.g. &amp;quot;Bayern München : Borussia 995:5&amp;quot;  (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoSportSize&lt;br /&gt;
|  Number of rows present in sport information (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoLottery&lt;br /&gt;
|  Raffle / lottery: &amp;quot;key word 99values&amp;quot; (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoLotterySize&lt;br /&gt;
|  Number of rows present in lottery information (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoWeather&lt;br /&gt;
|  Weather informations sended from radio channel (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoWeatherSize&lt;br /&gt;
|  Number of rows present in weather information (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoCinema&lt;br /&gt;
|  Information about movies in cinema (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoCinemaSize&lt;br /&gt;
|  Number of rows present in cinema information (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoHoroscope&lt;br /&gt;
|  Horoscope; either as one part or as two distinct parts:&amp;quot;key word 99text&amp;quot;, e.g. &amp;quot;sign of the zodiac 99blablabla&amp;quot; (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoHoroscopeSize&lt;br /&gt;
|  Number of rows present in horoscope information (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoOther&lt;br /&gt;
|  Other information, not especially specified: &amp;quot;key word 99info&amp;quot; (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoOtherSize&lt;br /&gt;
|  Number of rows present with other informations (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ProgStation&lt;br /&gt;
|  Name of the radio channel@note becomes also be set from epg if from RDS not available&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ProgNow&lt;br /&gt;
|  Now played program name@note becomes also be set from epg if from RDS not available&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ProgNext&lt;br /&gt;
|  Next played program name (if available)@note becomes also be set from epg if from RDS not available&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ProgHost&lt;br /&gt;
|  Name of the host of the radio show&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ProgEditStaff&lt;br /&gt;
|  Name of the editorial staff; e.g. name of editorial journalist (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ProgHomepage&lt;br /&gt;
|  Link to radio station homepage (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ProgStyle&lt;br /&gt;
|  Human readable string about radiostyle defined from RDS or RBDS&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.PhoneHotline&lt;br /&gt;
|  The telephone number of the radio station&#039;s hotline (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.PhoneStudio&lt;br /&gt;
|  The telephone number of the radio station&#039;s studio (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.SmsStudio&lt;br /&gt;
|  The sms number of the radio stations studio (to send directly a sms to the studio) (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.EmailHotline&lt;br /&gt;
|  The email adress of the radio stations hotline (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.EmailStudio&lt;br /&gt;
|  The email adress of the radio stations studio (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Skin ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.CurrentTheme&lt;br /&gt;
|  Returns the current selected skin theme.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.CurrentColourTheme&lt;br /&gt;
|  Returns the current selected colour theme of the skin.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.Font&lt;br /&gt;
|  Returns the current fontset from Font.xml.&lt;br /&gt;
|  v18 addition&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.String(name)&lt;br /&gt;
| Returns the &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;user-set&amp;lt;/span&amp;gt; skin string, set via the Skin.SetString(name) &#039;&#039;&#039;[[List of Built In Functions]]&#039;&#039;&#039;. Allows skinners to have &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;user-customisable&amp;lt;/span&amp;gt; labels.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.AspectRatio&lt;br /&gt;
|  Returns the closest aspect ratio match using the resolution info from the skin&#039;s addon.xml file.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Slideshow ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-  &lt;br /&gt;
|  Slideshow.Altitude&lt;br /&gt;
|  Shows the altitude in meters where the current picture was taken. This is the value of the EXIF GPSInfo.GPSAltitude tag.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Aperture&lt;br /&gt;
|  Shows the F-stop used to take the current picture. This is the value of the EXIF FNumber tag (hex code 0x829D).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Author&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Byline&lt;br /&gt;
|  Shows the name of the person who created the current picture.  This is the value of the IPTC Byline tag (hex code 0x50).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.BylineTitle&lt;br /&gt;
|  Shows the title of the person who created the current picture. This is the value of the IPTC BylineTitle tag (hex code 0x55).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CameraMake&lt;br /&gt;
|  Shows the manufacturer of the camera used to take the current picture. This is the value of the EXIF Make tag (hex code 0x010F).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CameraModel&lt;br /&gt;
|  Shows the manufacturer&#039;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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Caption&lt;br /&gt;
|  Shows a description of the current picture. This is the value of the IPTC Caption tag (hex code 0x78).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Category&lt;br /&gt;
|  Shows the subject of the current picture as a category code. This is the value of the IPTC Category tag (hex code 0x0F).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CCDWidth&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.City&lt;br /&gt;
|  Shows the city where the current picture was taken. This is the value of the IPTC City tag (hex code 0x5A).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Colour&lt;br /&gt;
|  Shows whether the current picture is &amp;quot;Colour&amp;quot; or &amp;quot;Black and White&amp;quot;.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CopyrightNotice&lt;br /&gt;
|  Shows the copyright notice of the current picture. This is the value of the IPTC Copyright tag (hex code 0x74).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Country&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CountryCode&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Credit&lt;br /&gt;
|  Shows who provided the current picture. This is the value of the IPTC Credit tag (hex code 0x6E).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.DigitalZoom&lt;br /&gt;
|  Shows the digital zoom ratio when the current picture was taken. This is the value of the EXIF .DigitalZoomRatio tag (hex code 0xA404).  &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFComment&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFDate&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFDescription&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFSoftware&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFTime&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Exposure&lt;br /&gt;
|  Shows the class of the program used by the camera to set exposure when the current picture was taken. Values include &amp;quot;Manual&amp;quot;, &amp;quot;Program (Auto)&amp;quot;, &amp;quot;Aperture priority (Semi-Auto)&amp;quot;, &amp;quot;Shutter priority (semi-auto)&amp;quot;, etc. This is the value of the EXIF ExposureProgram tag (hex code 0x8822).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ExposureBias&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ExposureMode&lt;br /&gt;
|  Shows the exposure mode of the current picture. The possible values are &amp;quot;Automatic&amp;quot;, &amp;quot;Manual&amp;quot;, and &amp;quot;Auto bracketing&amp;quot;. This is the value of the EXIF ExposureMode tag (hex code 0xA402).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ExposureTime&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Filedate&lt;br /&gt;
|  Shows the file date of the current picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Filename&lt;br /&gt;
|  Shows the file name of the current picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Filesize&lt;br /&gt;
|  Shows the file size of the current picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.FlashUsed&lt;br /&gt;
|  Shows the status of flash when the current picture was taken. The value will be either &amp;quot;Yes&amp;quot; or &amp;quot;No&amp;quot;, and might include additional information. This is the value of the EXIF Flash tag (hex code 0x9209).  &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.FocalLength&lt;br /&gt;
|  Shows the focal length of the lens, in mm. This is the value of the EXIF FocalLength tag (hex code 0x920A).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.FocusDistance&lt;br /&gt;
|  Shows the distance to the subject, in meters. This is the value of the EXIF SubjectDistance tag (hex code 0x9206).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Headline&lt;br /&gt;
|  Shows a synopsis of the contents of the current picture. This is the value of the IPTC Headline tag (hex code 0x69).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ImageType&lt;br /&gt;
|  Shows the color components of the current picture. This is the value of the IPTC ImageType tag (hex code 0x82).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.IPTCDate&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ISOEquivalence&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Keywords&lt;br /&gt;
|  Shows keywords assigned to the current picture. This is the value of the IPTC Keywords tag (hex code 0x19).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Latitude&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.LightSource&lt;br /&gt;
|  Shows the kind of light source when the picture was taken. Possible values include &amp;quot;Daylight&amp;quot;, &amp;quot;Fluorescent&amp;quot;, &amp;quot;Incandescent&amp;quot;, etc. This is the value of the EXIF LightSource tag (hex code 0x9208).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.LongEXIFDate&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.LongEXIFTime&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Longitude&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.MeteringMode&lt;br /&gt;
|  Shows the metering mode used when the current picture was taken. The possible values are &amp;quot;Center weight&amp;quot;, &amp;quot;Spot&amp;quot;, or &amp;quot;Matrix&amp;quot;. This is the value of the EXIF MeteringMode tag (hex code 0x9207).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ObjectName&lt;br /&gt;
|  Shows a shorthand reference for the current picture. This is the value of the IPTC ObjectName tag (hex code 0x05).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Orientation&lt;br /&gt;
|  Shows the orientation of the current picture. Possible values are &amp;quot;Top Left&amp;quot;, &amp;quot;Top Right&amp;quot;, &amp;quot;Left Top&amp;quot;, &amp;quot;Right Bottom&amp;quot;, etc. This is the value of the EXIF Orientation tag (hex code 0x0112).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Path&lt;br /&gt;
|  Shows the file path of the current picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Process&lt;br /&gt;
|  Shows the process used to compress the current picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ReferenceService&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Resolution&lt;br /&gt;
|  Shows the dimensions of the current picture (Width x Height)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SlideComment&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SlideIndex&lt;br /&gt;
|  Shows the slide index of the current picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Source&lt;br /&gt;
|  Shows the original owner of the current picture. This is the value of the IPTC Source tag (hex code 0x73).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SpecialInstructions&lt;br /&gt;
|  Shows other editorial instructions concerning the use of the current picture. This is the value of the IPTC SpecialInstructions tag (hex code 0x28).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.State&lt;br /&gt;
|  Shows the State/Province where the current picture was taken. This is the value of the IPTC ProvinceState tag (hex code 0x5F).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Sublocation&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SupplementalCategories&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.TimeCreated&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.TransmissionReference&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Urgency&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.WhiteBalance&lt;br /&gt;
|  Shows the white balance mode set when the current picture was taken. The possible values are &amp;quot;Manual&amp;quot; and &amp;quot;Auto&amp;quot;. This is the value of the EXIF WhiteBalance tag (hex code 0xA403).&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== System ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  System.Time&lt;br /&gt;
|  Current time&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.Time(format)&lt;br /&gt;
|  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&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.Date&lt;br /&gt;
|  Current date&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.Date(format)&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.AlarmPos&lt;br /&gt;
|  Shutdown Timer position&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.BatteryLevel&lt;br /&gt;
|  Returns the remaining battery level in range 0-100&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.FreeSpace&lt;br /&gt;
|  Total Freespace on the drive&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.UsedSpace&lt;br /&gt;
|  Total Usedspace on the drive&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.TotalSpace&lt;br /&gt;
|  Totalspace on the drive&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.UsedSpacePercent&lt;br /&gt;
|  Total Usedspace Percent on the drive&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.FreeSpacePercent&lt;br /&gt;
|  Total Freespace Percent on the drive&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.CPUTemperature&lt;br /&gt;
|  Current CPU temperature&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.CpuUsage&lt;br /&gt;
|  Displays the cpu usage for each individual cpu core.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.CoreUsage(id)&lt;br /&gt;
|  Displays the usage of the cpu core with the given &#039;id&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.GPUTemperature&lt;br /&gt;
|  Current GPU temperature&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.FanSpeed&lt;br /&gt;
|  Current fan speed&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.BuildVersion&lt;br /&gt;
|  Version of build&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.BuildDate&lt;br /&gt;
|  Date of build&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.FriendlyName&lt;br /&gt;
|  Returns the Kodi instance name. It will auto append (%hostname%) in case the device name was not changed. eg. &amp;quot;Kodi (htpc)&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.FPS&lt;br /&gt;
|  Current rendering speed (frames per second)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.FreeMemory&lt;br /&gt;
|  Amount of free memory in Mb&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.Memory(format)&lt;br /&gt;
|  Available formats: used, used.percent, free, free.percent, total&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenMode&lt;br /&gt;
|  Screenmode (eg windowed / fullscreen)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenWidth&lt;br /&gt;
|  Width of screen in pixels&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenHeight&lt;br /&gt;
|  Height of screen in pixels&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.StartupWindow&lt;br /&gt;
|  The Window Kodi will load on startup&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.CurrentWindow&lt;br /&gt;
|  Current Window we are in&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.CurrentControl&lt;br /&gt;
|  Current focused control&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.CurrentControlID&lt;br /&gt;
|  ID of the currently focused control.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.DVDLabel&lt;br /&gt;
|  Label of the disk in the &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;DVD-ROM&amp;lt;/span&amp;gt; drive&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.HddTemperature&lt;br /&gt;
|  Hdd temperature&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.OSVersionInfo&lt;br /&gt;
|  System name + kernel version&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.KernelVersion (deprecated)&lt;br /&gt;
|  System name + kernel version&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.Uptime&lt;br /&gt;
|  System current uptime&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.TotalUptime&lt;br /&gt;
|  System total uptime&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.CpuFrequency&lt;br /&gt;
|  System cpu frequency&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenResolution&lt;br /&gt;
|  Screen resolution&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.VideoEncoderInfo&lt;br /&gt;
|  Video encoder info&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.InternetState&lt;br /&gt;
|  Will return the internet state, connected or not connected&lt;br /&gt;
and for Conditional use: Connected-&amp;gt;TRUE, not Connected-&amp;gt;FALSE, do not use to check status in a pythonscript since it is threaded.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.Language&lt;br /&gt;
|  Shows the current language&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileName&lt;br /&gt;
|  Shows the User name of the currently logged in Kodi user&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileCount&lt;br /&gt;
|  Shows the number of defined profiles&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileAutoLogin&lt;br /&gt;
|  The profile Kodi will auto login to&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.StereoscopicMode&lt;br /&gt;
|  The prefered stereoscopic mode (settings &amp;gt; video &amp;gt; playback)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.TemperatureUnits&lt;br /&gt;
|  Shows Celsius or Fahrenheit symbol&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.AddonTitle(id)&lt;br /&gt;
|  Returns the title of the addon with the given id&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.AddonVersion(id)&lt;br /&gt;
|  Returns the version of the addon with the given id&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Visualisation ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Visualisation.Preset&lt;br /&gt;
|  Shows the current preset of the visualisation.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Visualisation.Name&lt;br /&gt;
|  Shows the name of the visualisation.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Weather labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.Conditions&lt;br /&gt;
|  Current weather conditions – this is looked up in a background process.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.Temperature&lt;br /&gt;
|  Current weather temperature&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.Location&lt;br /&gt;
|  City/town which the above two items are for&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.fanartcode&lt;br /&gt;
|  Current weather fanartcode.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.plugin&lt;br /&gt;
|  Current weather plugin.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Window ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Window([window]).Property(key)&lt;br /&gt;
|  Window property. (key can be any value, optional window can be id or name)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Window.Property(xmlfile)&lt;br /&gt;
|  Displays the name of the xml file currently shown&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Window(AddonBrowser).Property(Updated)&lt;br /&gt;
|  Shows the date and time the addon repo was last checked for updates&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Window.Property(Addon.ID)&lt;br /&gt;
| Returns the id of the selected addon, in DialogAddonSettings.xml&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Window(Home).Property(key)&lt;br /&gt;
|  The home window has the following info labels.&lt;br /&gt;
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&lt;br /&gt;
&lt;br /&gt;
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&lt;br /&gt;
&lt;br /&gt;
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&lt;br /&gt;
&lt;br /&gt;
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&lt;br /&gt;
&lt;br /&gt;
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&lt;br /&gt;
&lt;br /&gt;
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&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Window(Weather).Property(key)&lt;br /&gt;
|  The weather window has the following info labels.&lt;br /&gt;
Location, Updated, Current.Condition, Current.Temperature, Current.FeelsLike, Current.UVIndex, Current.Wind (From &amp;lt;wind dir.&amp;gt; at &amp;lt;speed&amp;gt; &amp;lt;unit&amp;gt;), 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&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
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&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Images Available in Kodi ===&lt;br /&gt;
&lt;br /&gt;
See &#039;&#039;&#039;[[Artwork/Accessing with skins and JSON-RPC]]&#039;&#039;&#039; for the general pattern of accessing artwork for media items. Below is a list of other possible images available as InfoLabels.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Image&lt;br /&gt;
|  Fanart image for the parent TV Show. Note: Deprecated, use ListItem.Art(tvshow.fanart) instead.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Thumb&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Icon&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ActualIcon&lt;br /&gt;
|  Shows the icon of the currently selected item in a list or thumb control.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Overlay&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EPGEventIcon&lt;br /&gt;
|  Returns the icon of the EPG programme (if available).&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Fanart_Image)&lt;br /&gt;
|  Fanart Image currently selected item or of the parent TV show. Note: Deprecated, use ListItem.Art(fanart) or ListItem.Art(tvshow.fanart) instead.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Cover&lt;br /&gt;
|  Cover of currently playing album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Fanart_Image)&lt;br /&gt;
|  Fanart image of the currently playing artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Icon&lt;br /&gt;
|  Shows the thumbnail (if it exists) of the currently playing item. If no thumbnail image exists, it will show the icon.&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Player.StarRating&lt;br /&gt;
|  Returns a value of 0 to 5 as a graphical display from images named rating0.png to rating5.png of the skin&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NowRecordingChannelIcon&lt;br /&gt;
|  Channel icon of the programme currently being recorded.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NextRecordingChannelIcon&lt;br /&gt;
|  Channel icon of the programme that will be recorded next.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.EPGEventIcon&lt;br /&gt;
|  Returns the icon of the currently playing EPG programme (if available).&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.String(name)&lt;br /&gt;
| Returns the image or image folder set by the user via a Skin.SetPath(name) or Skin.SetImage(name) &#039;&#039;&#039;[[List of Built In Functions]]&#039;&#039;&#039;. Allows skinners to have &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;user-customisable&amp;lt;/span&amp;gt; images and multiimages.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.AddonIcon(id)&lt;br /&gt;
|  Returns the Icon of the specified addon. Instead of specifying the id directly, one can also use an infolabel (eg. $INFO[Skin.String(Foo)])&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileThumb&lt;br /&gt;
|  Shows the Thumbnail image of the currently logged in Kodi user&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Cover&lt;br /&gt;
|  Cover of currently playing movie.  Note: Deprecated, use ListItem.Art(poster) instead.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.ConditionsIcon&lt;br /&gt;
|  Image of current weather conditions (NOTE: Can be used to load/refresh weather conditions)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Window([window]).Property(key)&lt;br /&gt;
|  Window property. (key can be any value, optional window can be id or name)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Window(Weather).Property(key)&lt;br /&gt;
|  The weather window has the following info images.&lt;br /&gt;
Current.ConditionIcon, Day[0-6].OutlookIcon, Current.FanartCode, Day[0-6].FanartCode, WeatherProviderLogo&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section end=&amp;quot;main content&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&#039;&#039;&#039;Development:&#039;&#039;&#039;&lt;br /&gt;
* [[Add-on development]]&lt;br /&gt;
* [[Skinning]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Skin development]]&lt;br /&gt;
[[Category:Add-on development]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=InfoLabels&amp;diff=157156</id>
		<title>InfoLabels</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=InfoLabels&amp;diff=157156"/>
		<updated>2019-02-02T17:12:06Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* Images Available in Kodi */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[Development]]|[[Add-on development]]|[[Skinning]]}}&lt;br /&gt;
&amp;lt;section begin=&amp;quot;main content&amp;quot; /&amp;gt;&lt;br /&gt;
Skins can use infolabels with $INFO[infolabel] or the &amp;lt;info&amp;gt; tag. Scripts can read infolabels with &amp;lt;code&amp;gt;xbmc.getInfoLabel(&#039;infolabel&#039;)&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
An up-to-date list can be found here [https://github.com/xbmc/xbmc/blob/master/xbmc/GUIInfoManager.cpp GUIInfoManager.cpp]&lt;br /&gt;
&lt;br /&gt;
=== Container ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Content&lt;br /&gt;
|  Shows content of the current container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.FolderPath&lt;br /&gt;
|  Shows complete path of currently displayed folder&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.FolderName&lt;br /&gt;
|  Shows top most folder in currently displayed folder&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Viewmode&lt;br /&gt;
|  Returns the current viewmode (list, icons etc.)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.SortMethod&lt;br /&gt;
|  Returns the current sort method (name, year, rating, etc.)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.SortOrder&lt;br /&gt;
|  Returns the current sort order (Ascending/Descending)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.PluginName&lt;br /&gt;
|  Returns the current plugins base folder name&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.PluginCategory&lt;br /&gt;
|  Returns the current plugins category (set by the scripter)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.ShowPlot&lt;br /&gt;
|  Returns the TV Show plot of the current container and can be used at season and episode level&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.ShowTitle&lt;br /&gt;
|  Returns the TV Show title of the current container and can be used at season and episode level&lt;br /&gt;
|  v17 addition&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).NumPages&lt;br /&gt;
|  Number of pages in the container with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).NumItems&lt;br /&gt;
|  Number of items in the container or grouplist with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).NumAllItems&lt;br /&gt;
|  Number of all items in the container or grouplist with given id including parent folder item.&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).NumNonFolderItems&lt;br /&gt;
|  Number of items in the container or grouplist with given id excluding all folder items.&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).CurrentPage&lt;br /&gt;
|  Current page in the container with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).CurrentItem&lt;br /&gt;
|  Current item in the container or grouplist with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).Position&lt;br /&gt;
|  Returns the current focused position of container / grouplist (id) as a numeric label.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).Column&lt;br /&gt;
|  Returns the column number of the focused position in a panel container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).Row&lt;br /&gt;
|  Returns the row number of the focused position in a panel container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).Totaltime&lt;br /&gt;
|  Returns the total time of all items in the current container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).TotalWatched&lt;br /&gt;
|  Returns the number of watched items in the current container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).TotalUnWatched&lt;br /&gt;
|  Returns the number of unwatched items in the current container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Label&lt;br /&gt;
|  Shows ListItem.Label for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(2).Label )&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Label2&lt;br /&gt;
|  Shows ListItem.Label2 for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(-2).Label2 )&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Icon&lt;br /&gt;
|  Shows ListItem.Icon for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(52).Listitem(1).Icon)&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).ActualIcon&lt;br /&gt;
|  Shows ListItem.ActualIcon for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(0).ActualIcon )&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Thumb&lt;br /&gt;
|  Shows ListItem.Thumb for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(0).Thumb )&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItemNoWrap(offset).Property&lt;br /&gt;
|  Basically returns the same as ListItem(offset) but it won&#039;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. &#039;&#039;Property&#039;&#039; has to be replaced with Label, Label2, Icon etc. &#039;&#039;( eg: Container(50).ListitemNoWrap(1).Plot )&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItemPosition(id).[infolabel]&lt;br /&gt;
|  Shows the infolabel for an item in a Container. the item id is the position in the container relative to the cursor position. &#039;&#039;( eg: Container(50).ListItemPosition(4).Genre )&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItemAbsolute(id).[infolabel]&lt;br /&gt;
|  Shows the infolabel for an item in a Container. the item id is the absolute position in the container. &#039;&#039;( eg: Container(50).ListItemAbsolute(4).Genre )&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Property(addoncategory)&lt;br /&gt;
|  Returns the current add-on category&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Property(reponame)&lt;br /&gt;
|  Returns the current add-on repository name&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.ViewCount&lt;br /&gt;
| The number of available skin view modes for the current container listing.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Control ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Control.GetLabel(id)[.index()]&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Fanart ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Color1&lt;br /&gt;
|  Returns the first of three colors included in the currently selected &#039;&#039;&#039;[[Fanart]]&#039;&#039;&#039; theme for the parent TV Show.  Colors are arranged Lightest to Darkest.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Color2&lt;br /&gt;
|  Returns the second of three colors included in the currently selected &#039;&#039;&#039;[[Fanart]]&#039;&#039;&#039; theme for the parent TV Show.  Colors are arranged Lightest to Darkest.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Color3&lt;br /&gt;
|  Returns the third of three colors included in the currently selected &#039;&#039;&#039;[[Fanart]]&#039;&#039;&#039; theme for the parent TV Show.  Colors are arranged Lightest to Darkest.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Game ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Game.Title&lt;br /&gt;
|  Name of the game&lt;br /&gt;
| v18&lt;br /&gt;
|-&lt;br /&gt;
|  Game.Platform&lt;br /&gt;
|  Platform the game runs on (eg. Atari 2600)&lt;br /&gt;
| v18&lt;br /&gt;
|-&lt;br /&gt;
|  Game.Genres&lt;br /&gt;
|  Gerne of the game (eg. Action)&lt;br /&gt;
| v18&lt;br /&gt;
|-&lt;br /&gt;
|  Game.Publisher&lt;br /&gt;
|  Publishing company of the game (eg. Nintendo)&lt;br /&gt;
| v18&lt;br /&gt;
|-&lt;br /&gt;
|  Game.Developer&lt;br /&gt;
|  Developer of the game&lt;br /&gt;
| v18&lt;br /&gt;
|-&lt;br /&gt;
|  Game.Overview&lt;br /&gt;
|  Game description&lt;br /&gt;
| v18&lt;br /&gt;
|-&lt;br /&gt;
|  Game.Year&lt;br /&gt;
|  Year the game was released&lt;br /&gt;
| v18&lt;br /&gt;
|-&lt;br /&gt;
|  Game.GameClient&lt;br /&gt;
|  Name of the used emulator&lt;br /&gt;
| v18&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== ListItem ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Label&lt;br /&gt;
|  Shows the left label of the currently selected item in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Label2&lt;br /&gt;
|  Shows the right label of the currently selected item in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Title&lt;br /&gt;
|  Shows the title of the currently selected song or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.OriginalTitle&lt;br /&gt;
|  Shows the original title of the currently selected movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.SortLetter&lt;br /&gt;
|  Shows the first letter of the current file in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.TrackNumber&lt;br /&gt;
|  Shows the track number of the currently selected song in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Artist&lt;br /&gt;
|  Shows the artist of the currently selected song in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AlbumArtist&lt;br /&gt;
|  Shows the artist of the currently selected album in a list&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Born)&lt;br /&gt;
|  Date of Birth of the currently selected Artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Died)&lt;br /&gt;
|  Date of Death of the currently selected Artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Formed)&lt;br /&gt;
|  Formation date of the currently selected Band&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Disbanded)&lt;br /&gt;
|  Disbanding date of the currently selected Band&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_YearsActive)&lt;br /&gt;
|  Years the currently selected artist has been active&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Instrument)&lt;br /&gt;
|  Instruments played by the currently selected artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Description)&lt;br /&gt;
|  Shows a biography of the currently selected artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Mood)&lt;br /&gt;
|  Shows the moods of the currently selected artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Style)&lt;br /&gt;
|  Shows the styles of the currently selected artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Genre)&lt;br /&gt;
|  Shows the genre of the currently selected artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Property(Artist_Sortname)&lt;br /&gt;
|  Sortname of the currently selected Artist&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Property(Artist_Type)&lt;br /&gt;
|  Type of the currently selected Artist - person, group, orchestra, choir etc.&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Property(Artist_Gender)&lt;br /&gt;
|  Gender of the currently selected Artist - male, female, other&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Property(Artist_Disambiguation)&lt;br /&gt;
|  Brief description of the currently selected Artist that differentiates them from others with the same name&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Album&lt;br /&gt;
|  Shows the album of the currently selected song in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Mood)&lt;br /&gt;
|  Shows the moods of the currently selected Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Style)&lt;br /&gt;
|  Shows the styles of the currently selected Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Theme)&lt;br /&gt;
|  Shows the themes of the currently selected Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Type)&lt;br /&gt;
|  Shows the Album Type (e.g. compilation, enhanced, explicit lyrics) of the currently selected Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Label)&lt;br /&gt;
|  Shows the record label of the currently selected Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Description)&lt;br /&gt;
|  Shows a review of the currently selected Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DiscNumber&lt;br /&gt;
|  Shows the disc number of the currently selected song in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Year&lt;br /&gt;
|  Shows the year of the currently selected song, album or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Premiered&lt;br /&gt;
|  Shows the release/aired date of the currently selected episode, show, movie or EPG item in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Genre&lt;br /&gt;
|  Shows the genre of the currently selected song, album or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Director&lt;br /&gt;
|  Shows the director of the currently selected movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Country&lt;br /&gt;
|  Shows the production country of the currently selected movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Episode&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Season&lt;br /&gt;
|  Shows the season value for the currently selected tvshow&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.TVShowTitle&lt;br /&gt;
|  Shows the name value for the currently selected tvshow in the season and episode depth of the video library&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(TotalSeasons)&lt;br /&gt;
|  Shows the total number of seasons for the currently selected tvshow&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(TotalEpisodes)&lt;br /&gt;
|  Shows the total number of episodes for the currently selected tvshow or season&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(WatchedEpisodes)&lt;br /&gt;
|  Shows the number of watched episodes for the currently selected tvshow or season&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(UnWatchedEpisodes)&lt;br /&gt;
|  Shows the number of unwatched episodes for the currently selected tvshow or season&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(NumEpisodes)&lt;br /&gt;
|  Shows the number of total, watched or unwatched episodes for the currently selected tvshow or season, based on the the current watched filter.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureAperture&lt;br /&gt;
|  Shows the F-stop used to take the selected picture. This is the value of the EXIF FNumber tag (hex code 0x829D).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureAuthor&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureByline&lt;br /&gt;
|  Shows the name of the person who created the selected picture.  This is the value of the IPTC Byline tag (hex code 0x50).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureBylineTitle&lt;br /&gt;
|  Shows the title of the person who created the selected picture. This is the value of the IPTC BylineTitle tag (hex code 0x55).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCamMake&lt;br /&gt;
|  Shows the manufacturer of the camera used to take the selected picture. This is the value of the EXIF Make tag (hex code 0x010F).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCamModel&lt;br /&gt;
|  Shows the manufacturer&#039;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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCaption&lt;br /&gt;
|  Shows a description of the selected picture. This is the value of the IPTC Caption tag (hex code 0x78).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCategory&lt;br /&gt;
|  Shows the subject of the selected picture as a category code. This is the value of the IPTC Category tag (hex code 0x0F).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCCDWidth&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCity&lt;br /&gt;
|  Shows the city where the selected picture was taken. This is the value of the IPTC City tag (hex code 0x5A).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureColour&lt;br /&gt;
|  Shows whether the selected picture is &amp;quot;Colour&amp;quot; or &amp;quot;Black and White&amp;quot;.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureComment&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCopyrightNotice&lt;br /&gt;
|  Shows the copyright notice of the selected picture. This is the value of the IPTC Copyright tag (hex code 0x74).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCountry&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCountryCode&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCredit&lt;br /&gt;
|  Shows who provided the selected picture. This is the value of the IPTC Credit tag (hex code 0x6E).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDate&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDatetime&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDesc&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDigitalZoom&lt;br /&gt;
|  Shows the digital zoom ratio when the selected picture was taken. This is the value of the EXIF DigitalZoomRatio tag (hex code 0xA404).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExpMode&lt;br /&gt;
|  Shows the exposure mode of the selected picture. The possible values are &amp;quot;Automatic&amp;quot;, &amp;quot;Manual&amp;quot;, and &amp;quot;Auto bracketing&amp;quot;. This is the value of the EXIF ExposureMode tag (hex code 0xA402).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExposure&lt;br /&gt;
|  Shows the class of the program used by the camera to set exposure when the selected picture was taken. Values include &amp;quot;Manual&amp;quot;, &amp;quot;Program (Auto)&amp;quot;, &amp;quot;Aperture priority (Semi-Auto)&amp;quot;, &amp;quot;Shutter priority (semi-auto)&amp;quot;, etc. This is the value of the EXIF ExposureProgram tag (hex code 0x8822).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExposureBias&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExpTime&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureFlashUsed&lt;br /&gt;
|  Shows the status of flash when the selected picture was taken. The value will be either &amp;quot;Yes&amp;quot; or &amp;quot;No&amp;quot;, and might include additional information. This is the value of the EXIF Flash tag (hex code 0x9209).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureFocalLen&lt;br /&gt;
|  Shows the lens focal length of the selected picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureFocusDist&lt;br /&gt;
|  Shows the focal length of the lens, in mm. This is the value of the EXIF FocalLength tag (hex code 0x920A).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureGPSLat&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureGPSLon&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureGPSAlt&lt;br /&gt;
|  Shows the altitude in meters where the selected picture was taken. This is the value of the EXIF GPSInfo.GPSAltitude tag.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureHeadline&lt;br /&gt;
|  Shows a synopsis of the contents of the selected picture. This is the value of the IPTC Headline tag (hex code 0x69).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureImageType&lt;br /&gt;
|  Shows the color components of the selected picture. This is the value of the IPTC ImageType tag (hex code 0x82).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureIPTCDate&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureIPTCTime&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureISO&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureKeywords&lt;br /&gt;
|  Shows keywords assigned to the selected picture. This is the value of the IPTC Keywords tag (hex code 0x19).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureLightSource&lt;br /&gt;
|  Shows the kind of light source when the picture was taken. Possible values include &amp;quot;Daylight&amp;quot;, &amp;quot;Fluorescent&amp;quot;, &amp;quot;Incandescent&amp;quot;, etc. This is the value of the EXIF LightSource tag (hex code 0x9208).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureLongDate&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureLongDatetime&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureMeteringMode&lt;br /&gt;
|  Shows the metering mode used when the selected picture was taken. The possible values are &amp;quot;Center weight&amp;quot;, &amp;quot;Spot&amp;quot;, or &amp;quot;Matrix&amp;quot;. This is the value of the EXIF MeteringMode tag (hex code 0x9207).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureObjectName&lt;br /&gt;
|  Shows a shorthand reference for the selected picture. This is the value of the IPTC ObjectName tag (hex code 0x05).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureOrientation&lt;br /&gt;
|  Shows the orientation of the selected picture. Possible values are &amp;quot;Top Left&amp;quot;, &amp;quot;Top Right&amp;quot;, &amp;quot;Left Top&amp;quot;, &amp;quot;Right Bottom&amp;quot;, etc. This is the value of the EXIF Orientation tag (hex code 0x0112).&lt;br /&gt;
|&lt;br /&gt;
|-     &lt;br /&gt;
|  ListItem.PicturePath&lt;br /&gt;
|  Shows the filename and path of the selected picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureProcess&lt;br /&gt;
|  Shows the process used to compress the selected picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureReferenceService&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureResolution&lt;br /&gt;
|  Shows the dimensions of the selected picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSource&lt;br /&gt;
|  Shows the original owner of the selected picture. This is the value of the IPTC Source tag (hex code 0x73).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSpecialInstructions&lt;br /&gt;
|  Shows other editorial instructions concerning the use of the selected picture. This is the value of the IPTC SpecialInstructions tag (hex code 0x28).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureState&lt;br /&gt;
|  Shows the State/Province where the selected picture was taken. This is the value of the IPTC ProvinceState tag (hex code 0x5F).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSublocation&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSupplementalCategories&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureTransmissionReference&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureUrgency&lt;br /&gt;
|  Shows the urgency of the selected picture. Values are 1-9. The &amp;quot;1&amp;quot; is most urgent. Some image management programs use urgency to indicate picture rating, where urgency &amp;quot;1&amp;quot; is 5 stars and urgency &amp;quot;5&amp;quot; is 1 star. Urgencies 6-9 are not used for rating. This is the value of the IPTC Urgency tag (hex code 0x0A).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureWhiteBalance&lt;br /&gt;
|  Shows the white balance mode set when the selected picture was taken. The possible values are &amp;quot;Manual&amp;quot; and &amp;quot;Auto&amp;quot;. This is the value of the EXIF WhiteBalance tag (hex code 0xA403).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FileName&lt;br /&gt;
|  Shows the filename of the currently selected song or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Path&lt;br /&gt;
|  Shows the complete path of the currently selected song or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FolderName&lt;br /&gt;
|  Shows top most folder of the path of the currently selected song or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FolderPath&lt;br /&gt;
|  Shows the complete path of the currently selected song or movie in a container (without user details).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FileNameAndPath&lt;br /&gt;
|  Shows the full path with filename of the currently selected song or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FileExtension&lt;br /&gt;
|  Shows the file extension (without leading dot) of the currently selected item in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Date&lt;br /&gt;
|  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)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DateAdded&lt;br /&gt;
|  Shows the date the currently selected item was added to the library / Date and time of an event in the EventLog window.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Size&lt;br /&gt;
|  Shows the file size of the currently selected song or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Rating[(name)]&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Set&lt;br /&gt;
|  Shows the name of the set the movie is part of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.SetId&lt;br /&gt;
|  Shows the id of the set the movie is part of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.UserRating&lt;br /&gt;
|  Shows the user rating of the currently selected item in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Votes[(name)]&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.RatingAndVotes[(name)]&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Mpaa&lt;br /&gt;
|  Show the MPAA rating of the currently selected movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ProgramCount&lt;br /&gt;
|  Shows the number of times an xbe has been run from &amp;quot;my programs&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Duration[(format)]&lt;br /&gt;
|  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). &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DBTYPE&lt;br /&gt;
|  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 &amp;quot;*all seasons&amp;quot; entry does give a DBTYPE &amp;quot;season&amp;quot; and a DBID, but you can&#039;t get the details of that entry since it&#039;s a virtual entry in the Video Library.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DBID&lt;br /&gt;
|  Shows the database id of the currently selected listitem in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Cast&lt;br /&gt;
|  Shows a concatenated string of cast members of the currently selected movie, for use in dialogvideoinfo.xml&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.CastAndRole&lt;br /&gt;
|  Shows a concatenated string of cast members and roles of the currently selected movie, for use in dialogvideoinfo.xml&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Studio&lt;br /&gt;
|  Studio of current selected Music Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Top250&lt;br /&gt;
|  Shows the IMDb top250 position of the currently selected listitem in a container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Trailer&lt;br /&gt;
|  Shows the full trailer path with filename of the currently selected movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Writer&lt;br /&gt;
|  Name of Writer of current Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Tagline&lt;br /&gt;
|  Small Summary of current Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PlotOutline&lt;br /&gt;
|  Small Summary of current Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Plot&lt;br /&gt;
|  Complete Text Summary of Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.IMDBNumber&lt;br /&gt;
|  The IMDB iD of the selected Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EpisodeName&lt;br /&gt;
|  (PVR only) The name of the episode if the selected EPG item is a TV Show&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PercentPlayed&lt;br /&gt;
|  Returns percentage value [0-100] of how far the selected video has been played&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.LastPlayed&lt;br /&gt;
|  Last play date of Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PlayCount&lt;br /&gt;
|  Playcount of Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartTime&lt;br /&gt;
|  Start time of current selected TV programme in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EndTime&lt;br /&gt;
|  End time of current selected TV programme in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartDate&lt;br /&gt;
|  Start date of current selected TV programme in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelName&lt;br /&gt;
|  Name of current selected TV channel in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.VideoCodec&lt;br /&gt;
|  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)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.VideoResolution&lt;br /&gt;
|  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.&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.VideoAspect&lt;br /&gt;
|  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)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AudioCodec&lt;br /&gt;
|  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)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AudioChannels&lt;br /&gt;
|  Shows the number of audio channels of the currently selected video (possible values: 1, 2, 4, 5, 6, 7, 8, 10)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AudioLanguage&lt;br /&gt;
|  Shows the audio language of the currently selected video (returns an ISO 639-2 three character code, e.g. eng, epo, deu)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.SubtitleLanguage&lt;br /&gt;
|  Shows the subtitle language of the currently selected video (returns an ISO 639-2 three character code, e.g. eng, epo, deu)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(AudioCodec.[n])&lt;br /&gt;
|  Shows the audio codec of the currently selected video, &#039;n&#039; defines the number of the audiostream (values: see ListItem.AudioCodec)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(AudioChannels.[n])&lt;br /&gt;
|  Shows the number of audio channels of the currently selected video, &#039;n&#039; defines the number of the audiostream (values: see ListItem.AudioChannels)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(AudioLanguage.[n])&lt;br /&gt;
|  Shows the audio language of the currently selected video, &#039;n&#039; defines the number of the audiostream (values: see ListItem.AudioLanguage)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(SubtitleLanguage.[n])&lt;br /&gt;
|  Shows the subtitle language of the currently selected video, &#039;n&#039; defines the number of the subtitle (values: see ListItem.SubtitleLanguage)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonName&lt;br /&gt;
|  Shows the name of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonVersion&lt;br /&gt;
|  Shows the version of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonSummary&lt;br /&gt;
|  Shows a short description of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonDescription&lt;br /&gt;
|  Shows the full description of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonType&lt;br /&gt;
|  Shows the type (screensaver, script, skin, etc...) of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonCreator&lt;br /&gt;
|  Shows the name of the author the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonDisclaimer&lt;br /&gt;
|  Shows the disclaimer of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonBroken&lt;br /&gt;
|  Shows a message when the addon is marked as broken in the repo&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Changelog)&lt;br /&gt;
|  Shows the changelog of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.ID)&lt;br /&gt;
|  Shows the identifier of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Status)&lt;br /&gt;
|  Shows the status of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Path)&lt;br /&gt;
|  Shows the path of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartTime&lt;br /&gt;
|  Start time of the selected item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EndTime&lt;br /&gt;
|  End time of the selected item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartDate&lt;br /&gt;
|  Start date of the selected item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EndDate&lt;br /&gt;
|  End date of the selected item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextTitle&lt;br /&gt;
|  Title of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextGenre&lt;br /&gt;
|  Genre of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextPlot&lt;br /&gt;
|  Plot of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextPlotOutline&lt;br /&gt;
|  Plot outline of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextStartTime&lt;br /&gt;
|  Start time of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextEndTime&lt;br /&gt;
|  End of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextStartDate&lt;br /&gt;
|  Start date of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextEndDate&lt;br /&gt;
|  End date of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.NextDuration&lt;br /&gt;
|  Duration of the next item (PVR).&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelName&lt;br /&gt;
|  Channelname of the selected item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelNumber&lt;br /&gt;
|  Channel number of the selected item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelNumberLabel&lt;br /&gt;
|  Channel and subchannel number of the currently selected channel that&#039;s currently playing (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Progress&lt;br /&gt;
|  Part of the programme that&#039;s been played (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StereoscopicMode&lt;br /&gt;
|  Returns the stereomode of the selected video (i.e. mono, split_vertical, split_horizontal, row_interleaved, anaglyph_cyan_red, anaglyph_green_magenta)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Comment&lt;br /&gt;
|  Comment assigned to the item (PVR/MUSIC).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonInstallDate&lt;br /&gt;
| Date the addon was installed&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonLastUpdated&lt;br /&gt;
| Date the addon was last updated&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonLastUsed&lt;br /&gt;
| Date the addon was used last&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonNews&lt;br /&gt;
| Returns a brief changelog, taken from the addons&#039; addon.xml file&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonSize&lt;br /&gt;
| Filesize of the addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Contributors&lt;br /&gt;
| List of all people who&#039;ve contributed to the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ContributorAndRole&lt;br /&gt;
| List of all people and their role who&#039;ve contributed to the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EndTimeResume&lt;br /&gt;
| Returns the time a video will end if you resume it, instead of playing it from the beginning.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Mood&lt;br /&gt;
| Mood of the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Status&lt;br /&gt;
| For use with tv shows. It can return one of the following: &#039;returning series&#039;,&#039;in production&#039;,&#039;planned&#039;,&#039;cancelled&#039; or &#039;ended&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Tag&lt;br /&gt;
| Will return the name of the &#039;tag&#039; this movie is part of.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Arranger)&lt;br /&gt;
| Returns the name of the person who arranged the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Composer)&lt;br /&gt;
| Returns the name of the person who composed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Conductor)&lt;br /&gt;
| Returns the name of the person who conducted the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.DJMixer)&lt;br /&gt;
| Returns the name of the dj who remixed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Engineer)&lt;br /&gt;
| Returns the name of the person who was the engineer of the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Lyricist)&lt;br /&gt;
| Returns the name of the person who wrote the lyrics of the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Mixer)&lt;br /&gt;
| Returns the name of the person who mixed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Orchestra)&lt;br /&gt;
| Returns the name of the orchestra performing the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Producer)&lt;br /&gt;
| Returns the name of the person who produced the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Remixer)&lt;br /&gt;
| Returns the name of the person who remixed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Appearances&lt;br /&gt;
| Returns the number of movies featuring the selected actor / directed by the selected director&lt;br /&gt;
| v17 addition&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PrivacyPolicy&lt;br /&gt;
| Returns the official Kodi privacy-policy&lt;br /&gt;
| v17 addition&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Property(game.videofilter)&lt;br /&gt;
|  Name of the video filter (eg. Bilinear)&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Property(game.stretchmode)&lt;br /&gt;
|  Name of the stretch mode (eg. Stretch 4:3)&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Property(game.videorotation)&lt;br /&gt;
|  Angle of the rotation&lt;br /&gt;
|  v18&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Musicpartymode labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.SongsPlayed&lt;br /&gt;
|  Number of songs played during Party Mode&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.MatchingSongs&lt;br /&gt;
|  Number of songs available to Party Mode&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.MatchingSongsPicked&lt;br /&gt;
|  Number of songs picked already for Party Mode&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.MatchingSongsLeft&lt;br /&gt;
|  Number of songs left to be picked from for Party Mode&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.RelaxedSongsPicked&lt;br /&gt;
|  Not currently used&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.RandomSongsPicked&lt;br /&gt;
|  Number of unique random songs picked during Party Mode&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Network labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Network.IsDHCP&lt;br /&gt;
|  Network type is DHCP or FIXED&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.IPAddress&lt;br /&gt;
|  The system&#039;s IP Address (&amp;lt;ipaddress&amp;gt; is returned as a string)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.LinkState&lt;br /&gt;
|  Network linkstate e.g. 10mbit/100mbit etc.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.MacAddress&lt;br /&gt;
|  The system&#039;s  mac address&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.SubnetMask&lt;br /&gt;
|  Network subnet mask&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.GatewayAddress&lt;br /&gt;
|  Network gateway address&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.DNS1Address&lt;br /&gt;
|  Network dns server 1 address&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.DNS2Address&lt;br /&gt;
|  Network dns server 2 address&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.DHCPAddress&lt;br /&gt;
|  DHCP server ip address&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Player labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Player.FinishTime&lt;br /&gt;
|  Time playing media will end&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.FinishTime(format)&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Chapter&lt;br /&gt;
|  Current chapter of current playing media&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.ChapterCount&lt;br /&gt;
|  Total number of chapters of current playing media&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Time&lt;br /&gt;
|  Elapsed time of current playing media&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Time(format)&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.TimeRemaining&lt;br /&gt;
|  Remaining time of current playing media&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.TimeRemaining(format)&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Duration&lt;br /&gt;
|  Total duration of the current playing media&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Duration(format)&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekTime&lt;br /&gt;
|  Time to which the user is seeking&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekOffset&lt;br /&gt;
|  Indicates the seek offset after a seek press (eg user presses BigStepForward, player.seekoffset returns +10:00)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekOffset(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekStepSize&lt;br /&gt;
|  Displays the seek step size. (v15 addition)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.ProgressCache&lt;br /&gt;
|  Shows how much of the file is cached above current play percentage&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Folderpath&lt;br /&gt;
|  Shows the full path of the currently playing song or movie&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Filenameandpath&lt;br /&gt;
|  Shows the full path with filename of the currently playing song or movie&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.StartTime&lt;br /&gt;
|  Returns the starttime (from the epg) of a tv program, for all other videos it will return the time you started watching this video.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.StartTime(format)&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Title&lt;br /&gt;
|  Returns the musicplayer title for audio and the videoplayer title for videos.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Filename&lt;br /&gt;
|  Returns the filename of the currently playing media.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Volume&lt;br /&gt;
| Returns the volume level in dB&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(AudioBitsPerSample)&lt;br /&gt;
| Bits per sample of the currently playing item&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(AudioChannels)&lt;br /&gt;
| Number of audiochannels of the currently playing item&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(AudioDecoder)&lt;br /&gt;
| Audiodecoder name of the currently playing item&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(AudioSamplerate)&lt;br /&gt;
| Samplerate  f the currently playing item&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(DeintMethod)&lt;br /&gt;
| Deinterlace method of the currently playing video&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(PixFormat)&lt;br /&gt;
| Pixel format of the currently playing video&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(VideoDAR)&lt;br /&gt;
| Display aspect ratio of the currently playing video&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(VideoFPS)&lt;br /&gt;
| Video framerate of the currently playing video&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(VideoHeight)&lt;br /&gt;
| Height of the currently playing video&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(VideoDecoder)&lt;br /&gt;
| Videodecoder name of the currently playing video&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(VideoWidth)&lt;br /&gt;
| Width of the currently playing video&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Music player ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Title&lt;br /&gt;
|  Title of the currently playing song,  also available are &amp;quot;MusicPlayer.offset(number).Title&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Title&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Album&lt;br /&gt;
|  Album from which the current song is from,   also available are &amp;quot;MusicPlayer.offset(number).Album&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Album&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Mood)&lt;br /&gt;
|  Shows the moods of the currently playing Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Style)&lt;br /&gt;
|  Shows the styles of the currently playing Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Theme)&lt;br /&gt;
|  Shows the themes of the currently playing Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Type)&lt;br /&gt;
|  Shows the Album Type (e.g. compilation, enhanced, explicit lyrics) of the currently playing Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Label)&lt;br /&gt;
|  Shows the record label of the currently playing Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Description)&lt;br /&gt;
|  Shows a review of the currently playing Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Artist&lt;br /&gt;
|  Artist(s) of current song,  also available are &amp;quot;MusicPlayer.offset(number).Artist&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Artist&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Born)&lt;br /&gt;
|  Date of Birth of the currently playing Artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Died)&lt;br /&gt;
|  Date of Death of the currently playing Artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Formed)&lt;br /&gt;
|  Formation date of the currently playing Artist/Band&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Disbanded)&lt;br /&gt;
|  Disbanding date of the currently playing Artist/Band&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_YearsActive)&lt;br /&gt;
|  Years the currently Playing artist has been active&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Instrument)&lt;br /&gt;
|  Instruments played by the currently playing artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Description)&lt;br /&gt;
|  Shows a biography of the currently playing artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Mood)&lt;br /&gt;
|  Shows the moods of the currently playing artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Style)&lt;br /&gt;
|  Shows the styles of the currently playing artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Genre)&lt;br /&gt;
|  Shows the genre of the currently playing artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Sortname)&lt;br /&gt;
|  Sortname of the currently playing Artist&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Type)&lt;br /&gt;
|  Type of the currently playing Artist - person, group, orchestra, choir etc.&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Gender)&lt;br /&gt;
|  Gender of the currently playing Artist - male, female, other&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Disambiguation)&lt;br /&gt;
|  Brief description of the currently playing Artist that differentiates them from others with the same name&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Genre&lt;br /&gt;
|  Genre(s) of current song,  also available are &amp;quot;MusicPlayer.offset(number).Genre&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Genre&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Lyrics&lt;br /&gt;
|  Lyrics of current song stored in ID tag info&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Year&lt;br /&gt;
|  Year of release of current song,  also available are &amp;quot;MusicPlayer.offset(number).Year&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Year&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Rating&lt;br /&gt;
|  Numeric Rating of current song,  also available are &amp;quot;MusicPlayer.offset(number).Rating&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Rating&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.DiscNumber&lt;br /&gt;
|  Disc Number of current song stored in ID tag info,  also available are &amp;quot;MusicPlayer.offset(number).DiscNumber&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).DiscNumber&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Comment&lt;br /&gt;
|  Comment of current song stored in ID tag info,  also available are &amp;quot;MusicPlayer.offset(number).Comment&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Comment&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Time&lt;br /&gt;
|  Current time in song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.TimeRemaining&lt;br /&gt;
|  Current remaining time in song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.TimeSpeed&lt;br /&gt;
|  Both the time and the playspeed formatted up. eg 1:23 (2x)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.TrackNumber&lt;br /&gt;
|  Track number of current song,   also available are &amp;quot;MusicPlayer.offset(number).TrackNumber&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).TrackNumber&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Duration&lt;br /&gt;
|  Duration of current song,   also available are &amp;quot;MusicPlayer.offset(number).Duration&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Duration&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.BitRate&lt;br /&gt;
|  Bitrate of current song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Channels&lt;br /&gt;
|  Number of channels of current song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.BitsPerSample&lt;br /&gt;
|  Number of bits per sample of current song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.SampleRate&lt;br /&gt;
|  Samplerate of current song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Codec&lt;br /&gt;
|  Codec of current song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.PlaylistPosition&lt;br /&gt;
|  Position of the current song in the current music playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.PlaylistLength&lt;br /&gt;
|  Total size of the current music playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ChannelName&lt;br /&gt;
|  Channel name of the radio programme that&#039;s currently playing (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ChannelNumberLabel&lt;br /&gt;
|  Channel and subchannel number of the radio channel that&#039;s currently playing (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ChannelGroup&lt;br /&gt;
|  Channel group of  of the radio programme that&#039;s currently playing (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Contributors&lt;br /&gt;
| List of all people who&#039;ve contributed to the currently playing song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ContributorAndRole&lt;br /&gt;
| List of all people and their role who&#039;ve contributed to the currently playing song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Mood&lt;br /&gt;
| Mood of the currently playing song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Arranger)&lt;br /&gt;
| Returns the name of the person who arranged the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Composer)&lt;br /&gt;
| Returns the name of the person who composed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Conductor)&lt;br /&gt;
| Returns the name of the person who conducted the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.DJMixer)&lt;br /&gt;
| Returns the name of the dj who remixed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Engineer)&lt;br /&gt;
| Returns the name of the person who was the engineer of the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Lyricist)&lt;br /&gt;
| Returns the name of the person who wrote the lyrics of the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Mixer)&lt;br /&gt;
| Returns the name of the person who mixed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Orchestra)&lt;br /&gt;
| Returns the name of the orchestra performing the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Producer)&lt;br /&gt;
| Returns the name of the person who produced the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Remixer)&lt;br /&gt;
| Returns the name of the person who remixed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.UserRating&lt;br /&gt;
| The rating the user gave to the currently playing song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.DBID&lt;br /&gt;
| The database id of the currently playing song&lt;br /&gt;
| v17 Addition&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Video player ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Time&lt;br /&gt;
|  Current time in movie&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.TimeRemaining&lt;br /&gt;
|  Current remaining time in movie&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.TimeSpeed&lt;br /&gt;
|  Current time + playspeed. eg 1:23:14 (-4x)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Duration&lt;br /&gt;
|  Length of current movie&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Title&lt;br /&gt;
|  Title of currently playing video. If it&#039;s in the database it will return the database title, else the filename&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.TVShowTitle&lt;br /&gt;
|  Title of currently playing episode&#039;s tvshow name&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Season&lt;br /&gt;
|  Season number of the currently playing episode, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Episode&lt;br /&gt;
|  Episode number of the currently playing episode&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Genre&lt;br /&gt;
|  Genre(s) of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Director&lt;br /&gt;
|  Director of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Country&lt;br /&gt;
|  Production country of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Year&lt;br /&gt;
|  Year of release of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Rating&lt;br /&gt;
|  IMDb user rating of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.UserRating&lt;br /&gt;
|  Shows the user rating of the currently playing item&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Votes&lt;br /&gt;
|  IMDb votes of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.RatingAndVotes&lt;br /&gt;
|  IMDb user rating and votes of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.mpaa&lt;br /&gt;
|  MPAA rating of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.IMDBNumber&lt;br /&gt;
|  The IMDB iD of the current video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.EpisodeName&lt;br /&gt;
|  (PVR only) The name of the episode if the playing video is a TV Show, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.PlaylistPosition&lt;br /&gt;
|  Position of the current song in the current video playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.PlaylistLength&lt;br /&gt;
|  Total size of the current video playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Cast&lt;br /&gt;
|  A concatenated string of cast members of the current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.CastAndRole&lt;br /&gt;
|  A concatenated string of cast members and roles of the current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Album&lt;br /&gt;
|  Album from which the current Music Video is from, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Artist&lt;br /&gt;
|  Artist(s) of current Music Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Studio&lt;br /&gt;
|  Studio of current Music Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Writer&lt;br /&gt;
|  Name of Writer of current playing Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Tagline&lt;br /&gt;
|  Small Summary of current playing Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.PlotOutline&lt;br /&gt;
|  Small Summary of current playing Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Plot&lt;br /&gt;
|  Complete Text Summary of current playing Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.LastPlayed&lt;br /&gt;
|  Last play date of current playing Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|- class=&amp;quot;userrow&lt;br /&gt;
|  VideoPlayer.PlayCount&lt;br /&gt;
|  Playcount of current playing Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|- class=&amp;quot;userrow&lt;br /&gt;
|  VideoPlayer.VideoCodec&lt;br /&gt;
|  Shows the video codec of the currently playing video (common values: see ListItem.VideoCodec)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.VideoResolution&lt;br /&gt;
|  Shows the video resolution of the currently playing video (possible values: see ListItem.VideoResolution)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.VideoAspect&lt;br /&gt;
|  Shows the aspect ratio of the currently playing video (possible values: see ListItem.VideoAspect)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.AudioCodec&lt;br /&gt;
|  Shows the audio codec of the currently playing video, optionally &#039;n&#039; defines the number of the audiostream (common values: see ListItem.AudioCodec)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.AudioChannels&lt;br /&gt;
|  Shows the number of audio channels of the currently playing video (possible values: see ListItem.AudioChannels)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.AudioLanguage&lt;br /&gt;
|  Shows the language of the audio of the currently playing video(possible values: see ListItem.AudioLanguage)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.SubtitlesLanguage&lt;br /&gt;
|  Shows the language of the subtitle of the currently playing video (possible values: see ListItem.SubtitlesLanguage)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.StereoscopicMode&lt;br /&gt;
|  Shows the stereoscopic mode of the currently playing video (possible values: see ListItem.StereoscopicMode)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.EndTime&lt;br /&gt;
|  End date of the currently playing programme (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextTitle&lt;br /&gt;
|  Title of the programme that will be played next (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextGenre&lt;br /&gt;
|  Genre of the programme that will be played next (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextPlot&lt;br /&gt;
|  Plot of the programme that will be played next (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextPlotOutline&lt;br /&gt;
|  Plot outline of the programme that will be played next (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextStartTime&lt;br /&gt;
|  Start time of the programme that will be played next (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextEndTime&lt;br /&gt;
|  End time of the programme that will be played next (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextDuration&lt;br /&gt;
|  Duration of the programme that will be played next (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ChannelName&lt;br /&gt;
|  Name of the curently tuned channel (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ChannelNumberLabel&lt;br /&gt;
|  Channel and subchannel number of the tv channel that&#039;s currently playing (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ChannelGroup&lt;br /&gt;
|  Group of the curently tuned channel (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ParentalRating&lt;br /&gt;
|  Parental rating of the currently playing programme (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.DBID&lt;br /&gt;
| The database id of the currently playing video&lt;br /&gt;
| v17 Addition&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Playlist ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Length(media)&lt;br /&gt;
|  Total size of the current playlist. optional parameter media is either video or music.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Position(media)&lt;br /&gt;
|  Position of the current item in the current playlist. optional parameter media is either video or music.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Random&lt;br /&gt;
|  Returns &#039;On&#039; or &#039;Off&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Repeat&lt;br /&gt;
|  Returns string ID&#039;s 592 (Repeat One), 593 (Repeat All), or 594 (Repeat Off)&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== PVR ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.NowRecordingTitle&lt;br /&gt;
|  Title of the programme being recorded&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.NowRecordingDateTime&lt;br /&gt;
|  Start date and time of the current recording&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.NowRecordingChannel&lt;br /&gt;
|  Channel number that&#039;s being recorded&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.NextRecordingTitle&lt;br /&gt;
|  Title of the next programme that will be recorded&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.NextRecordingDateTime&lt;br /&gt;
|  Start date and time of the next recording&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.NextRecordingChannel&lt;br /&gt;
|  Channel name of the next recording&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendName&lt;br /&gt;
|  Name of the backend being used&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendVersion&lt;br /&gt;
|  Version of the backend that&#039;s being used&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendHost&lt;br /&gt;
|  Backend hostname&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendDiskSpace&lt;br /&gt;
|  Available diskspace on the backend&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendChannels&lt;br /&gt;
|  Number of available channels the backend provides&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendTimers&lt;br /&gt;
|  Number of timers set for the backend&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendRecordings&lt;br /&gt;
|  Number of recording available on the backend&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
|  PVR.BackendDiskspace&lt;br /&gt;
|  Free diskspace available for recordings on the backend&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendNumber&lt;br /&gt;
|  Backend number&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TotalDiscSpace&lt;br /&gt;
|  Total diskspace available for recordings&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.NextTimer&lt;br /&gt;
|  Next timer date&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.EpgEventDuration[(format)]&lt;br /&gt;
|  Returns the duration of the currently played title on TV. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.EpgEventElapsedTime[(format)]&lt;br /&gt;
|  Returns the time position of the currently played title on TV. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.EpgEventRemainingTime[(format)]&lt;br /&gt;
|  Returns the remaining time for currently playing epg event. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.EpgEventFinishTime[(format)]&lt;br /&gt;
|  Returns the time the currently playing epg event will end. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.EpgEventSeekTime[(format)]&lt;br /&gt;
|  Returns the seek time of the currently playing epg event. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.EpgEventProgress&lt;br /&gt;
|  Returns the position of currently played title on TV as integer&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeShiftStart[(format)]&lt;br /&gt;
|  Start position of the timeshift. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeShiftEnd[(format)]&lt;br /&gt;
|  End position of the timeshift. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeShiftCur[(format)]&lt;br /&gt;
|  Current position of the timeshift. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeShiftOffset[(format)]&lt;br /&gt;
|  Current offset of the timeshift. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeShiftProgress&lt;br /&gt;
|  Returns the position of currently timeshifted title on TV as interger&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamClient&lt;br /&gt;
| Stream client name&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamDevice&lt;br /&gt;
| Stream device name&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamStatus&lt;br /&gt;
| Status of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamSignal&lt;br /&gt;
| Signal quality of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamSnr&lt;br /&gt;
| Signal to noise ratio of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamBer&lt;br /&gt;
| Bit error rate of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamUnc&lt;br /&gt;
| UNC value of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamVideoBitRate&lt;br /&gt;
| Video bitrate of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamAudioBitRate&lt;br /&gt;
| Audio bitrate of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamDolbyBitRate&lt;br /&gt;
| Dolby bitrate of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamProgrSignal&lt;br /&gt;
| Signal quality of the programme&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamProgrSnr&lt;br /&gt;
| Signal to noise ratio of the programme&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamEncryptionName&lt;br /&gt;
| Encryption used on the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNowRecordingTitle&lt;br /&gt;
| Title of the tv programme being recorded&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNowRecordingDateTime&lt;br /&gt;
| Start date and time of the current tv recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNowRecordingChannel&lt;br /&gt;
| Channel name of the current tv recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNowRecordingChannelIcon&lt;br /&gt;
| Icon of the current recording TV channel&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNextRecordingTitle&lt;br /&gt;
| Title of the next tv programme that will be recorded&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNextRecordingDateTime&lt;br /&gt;
| Start date and time of the next tv recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNextRecordingChannel&lt;br /&gt;
| Channel name of the next tv recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNextRecordingChannelIcon&lt;br /&gt;
| Icon of the next recording tv channel&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.RadioNowRecordingTitle&lt;br /&gt;
| Title of the radio programme being recorded&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.RadioNowRecordingDateTime&lt;br /&gt;
| Start date and time of the current radio recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.RadioNowRecordingChannel&lt;br /&gt;
| Channel name of the current radio recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.RadioNowRecordingChannelIcon&lt;br /&gt;
| Icon of the current recording radio channel&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.RadioNextRecordingTitle&lt;br /&gt;
| Title of the next radio programme that will be recorded&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.RadioNextRecordingDateTime&lt;br /&gt;
| Start date and time of the next radio recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.RadioNextRecordingChannel&lt;br /&gt;
| Channel name of the next radio recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.ChannelNumberInput&lt;br /&gt;
|  Label displaying the number the user entered on remote or keyboard&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressDuration&lt;br /&gt;
|  Returns the duration of the PVR timeshift progress in the format hh:mm:ss. hh: will be omitted if hours value is zero&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressDuration(format)&lt;br /&gt;
|  Returns the duration of the PVR timeshift progress in different formats, hours (hh), minutes (mm) or seconds (ss)&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressStartTime&lt;br /&gt;
|  Returns the start time of the PVR timeshift progress in the format hh:mm:ss. hh: will be omitted if hours value is zero&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressStartTime(format)&lt;br /&gt;
|  Returns the start time of the PVR timeshift progress in different formats, hours (hh), minutes (mm) or seconds (ss)&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressEndTime&lt;br /&gt;
|  Returns the end time of the PVR timeshift progress in the format hh:mm:ss. hh: will be omitted if hours value is zero&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressEndTime(format)&lt;br /&gt;
|  Returns the end time of the PVR timeshift progress in different formats, hours (hh), minutes (mm) or seconds (ss)&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressPlayPos&lt;br /&gt;
|  Returns the percentage of the current play position within the PVR timeshift progress&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressEpgStart&lt;br /&gt;
|  Returns the percentage of the start of the currently playing epg event within the PVR timeshift progress&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressEpgEnd&lt;br /&gt;
|  Returns the percentage of the end of the currently playing epg event within the PVR timeshift progress&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressBufferStart&lt;br /&gt;
|  Returns the percentage of the start of the timeshift buffer within the PVR timeshift progress&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressBufferEnd&lt;br /&gt;
|  Returns the percentage of the end of the timeshift buffer within the PVR timeshift progress&lt;br /&gt;
|  v18&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== RDS ===&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  RDS.AudioLanguage&lt;br /&gt;
|  The from RDS reported audio language of channel&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ChannelCountry&lt;br /&gt;
|  Country where the radio channel is sended&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.GetLine(number)&lt;br /&gt;
|  Returns the last sended RDS text messages on givern number, 0 is thelast and 4 rows are supported (0-3)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.Title&lt;br /&gt;
|  Title of item; e.g. track title of an album (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.Artist&lt;br /&gt;
|  A person or band/collective generally considered responsible for the work (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.Band&lt;br /&gt;
|  Band/orchestra/accompaniment/musician (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.Composer&lt;br /&gt;
|  Name of the original composer/author (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.Conductor&lt;br /&gt;
|  The artist(s) who performed the work. In classical music this would bethe conductor (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.Album&lt;br /&gt;
|  The collection name to which this track belongs (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.TrackNumber&lt;br /&gt;
|  The track number of the item on the album on which it was originallyreleased. (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.RadioStyle&lt;br /&gt;
|  The from radio channel used style of currently played part, e.g &amp;quot;popmusic&amp;quot;, &amp;quot;news&amp;quot; or &amp;quot;weather&amp;quot;&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.Comment&lt;br /&gt;
|  Radio station comment string if available (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoNews&lt;br /&gt;
|  Message / headline (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoNewsLocal&lt;br /&gt;
|  Local information news sended from radio channel (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoStock&lt;br /&gt;
|  Quote information; either as one part or as several distinct parts:&amp;quot;name 99latest value 99change 99high 99low 99volume&amp;quot; (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoStockSize&lt;br /&gt;
|  Number of rows present in stock information (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoSport&lt;br /&gt;
|  Result of a game; either as one part or as several distinct parts:&amp;quot;match 99result&amp;quot;, e.g. &amp;quot;Bayern München : Borussia 995:5&amp;quot;  (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoSportSize&lt;br /&gt;
|  Number of rows present in sport information (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoLottery&lt;br /&gt;
|  Raffle / lottery: &amp;quot;key word 99values&amp;quot; (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoLotterySize&lt;br /&gt;
|  Number of rows present in lottery information (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoWeather&lt;br /&gt;
|  Weather informations sended from radio channel (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoWeatherSize&lt;br /&gt;
|  Number of rows present in weather information (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoCinema&lt;br /&gt;
|  Information about movies in cinema (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoCinemaSize&lt;br /&gt;
|  Number of rows present in cinema information (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoHoroscope&lt;br /&gt;
|  Horoscope; either as one part or as two distinct parts:&amp;quot;key word 99text&amp;quot;, e.g. &amp;quot;sign of the zodiac 99blablabla&amp;quot; (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoHoroscopeSize&lt;br /&gt;
|  Number of rows present in horoscope information (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoOther&lt;br /&gt;
|  Other information, not especially specified: &amp;quot;key word 99info&amp;quot; (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoOtherSize&lt;br /&gt;
|  Number of rows present with other informations (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ProgStation&lt;br /&gt;
|  Name of the radio channel@note becomes also be set from epg if from RDS not available&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ProgNow&lt;br /&gt;
|  Now played program name@note becomes also be set from epg if from RDS not available&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ProgNext&lt;br /&gt;
|  Next played program name (if available)@note becomes also be set from epg if from RDS not available&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ProgHost&lt;br /&gt;
|  Name of the host of the radio show&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ProgEditStaff&lt;br /&gt;
|  Name of the editorial staff; e.g. name of editorial journalist (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ProgHomepage&lt;br /&gt;
|  Link to radio station homepage (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ProgStyle&lt;br /&gt;
|  Human readable string about radiostyle defined from RDS or RBDS&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.PhoneHotline&lt;br /&gt;
|  The telephone number of the radio station&#039;s hotline (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.PhoneStudio&lt;br /&gt;
|  The telephone number of the radio station&#039;s studio (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.SmsStudio&lt;br /&gt;
|  The sms number of the radio stations studio (to send directly a sms to the studio) (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.EmailHotline&lt;br /&gt;
|  The email adress of the radio stations hotline (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.EmailStudio&lt;br /&gt;
|  The email adress of the radio stations studio (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Skin ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.CurrentTheme&lt;br /&gt;
|  Returns the current selected skin theme.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.CurrentColourTheme&lt;br /&gt;
|  Returns the current selected colour theme of the skin.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.Font&lt;br /&gt;
|  Returns the current fontset from Font.xml.&lt;br /&gt;
|  v18 addition&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.String(name)&lt;br /&gt;
| Returns the &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;user-set&amp;lt;/span&amp;gt; skin string, set via the Skin.SetString(name) &#039;&#039;&#039;[[List of Built In Functions]]&#039;&#039;&#039;. Allows skinners to have &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;user-customisable&amp;lt;/span&amp;gt; labels.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.AspectRatio&lt;br /&gt;
|  Returns the closest aspect ratio match using the resolution info from the skin&#039;s addon.xml file.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Slideshow ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-  &lt;br /&gt;
|  Slideshow.Altitude&lt;br /&gt;
|  Shows the altitude in meters where the current picture was taken. This is the value of the EXIF GPSInfo.GPSAltitude tag.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Aperture&lt;br /&gt;
|  Shows the F-stop used to take the current picture. This is the value of the EXIF FNumber tag (hex code 0x829D).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Author&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Byline&lt;br /&gt;
|  Shows the name of the person who created the current picture.  This is the value of the IPTC Byline tag (hex code 0x50).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.BylineTitle&lt;br /&gt;
|  Shows the title of the person who created the current picture. This is the value of the IPTC BylineTitle tag (hex code 0x55).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CameraMake&lt;br /&gt;
|  Shows the manufacturer of the camera used to take the current picture. This is the value of the EXIF Make tag (hex code 0x010F).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CameraModel&lt;br /&gt;
|  Shows the manufacturer&#039;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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Caption&lt;br /&gt;
|  Shows a description of the current picture. This is the value of the IPTC Caption tag (hex code 0x78).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Category&lt;br /&gt;
|  Shows the subject of the current picture as a category code. This is the value of the IPTC Category tag (hex code 0x0F).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CCDWidth&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.City&lt;br /&gt;
|  Shows the city where the current picture was taken. This is the value of the IPTC City tag (hex code 0x5A).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Colour&lt;br /&gt;
|  Shows whether the current picture is &amp;quot;Colour&amp;quot; or &amp;quot;Black and White&amp;quot;.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CopyrightNotice&lt;br /&gt;
|  Shows the copyright notice of the current picture. This is the value of the IPTC Copyright tag (hex code 0x74).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Country&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CountryCode&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Credit&lt;br /&gt;
|  Shows who provided the current picture. This is the value of the IPTC Credit tag (hex code 0x6E).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.DigitalZoom&lt;br /&gt;
|  Shows the digital zoom ratio when the current picture was taken. This is the value of the EXIF .DigitalZoomRatio tag (hex code 0xA404).  &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFComment&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFDate&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFDescription&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFSoftware&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFTime&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Exposure&lt;br /&gt;
|  Shows the class of the program used by the camera to set exposure when the current picture was taken. Values include &amp;quot;Manual&amp;quot;, &amp;quot;Program (Auto)&amp;quot;, &amp;quot;Aperture priority (Semi-Auto)&amp;quot;, &amp;quot;Shutter priority (semi-auto)&amp;quot;, etc. This is the value of the EXIF ExposureProgram tag (hex code 0x8822).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ExposureBias&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ExposureMode&lt;br /&gt;
|  Shows the exposure mode of the current picture. The possible values are &amp;quot;Automatic&amp;quot;, &amp;quot;Manual&amp;quot;, and &amp;quot;Auto bracketing&amp;quot;. This is the value of the EXIF ExposureMode tag (hex code 0xA402).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ExposureTime&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Filedate&lt;br /&gt;
|  Shows the file date of the current picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Filename&lt;br /&gt;
|  Shows the file name of the current picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Filesize&lt;br /&gt;
|  Shows the file size of the current picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.FlashUsed&lt;br /&gt;
|  Shows the status of flash when the current picture was taken. The value will be either &amp;quot;Yes&amp;quot; or &amp;quot;No&amp;quot;, and might include additional information. This is the value of the EXIF Flash tag (hex code 0x9209).  &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.FocalLength&lt;br /&gt;
|  Shows the focal length of the lens, in mm. This is the value of the EXIF FocalLength tag (hex code 0x920A).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.FocusDistance&lt;br /&gt;
|  Shows the distance to the subject, in meters. This is the value of the EXIF SubjectDistance tag (hex code 0x9206).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Headline&lt;br /&gt;
|  Shows a synopsis of the contents of the current picture. This is the value of the IPTC Headline tag (hex code 0x69).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ImageType&lt;br /&gt;
|  Shows the color components of the current picture. This is the value of the IPTC ImageType tag (hex code 0x82).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.IPTCDate&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ISOEquivalence&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Keywords&lt;br /&gt;
|  Shows keywords assigned to the current picture. This is the value of the IPTC Keywords tag (hex code 0x19).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Latitude&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.LightSource&lt;br /&gt;
|  Shows the kind of light source when the picture was taken. Possible values include &amp;quot;Daylight&amp;quot;, &amp;quot;Fluorescent&amp;quot;, &amp;quot;Incandescent&amp;quot;, etc. This is the value of the EXIF LightSource tag (hex code 0x9208).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.LongEXIFDate&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.LongEXIFTime&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Longitude&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.MeteringMode&lt;br /&gt;
|  Shows the metering mode used when the current picture was taken. The possible values are &amp;quot;Center weight&amp;quot;, &amp;quot;Spot&amp;quot;, or &amp;quot;Matrix&amp;quot;. This is the value of the EXIF MeteringMode tag (hex code 0x9207).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ObjectName&lt;br /&gt;
|  Shows a shorthand reference for the current picture. This is the value of the IPTC ObjectName tag (hex code 0x05).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Orientation&lt;br /&gt;
|  Shows the orientation of the current picture. Possible values are &amp;quot;Top Left&amp;quot;, &amp;quot;Top Right&amp;quot;, &amp;quot;Left Top&amp;quot;, &amp;quot;Right Bottom&amp;quot;, etc. This is the value of the EXIF Orientation tag (hex code 0x0112).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Path&lt;br /&gt;
|  Shows the file path of the current picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Process&lt;br /&gt;
|  Shows the process used to compress the current picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ReferenceService&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Resolution&lt;br /&gt;
|  Shows the dimensions of the current picture (Width x Height)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SlideComment&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SlideIndex&lt;br /&gt;
|  Shows the slide index of the current picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Source&lt;br /&gt;
|  Shows the original owner of the current picture. This is the value of the IPTC Source tag (hex code 0x73).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SpecialInstructions&lt;br /&gt;
|  Shows other editorial instructions concerning the use of the current picture. This is the value of the IPTC SpecialInstructions tag (hex code 0x28).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.State&lt;br /&gt;
|  Shows the State/Province where the current picture was taken. This is the value of the IPTC ProvinceState tag (hex code 0x5F).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Sublocation&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SupplementalCategories&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.TimeCreated&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.TransmissionReference&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Urgency&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.WhiteBalance&lt;br /&gt;
|  Shows the white balance mode set when the current picture was taken. The possible values are &amp;quot;Manual&amp;quot; and &amp;quot;Auto&amp;quot;. This is the value of the EXIF WhiteBalance tag (hex code 0xA403).&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== System ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  System.Time&lt;br /&gt;
|  Current time&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.Time(format)&lt;br /&gt;
|  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&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.Date&lt;br /&gt;
|  Current date&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.Date(format)&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.AlarmPos&lt;br /&gt;
|  Shutdown Timer position&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.BatteryLevel&lt;br /&gt;
|  Returns the remaining battery level in range 0-100&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.FreeSpace&lt;br /&gt;
|  Total Freespace on the drive&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.UsedSpace&lt;br /&gt;
|  Total Usedspace on the drive&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.TotalSpace&lt;br /&gt;
|  Totalspace on the drive&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.UsedSpacePercent&lt;br /&gt;
|  Total Usedspace Percent on the drive&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.FreeSpacePercent&lt;br /&gt;
|  Total Freespace Percent on the drive&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.CPUTemperature&lt;br /&gt;
|  Current CPU temperature&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.CpuUsage&lt;br /&gt;
|  Displays the cpu usage for each individual cpu core.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.CoreUsage(id)&lt;br /&gt;
|  Displays the usage of the cpu core with the given &#039;id&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.GPUTemperature&lt;br /&gt;
|  Current GPU temperature&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.FanSpeed&lt;br /&gt;
|  Current fan speed&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.BuildVersion&lt;br /&gt;
|  Version of build&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.BuildDate&lt;br /&gt;
|  Date of build&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.FriendlyName&lt;br /&gt;
|  Returns the Kodi instance name. It will auto append (%hostname%) in case the device name was not changed. eg. &amp;quot;Kodi (htpc)&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.FPS&lt;br /&gt;
|  Current rendering speed (frames per second)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.FreeMemory&lt;br /&gt;
|  Amount of free memory in Mb&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.Memory(format)&lt;br /&gt;
|  Available formats: used, used.percent, free, free.percent, total&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenMode&lt;br /&gt;
|  Screenmode (eg windowed / fullscreen)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenWidth&lt;br /&gt;
|  Width of screen in pixels&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenHeight&lt;br /&gt;
|  Height of screen in pixels&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.StartupWindow&lt;br /&gt;
|  The Window Kodi will load on startup&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.CurrentWindow&lt;br /&gt;
|  Current Window we are in&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.CurrentControl&lt;br /&gt;
|  Current focused control&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.CurrentControlID&lt;br /&gt;
|  ID of the currently focused control.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.DVDLabel&lt;br /&gt;
|  Label of the disk in the &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;DVD-ROM&amp;lt;/span&amp;gt; drive&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.HddTemperature&lt;br /&gt;
|  Hdd temperature&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.OSVersionInfo&lt;br /&gt;
|  System name + kernel version&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.KernelVersion (deprecated)&lt;br /&gt;
|  System name + kernel version&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.Uptime&lt;br /&gt;
|  System current uptime&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.TotalUptime&lt;br /&gt;
|  System total uptime&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.CpuFrequency&lt;br /&gt;
|  System cpu frequency&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenResolution&lt;br /&gt;
|  Screen resolution&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.VideoEncoderInfo&lt;br /&gt;
|  Video encoder info&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.InternetState&lt;br /&gt;
|  Will return the internet state, connected or not connected&lt;br /&gt;
and for Conditional use: Connected-&amp;gt;TRUE, not Connected-&amp;gt;FALSE, do not use to check status in a pythonscript since it is threaded.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.Language&lt;br /&gt;
|  Shows the current language&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileName&lt;br /&gt;
|  Shows the User name of the currently logged in Kodi user&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileCount&lt;br /&gt;
|  Shows the number of defined profiles&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileAutoLogin&lt;br /&gt;
|  The profile Kodi will auto login to&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.StereoscopicMode&lt;br /&gt;
|  The prefered stereoscopic mode (settings &amp;gt; video &amp;gt; playback)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.TemperatureUnits&lt;br /&gt;
|  Shows Celsius or Fahrenheit symbol&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.AddonTitle(id)&lt;br /&gt;
|  Returns the title of the addon with the given id&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.AddonVersion(id)&lt;br /&gt;
|  Returns the version of the addon with the given id&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Visualisation ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Visualisation.Preset&lt;br /&gt;
|  Shows the current preset of the visualisation.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Visualisation.Name&lt;br /&gt;
|  Shows the name of the visualisation.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Weather labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.Conditions&lt;br /&gt;
|  Current weather conditions – this is looked up in a background process.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.Temperature&lt;br /&gt;
|  Current weather temperature&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.Location&lt;br /&gt;
|  City/town which the above two items are for&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.fanartcode&lt;br /&gt;
|  Current weather fanartcode.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.plugin&lt;br /&gt;
|  Current weather plugin.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Window ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Window([window]).Property(key)&lt;br /&gt;
|  Window property. (key can be any value, optional window can be id or name)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Window.Property(xmlfile)&lt;br /&gt;
|  Displays the name of the xml file currently shown&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Window(AddonBrowser).Property(Updated)&lt;br /&gt;
|  Shows the date and time the addon repo was last checked for updates&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Window.Property(Addon.ID)&lt;br /&gt;
| Returns the id of the selected addon, in DialogAddonSettings.xml&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Window(Home).Property(key)&lt;br /&gt;
|  The home window has the following info labels.&lt;br /&gt;
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&lt;br /&gt;
&lt;br /&gt;
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&lt;br /&gt;
&lt;br /&gt;
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&lt;br /&gt;
&lt;br /&gt;
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&lt;br /&gt;
&lt;br /&gt;
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&lt;br /&gt;
&lt;br /&gt;
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&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Window(Weather).Property(key)&lt;br /&gt;
|  The weather window has the following info labels.&lt;br /&gt;
Location, Updated, Current.Condition, Current.Temperature, Current.FeelsLike, Current.UVIndex, Current.Wind (From &amp;lt;wind dir.&amp;gt; at &amp;lt;speed&amp;gt; &amp;lt;unit&amp;gt;), 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&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
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&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Images Available in Kodi ===&lt;br /&gt;
&lt;br /&gt;
See &#039;&#039;&#039;[[Artwork/Accessing with skins and JSON-RPC]]&#039;&#039;&#039; for the general pattern of accessing artwork for media items.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Image&lt;br /&gt;
|  Fanart image for the parent TV Show. Note: Deprecated, use ListItem.Art(tvshow.fanart) instead.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Thumb&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Icon&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ActualIcon&lt;br /&gt;
|  Shows the icon of the currently selected item in a list or thumb control.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Overlay&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EPGEventIcon&lt;br /&gt;
|  Returns the icon of the EPG programme (if available).&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Fanart_Image)&lt;br /&gt;
|  Fanart Image currently selected item or of the parent TV show. Note: Deprecated, use ListItem.Art(fanart) or ListItem.Art(tvshow.fanart) instead.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Cover&lt;br /&gt;
|  Cover of currently playing album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Fanart_Image)&lt;br /&gt;
|  Fanart image of the currently playing artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Icon&lt;br /&gt;
|  Shows the thumbnail (if it exists) of the currently playing item. If no thumbnail image exists, it will show the icon.&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Player.StarRating&lt;br /&gt;
|  Returns a value of 0 to 5 as a graphical display from images named rating0.png to rating5.png of the skin&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NowRecordingChannelIcon&lt;br /&gt;
|  Channel icon of the programme currently being recorded.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NextRecordingChannelIcon&lt;br /&gt;
|  Channel icon of the programme that will be recorded next.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.EPGEventIcon&lt;br /&gt;
|  Returns the icon of the currently playing EPG programme (if available).&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.String(name)&lt;br /&gt;
| Returns the image or image folder set by the user via a Skin.SetPath(name) or Skin.SetImage(name) &#039;&#039;&#039;[[List of Built In Functions]]&#039;&#039;&#039;. Allows skinners to have &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;user-customisable&amp;lt;/span&amp;gt; images and multiimages.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.AddonIcon(id)&lt;br /&gt;
|  Returns the Icon of the specified addon. Instead of specifying the id directly, one can also use an infolabel (eg. $INFO[Skin.String(Foo)])&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileThumb&lt;br /&gt;
|  Shows the Thumbnail image of the currently logged in Kodi user&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Cover&lt;br /&gt;
|  Cover of currently playing movie.  Note: Deprecated, use ListItem.Art(poster) instead.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.ConditionsIcon&lt;br /&gt;
|  Image of current weather conditions (NOTE: Can be used to load/refresh weather conditions)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Window([window]).Property(key)&lt;br /&gt;
|  Window property. (key can be any value, optional window can be id or name)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Window(Weather).Property(key)&lt;br /&gt;
|  The weather window has the following info images.&lt;br /&gt;
Current.ConditionIcon, Day[0-6].OutlookIcon, Current.FanartCode, Day[0-6].FanartCode, WeatherProviderLogo&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section end=&amp;quot;main content&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&#039;&#039;&#039;Development:&#039;&#039;&#039;&lt;br /&gt;
* [[Add-on development]]&lt;br /&gt;
* [[Skinning]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Skin development]]&lt;br /&gt;
[[Category:Add-on development]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=InfoLabels&amp;diff=157155</id>
		<title>InfoLabels</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=InfoLabels&amp;diff=157155"/>
		<updated>2019-02-02T17:11:55Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* Images Available in Kodi */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[Development]]|[[Add-on development]]|[[Skinning]]}}&lt;br /&gt;
&amp;lt;section begin=&amp;quot;main content&amp;quot; /&amp;gt;&lt;br /&gt;
Skins can use infolabels with $INFO[infolabel] or the &amp;lt;info&amp;gt; tag. Scripts can read infolabels with &amp;lt;code&amp;gt;xbmc.getInfoLabel(&#039;infolabel&#039;)&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
An up-to-date list can be found here [https://github.com/xbmc/xbmc/blob/master/xbmc/GUIInfoManager.cpp GUIInfoManager.cpp]&lt;br /&gt;
&lt;br /&gt;
=== Container ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Content&lt;br /&gt;
|  Shows content of the current container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.FolderPath&lt;br /&gt;
|  Shows complete path of currently displayed folder&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.FolderName&lt;br /&gt;
|  Shows top most folder in currently displayed folder&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Viewmode&lt;br /&gt;
|  Returns the current viewmode (list, icons etc.)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.SortMethod&lt;br /&gt;
|  Returns the current sort method (name, year, rating, etc.)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.SortOrder&lt;br /&gt;
|  Returns the current sort order (Ascending/Descending)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.PluginName&lt;br /&gt;
|  Returns the current plugins base folder name&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.PluginCategory&lt;br /&gt;
|  Returns the current plugins category (set by the scripter)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.ShowPlot&lt;br /&gt;
|  Returns the TV Show plot of the current container and can be used at season and episode level&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.ShowTitle&lt;br /&gt;
|  Returns the TV Show title of the current container and can be used at season and episode level&lt;br /&gt;
|  v17 addition&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).NumPages&lt;br /&gt;
|  Number of pages in the container with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).NumItems&lt;br /&gt;
|  Number of items in the container or grouplist with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).NumAllItems&lt;br /&gt;
|  Number of all items in the container or grouplist with given id including parent folder item.&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).NumNonFolderItems&lt;br /&gt;
|  Number of items in the container or grouplist with given id excluding all folder items.&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).CurrentPage&lt;br /&gt;
|  Current page in the container with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).CurrentItem&lt;br /&gt;
|  Current item in the container or grouplist with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).Position&lt;br /&gt;
|  Returns the current focused position of container / grouplist (id) as a numeric label.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).Column&lt;br /&gt;
|  Returns the column number of the focused position in a panel container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).Row&lt;br /&gt;
|  Returns the row number of the focused position in a panel container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).Totaltime&lt;br /&gt;
|  Returns the total time of all items in the current container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).TotalWatched&lt;br /&gt;
|  Returns the number of watched items in the current container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).TotalUnWatched&lt;br /&gt;
|  Returns the number of unwatched items in the current container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Label&lt;br /&gt;
|  Shows ListItem.Label for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(2).Label )&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Label2&lt;br /&gt;
|  Shows ListItem.Label2 for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(-2).Label2 )&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Icon&lt;br /&gt;
|  Shows ListItem.Icon for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(52).Listitem(1).Icon)&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).ActualIcon&lt;br /&gt;
|  Shows ListItem.ActualIcon for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(0).ActualIcon )&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Thumb&lt;br /&gt;
|  Shows ListItem.Thumb for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(0).Thumb )&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItemNoWrap(offset).Property&lt;br /&gt;
|  Basically returns the same as ListItem(offset) but it won&#039;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. &#039;&#039;Property&#039;&#039; has to be replaced with Label, Label2, Icon etc. &#039;&#039;( eg: Container(50).ListitemNoWrap(1).Plot )&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItemPosition(id).[infolabel]&lt;br /&gt;
|  Shows the infolabel for an item in a Container. the item id is the position in the container relative to the cursor position. &#039;&#039;( eg: Container(50).ListItemPosition(4).Genre )&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItemAbsolute(id).[infolabel]&lt;br /&gt;
|  Shows the infolabel for an item in a Container. the item id is the absolute position in the container. &#039;&#039;( eg: Container(50).ListItemAbsolute(4).Genre )&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Property(addoncategory)&lt;br /&gt;
|  Returns the current add-on category&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Property(reponame)&lt;br /&gt;
|  Returns the current add-on repository name&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.ViewCount&lt;br /&gt;
| The number of available skin view modes for the current container listing.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Control ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Control.GetLabel(id)[.index()]&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Fanart ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Color1&lt;br /&gt;
|  Returns the first of three colors included in the currently selected &#039;&#039;&#039;[[Fanart]]&#039;&#039;&#039; theme for the parent TV Show.  Colors are arranged Lightest to Darkest.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Color2&lt;br /&gt;
|  Returns the second of three colors included in the currently selected &#039;&#039;&#039;[[Fanart]]&#039;&#039;&#039; theme for the parent TV Show.  Colors are arranged Lightest to Darkest.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Color3&lt;br /&gt;
|  Returns the third of three colors included in the currently selected &#039;&#039;&#039;[[Fanart]]&#039;&#039;&#039; theme for the parent TV Show.  Colors are arranged Lightest to Darkest.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Game ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Game.Title&lt;br /&gt;
|  Name of the game&lt;br /&gt;
| v18&lt;br /&gt;
|-&lt;br /&gt;
|  Game.Platform&lt;br /&gt;
|  Platform the game runs on (eg. Atari 2600)&lt;br /&gt;
| v18&lt;br /&gt;
|-&lt;br /&gt;
|  Game.Genres&lt;br /&gt;
|  Gerne of the game (eg. Action)&lt;br /&gt;
| v18&lt;br /&gt;
|-&lt;br /&gt;
|  Game.Publisher&lt;br /&gt;
|  Publishing company of the game (eg. Nintendo)&lt;br /&gt;
| v18&lt;br /&gt;
|-&lt;br /&gt;
|  Game.Developer&lt;br /&gt;
|  Developer of the game&lt;br /&gt;
| v18&lt;br /&gt;
|-&lt;br /&gt;
|  Game.Overview&lt;br /&gt;
|  Game description&lt;br /&gt;
| v18&lt;br /&gt;
|-&lt;br /&gt;
|  Game.Year&lt;br /&gt;
|  Year the game was released&lt;br /&gt;
| v18&lt;br /&gt;
|-&lt;br /&gt;
|  Game.GameClient&lt;br /&gt;
|  Name of the used emulator&lt;br /&gt;
| v18&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== ListItem ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Label&lt;br /&gt;
|  Shows the left label of the currently selected item in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Label2&lt;br /&gt;
|  Shows the right label of the currently selected item in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Title&lt;br /&gt;
|  Shows the title of the currently selected song or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.OriginalTitle&lt;br /&gt;
|  Shows the original title of the currently selected movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.SortLetter&lt;br /&gt;
|  Shows the first letter of the current file in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.TrackNumber&lt;br /&gt;
|  Shows the track number of the currently selected song in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Artist&lt;br /&gt;
|  Shows the artist of the currently selected song in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AlbumArtist&lt;br /&gt;
|  Shows the artist of the currently selected album in a list&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Born)&lt;br /&gt;
|  Date of Birth of the currently selected Artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Died)&lt;br /&gt;
|  Date of Death of the currently selected Artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Formed)&lt;br /&gt;
|  Formation date of the currently selected Band&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Disbanded)&lt;br /&gt;
|  Disbanding date of the currently selected Band&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_YearsActive)&lt;br /&gt;
|  Years the currently selected artist has been active&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Instrument)&lt;br /&gt;
|  Instruments played by the currently selected artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Description)&lt;br /&gt;
|  Shows a biography of the currently selected artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Mood)&lt;br /&gt;
|  Shows the moods of the currently selected artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Style)&lt;br /&gt;
|  Shows the styles of the currently selected artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Genre)&lt;br /&gt;
|  Shows the genre of the currently selected artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Property(Artist_Sortname)&lt;br /&gt;
|  Sortname of the currently selected Artist&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Property(Artist_Type)&lt;br /&gt;
|  Type of the currently selected Artist - person, group, orchestra, choir etc.&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Property(Artist_Gender)&lt;br /&gt;
|  Gender of the currently selected Artist - male, female, other&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Property(Artist_Disambiguation)&lt;br /&gt;
|  Brief description of the currently selected Artist that differentiates them from others with the same name&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Album&lt;br /&gt;
|  Shows the album of the currently selected song in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Mood)&lt;br /&gt;
|  Shows the moods of the currently selected Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Style)&lt;br /&gt;
|  Shows the styles of the currently selected Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Theme)&lt;br /&gt;
|  Shows the themes of the currently selected Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Type)&lt;br /&gt;
|  Shows the Album Type (e.g. compilation, enhanced, explicit lyrics) of the currently selected Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Label)&lt;br /&gt;
|  Shows the record label of the currently selected Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Description)&lt;br /&gt;
|  Shows a review of the currently selected Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DiscNumber&lt;br /&gt;
|  Shows the disc number of the currently selected song in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Year&lt;br /&gt;
|  Shows the year of the currently selected song, album or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Premiered&lt;br /&gt;
|  Shows the release/aired date of the currently selected episode, show, movie or EPG item in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Genre&lt;br /&gt;
|  Shows the genre of the currently selected song, album or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Director&lt;br /&gt;
|  Shows the director of the currently selected movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Country&lt;br /&gt;
|  Shows the production country of the currently selected movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Episode&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Season&lt;br /&gt;
|  Shows the season value for the currently selected tvshow&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.TVShowTitle&lt;br /&gt;
|  Shows the name value for the currently selected tvshow in the season and episode depth of the video library&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(TotalSeasons)&lt;br /&gt;
|  Shows the total number of seasons for the currently selected tvshow&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(TotalEpisodes)&lt;br /&gt;
|  Shows the total number of episodes for the currently selected tvshow or season&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(WatchedEpisodes)&lt;br /&gt;
|  Shows the number of watched episodes for the currently selected tvshow or season&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(UnWatchedEpisodes)&lt;br /&gt;
|  Shows the number of unwatched episodes for the currently selected tvshow or season&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(NumEpisodes)&lt;br /&gt;
|  Shows the number of total, watched or unwatched episodes for the currently selected tvshow or season, based on the the current watched filter.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureAperture&lt;br /&gt;
|  Shows the F-stop used to take the selected picture. This is the value of the EXIF FNumber tag (hex code 0x829D).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureAuthor&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureByline&lt;br /&gt;
|  Shows the name of the person who created the selected picture.  This is the value of the IPTC Byline tag (hex code 0x50).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureBylineTitle&lt;br /&gt;
|  Shows the title of the person who created the selected picture. This is the value of the IPTC BylineTitle tag (hex code 0x55).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCamMake&lt;br /&gt;
|  Shows the manufacturer of the camera used to take the selected picture. This is the value of the EXIF Make tag (hex code 0x010F).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCamModel&lt;br /&gt;
|  Shows the manufacturer&#039;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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCaption&lt;br /&gt;
|  Shows a description of the selected picture. This is the value of the IPTC Caption tag (hex code 0x78).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCategory&lt;br /&gt;
|  Shows the subject of the selected picture as a category code. This is the value of the IPTC Category tag (hex code 0x0F).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCCDWidth&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCity&lt;br /&gt;
|  Shows the city where the selected picture was taken. This is the value of the IPTC City tag (hex code 0x5A).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureColour&lt;br /&gt;
|  Shows whether the selected picture is &amp;quot;Colour&amp;quot; or &amp;quot;Black and White&amp;quot;.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureComment&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCopyrightNotice&lt;br /&gt;
|  Shows the copyright notice of the selected picture. This is the value of the IPTC Copyright tag (hex code 0x74).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCountry&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCountryCode&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCredit&lt;br /&gt;
|  Shows who provided the selected picture. This is the value of the IPTC Credit tag (hex code 0x6E).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDate&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDatetime&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDesc&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDigitalZoom&lt;br /&gt;
|  Shows the digital zoom ratio when the selected picture was taken. This is the value of the EXIF DigitalZoomRatio tag (hex code 0xA404).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExpMode&lt;br /&gt;
|  Shows the exposure mode of the selected picture. The possible values are &amp;quot;Automatic&amp;quot;, &amp;quot;Manual&amp;quot;, and &amp;quot;Auto bracketing&amp;quot;. This is the value of the EXIF ExposureMode tag (hex code 0xA402).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExposure&lt;br /&gt;
|  Shows the class of the program used by the camera to set exposure when the selected picture was taken. Values include &amp;quot;Manual&amp;quot;, &amp;quot;Program (Auto)&amp;quot;, &amp;quot;Aperture priority (Semi-Auto)&amp;quot;, &amp;quot;Shutter priority (semi-auto)&amp;quot;, etc. This is the value of the EXIF ExposureProgram tag (hex code 0x8822).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExposureBias&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExpTime&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureFlashUsed&lt;br /&gt;
|  Shows the status of flash when the selected picture was taken. The value will be either &amp;quot;Yes&amp;quot; or &amp;quot;No&amp;quot;, and might include additional information. This is the value of the EXIF Flash tag (hex code 0x9209).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureFocalLen&lt;br /&gt;
|  Shows the lens focal length of the selected picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureFocusDist&lt;br /&gt;
|  Shows the focal length of the lens, in mm. This is the value of the EXIF FocalLength tag (hex code 0x920A).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureGPSLat&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureGPSLon&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureGPSAlt&lt;br /&gt;
|  Shows the altitude in meters where the selected picture was taken. This is the value of the EXIF GPSInfo.GPSAltitude tag.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureHeadline&lt;br /&gt;
|  Shows a synopsis of the contents of the selected picture. This is the value of the IPTC Headline tag (hex code 0x69).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureImageType&lt;br /&gt;
|  Shows the color components of the selected picture. This is the value of the IPTC ImageType tag (hex code 0x82).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureIPTCDate&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureIPTCTime&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureISO&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureKeywords&lt;br /&gt;
|  Shows keywords assigned to the selected picture. This is the value of the IPTC Keywords tag (hex code 0x19).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureLightSource&lt;br /&gt;
|  Shows the kind of light source when the picture was taken. Possible values include &amp;quot;Daylight&amp;quot;, &amp;quot;Fluorescent&amp;quot;, &amp;quot;Incandescent&amp;quot;, etc. This is the value of the EXIF LightSource tag (hex code 0x9208).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureLongDate&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureLongDatetime&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureMeteringMode&lt;br /&gt;
|  Shows the metering mode used when the selected picture was taken. The possible values are &amp;quot;Center weight&amp;quot;, &amp;quot;Spot&amp;quot;, or &amp;quot;Matrix&amp;quot;. This is the value of the EXIF MeteringMode tag (hex code 0x9207).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureObjectName&lt;br /&gt;
|  Shows a shorthand reference for the selected picture. This is the value of the IPTC ObjectName tag (hex code 0x05).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureOrientation&lt;br /&gt;
|  Shows the orientation of the selected picture. Possible values are &amp;quot;Top Left&amp;quot;, &amp;quot;Top Right&amp;quot;, &amp;quot;Left Top&amp;quot;, &amp;quot;Right Bottom&amp;quot;, etc. This is the value of the EXIF Orientation tag (hex code 0x0112).&lt;br /&gt;
|&lt;br /&gt;
|-     &lt;br /&gt;
|  ListItem.PicturePath&lt;br /&gt;
|  Shows the filename and path of the selected picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureProcess&lt;br /&gt;
|  Shows the process used to compress the selected picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureReferenceService&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureResolution&lt;br /&gt;
|  Shows the dimensions of the selected picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSource&lt;br /&gt;
|  Shows the original owner of the selected picture. This is the value of the IPTC Source tag (hex code 0x73).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSpecialInstructions&lt;br /&gt;
|  Shows other editorial instructions concerning the use of the selected picture. This is the value of the IPTC SpecialInstructions tag (hex code 0x28).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureState&lt;br /&gt;
|  Shows the State/Province where the selected picture was taken. This is the value of the IPTC ProvinceState tag (hex code 0x5F).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSublocation&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSupplementalCategories&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureTransmissionReference&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureUrgency&lt;br /&gt;
|  Shows the urgency of the selected picture. Values are 1-9. The &amp;quot;1&amp;quot; is most urgent. Some image management programs use urgency to indicate picture rating, where urgency &amp;quot;1&amp;quot; is 5 stars and urgency &amp;quot;5&amp;quot; is 1 star. Urgencies 6-9 are not used for rating. This is the value of the IPTC Urgency tag (hex code 0x0A).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureWhiteBalance&lt;br /&gt;
|  Shows the white balance mode set when the selected picture was taken. The possible values are &amp;quot;Manual&amp;quot; and &amp;quot;Auto&amp;quot;. This is the value of the EXIF WhiteBalance tag (hex code 0xA403).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FileName&lt;br /&gt;
|  Shows the filename of the currently selected song or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Path&lt;br /&gt;
|  Shows the complete path of the currently selected song or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FolderName&lt;br /&gt;
|  Shows top most folder of the path of the currently selected song or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FolderPath&lt;br /&gt;
|  Shows the complete path of the currently selected song or movie in a container (without user details).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FileNameAndPath&lt;br /&gt;
|  Shows the full path with filename of the currently selected song or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FileExtension&lt;br /&gt;
|  Shows the file extension (without leading dot) of the currently selected item in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Date&lt;br /&gt;
|  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)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DateAdded&lt;br /&gt;
|  Shows the date the currently selected item was added to the library / Date and time of an event in the EventLog window.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Size&lt;br /&gt;
|  Shows the file size of the currently selected song or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Rating[(name)]&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Set&lt;br /&gt;
|  Shows the name of the set the movie is part of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.SetId&lt;br /&gt;
|  Shows the id of the set the movie is part of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.UserRating&lt;br /&gt;
|  Shows the user rating of the currently selected item in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Votes[(name)]&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.RatingAndVotes[(name)]&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Mpaa&lt;br /&gt;
|  Show the MPAA rating of the currently selected movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ProgramCount&lt;br /&gt;
|  Shows the number of times an xbe has been run from &amp;quot;my programs&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Duration[(format)]&lt;br /&gt;
|  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). &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DBTYPE&lt;br /&gt;
|  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 &amp;quot;*all seasons&amp;quot; entry does give a DBTYPE &amp;quot;season&amp;quot; and a DBID, but you can&#039;t get the details of that entry since it&#039;s a virtual entry in the Video Library.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DBID&lt;br /&gt;
|  Shows the database id of the currently selected listitem in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Cast&lt;br /&gt;
|  Shows a concatenated string of cast members of the currently selected movie, for use in dialogvideoinfo.xml&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.CastAndRole&lt;br /&gt;
|  Shows a concatenated string of cast members and roles of the currently selected movie, for use in dialogvideoinfo.xml&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Studio&lt;br /&gt;
|  Studio of current selected Music Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Top250&lt;br /&gt;
|  Shows the IMDb top250 position of the currently selected listitem in a container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Trailer&lt;br /&gt;
|  Shows the full trailer path with filename of the currently selected movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Writer&lt;br /&gt;
|  Name of Writer of current Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Tagline&lt;br /&gt;
|  Small Summary of current Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PlotOutline&lt;br /&gt;
|  Small Summary of current Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Plot&lt;br /&gt;
|  Complete Text Summary of Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.IMDBNumber&lt;br /&gt;
|  The IMDB iD of the selected Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EpisodeName&lt;br /&gt;
|  (PVR only) The name of the episode if the selected EPG item is a TV Show&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PercentPlayed&lt;br /&gt;
|  Returns percentage value [0-100] of how far the selected video has been played&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.LastPlayed&lt;br /&gt;
|  Last play date of Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PlayCount&lt;br /&gt;
|  Playcount of Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartTime&lt;br /&gt;
|  Start time of current selected TV programme in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EndTime&lt;br /&gt;
|  End time of current selected TV programme in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartDate&lt;br /&gt;
|  Start date of current selected TV programme in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelName&lt;br /&gt;
|  Name of current selected TV channel in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.VideoCodec&lt;br /&gt;
|  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)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.VideoResolution&lt;br /&gt;
|  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.&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.VideoAspect&lt;br /&gt;
|  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)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AudioCodec&lt;br /&gt;
|  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)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AudioChannels&lt;br /&gt;
|  Shows the number of audio channels of the currently selected video (possible values: 1, 2, 4, 5, 6, 7, 8, 10)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AudioLanguage&lt;br /&gt;
|  Shows the audio language of the currently selected video (returns an ISO 639-2 three character code, e.g. eng, epo, deu)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.SubtitleLanguage&lt;br /&gt;
|  Shows the subtitle language of the currently selected video (returns an ISO 639-2 three character code, e.g. eng, epo, deu)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(AudioCodec.[n])&lt;br /&gt;
|  Shows the audio codec of the currently selected video, &#039;n&#039; defines the number of the audiostream (values: see ListItem.AudioCodec)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(AudioChannels.[n])&lt;br /&gt;
|  Shows the number of audio channels of the currently selected video, &#039;n&#039; defines the number of the audiostream (values: see ListItem.AudioChannels)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(AudioLanguage.[n])&lt;br /&gt;
|  Shows the audio language of the currently selected video, &#039;n&#039; defines the number of the audiostream (values: see ListItem.AudioLanguage)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(SubtitleLanguage.[n])&lt;br /&gt;
|  Shows the subtitle language of the currently selected video, &#039;n&#039; defines the number of the subtitle (values: see ListItem.SubtitleLanguage)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonName&lt;br /&gt;
|  Shows the name of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonVersion&lt;br /&gt;
|  Shows the version of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonSummary&lt;br /&gt;
|  Shows a short description of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonDescription&lt;br /&gt;
|  Shows the full description of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonType&lt;br /&gt;
|  Shows the type (screensaver, script, skin, etc...) of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonCreator&lt;br /&gt;
|  Shows the name of the author the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonDisclaimer&lt;br /&gt;
|  Shows the disclaimer of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonBroken&lt;br /&gt;
|  Shows a message when the addon is marked as broken in the repo&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Changelog)&lt;br /&gt;
|  Shows the changelog of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.ID)&lt;br /&gt;
|  Shows the identifier of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Status)&lt;br /&gt;
|  Shows the status of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Path)&lt;br /&gt;
|  Shows the path of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartTime&lt;br /&gt;
|  Start time of the selected item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EndTime&lt;br /&gt;
|  End time of the selected item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartDate&lt;br /&gt;
|  Start date of the selected item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EndDate&lt;br /&gt;
|  End date of the selected item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextTitle&lt;br /&gt;
|  Title of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextGenre&lt;br /&gt;
|  Genre of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextPlot&lt;br /&gt;
|  Plot of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextPlotOutline&lt;br /&gt;
|  Plot outline of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextStartTime&lt;br /&gt;
|  Start time of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextEndTime&lt;br /&gt;
|  End of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextStartDate&lt;br /&gt;
|  Start date of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextEndDate&lt;br /&gt;
|  End date of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.NextDuration&lt;br /&gt;
|  Duration of the next item (PVR).&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelName&lt;br /&gt;
|  Channelname of the selected item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelNumber&lt;br /&gt;
|  Channel number of the selected item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelNumberLabel&lt;br /&gt;
|  Channel and subchannel number of the currently selected channel that&#039;s currently playing (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Progress&lt;br /&gt;
|  Part of the programme that&#039;s been played (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StereoscopicMode&lt;br /&gt;
|  Returns the stereomode of the selected video (i.e. mono, split_vertical, split_horizontal, row_interleaved, anaglyph_cyan_red, anaglyph_green_magenta)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Comment&lt;br /&gt;
|  Comment assigned to the item (PVR/MUSIC).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonInstallDate&lt;br /&gt;
| Date the addon was installed&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonLastUpdated&lt;br /&gt;
| Date the addon was last updated&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonLastUsed&lt;br /&gt;
| Date the addon was used last&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonNews&lt;br /&gt;
| Returns a brief changelog, taken from the addons&#039; addon.xml file&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonSize&lt;br /&gt;
| Filesize of the addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Contributors&lt;br /&gt;
| List of all people who&#039;ve contributed to the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ContributorAndRole&lt;br /&gt;
| List of all people and their role who&#039;ve contributed to the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EndTimeResume&lt;br /&gt;
| Returns the time a video will end if you resume it, instead of playing it from the beginning.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Mood&lt;br /&gt;
| Mood of the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Status&lt;br /&gt;
| For use with tv shows. It can return one of the following: &#039;returning series&#039;,&#039;in production&#039;,&#039;planned&#039;,&#039;cancelled&#039; or &#039;ended&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Tag&lt;br /&gt;
| Will return the name of the &#039;tag&#039; this movie is part of.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Arranger)&lt;br /&gt;
| Returns the name of the person who arranged the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Composer)&lt;br /&gt;
| Returns the name of the person who composed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Conductor)&lt;br /&gt;
| Returns the name of the person who conducted the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.DJMixer)&lt;br /&gt;
| Returns the name of the dj who remixed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Engineer)&lt;br /&gt;
| Returns the name of the person who was the engineer of the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Lyricist)&lt;br /&gt;
| Returns the name of the person who wrote the lyrics of the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Mixer)&lt;br /&gt;
| Returns the name of the person who mixed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Orchestra)&lt;br /&gt;
| Returns the name of the orchestra performing the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Producer)&lt;br /&gt;
| Returns the name of the person who produced the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Remixer)&lt;br /&gt;
| Returns the name of the person who remixed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Appearances&lt;br /&gt;
| Returns the number of movies featuring the selected actor / directed by the selected director&lt;br /&gt;
| v17 addition&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PrivacyPolicy&lt;br /&gt;
| Returns the official Kodi privacy-policy&lt;br /&gt;
| v17 addition&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Property(game.videofilter)&lt;br /&gt;
|  Name of the video filter (eg. Bilinear)&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Property(game.stretchmode)&lt;br /&gt;
|  Name of the stretch mode (eg. Stretch 4:3)&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Property(game.videorotation)&lt;br /&gt;
|  Angle of the rotation&lt;br /&gt;
|  v18&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Musicpartymode labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.SongsPlayed&lt;br /&gt;
|  Number of songs played during Party Mode&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.MatchingSongs&lt;br /&gt;
|  Number of songs available to Party Mode&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.MatchingSongsPicked&lt;br /&gt;
|  Number of songs picked already for Party Mode&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.MatchingSongsLeft&lt;br /&gt;
|  Number of songs left to be picked from for Party Mode&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.RelaxedSongsPicked&lt;br /&gt;
|  Not currently used&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.RandomSongsPicked&lt;br /&gt;
|  Number of unique random songs picked during Party Mode&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Network labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Network.IsDHCP&lt;br /&gt;
|  Network type is DHCP or FIXED&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.IPAddress&lt;br /&gt;
|  The system&#039;s IP Address (&amp;lt;ipaddress&amp;gt; is returned as a string)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.LinkState&lt;br /&gt;
|  Network linkstate e.g. 10mbit/100mbit etc.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.MacAddress&lt;br /&gt;
|  The system&#039;s  mac address&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.SubnetMask&lt;br /&gt;
|  Network subnet mask&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.GatewayAddress&lt;br /&gt;
|  Network gateway address&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.DNS1Address&lt;br /&gt;
|  Network dns server 1 address&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.DNS2Address&lt;br /&gt;
|  Network dns server 2 address&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.DHCPAddress&lt;br /&gt;
|  DHCP server ip address&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Player labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Player.FinishTime&lt;br /&gt;
|  Time playing media will end&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.FinishTime(format)&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Chapter&lt;br /&gt;
|  Current chapter of current playing media&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.ChapterCount&lt;br /&gt;
|  Total number of chapters of current playing media&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Time&lt;br /&gt;
|  Elapsed time of current playing media&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Time(format)&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.TimeRemaining&lt;br /&gt;
|  Remaining time of current playing media&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.TimeRemaining(format)&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Duration&lt;br /&gt;
|  Total duration of the current playing media&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Duration(format)&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekTime&lt;br /&gt;
|  Time to which the user is seeking&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekOffset&lt;br /&gt;
|  Indicates the seek offset after a seek press (eg user presses BigStepForward, player.seekoffset returns +10:00)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekOffset(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekStepSize&lt;br /&gt;
|  Displays the seek step size. (v15 addition)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.ProgressCache&lt;br /&gt;
|  Shows how much of the file is cached above current play percentage&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Folderpath&lt;br /&gt;
|  Shows the full path of the currently playing song or movie&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Filenameandpath&lt;br /&gt;
|  Shows the full path with filename of the currently playing song or movie&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.StartTime&lt;br /&gt;
|  Returns the starttime (from the epg) of a tv program, for all other videos it will return the time you started watching this video.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.StartTime(format)&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Title&lt;br /&gt;
|  Returns the musicplayer title for audio and the videoplayer title for videos.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Filename&lt;br /&gt;
|  Returns the filename of the currently playing media.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Volume&lt;br /&gt;
| Returns the volume level in dB&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(AudioBitsPerSample)&lt;br /&gt;
| Bits per sample of the currently playing item&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(AudioChannels)&lt;br /&gt;
| Number of audiochannels of the currently playing item&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(AudioDecoder)&lt;br /&gt;
| Audiodecoder name of the currently playing item&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(AudioSamplerate)&lt;br /&gt;
| Samplerate  f the currently playing item&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(DeintMethod)&lt;br /&gt;
| Deinterlace method of the currently playing video&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(PixFormat)&lt;br /&gt;
| Pixel format of the currently playing video&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(VideoDAR)&lt;br /&gt;
| Display aspect ratio of the currently playing video&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(VideoFPS)&lt;br /&gt;
| Video framerate of the currently playing video&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(VideoHeight)&lt;br /&gt;
| Height of the currently playing video&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(VideoDecoder)&lt;br /&gt;
| Videodecoder name of the currently playing video&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(VideoWidth)&lt;br /&gt;
| Width of the currently playing video&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Music player ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Title&lt;br /&gt;
|  Title of the currently playing song,  also available are &amp;quot;MusicPlayer.offset(number).Title&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Title&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Album&lt;br /&gt;
|  Album from which the current song is from,   also available are &amp;quot;MusicPlayer.offset(number).Album&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Album&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Mood)&lt;br /&gt;
|  Shows the moods of the currently playing Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Style)&lt;br /&gt;
|  Shows the styles of the currently playing Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Theme)&lt;br /&gt;
|  Shows the themes of the currently playing Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Type)&lt;br /&gt;
|  Shows the Album Type (e.g. compilation, enhanced, explicit lyrics) of the currently playing Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Label)&lt;br /&gt;
|  Shows the record label of the currently playing Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Description)&lt;br /&gt;
|  Shows a review of the currently playing Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Artist&lt;br /&gt;
|  Artist(s) of current song,  also available are &amp;quot;MusicPlayer.offset(number).Artist&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Artist&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Born)&lt;br /&gt;
|  Date of Birth of the currently playing Artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Died)&lt;br /&gt;
|  Date of Death of the currently playing Artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Formed)&lt;br /&gt;
|  Formation date of the currently playing Artist/Band&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Disbanded)&lt;br /&gt;
|  Disbanding date of the currently playing Artist/Band&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_YearsActive)&lt;br /&gt;
|  Years the currently Playing artist has been active&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Instrument)&lt;br /&gt;
|  Instruments played by the currently playing artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Description)&lt;br /&gt;
|  Shows a biography of the currently playing artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Mood)&lt;br /&gt;
|  Shows the moods of the currently playing artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Style)&lt;br /&gt;
|  Shows the styles of the currently playing artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Genre)&lt;br /&gt;
|  Shows the genre of the currently playing artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Sortname)&lt;br /&gt;
|  Sortname of the currently playing Artist&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Type)&lt;br /&gt;
|  Type of the currently playing Artist - person, group, orchestra, choir etc.&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Gender)&lt;br /&gt;
|  Gender of the currently playing Artist - male, female, other&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Disambiguation)&lt;br /&gt;
|  Brief description of the currently playing Artist that differentiates them from others with the same name&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Genre&lt;br /&gt;
|  Genre(s) of current song,  also available are &amp;quot;MusicPlayer.offset(number).Genre&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Genre&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Lyrics&lt;br /&gt;
|  Lyrics of current song stored in ID tag info&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Year&lt;br /&gt;
|  Year of release of current song,  also available are &amp;quot;MusicPlayer.offset(number).Year&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Year&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Rating&lt;br /&gt;
|  Numeric Rating of current song,  also available are &amp;quot;MusicPlayer.offset(number).Rating&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Rating&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.DiscNumber&lt;br /&gt;
|  Disc Number of current song stored in ID tag info,  also available are &amp;quot;MusicPlayer.offset(number).DiscNumber&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).DiscNumber&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Comment&lt;br /&gt;
|  Comment of current song stored in ID tag info,  also available are &amp;quot;MusicPlayer.offset(number).Comment&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Comment&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Time&lt;br /&gt;
|  Current time in song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.TimeRemaining&lt;br /&gt;
|  Current remaining time in song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.TimeSpeed&lt;br /&gt;
|  Both the time and the playspeed formatted up. eg 1:23 (2x)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.TrackNumber&lt;br /&gt;
|  Track number of current song,   also available are &amp;quot;MusicPlayer.offset(number).TrackNumber&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).TrackNumber&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Duration&lt;br /&gt;
|  Duration of current song,   also available are &amp;quot;MusicPlayer.offset(number).Duration&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Duration&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.BitRate&lt;br /&gt;
|  Bitrate of current song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Channels&lt;br /&gt;
|  Number of channels of current song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.BitsPerSample&lt;br /&gt;
|  Number of bits per sample of current song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.SampleRate&lt;br /&gt;
|  Samplerate of current song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Codec&lt;br /&gt;
|  Codec of current song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.PlaylistPosition&lt;br /&gt;
|  Position of the current song in the current music playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.PlaylistLength&lt;br /&gt;
|  Total size of the current music playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ChannelName&lt;br /&gt;
|  Channel name of the radio programme that&#039;s currently playing (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ChannelNumberLabel&lt;br /&gt;
|  Channel and subchannel number of the radio channel that&#039;s currently playing (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ChannelGroup&lt;br /&gt;
|  Channel group of  of the radio programme that&#039;s currently playing (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Contributors&lt;br /&gt;
| List of all people who&#039;ve contributed to the currently playing song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ContributorAndRole&lt;br /&gt;
| List of all people and their role who&#039;ve contributed to the currently playing song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Mood&lt;br /&gt;
| Mood of the currently playing song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Arranger)&lt;br /&gt;
| Returns the name of the person who arranged the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Composer)&lt;br /&gt;
| Returns the name of the person who composed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Conductor)&lt;br /&gt;
| Returns the name of the person who conducted the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.DJMixer)&lt;br /&gt;
| Returns the name of the dj who remixed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Engineer)&lt;br /&gt;
| Returns the name of the person who was the engineer of the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Lyricist)&lt;br /&gt;
| Returns the name of the person who wrote the lyrics of the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Mixer)&lt;br /&gt;
| Returns the name of the person who mixed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Orchestra)&lt;br /&gt;
| Returns the name of the orchestra performing the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Producer)&lt;br /&gt;
| Returns the name of the person who produced the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Remixer)&lt;br /&gt;
| Returns the name of the person who remixed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.UserRating&lt;br /&gt;
| The rating the user gave to the currently playing song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.DBID&lt;br /&gt;
| The database id of the currently playing song&lt;br /&gt;
| v17 Addition&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Video player ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Time&lt;br /&gt;
|  Current time in movie&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.TimeRemaining&lt;br /&gt;
|  Current remaining time in movie&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.TimeSpeed&lt;br /&gt;
|  Current time + playspeed. eg 1:23:14 (-4x)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Duration&lt;br /&gt;
|  Length of current movie&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Title&lt;br /&gt;
|  Title of currently playing video. If it&#039;s in the database it will return the database title, else the filename&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.TVShowTitle&lt;br /&gt;
|  Title of currently playing episode&#039;s tvshow name&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Season&lt;br /&gt;
|  Season number of the currently playing episode, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Episode&lt;br /&gt;
|  Episode number of the currently playing episode&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Genre&lt;br /&gt;
|  Genre(s) of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Director&lt;br /&gt;
|  Director of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Country&lt;br /&gt;
|  Production country of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Year&lt;br /&gt;
|  Year of release of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Rating&lt;br /&gt;
|  IMDb user rating of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.UserRating&lt;br /&gt;
|  Shows the user rating of the currently playing item&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Votes&lt;br /&gt;
|  IMDb votes of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.RatingAndVotes&lt;br /&gt;
|  IMDb user rating and votes of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.mpaa&lt;br /&gt;
|  MPAA rating of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.IMDBNumber&lt;br /&gt;
|  The IMDB iD of the current video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.EpisodeName&lt;br /&gt;
|  (PVR only) The name of the episode if the playing video is a TV Show, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.PlaylistPosition&lt;br /&gt;
|  Position of the current song in the current video playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.PlaylistLength&lt;br /&gt;
|  Total size of the current video playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Cast&lt;br /&gt;
|  A concatenated string of cast members of the current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.CastAndRole&lt;br /&gt;
|  A concatenated string of cast members and roles of the current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Album&lt;br /&gt;
|  Album from which the current Music Video is from, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Artist&lt;br /&gt;
|  Artist(s) of current Music Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Studio&lt;br /&gt;
|  Studio of current Music Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Writer&lt;br /&gt;
|  Name of Writer of current playing Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Tagline&lt;br /&gt;
|  Small Summary of current playing Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.PlotOutline&lt;br /&gt;
|  Small Summary of current playing Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Plot&lt;br /&gt;
|  Complete Text Summary of current playing Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.LastPlayed&lt;br /&gt;
|  Last play date of current playing Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|- class=&amp;quot;userrow&lt;br /&gt;
|  VideoPlayer.PlayCount&lt;br /&gt;
|  Playcount of current playing Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|- class=&amp;quot;userrow&lt;br /&gt;
|  VideoPlayer.VideoCodec&lt;br /&gt;
|  Shows the video codec of the currently playing video (common values: see ListItem.VideoCodec)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.VideoResolution&lt;br /&gt;
|  Shows the video resolution of the currently playing video (possible values: see ListItem.VideoResolution)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.VideoAspect&lt;br /&gt;
|  Shows the aspect ratio of the currently playing video (possible values: see ListItem.VideoAspect)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.AudioCodec&lt;br /&gt;
|  Shows the audio codec of the currently playing video, optionally &#039;n&#039; defines the number of the audiostream (common values: see ListItem.AudioCodec)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.AudioChannels&lt;br /&gt;
|  Shows the number of audio channels of the currently playing video (possible values: see ListItem.AudioChannels)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.AudioLanguage&lt;br /&gt;
|  Shows the language of the audio of the currently playing video(possible values: see ListItem.AudioLanguage)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.SubtitlesLanguage&lt;br /&gt;
|  Shows the language of the subtitle of the currently playing video (possible values: see ListItem.SubtitlesLanguage)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.StereoscopicMode&lt;br /&gt;
|  Shows the stereoscopic mode of the currently playing video (possible values: see ListItem.StereoscopicMode)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.EndTime&lt;br /&gt;
|  End date of the currently playing programme (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextTitle&lt;br /&gt;
|  Title of the programme that will be played next (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextGenre&lt;br /&gt;
|  Genre of the programme that will be played next (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextPlot&lt;br /&gt;
|  Plot of the programme that will be played next (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextPlotOutline&lt;br /&gt;
|  Plot outline of the programme that will be played next (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextStartTime&lt;br /&gt;
|  Start time of the programme that will be played next (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextEndTime&lt;br /&gt;
|  End time of the programme that will be played next (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextDuration&lt;br /&gt;
|  Duration of the programme that will be played next (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ChannelName&lt;br /&gt;
|  Name of the curently tuned channel (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ChannelNumberLabel&lt;br /&gt;
|  Channel and subchannel number of the tv channel that&#039;s currently playing (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ChannelGroup&lt;br /&gt;
|  Group of the curently tuned channel (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ParentalRating&lt;br /&gt;
|  Parental rating of the currently playing programme (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.DBID&lt;br /&gt;
| The database id of the currently playing video&lt;br /&gt;
| v17 Addition&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Playlist ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Length(media)&lt;br /&gt;
|  Total size of the current playlist. optional parameter media is either video or music.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Position(media)&lt;br /&gt;
|  Position of the current item in the current playlist. optional parameter media is either video or music.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Random&lt;br /&gt;
|  Returns &#039;On&#039; or &#039;Off&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Repeat&lt;br /&gt;
|  Returns string ID&#039;s 592 (Repeat One), 593 (Repeat All), or 594 (Repeat Off)&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== PVR ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.NowRecordingTitle&lt;br /&gt;
|  Title of the programme being recorded&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.NowRecordingDateTime&lt;br /&gt;
|  Start date and time of the current recording&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.NowRecordingChannel&lt;br /&gt;
|  Channel number that&#039;s being recorded&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.NextRecordingTitle&lt;br /&gt;
|  Title of the next programme that will be recorded&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.NextRecordingDateTime&lt;br /&gt;
|  Start date and time of the next recording&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.NextRecordingChannel&lt;br /&gt;
|  Channel name of the next recording&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendName&lt;br /&gt;
|  Name of the backend being used&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendVersion&lt;br /&gt;
|  Version of the backend that&#039;s being used&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendHost&lt;br /&gt;
|  Backend hostname&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendDiskSpace&lt;br /&gt;
|  Available diskspace on the backend&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendChannels&lt;br /&gt;
|  Number of available channels the backend provides&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendTimers&lt;br /&gt;
|  Number of timers set for the backend&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendRecordings&lt;br /&gt;
|  Number of recording available on the backend&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
|  PVR.BackendDiskspace&lt;br /&gt;
|  Free diskspace available for recordings on the backend&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendNumber&lt;br /&gt;
|  Backend number&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TotalDiscSpace&lt;br /&gt;
|  Total diskspace available for recordings&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.NextTimer&lt;br /&gt;
|  Next timer date&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.EpgEventDuration[(format)]&lt;br /&gt;
|  Returns the duration of the currently played title on TV. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.EpgEventElapsedTime[(format)]&lt;br /&gt;
|  Returns the time position of the currently played title on TV. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.EpgEventRemainingTime[(format)]&lt;br /&gt;
|  Returns the remaining time for currently playing epg event. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.EpgEventFinishTime[(format)]&lt;br /&gt;
|  Returns the time the currently playing epg event will end. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.EpgEventSeekTime[(format)]&lt;br /&gt;
|  Returns the seek time of the currently playing epg event. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.EpgEventProgress&lt;br /&gt;
|  Returns the position of currently played title on TV as integer&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeShiftStart[(format)]&lt;br /&gt;
|  Start position of the timeshift. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeShiftEnd[(format)]&lt;br /&gt;
|  End position of the timeshift. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeShiftCur[(format)]&lt;br /&gt;
|  Current position of the timeshift. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeShiftOffset[(format)]&lt;br /&gt;
|  Current offset of the timeshift. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeShiftProgress&lt;br /&gt;
|  Returns the position of currently timeshifted title on TV as interger&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamClient&lt;br /&gt;
| Stream client name&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamDevice&lt;br /&gt;
| Stream device name&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamStatus&lt;br /&gt;
| Status of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamSignal&lt;br /&gt;
| Signal quality of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamSnr&lt;br /&gt;
| Signal to noise ratio of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamBer&lt;br /&gt;
| Bit error rate of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamUnc&lt;br /&gt;
| UNC value of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamVideoBitRate&lt;br /&gt;
| Video bitrate of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamAudioBitRate&lt;br /&gt;
| Audio bitrate of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamDolbyBitRate&lt;br /&gt;
| Dolby bitrate of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamProgrSignal&lt;br /&gt;
| Signal quality of the programme&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamProgrSnr&lt;br /&gt;
| Signal to noise ratio of the programme&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamEncryptionName&lt;br /&gt;
| Encryption used on the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNowRecordingTitle&lt;br /&gt;
| Title of the tv programme being recorded&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNowRecordingDateTime&lt;br /&gt;
| Start date and time of the current tv recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNowRecordingChannel&lt;br /&gt;
| Channel name of the current tv recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNowRecordingChannelIcon&lt;br /&gt;
| Icon of the current recording TV channel&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNextRecordingTitle&lt;br /&gt;
| Title of the next tv programme that will be recorded&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNextRecordingDateTime&lt;br /&gt;
| Start date and time of the next tv recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNextRecordingChannel&lt;br /&gt;
| Channel name of the next tv recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNextRecordingChannelIcon&lt;br /&gt;
| Icon of the next recording tv channel&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.RadioNowRecordingTitle&lt;br /&gt;
| Title of the radio programme being recorded&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.RadioNowRecordingDateTime&lt;br /&gt;
| Start date and time of the current radio recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.RadioNowRecordingChannel&lt;br /&gt;
| Channel name of the current radio recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.RadioNowRecordingChannelIcon&lt;br /&gt;
| Icon of the current recording radio channel&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.RadioNextRecordingTitle&lt;br /&gt;
| Title of the next radio programme that will be recorded&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.RadioNextRecordingDateTime&lt;br /&gt;
| Start date and time of the next radio recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.RadioNextRecordingChannel&lt;br /&gt;
| Channel name of the next radio recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.ChannelNumberInput&lt;br /&gt;
|  Label displaying the number the user entered on remote or keyboard&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressDuration&lt;br /&gt;
|  Returns the duration of the PVR timeshift progress in the format hh:mm:ss. hh: will be omitted if hours value is zero&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressDuration(format)&lt;br /&gt;
|  Returns the duration of the PVR timeshift progress in different formats, hours (hh), minutes (mm) or seconds (ss)&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressStartTime&lt;br /&gt;
|  Returns the start time of the PVR timeshift progress in the format hh:mm:ss. hh: will be omitted if hours value is zero&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressStartTime(format)&lt;br /&gt;
|  Returns the start time of the PVR timeshift progress in different formats, hours (hh), minutes (mm) or seconds (ss)&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressEndTime&lt;br /&gt;
|  Returns the end time of the PVR timeshift progress in the format hh:mm:ss. hh: will be omitted if hours value is zero&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressEndTime(format)&lt;br /&gt;
|  Returns the end time of the PVR timeshift progress in different formats, hours (hh), minutes (mm) or seconds (ss)&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressPlayPos&lt;br /&gt;
|  Returns the percentage of the current play position within the PVR timeshift progress&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressEpgStart&lt;br /&gt;
|  Returns the percentage of the start of the currently playing epg event within the PVR timeshift progress&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressEpgEnd&lt;br /&gt;
|  Returns the percentage of the end of the currently playing epg event within the PVR timeshift progress&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressBufferStart&lt;br /&gt;
|  Returns the percentage of the start of the timeshift buffer within the PVR timeshift progress&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressBufferEnd&lt;br /&gt;
|  Returns the percentage of the end of the timeshift buffer within the PVR timeshift progress&lt;br /&gt;
|  v18&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== RDS ===&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  RDS.AudioLanguage&lt;br /&gt;
|  The from RDS reported audio language of channel&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ChannelCountry&lt;br /&gt;
|  Country where the radio channel is sended&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.GetLine(number)&lt;br /&gt;
|  Returns the last sended RDS text messages on givern number, 0 is thelast and 4 rows are supported (0-3)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.Title&lt;br /&gt;
|  Title of item; e.g. track title of an album (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.Artist&lt;br /&gt;
|  A person or band/collective generally considered responsible for the work (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.Band&lt;br /&gt;
|  Band/orchestra/accompaniment/musician (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.Composer&lt;br /&gt;
|  Name of the original composer/author (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.Conductor&lt;br /&gt;
|  The artist(s) who performed the work. In classical music this would bethe conductor (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.Album&lt;br /&gt;
|  The collection name to which this track belongs (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.TrackNumber&lt;br /&gt;
|  The track number of the item on the album on which it was originallyreleased. (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.RadioStyle&lt;br /&gt;
|  The from radio channel used style of currently played part, e.g &amp;quot;popmusic&amp;quot;, &amp;quot;news&amp;quot; or &amp;quot;weather&amp;quot;&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.Comment&lt;br /&gt;
|  Radio station comment string if available (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoNews&lt;br /&gt;
|  Message / headline (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoNewsLocal&lt;br /&gt;
|  Local information news sended from radio channel (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoStock&lt;br /&gt;
|  Quote information; either as one part or as several distinct parts:&amp;quot;name 99latest value 99change 99high 99low 99volume&amp;quot; (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoStockSize&lt;br /&gt;
|  Number of rows present in stock information (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoSport&lt;br /&gt;
|  Result of a game; either as one part or as several distinct parts:&amp;quot;match 99result&amp;quot;, e.g. &amp;quot;Bayern München : Borussia 995:5&amp;quot;  (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoSportSize&lt;br /&gt;
|  Number of rows present in sport information (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoLottery&lt;br /&gt;
|  Raffle / lottery: &amp;quot;key word 99values&amp;quot; (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoLotterySize&lt;br /&gt;
|  Number of rows present in lottery information (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoWeather&lt;br /&gt;
|  Weather informations sended from radio channel (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoWeatherSize&lt;br /&gt;
|  Number of rows present in weather information (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoCinema&lt;br /&gt;
|  Information about movies in cinema (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoCinemaSize&lt;br /&gt;
|  Number of rows present in cinema information (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoHoroscope&lt;br /&gt;
|  Horoscope; either as one part or as two distinct parts:&amp;quot;key word 99text&amp;quot;, e.g. &amp;quot;sign of the zodiac 99blablabla&amp;quot; (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoHoroscopeSize&lt;br /&gt;
|  Number of rows present in horoscope information (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoOther&lt;br /&gt;
|  Other information, not especially specified: &amp;quot;key word 99info&amp;quot; (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoOtherSize&lt;br /&gt;
|  Number of rows present with other informations (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ProgStation&lt;br /&gt;
|  Name of the radio channel@note becomes also be set from epg if from RDS not available&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ProgNow&lt;br /&gt;
|  Now played program name@note becomes also be set from epg if from RDS not available&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ProgNext&lt;br /&gt;
|  Next played program name (if available)@note becomes also be set from epg if from RDS not available&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ProgHost&lt;br /&gt;
|  Name of the host of the radio show&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ProgEditStaff&lt;br /&gt;
|  Name of the editorial staff; e.g. name of editorial journalist (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ProgHomepage&lt;br /&gt;
|  Link to radio station homepage (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ProgStyle&lt;br /&gt;
|  Human readable string about radiostyle defined from RDS or RBDS&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.PhoneHotline&lt;br /&gt;
|  The telephone number of the radio station&#039;s hotline (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.PhoneStudio&lt;br /&gt;
|  The telephone number of the radio station&#039;s studio (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.SmsStudio&lt;br /&gt;
|  The sms number of the radio stations studio (to send directly a sms to the studio) (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.EmailHotline&lt;br /&gt;
|  The email adress of the radio stations hotline (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.EmailStudio&lt;br /&gt;
|  The email adress of the radio stations studio (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Skin ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.CurrentTheme&lt;br /&gt;
|  Returns the current selected skin theme.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.CurrentColourTheme&lt;br /&gt;
|  Returns the current selected colour theme of the skin.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.Font&lt;br /&gt;
|  Returns the current fontset from Font.xml.&lt;br /&gt;
|  v18 addition&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.String(name)&lt;br /&gt;
| Returns the &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;user-set&amp;lt;/span&amp;gt; skin string, set via the Skin.SetString(name) &#039;&#039;&#039;[[List of Built In Functions]]&#039;&#039;&#039;. Allows skinners to have &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;user-customisable&amp;lt;/span&amp;gt; labels.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.AspectRatio&lt;br /&gt;
|  Returns the closest aspect ratio match using the resolution info from the skin&#039;s addon.xml file.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Slideshow ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-  &lt;br /&gt;
|  Slideshow.Altitude&lt;br /&gt;
|  Shows the altitude in meters where the current picture was taken. This is the value of the EXIF GPSInfo.GPSAltitude tag.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Aperture&lt;br /&gt;
|  Shows the F-stop used to take the current picture. This is the value of the EXIF FNumber tag (hex code 0x829D).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Author&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Byline&lt;br /&gt;
|  Shows the name of the person who created the current picture.  This is the value of the IPTC Byline tag (hex code 0x50).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.BylineTitle&lt;br /&gt;
|  Shows the title of the person who created the current picture. This is the value of the IPTC BylineTitle tag (hex code 0x55).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CameraMake&lt;br /&gt;
|  Shows the manufacturer of the camera used to take the current picture. This is the value of the EXIF Make tag (hex code 0x010F).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CameraModel&lt;br /&gt;
|  Shows the manufacturer&#039;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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Caption&lt;br /&gt;
|  Shows a description of the current picture. This is the value of the IPTC Caption tag (hex code 0x78).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Category&lt;br /&gt;
|  Shows the subject of the current picture as a category code. This is the value of the IPTC Category tag (hex code 0x0F).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CCDWidth&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.City&lt;br /&gt;
|  Shows the city where the current picture was taken. This is the value of the IPTC City tag (hex code 0x5A).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Colour&lt;br /&gt;
|  Shows whether the current picture is &amp;quot;Colour&amp;quot; or &amp;quot;Black and White&amp;quot;.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CopyrightNotice&lt;br /&gt;
|  Shows the copyright notice of the current picture. This is the value of the IPTC Copyright tag (hex code 0x74).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Country&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CountryCode&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Credit&lt;br /&gt;
|  Shows who provided the current picture. This is the value of the IPTC Credit tag (hex code 0x6E).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.DigitalZoom&lt;br /&gt;
|  Shows the digital zoom ratio when the current picture was taken. This is the value of the EXIF .DigitalZoomRatio tag (hex code 0xA404).  &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFComment&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFDate&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFDescription&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFSoftware&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFTime&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Exposure&lt;br /&gt;
|  Shows the class of the program used by the camera to set exposure when the current picture was taken. Values include &amp;quot;Manual&amp;quot;, &amp;quot;Program (Auto)&amp;quot;, &amp;quot;Aperture priority (Semi-Auto)&amp;quot;, &amp;quot;Shutter priority (semi-auto)&amp;quot;, etc. This is the value of the EXIF ExposureProgram tag (hex code 0x8822).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ExposureBias&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ExposureMode&lt;br /&gt;
|  Shows the exposure mode of the current picture. The possible values are &amp;quot;Automatic&amp;quot;, &amp;quot;Manual&amp;quot;, and &amp;quot;Auto bracketing&amp;quot;. This is the value of the EXIF ExposureMode tag (hex code 0xA402).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ExposureTime&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Filedate&lt;br /&gt;
|  Shows the file date of the current picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Filename&lt;br /&gt;
|  Shows the file name of the current picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Filesize&lt;br /&gt;
|  Shows the file size of the current picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.FlashUsed&lt;br /&gt;
|  Shows the status of flash when the current picture was taken. The value will be either &amp;quot;Yes&amp;quot; or &amp;quot;No&amp;quot;, and might include additional information. This is the value of the EXIF Flash tag (hex code 0x9209).  &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.FocalLength&lt;br /&gt;
|  Shows the focal length of the lens, in mm. This is the value of the EXIF FocalLength tag (hex code 0x920A).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.FocusDistance&lt;br /&gt;
|  Shows the distance to the subject, in meters. This is the value of the EXIF SubjectDistance tag (hex code 0x9206).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Headline&lt;br /&gt;
|  Shows a synopsis of the contents of the current picture. This is the value of the IPTC Headline tag (hex code 0x69).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ImageType&lt;br /&gt;
|  Shows the color components of the current picture. This is the value of the IPTC ImageType tag (hex code 0x82).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.IPTCDate&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ISOEquivalence&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Keywords&lt;br /&gt;
|  Shows keywords assigned to the current picture. This is the value of the IPTC Keywords tag (hex code 0x19).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Latitude&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.LightSource&lt;br /&gt;
|  Shows the kind of light source when the picture was taken. Possible values include &amp;quot;Daylight&amp;quot;, &amp;quot;Fluorescent&amp;quot;, &amp;quot;Incandescent&amp;quot;, etc. This is the value of the EXIF LightSource tag (hex code 0x9208).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.LongEXIFDate&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.LongEXIFTime&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Longitude&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.MeteringMode&lt;br /&gt;
|  Shows the metering mode used when the current picture was taken. The possible values are &amp;quot;Center weight&amp;quot;, &amp;quot;Spot&amp;quot;, or &amp;quot;Matrix&amp;quot;. This is the value of the EXIF MeteringMode tag (hex code 0x9207).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ObjectName&lt;br /&gt;
|  Shows a shorthand reference for the current picture. This is the value of the IPTC ObjectName tag (hex code 0x05).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Orientation&lt;br /&gt;
|  Shows the orientation of the current picture. Possible values are &amp;quot;Top Left&amp;quot;, &amp;quot;Top Right&amp;quot;, &amp;quot;Left Top&amp;quot;, &amp;quot;Right Bottom&amp;quot;, etc. This is the value of the EXIF Orientation tag (hex code 0x0112).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Path&lt;br /&gt;
|  Shows the file path of the current picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Process&lt;br /&gt;
|  Shows the process used to compress the current picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ReferenceService&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Resolution&lt;br /&gt;
|  Shows the dimensions of the current picture (Width x Height)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SlideComment&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SlideIndex&lt;br /&gt;
|  Shows the slide index of the current picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Source&lt;br /&gt;
|  Shows the original owner of the current picture. This is the value of the IPTC Source tag (hex code 0x73).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SpecialInstructions&lt;br /&gt;
|  Shows other editorial instructions concerning the use of the current picture. This is the value of the IPTC SpecialInstructions tag (hex code 0x28).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.State&lt;br /&gt;
|  Shows the State/Province where the current picture was taken. This is the value of the IPTC ProvinceState tag (hex code 0x5F).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Sublocation&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SupplementalCategories&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.TimeCreated&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.TransmissionReference&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Urgency&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.WhiteBalance&lt;br /&gt;
|  Shows the white balance mode set when the current picture was taken. The possible values are &amp;quot;Manual&amp;quot; and &amp;quot;Auto&amp;quot;. This is the value of the EXIF WhiteBalance tag (hex code 0xA403).&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== System ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  System.Time&lt;br /&gt;
|  Current time&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.Time(format)&lt;br /&gt;
|  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&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.Date&lt;br /&gt;
|  Current date&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.Date(format)&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.AlarmPos&lt;br /&gt;
|  Shutdown Timer position&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.BatteryLevel&lt;br /&gt;
|  Returns the remaining battery level in range 0-100&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.FreeSpace&lt;br /&gt;
|  Total Freespace on the drive&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.UsedSpace&lt;br /&gt;
|  Total Usedspace on the drive&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.TotalSpace&lt;br /&gt;
|  Totalspace on the drive&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.UsedSpacePercent&lt;br /&gt;
|  Total Usedspace Percent on the drive&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.FreeSpacePercent&lt;br /&gt;
|  Total Freespace Percent on the drive&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.CPUTemperature&lt;br /&gt;
|  Current CPU temperature&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.CpuUsage&lt;br /&gt;
|  Displays the cpu usage for each individual cpu core.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.CoreUsage(id)&lt;br /&gt;
|  Displays the usage of the cpu core with the given &#039;id&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.GPUTemperature&lt;br /&gt;
|  Current GPU temperature&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.FanSpeed&lt;br /&gt;
|  Current fan speed&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.BuildVersion&lt;br /&gt;
|  Version of build&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.BuildDate&lt;br /&gt;
|  Date of build&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.FriendlyName&lt;br /&gt;
|  Returns the Kodi instance name. It will auto append (%hostname%) in case the device name was not changed. eg. &amp;quot;Kodi (htpc)&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.FPS&lt;br /&gt;
|  Current rendering speed (frames per second)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.FreeMemory&lt;br /&gt;
|  Amount of free memory in Mb&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.Memory(format)&lt;br /&gt;
|  Available formats: used, used.percent, free, free.percent, total&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenMode&lt;br /&gt;
|  Screenmode (eg windowed / fullscreen)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenWidth&lt;br /&gt;
|  Width of screen in pixels&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenHeight&lt;br /&gt;
|  Height of screen in pixels&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.StartupWindow&lt;br /&gt;
|  The Window Kodi will load on startup&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.CurrentWindow&lt;br /&gt;
|  Current Window we are in&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.CurrentControl&lt;br /&gt;
|  Current focused control&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.CurrentControlID&lt;br /&gt;
|  ID of the currently focused control.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.DVDLabel&lt;br /&gt;
|  Label of the disk in the &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;DVD-ROM&amp;lt;/span&amp;gt; drive&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.HddTemperature&lt;br /&gt;
|  Hdd temperature&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.OSVersionInfo&lt;br /&gt;
|  System name + kernel version&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.KernelVersion (deprecated)&lt;br /&gt;
|  System name + kernel version&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.Uptime&lt;br /&gt;
|  System current uptime&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.TotalUptime&lt;br /&gt;
|  System total uptime&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.CpuFrequency&lt;br /&gt;
|  System cpu frequency&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenResolution&lt;br /&gt;
|  Screen resolution&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.VideoEncoderInfo&lt;br /&gt;
|  Video encoder info&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.InternetState&lt;br /&gt;
|  Will return the internet state, connected or not connected&lt;br /&gt;
and for Conditional use: Connected-&amp;gt;TRUE, not Connected-&amp;gt;FALSE, do not use to check status in a pythonscript since it is threaded.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.Language&lt;br /&gt;
|  Shows the current language&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileName&lt;br /&gt;
|  Shows the User name of the currently logged in Kodi user&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileCount&lt;br /&gt;
|  Shows the number of defined profiles&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileAutoLogin&lt;br /&gt;
|  The profile Kodi will auto login to&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.StereoscopicMode&lt;br /&gt;
|  The prefered stereoscopic mode (settings &amp;gt; video &amp;gt; playback)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.TemperatureUnits&lt;br /&gt;
|  Shows Celsius or Fahrenheit symbol&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.AddonTitle(id)&lt;br /&gt;
|  Returns the title of the addon with the given id&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.AddonVersion(id)&lt;br /&gt;
|  Returns the version of the addon with the given id&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Visualisation ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Visualisation.Preset&lt;br /&gt;
|  Shows the current preset of the visualisation.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Visualisation.Name&lt;br /&gt;
|  Shows the name of the visualisation.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Weather labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.Conditions&lt;br /&gt;
|  Current weather conditions – this is looked up in a background process.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.Temperature&lt;br /&gt;
|  Current weather temperature&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.Location&lt;br /&gt;
|  City/town which the above two items are for&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.fanartcode&lt;br /&gt;
|  Current weather fanartcode.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.plugin&lt;br /&gt;
|  Current weather plugin.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Window ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Window([window]).Property(key)&lt;br /&gt;
|  Window property. (key can be any value, optional window can be id or name)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Window.Property(xmlfile)&lt;br /&gt;
|  Displays the name of the xml file currently shown&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Window(AddonBrowser).Property(Updated)&lt;br /&gt;
|  Shows the date and time the addon repo was last checked for updates&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Window.Property(Addon.ID)&lt;br /&gt;
| Returns the id of the selected addon, in DialogAddonSettings.xml&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Window(Home).Property(key)&lt;br /&gt;
|  The home window has the following info labels.&lt;br /&gt;
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&lt;br /&gt;
&lt;br /&gt;
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&lt;br /&gt;
&lt;br /&gt;
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&lt;br /&gt;
&lt;br /&gt;
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&lt;br /&gt;
&lt;br /&gt;
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&lt;br /&gt;
&lt;br /&gt;
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&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Window(Weather).Property(key)&lt;br /&gt;
|  The weather window has the following info labels.&lt;br /&gt;
Location, Updated, Current.Condition, Current.Temperature, Current.FeelsLike, Current.UVIndex, Current.Wind (From &amp;lt;wind dir.&amp;gt; at &amp;lt;speed&amp;gt; &amp;lt;unit&amp;gt;), 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&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
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&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Images Available in Kodi ===&lt;br /&gt;
&lt;br /&gt;
See [[Artwork/Accessing with skins and JSON-RPC]] for the general pattern of accessing artwork for media items.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Image&lt;br /&gt;
|  Fanart image for the parent TV Show. Note: Deprecated, use ListItem.Art(tvshow.fanart) instead.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Thumb&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Icon&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ActualIcon&lt;br /&gt;
|  Shows the icon of the currently selected item in a list or thumb control.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Overlay&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EPGEventIcon&lt;br /&gt;
|  Returns the icon of the EPG programme (if available).&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Fanart_Image)&lt;br /&gt;
|  Fanart Image currently selected item or of the parent TV show. Note: Deprecated, use ListItem.Art(fanart) or ListItem.Art(tvshow.fanart) instead.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Cover&lt;br /&gt;
|  Cover of currently playing album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Fanart_Image)&lt;br /&gt;
|  Fanart image of the currently playing artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Icon&lt;br /&gt;
|  Shows the thumbnail (if it exists) of the currently playing item. If no thumbnail image exists, it will show the icon.&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Player.StarRating&lt;br /&gt;
|  Returns a value of 0 to 5 as a graphical display from images named rating0.png to rating5.png of the skin&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NowRecordingChannelIcon&lt;br /&gt;
|  Channel icon of the programme currently being recorded.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NextRecordingChannelIcon&lt;br /&gt;
|  Channel icon of the programme that will be recorded next.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.EPGEventIcon&lt;br /&gt;
|  Returns the icon of the currently playing EPG programme (if available).&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.String(name)&lt;br /&gt;
| Returns the image or image folder set by the user via a Skin.SetPath(name) or Skin.SetImage(name) &#039;&#039;&#039;[[List of Built In Functions]]&#039;&#039;&#039;. Allows skinners to have &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;user-customisable&amp;lt;/span&amp;gt; images and multiimages.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.AddonIcon(id)&lt;br /&gt;
|  Returns the Icon of the specified addon. Instead of specifying the id directly, one can also use an infolabel (eg. $INFO[Skin.String(Foo)])&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileThumb&lt;br /&gt;
|  Shows the Thumbnail image of the currently logged in Kodi user&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Cover&lt;br /&gt;
|  Cover of currently playing movie.  Note: Deprecated, use ListItem.Art(poster) instead.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.ConditionsIcon&lt;br /&gt;
|  Image of current weather conditions (NOTE: Can be used to load/refresh weather conditions)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Window([window]).Property(key)&lt;br /&gt;
|  Window property. (key can be any value, optional window can be id or name)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Window(Weather).Property(key)&lt;br /&gt;
|  The weather window has the following info images.&lt;br /&gt;
Current.ConditionIcon, Day[0-6].OutlookIcon, Current.FanartCode, Day[0-6].FanartCode, WeatherProviderLogo&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section end=&amp;quot;main content&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&#039;&#039;&#039;Development:&#039;&#039;&#039;&lt;br /&gt;
* [[Add-on development]]&lt;br /&gt;
* [[Skinning]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Skin development]]&lt;br /&gt;
[[Category:Add-on development]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=InfoLabels&amp;diff=157154</id>
		<title>InfoLabels</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=InfoLabels&amp;diff=157154"/>
		<updated>2019-02-02T17:11:42Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* Images Available in Kodi */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[Development]]|[[Add-on development]]|[[Skinning]]}}&lt;br /&gt;
&amp;lt;section begin=&amp;quot;main content&amp;quot; /&amp;gt;&lt;br /&gt;
Skins can use infolabels with $INFO[infolabel] or the &amp;lt;info&amp;gt; tag. Scripts can read infolabels with &amp;lt;code&amp;gt;xbmc.getInfoLabel(&#039;infolabel&#039;)&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
An up-to-date list can be found here [https://github.com/xbmc/xbmc/blob/master/xbmc/GUIInfoManager.cpp GUIInfoManager.cpp]&lt;br /&gt;
&lt;br /&gt;
=== Container ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Content&lt;br /&gt;
|  Shows content of the current container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.FolderPath&lt;br /&gt;
|  Shows complete path of currently displayed folder&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.FolderName&lt;br /&gt;
|  Shows top most folder in currently displayed folder&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Viewmode&lt;br /&gt;
|  Returns the current viewmode (list, icons etc.)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.SortMethod&lt;br /&gt;
|  Returns the current sort method (name, year, rating, etc.)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.SortOrder&lt;br /&gt;
|  Returns the current sort order (Ascending/Descending)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.PluginName&lt;br /&gt;
|  Returns the current plugins base folder name&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.PluginCategory&lt;br /&gt;
|  Returns the current plugins category (set by the scripter)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.ShowPlot&lt;br /&gt;
|  Returns the TV Show plot of the current container and can be used at season and episode level&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.ShowTitle&lt;br /&gt;
|  Returns the TV Show title of the current container and can be used at season and episode level&lt;br /&gt;
|  v17 addition&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).NumPages&lt;br /&gt;
|  Number of pages in the container with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).NumItems&lt;br /&gt;
|  Number of items in the container or grouplist with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).NumAllItems&lt;br /&gt;
|  Number of all items in the container or grouplist with given id including parent folder item.&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).NumNonFolderItems&lt;br /&gt;
|  Number of items in the container or grouplist with given id excluding all folder items.&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).CurrentPage&lt;br /&gt;
|  Current page in the container with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).CurrentItem&lt;br /&gt;
|  Current item in the container or grouplist with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).Position&lt;br /&gt;
|  Returns the current focused position of container / grouplist (id) as a numeric label.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).Column&lt;br /&gt;
|  Returns the column number of the focused position in a panel container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).Row&lt;br /&gt;
|  Returns the row number of the focused position in a panel container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).Totaltime&lt;br /&gt;
|  Returns the total time of all items in the current container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).TotalWatched&lt;br /&gt;
|  Returns the number of watched items in the current container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).TotalUnWatched&lt;br /&gt;
|  Returns the number of unwatched items in the current container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Label&lt;br /&gt;
|  Shows ListItem.Label for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(2).Label )&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Label2&lt;br /&gt;
|  Shows ListItem.Label2 for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(-2).Label2 )&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Icon&lt;br /&gt;
|  Shows ListItem.Icon for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(52).Listitem(1).Icon)&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).ActualIcon&lt;br /&gt;
|  Shows ListItem.ActualIcon for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(0).ActualIcon )&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Thumb&lt;br /&gt;
|  Shows ListItem.Thumb for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(0).Thumb )&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItemNoWrap(offset).Property&lt;br /&gt;
|  Basically returns the same as ListItem(offset) but it won&#039;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. &#039;&#039;Property&#039;&#039; has to be replaced with Label, Label2, Icon etc. &#039;&#039;( eg: Container(50).ListitemNoWrap(1).Plot )&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItemPosition(id).[infolabel]&lt;br /&gt;
|  Shows the infolabel for an item in a Container. the item id is the position in the container relative to the cursor position. &#039;&#039;( eg: Container(50).ListItemPosition(4).Genre )&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItemAbsolute(id).[infolabel]&lt;br /&gt;
|  Shows the infolabel for an item in a Container. the item id is the absolute position in the container. &#039;&#039;( eg: Container(50).ListItemAbsolute(4).Genre )&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Property(addoncategory)&lt;br /&gt;
|  Returns the current add-on category&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Property(reponame)&lt;br /&gt;
|  Returns the current add-on repository name&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Container.ViewCount&lt;br /&gt;
| The number of available skin view modes for the current container listing.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Control ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Control.GetLabel(id)[.index()]&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Fanart ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Color1&lt;br /&gt;
|  Returns the first of three colors included in the currently selected &#039;&#039;&#039;[[Fanart]]&#039;&#039;&#039; theme for the parent TV Show.  Colors are arranged Lightest to Darkest.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Color2&lt;br /&gt;
|  Returns the second of three colors included in the currently selected &#039;&#039;&#039;[[Fanart]]&#039;&#039;&#039; theme for the parent TV Show.  Colors are arranged Lightest to Darkest.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Color3&lt;br /&gt;
|  Returns the third of three colors included in the currently selected &#039;&#039;&#039;[[Fanart]]&#039;&#039;&#039; theme for the parent TV Show.  Colors are arranged Lightest to Darkest.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Game ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Game.Title&lt;br /&gt;
|  Name of the game&lt;br /&gt;
| v18&lt;br /&gt;
|-&lt;br /&gt;
|  Game.Platform&lt;br /&gt;
|  Platform the game runs on (eg. Atari 2600)&lt;br /&gt;
| v18&lt;br /&gt;
|-&lt;br /&gt;
|  Game.Genres&lt;br /&gt;
|  Gerne of the game (eg. Action)&lt;br /&gt;
| v18&lt;br /&gt;
|-&lt;br /&gt;
|  Game.Publisher&lt;br /&gt;
|  Publishing company of the game (eg. Nintendo)&lt;br /&gt;
| v18&lt;br /&gt;
|-&lt;br /&gt;
|  Game.Developer&lt;br /&gt;
|  Developer of the game&lt;br /&gt;
| v18&lt;br /&gt;
|-&lt;br /&gt;
|  Game.Overview&lt;br /&gt;
|  Game description&lt;br /&gt;
| v18&lt;br /&gt;
|-&lt;br /&gt;
|  Game.Year&lt;br /&gt;
|  Year the game was released&lt;br /&gt;
| v18&lt;br /&gt;
|-&lt;br /&gt;
|  Game.GameClient&lt;br /&gt;
|  Name of the used emulator&lt;br /&gt;
| v18&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== ListItem ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Label&lt;br /&gt;
|  Shows the left label of the currently selected item in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Label2&lt;br /&gt;
|  Shows the right label of the currently selected item in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Title&lt;br /&gt;
|  Shows the title of the currently selected song or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.OriginalTitle&lt;br /&gt;
|  Shows the original title of the currently selected movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.SortLetter&lt;br /&gt;
|  Shows the first letter of the current file in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.TrackNumber&lt;br /&gt;
|  Shows the track number of the currently selected song in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Artist&lt;br /&gt;
|  Shows the artist of the currently selected song in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AlbumArtist&lt;br /&gt;
|  Shows the artist of the currently selected album in a list&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Born)&lt;br /&gt;
|  Date of Birth of the currently selected Artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Died)&lt;br /&gt;
|  Date of Death of the currently selected Artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Formed)&lt;br /&gt;
|  Formation date of the currently selected Band&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Disbanded)&lt;br /&gt;
|  Disbanding date of the currently selected Band&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_YearsActive)&lt;br /&gt;
|  Years the currently selected artist has been active&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Instrument)&lt;br /&gt;
|  Instruments played by the currently selected artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Description)&lt;br /&gt;
|  Shows a biography of the currently selected artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Mood)&lt;br /&gt;
|  Shows the moods of the currently selected artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Style)&lt;br /&gt;
|  Shows the styles of the currently selected artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Genre)&lt;br /&gt;
|  Shows the genre of the currently selected artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Property(Artist_Sortname)&lt;br /&gt;
|  Sortname of the currently selected Artist&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Property(Artist_Type)&lt;br /&gt;
|  Type of the currently selected Artist - person, group, orchestra, choir etc.&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Property(Artist_Gender)&lt;br /&gt;
|  Gender of the currently selected Artist - male, female, other&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Property(Artist_Disambiguation)&lt;br /&gt;
|  Brief description of the currently selected Artist that differentiates them from others with the same name&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Album&lt;br /&gt;
|  Shows the album of the currently selected song in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Mood)&lt;br /&gt;
|  Shows the moods of the currently selected Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Style)&lt;br /&gt;
|  Shows the styles of the currently selected Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Theme)&lt;br /&gt;
|  Shows the themes of the currently selected Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Type)&lt;br /&gt;
|  Shows the Album Type (e.g. compilation, enhanced, explicit lyrics) of the currently selected Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Label)&lt;br /&gt;
|  Shows the record label of the currently selected Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Description)&lt;br /&gt;
|  Shows a review of the currently selected Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DiscNumber&lt;br /&gt;
|  Shows the disc number of the currently selected song in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Year&lt;br /&gt;
|  Shows the year of the currently selected song, album or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Premiered&lt;br /&gt;
|  Shows the release/aired date of the currently selected episode, show, movie or EPG item in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Genre&lt;br /&gt;
|  Shows the genre of the currently selected song, album or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Director&lt;br /&gt;
|  Shows the director of the currently selected movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Country&lt;br /&gt;
|  Shows the production country of the currently selected movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Episode&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Season&lt;br /&gt;
|  Shows the season value for the currently selected tvshow&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.TVShowTitle&lt;br /&gt;
|  Shows the name value for the currently selected tvshow in the season and episode depth of the video library&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(TotalSeasons)&lt;br /&gt;
|  Shows the total number of seasons for the currently selected tvshow&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(TotalEpisodes)&lt;br /&gt;
|  Shows the total number of episodes for the currently selected tvshow or season&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(WatchedEpisodes)&lt;br /&gt;
|  Shows the number of watched episodes for the currently selected tvshow or season&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(UnWatchedEpisodes)&lt;br /&gt;
|  Shows the number of unwatched episodes for the currently selected tvshow or season&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(NumEpisodes)&lt;br /&gt;
|  Shows the number of total, watched or unwatched episodes for the currently selected tvshow or season, based on the the current watched filter.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureAperture&lt;br /&gt;
|  Shows the F-stop used to take the selected picture. This is the value of the EXIF FNumber tag (hex code 0x829D).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureAuthor&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureByline&lt;br /&gt;
|  Shows the name of the person who created the selected picture.  This is the value of the IPTC Byline tag (hex code 0x50).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureBylineTitle&lt;br /&gt;
|  Shows the title of the person who created the selected picture. This is the value of the IPTC BylineTitle tag (hex code 0x55).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCamMake&lt;br /&gt;
|  Shows the manufacturer of the camera used to take the selected picture. This is the value of the EXIF Make tag (hex code 0x010F).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCamModel&lt;br /&gt;
|  Shows the manufacturer&#039;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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCaption&lt;br /&gt;
|  Shows a description of the selected picture. This is the value of the IPTC Caption tag (hex code 0x78).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCategory&lt;br /&gt;
|  Shows the subject of the selected picture as a category code. This is the value of the IPTC Category tag (hex code 0x0F).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCCDWidth&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCity&lt;br /&gt;
|  Shows the city where the selected picture was taken. This is the value of the IPTC City tag (hex code 0x5A).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureColour&lt;br /&gt;
|  Shows whether the selected picture is &amp;quot;Colour&amp;quot; or &amp;quot;Black and White&amp;quot;.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureComment&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCopyrightNotice&lt;br /&gt;
|  Shows the copyright notice of the selected picture. This is the value of the IPTC Copyright tag (hex code 0x74).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCountry&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCountryCode&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCredit&lt;br /&gt;
|  Shows who provided the selected picture. This is the value of the IPTC Credit tag (hex code 0x6E).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDate&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDatetime&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDesc&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDigitalZoom&lt;br /&gt;
|  Shows the digital zoom ratio when the selected picture was taken. This is the value of the EXIF DigitalZoomRatio tag (hex code 0xA404).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExpMode&lt;br /&gt;
|  Shows the exposure mode of the selected picture. The possible values are &amp;quot;Automatic&amp;quot;, &amp;quot;Manual&amp;quot;, and &amp;quot;Auto bracketing&amp;quot;. This is the value of the EXIF ExposureMode tag (hex code 0xA402).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExposure&lt;br /&gt;
|  Shows the class of the program used by the camera to set exposure when the selected picture was taken. Values include &amp;quot;Manual&amp;quot;, &amp;quot;Program (Auto)&amp;quot;, &amp;quot;Aperture priority (Semi-Auto)&amp;quot;, &amp;quot;Shutter priority (semi-auto)&amp;quot;, etc. This is the value of the EXIF ExposureProgram tag (hex code 0x8822).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExposureBias&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExpTime&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureFlashUsed&lt;br /&gt;
|  Shows the status of flash when the selected picture was taken. The value will be either &amp;quot;Yes&amp;quot; or &amp;quot;No&amp;quot;, and might include additional information. This is the value of the EXIF Flash tag (hex code 0x9209).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureFocalLen&lt;br /&gt;
|  Shows the lens focal length of the selected picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureFocusDist&lt;br /&gt;
|  Shows the focal length of the lens, in mm. This is the value of the EXIF FocalLength tag (hex code 0x920A).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureGPSLat&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureGPSLon&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureGPSAlt&lt;br /&gt;
|  Shows the altitude in meters where the selected picture was taken. This is the value of the EXIF GPSInfo.GPSAltitude tag.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureHeadline&lt;br /&gt;
|  Shows a synopsis of the contents of the selected picture. This is the value of the IPTC Headline tag (hex code 0x69).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureImageType&lt;br /&gt;
|  Shows the color components of the selected picture. This is the value of the IPTC ImageType tag (hex code 0x82).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureIPTCDate&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureIPTCTime&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureISO&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureKeywords&lt;br /&gt;
|  Shows keywords assigned to the selected picture. This is the value of the IPTC Keywords tag (hex code 0x19).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureLightSource&lt;br /&gt;
|  Shows the kind of light source when the picture was taken. Possible values include &amp;quot;Daylight&amp;quot;, &amp;quot;Fluorescent&amp;quot;, &amp;quot;Incandescent&amp;quot;, etc. This is the value of the EXIF LightSource tag (hex code 0x9208).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureLongDate&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureLongDatetime&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureMeteringMode&lt;br /&gt;
|  Shows the metering mode used when the selected picture was taken. The possible values are &amp;quot;Center weight&amp;quot;, &amp;quot;Spot&amp;quot;, or &amp;quot;Matrix&amp;quot;. This is the value of the EXIF MeteringMode tag (hex code 0x9207).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureObjectName&lt;br /&gt;
|  Shows a shorthand reference for the selected picture. This is the value of the IPTC ObjectName tag (hex code 0x05).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureOrientation&lt;br /&gt;
|  Shows the orientation of the selected picture. Possible values are &amp;quot;Top Left&amp;quot;, &amp;quot;Top Right&amp;quot;, &amp;quot;Left Top&amp;quot;, &amp;quot;Right Bottom&amp;quot;, etc. This is the value of the EXIF Orientation tag (hex code 0x0112).&lt;br /&gt;
|&lt;br /&gt;
|-     &lt;br /&gt;
|  ListItem.PicturePath&lt;br /&gt;
|  Shows the filename and path of the selected picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureProcess&lt;br /&gt;
|  Shows the process used to compress the selected picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureReferenceService&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureResolution&lt;br /&gt;
|  Shows the dimensions of the selected picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSource&lt;br /&gt;
|  Shows the original owner of the selected picture. This is the value of the IPTC Source tag (hex code 0x73).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSpecialInstructions&lt;br /&gt;
|  Shows other editorial instructions concerning the use of the selected picture. This is the value of the IPTC SpecialInstructions tag (hex code 0x28).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureState&lt;br /&gt;
|  Shows the State/Province where the selected picture was taken. This is the value of the IPTC ProvinceState tag (hex code 0x5F).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSublocation&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSupplementalCategories&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureTransmissionReference&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureUrgency&lt;br /&gt;
|  Shows the urgency of the selected picture. Values are 1-9. The &amp;quot;1&amp;quot; is most urgent. Some image management programs use urgency to indicate picture rating, where urgency &amp;quot;1&amp;quot; is 5 stars and urgency &amp;quot;5&amp;quot; is 1 star. Urgencies 6-9 are not used for rating. This is the value of the IPTC Urgency tag (hex code 0x0A).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureWhiteBalance&lt;br /&gt;
|  Shows the white balance mode set when the selected picture was taken. The possible values are &amp;quot;Manual&amp;quot; and &amp;quot;Auto&amp;quot;. This is the value of the EXIF WhiteBalance tag (hex code 0xA403).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FileName&lt;br /&gt;
|  Shows the filename of the currently selected song or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Path&lt;br /&gt;
|  Shows the complete path of the currently selected song or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FolderName&lt;br /&gt;
|  Shows top most folder of the path of the currently selected song or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FolderPath&lt;br /&gt;
|  Shows the complete path of the currently selected song or movie in a container (without user details).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FileNameAndPath&lt;br /&gt;
|  Shows the full path with filename of the currently selected song or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FileExtension&lt;br /&gt;
|  Shows the file extension (without leading dot) of the currently selected item in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Date&lt;br /&gt;
|  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)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DateAdded&lt;br /&gt;
|  Shows the date the currently selected item was added to the library / Date and time of an event in the EventLog window.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Size&lt;br /&gt;
|  Shows the file size of the currently selected song or movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Rating[(name)]&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Set&lt;br /&gt;
|  Shows the name of the set the movie is part of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.SetId&lt;br /&gt;
|  Shows the id of the set the movie is part of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.UserRating&lt;br /&gt;
|  Shows the user rating of the currently selected item in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Votes[(name)]&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.RatingAndVotes[(name)]&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Mpaa&lt;br /&gt;
|  Show the MPAA rating of the currently selected movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ProgramCount&lt;br /&gt;
|  Shows the number of times an xbe has been run from &amp;quot;my programs&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Duration[(format)]&lt;br /&gt;
|  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). &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DBTYPE&lt;br /&gt;
|  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 &amp;quot;*all seasons&amp;quot; entry does give a DBTYPE &amp;quot;season&amp;quot; and a DBID, but you can&#039;t get the details of that entry since it&#039;s a virtual entry in the Video Library.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DBID&lt;br /&gt;
|  Shows the database id of the currently selected listitem in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Cast&lt;br /&gt;
|  Shows a concatenated string of cast members of the currently selected movie, for use in dialogvideoinfo.xml&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.CastAndRole&lt;br /&gt;
|  Shows a concatenated string of cast members and roles of the currently selected movie, for use in dialogvideoinfo.xml&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Studio&lt;br /&gt;
|  Studio of current selected Music Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Top250&lt;br /&gt;
|  Shows the IMDb top250 position of the currently selected listitem in a container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Trailer&lt;br /&gt;
|  Shows the full trailer path with filename of the currently selected movie in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Writer&lt;br /&gt;
|  Name of Writer of current Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Tagline&lt;br /&gt;
|  Small Summary of current Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PlotOutline&lt;br /&gt;
|  Small Summary of current Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Plot&lt;br /&gt;
|  Complete Text Summary of Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.IMDBNumber&lt;br /&gt;
|  The IMDB iD of the selected Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EpisodeName&lt;br /&gt;
|  (PVR only) The name of the episode if the selected EPG item is a TV Show&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PercentPlayed&lt;br /&gt;
|  Returns percentage value [0-100] of how far the selected video has been played&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.LastPlayed&lt;br /&gt;
|  Last play date of Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PlayCount&lt;br /&gt;
|  Playcount of Video in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartTime&lt;br /&gt;
|  Start time of current selected TV programme in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EndTime&lt;br /&gt;
|  End time of current selected TV programme in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartDate&lt;br /&gt;
|  Start date of current selected TV programme in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelName&lt;br /&gt;
|  Name of current selected TV channel in a container&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.VideoCodec&lt;br /&gt;
|  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)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.VideoResolution&lt;br /&gt;
|  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.&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.VideoAspect&lt;br /&gt;
|  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)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AudioCodec&lt;br /&gt;
|  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)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AudioChannels&lt;br /&gt;
|  Shows the number of audio channels of the currently selected video (possible values: 1, 2, 4, 5, 6, 7, 8, 10)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AudioLanguage&lt;br /&gt;
|  Shows the audio language of the currently selected video (returns an ISO 639-2 three character code, e.g. eng, epo, deu)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.SubtitleLanguage&lt;br /&gt;
|  Shows the subtitle language of the currently selected video (returns an ISO 639-2 three character code, e.g. eng, epo, deu)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(AudioCodec.[n])&lt;br /&gt;
|  Shows the audio codec of the currently selected video, &#039;n&#039; defines the number of the audiostream (values: see ListItem.AudioCodec)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(AudioChannels.[n])&lt;br /&gt;
|  Shows the number of audio channels of the currently selected video, &#039;n&#039; defines the number of the audiostream (values: see ListItem.AudioChannels)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(AudioLanguage.[n])&lt;br /&gt;
|  Shows the audio language of the currently selected video, &#039;n&#039; defines the number of the audiostream (values: see ListItem.AudioLanguage)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(SubtitleLanguage.[n])&lt;br /&gt;
|  Shows the subtitle language of the currently selected video, &#039;n&#039; defines the number of the subtitle (values: see ListItem.SubtitleLanguage)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonName&lt;br /&gt;
|  Shows the name of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonVersion&lt;br /&gt;
|  Shows the version of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonSummary&lt;br /&gt;
|  Shows a short description of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonDescription&lt;br /&gt;
|  Shows the full description of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonType&lt;br /&gt;
|  Shows the type (screensaver, script, skin, etc...) of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonCreator&lt;br /&gt;
|  Shows the name of the author the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonDisclaimer&lt;br /&gt;
|  Shows the disclaimer of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonBroken&lt;br /&gt;
|  Shows a message when the addon is marked as broken in the repo&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Changelog)&lt;br /&gt;
|  Shows the changelog of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.ID)&lt;br /&gt;
|  Shows the identifier of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Status)&lt;br /&gt;
|  Shows the status of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Path)&lt;br /&gt;
|  Shows the path of the currently selected addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartTime&lt;br /&gt;
|  Start time of the selected item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EndTime&lt;br /&gt;
|  End time of the selected item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartDate&lt;br /&gt;
|  Start date of the selected item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EndDate&lt;br /&gt;
|  End date of the selected item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextTitle&lt;br /&gt;
|  Title of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextGenre&lt;br /&gt;
|  Genre of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextPlot&lt;br /&gt;
|  Plot of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextPlotOutline&lt;br /&gt;
|  Plot outline of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextStartTime&lt;br /&gt;
|  Start time of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextEndTime&lt;br /&gt;
|  End of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextStartDate&lt;br /&gt;
|  Start date of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextEndDate&lt;br /&gt;
|  End date of the next item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.NextDuration&lt;br /&gt;
|  Duration of the next item (PVR).&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelName&lt;br /&gt;
|  Channelname of the selected item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelNumber&lt;br /&gt;
|  Channel number of the selected item (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelNumberLabel&lt;br /&gt;
|  Channel and subchannel number of the currently selected channel that&#039;s currently playing (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Progress&lt;br /&gt;
|  Part of the programme that&#039;s been played (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StereoscopicMode&lt;br /&gt;
|  Returns the stereomode of the selected video (i.e. mono, split_vertical, split_horizontal, row_interleaved, anaglyph_cyan_red, anaglyph_green_magenta)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Comment&lt;br /&gt;
|  Comment assigned to the item (PVR/MUSIC).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonInstallDate&lt;br /&gt;
| Date the addon was installed&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonLastUpdated&lt;br /&gt;
| Date the addon was last updated&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonLastUsed&lt;br /&gt;
| Date the addon was used last&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonNews&lt;br /&gt;
| Returns a brief changelog, taken from the addons&#039; addon.xml file&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AddonSize&lt;br /&gt;
| Filesize of the addon&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Contributors&lt;br /&gt;
| List of all people who&#039;ve contributed to the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ContributorAndRole&lt;br /&gt;
| List of all people and their role who&#039;ve contributed to the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EndTimeResume&lt;br /&gt;
| Returns the time a video will end if you resume it, instead of playing it from the beginning.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Mood&lt;br /&gt;
| Mood of the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Status&lt;br /&gt;
| For use with tv shows. It can return one of the following: &#039;returning series&#039;,&#039;in production&#039;,&#039;planned&#039;,&#039;cancelled&#039; or &#039;ended&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Tag&lt;br /&gt;
| Will return the name of the &#039;tag&#039; this movie is part of.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Arranger)&lt;br /&gt;
| Returns the name of the person who arranged the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Composer)&lt;br /&gt;
| Returns the name of the person who composed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Conductor)&lt;br /&gt;
| Returns the name of the person who conducted the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.DJMixer)&lt;br /&gt;
| Returns the name of the dj who remixed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Engineer)&lt;br /&gt;
| Returns the name of the person who was the engineer of the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Lyricist)&lt;br /&gt;
| Returns the name of the person who wrote the lyrics of the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Mixer)&lt;br /&gt;
| Returns the name of the person who mixed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Orchestra)&lt;br /&gt;
| Returns the name of the orchestra performing the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Producer)&lt;br /&gt;
| Returns the name of the person who produced the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Role.Remixer)&lt;br /&gt;
| Returns the name of the person who remixed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Appearances&lt;br /&gt;
| Returns the number of movies featuring the selected actor / directed by the selected director&lt;br /&gt;
| v17 addition&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PrivacyPolicy&lt;br /&gt;
| Returns the official Kodi privacy-policy&lt;br /&gt;
| v17 addition&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Property(game.videofilter)&lt;br /&gt;
|  Name of the video filter (eg. Bilinear)&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Property(game.stretchmode)&lt;br /&gt;
|  Name of the stretch mode (eg. Stretch 4:3)&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Property(game.videorotation)&lt;br /&gt;
|  Angle of the rotation&lt;br /&gt;
|  v18&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Musicpartymode labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.SongsPlayed&lt;br /&gt;
|  Number of songs played during Party Mode&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.MatchingSongs&lt;br /&gt;
|  Number of songs available to Party Mode&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.MatchingSongsPicked&lt;br /&gt;
|  Number of songs picked already for Party Mode&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.MatchingSongsLeft&lt;br /&gt;
|  Number of songs left to be picked from for Party Mode&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.RelaxedSongsPicked&lt;br /&gt;
|  Not currently used&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.RandomSongsPicked&lt;br /&gt;
|  Number of unique random songs picked during Party Mode&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Network labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Network.IsDHCP&lt;br /&gt;
|  Network type is DHCP or FIXED&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.IPAddress&lt;br /&gt;
|  The system&#039;s IP Address (&amp;lt;ipaddress&amp;gt; is returned as a string)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.LinkState&lt;br /&gt;
|  Network linkstate e.g. 10mbit/100mbit etc.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.MacAddress&lt;br /&gt;
|  The system&#039;s  mac address&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.SubnetMask&lt;br /&gt;
|  Network subnet mask&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.GatewayAddress&lt;br /&gt;
|  Network gateway address&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.DNS1Address&lt;br /&gt;
|  Network dns server 1 address&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.DNS2Address&lt;br /&gt;
|  Network dns server 2 address&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Network.DHCPAddress&lt;br /&gt;
|  DHCP server ip address&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Player labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Player.FinishTime&lt;br /&gt;
|  Time playing media will end&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.FinishTime(format)&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Chapter&lt;br /&gt;
|  Current chapter of current playing media&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.ChapterCount&lt;br /&gt;
|  Total number of chapters of current playing media&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Time&lt;br /&gt;
|  Elapsed time of current playing media&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Time(format)&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.TimeRemaining&lt;br /&gt;
|  Remaining time of current playing media&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.TimeRemaining(format)&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Duration&lt;br /&gt;
|  Total duration of the current playing media&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Duration(format)&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekTime&lt;br /&gt;
|  Time to which the user is seeking&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekOffset&lt;br /&gt;
|  Indicates the seek offset after a seek press (eg user presses BigStepForward, player.seekoffset returns +10:00)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekOffset(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekStepSize&lt;br /&gt;
|  Displays the seek step size. (v15 addition)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.ProgressCache&lt;br /&gt;
|  Shows how much of the file is cached above current play percentage&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Folderpath&lt;br /&gt;
|  Shows the full path of the currently playing song or movie&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Filenameandpath&lt;br /&gt;
|  Shows the full path with filename of the currently playing song or movie&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.StartTime&lt;br /&gt;
|  Returns the starttime (from the epg) of a tv program, for all other videos it will return the time you started watching this video.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.StartTime(format)&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Title&lt;br /&gt;
|  Returns the musicplayer title for audio and the videoplayer title for videos.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Filename&lt;br /&gt;
|  Returns the filename of the currently playing media.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Volume&lt;br /&gt;
| Returns the volume level in dB&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(AudioBitsPerSample)&lt;br /&gt;
| Bits per sample of the currently playing item&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(AudioChannels)&lt;br /&gt;
| Number of audiochannels of the currently playing item&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(AudioDecoder)&lt;br /&gt;
| Audiodecoder name of the currently playing item&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(AudioSamplerate)&lt;br /&gt;
| Samplerate  f the currently playing item&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(DeintMethod)&lt;br /&gt;
| Deinterlace method of the currently playing video&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(PixFormat)&lt;br /&gt;
| Pixel format of the currently playing video&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(VideoDAR)&lt;br /&gt;
| Display aspect ratio of the currently playing video&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(VideoFPS)&lt;br /&gt;
| Video framerate of the currently playing video&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(VideoHeight)&lt;br /&gt;
| Height of the currently playing video&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(VideoDecoder)&lt;br /&gt;
| Videodecoder name of the currently playing video&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Process(VideoWidth)&lt;br /&gt;
| Width of the currently playing video&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Music player ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Title&lt;br /&gt;
|  Title of the currently playing song,  also available are &amp;quot;MusicPlayer.offset(number).Title&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Title&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Album&lt;br /&gt;
|  Album from which the current song is from,   also available are &amp;quot;MusicPlayer.offset(number).Album&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Album&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Mood)&lt;br /&gt;
|  Shows the moods of the currently playing Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Style)&lt;br /&gt;
|  Shows the styles of the currently playing Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Theme)&lt;br /&gt;
|  Shows the themes of the currently playing Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Type)&lt;br /&gt;
|  Shows the Album Type (e.g. compilation, enhanced, explicit lyrics) of the currently playing Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Label)&lt;br /&gt;
|  Shows the record label of the currently playing Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Description)&lt;br /&gt;
|  Shows a review of the currently playing Album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Artist&lt;br /&gt;
|  Artist(s) of current song,  also available are &amp;quot;MusicPlayer.offset(number).Artist&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Artist&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Born)&lt;br /&gt;
|  Date of Birth of the currently playing Artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Died)&lt;br /&gt;
|  Date of Death of the currently playing Artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Formed)&lt;br /&gt;
|  Formation date of the currently playing Artist/Band&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Disbanded)&lt;br /&gt;
|  Disbanding date of the currently playing Artist/Band&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_YearsActive)&lt;br /&gt;
|  Years the currently Playing artist has been active&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Instrument)&lt;br /&gt;
|  Instruments played by the currently playing artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Description)&lt;br /&gt;
|  Shows a biography of the currently playing artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Mood)&lt;br /&gt;
|  Shows the moods of the currently playing artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Style)&lt;br /&gt;
|  Shows the styles of the currently playing artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Genre)&lt;br /&gt;
|  Shows the genre of the currently playing artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Sortname)&lt;br /&gt;
|  Sortname of the currently playing Artist&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Type)&lt;br /&gt;
|  Type of the currently playing Artist - person, group, orchestra, choir etc.&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Gender)&lt;br /&gt;
|  Gender of the currently playing Artist - male, female, other&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Disambiguation)&lt;br /&gt;
|  Brief description of the currently playing Artist that differentiates them from others with the same name&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Genre&lt;br /&gt;
|  Genre(s) of current song,  also available are &amp;quot;MusicPlayer.offset(number).Genre&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Genre&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Lyrics&lt;br /&gt;
|  Lyrics of current song stored in ID tag info&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Year&lt;br /&gt;
|  Year of release of current song,  also available are &amp;quot;MusicPlayer.offset(number).Year&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Year&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Rating&lt;br /&gt;
|  Numeric Rating of current song,  also available are &amp;quot;MusicPlayer.offset(number).Rating&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Rating&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.DiscNumber&lt;br /&gt;
|  Disc Number of current song stored in ID tag info,  also available are &amp;quot;MusicPlayer.offset(number).DiscNumber&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).DiscNumber&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Comment&lt;br /&gt;
|  Comment of current song stored in ID tag info,  also available are &amp;quot;MusicPlayer.offset(number).Comment&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Comment&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Time&lt;br /&gt;
|  Current time in song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.TimeRemaining&lt;br /&gt;
|  Current remaining time in song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.TimeSpeed&lt;br /&gt;
|  Both the time and the playspeed formatted up. eg 1:23 (2x)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.TrackNumber&lt;br /&gt;
|  Track number of current song,   also available are &amp;quot;MusicPlayer.offset(number).TrackNumber&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).TrackNumber&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Duration&lt;br /&gt;
|  Duration of current song,   also available are &amp;quot;MusicPlayer.offset(number).Duration&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Duration&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.BitRate&lt;br /&gt;
|  Bitrate of current song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Channels&lt;br /&gt;
|  Number of channels of current song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.BitsPerSample&lt;br /&gt;
|  Number of bits per sample of current song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.SampleRate&lt;br /&gt;
|  Samplerate of current song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Codec&lt;br /&gt;
|  Codec of current song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.PlaylistPosition&lt;br /&gt;
|  Position of the current song in the current music playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.PlaylistLength&lt;br /&gt;
|  Total size of the current music playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ChannelName&lt;br /&gt;
|  Channel name of the radio programme that&#039;s currently playing (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ChannelNumberLabel&lt;br /&gt;
|  Channel and subchannel number of the radio channel that&#039;s currently playing (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ChannelGroup&lt;br /&gt;
|  Channel group of  of the radio programme that&#039;s currently playing (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Contributors&lt;br /&gt;
| List of all people who&#039;ve contributed to the currently playing song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ContributorAndRole&lt;br /&gt;
| List of all people and their role who&#039;ve contributed to the currently playing song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Mood&lt;br /&gt;
| Mood of the currently playing song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Arranger)&lt;br /&gt;
| Returns the name of the person who arranged the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Composer)&lt;br /&gt;
| Returns the name of the person who composed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Conductor)&lt;br /&gt;
| Returns the name of the person who conducted the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.DJMixer)&lt;br /&gt;
| Returns the name of the dj who remixed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Engineer)&lt;br /&gt;
| Returns the name of the person who was the engineer of the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Lyricist)&lt;br /&gt;
| Returns the name of the person who wrote the lyrics of the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Mixer)&lt;br /&gt;
| Returns the name of the person who mixed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Orchestra)&lt;br /&gt;
| Returns the name of the orchestra performing the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Producer)&lt;br /&gt;
| Returns the name of the person who produced the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Role.Remixer)&lt;br /&gt;
| Returns the name of the person who remixed the selected song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.UserRating&lt;br /&gt;
| The rating the user gave to the currently playing song&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.DBID&lt;br /&gt;
| The database id of the currently playing song&lt;br /&gt;
| v17 Addition&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Video player ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Time&lt;br /&gt;
|  Current time in movie&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.TimeRemaining&lt;br /&gt;
|  Current remaining time in movie&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.TimeSpeed&lt;br /&gt;
|  Current time + playspeed. eg 1:23:14 (-4x)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Duration&lt;br /&gt;
|  Length of current movie&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Title&lt;br /&gt;
|  Title of currently playing video. If it&#039;s in the database it will return the database title, else the filename&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.TVShowTitle&lt;br /&gt;
|  Title of currently playing episode&#039;s tvshow name&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Season&lt;br /&gt;
|  Season number of the currently playing episode, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Episode&lt;br /&gt;
|  Episode number of the currently playing episode&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Genre&lt;br /&gt;
|  Genre(s) of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Director&lt;br /&gt;
|  Director of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Country&lt;br /&gt;
|  Production country of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Year&lt;br /&gt;
|  Year of release of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Rating&lt;br /&gt;
|  IMDb user rating of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.UserRating&lt;br /&gt;
|  Shows the user rating of the currently playing item&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Votes&lt;br /&gt;
|  IMDb votes of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.RatingAndVotes&lt;br /&gt;
|  IMDb user rating and votes of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.mpaa&lt;br /&gt;
|  MPAA rating of current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.IMDBNumber&lt;br /&gt;
|  The IMDB iD of the current video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.EpisodeName&lt;br /&gt;
|  (PVR only) The name of the episode if the playing video is a TV Show, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.PlaylistPosition&lt;br /&gt;
|  Position of the current song in the current video playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.PlaylistLength&lt;br /&gt;
|  Total size of the current video playlist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Cast&lt;br /&gt;
|  A concatenated string of cast members of the current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.CastAndRole&lt;br /&gt;
|  A concatenated string of cast members and roles of the current movie, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Album&lt;br /&gt;
|  Album from which the current Music Video is from, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Artist&lt;br /&gt;
|  Artist(s) of current Music Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Studio&lt;br /&gt;
|  Studio of current Music Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Writer&lt;br /&gt;
|  Name of Writer of current playing Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Tagline&lt;br /&gt;
|  Small Summary of current playing Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.PlotOutline&lt;br /&gt;
|  Small Summary of current playing Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Plot&lt;br /&gt;
|  Complete Text Summary of current playing Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.LastPlayed&lt;br /&gt;
|  Last play date of current playing Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|- class=&amp;quot;userrow&lt;br /&gt;
|  VideoPlayer.PlayCount&lt;br /&gt;
|  Playcount of current playing Video, if it&#039;s in the database&lt;br /&gt;
|&lt;br /&gt;
|- class=&amp;quot;userrow&lt;br /&gt;
|  VideoPlayer.VideoCodec&lt;br /&gt;
|  Shows the video codec of the currently playing video (common values: see ListItem.VideoCodec)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.VideoResolution&lt;br /&gt;
|  Shows the video resolution of the currently playing video (possible values: see ListItem.VideoResolution)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.VideoAspect&lt;br /&gt;
|  Shows the aspect ratio of the currently playing video (possible values: see ListItem.VideoAspect)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.AudioCodec&lt;br /&gt;
|  Shows the audio codec of the currently playing video, optionally &#039;n&#039; defines the number of the audiostream (common values: see ListItem.AudioCodec)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.AudioChannels&lt;br /&gt;
|  Shows the number of audio channels of the currently playing video (possible values: see ListItem.AudioChannels)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.AudioLanguage&lt;br /&gt;
|  Shows the language of the audio of the currently playing video(possible values: see ListItem.AudioLanguage)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.SubtitlesLanguage&lt;br /&gt;
|  Shows the language of the subtitle of the currently playing video (possible values: see ListItem.SubtitlesLanguage)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.StereoscopicMode&lt;br /&gt;
|  Shows the stereoscopic mode of the currently playing video (possible values: see ListItem.StereoscopicMode)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.EndTime&lt;br /&gt;
|  End date of the currently playing programme (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextTitle&lt;br /&gt;
|  Title of the programme that will be played next (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextGenre&lt;br /&gt;
|  Genre of the programme that will be played next (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextPlot&lt;br /&gt;
|  Plot of the programme that will be played next (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextPlotOutline&lt;br /&gt;
|  Plot outline of the programme that will be played next (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextStartTime&lt;br /&gt;
|  Start time of the programme that will be played next (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextEndTime&lt;br /&gt;
|  End time of the programme that will be played next (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextDuration&lt;br /&gt;
|  Duration of the programme that will be played next (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ChannelName&lt;br /&gt;
|  Name of the curently tuned channel (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ChannelNumberLabel&lt;br /&gt;
|  Channel and subchannel number of the tv channel that&#039;s currently playing (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ChannelGroup&lt;br /&gt;
|  Group of the curently tuned channel (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ParentalRating&lt;br /&gt;
|  Parental rating of the currently playing programme (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.DBID&lt;br /&gt;
| The database id of the currently playing video&lt;br /&gt;
| v17 Addition&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Playlist ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Length(media)&lt;br /&gt;
|  Total size of the current playlist. optional parameter media is either video or music.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Position(media)&lt;br /&gt;
|  Position of the current item in the current playlist. optional parameter media is either video or music.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Random&lt;br /&gt;
|  Returns &#039;On&#039; or &#039;Off&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Repeat&lt;br /&gt;
|  Returns string ID&#039;s 592 (Repeat One), 593 (Repeat All), or 594 (Repeat Off)&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== PVR ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.NowRecordingTitle&lt;br /&gt;
|  Title of the programme being recorded&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.NowRecordingDateTime&lt;br /&gt;
|  Start date and time of the current recording&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.NowRecordingChannel&lt;br /&gt;
|  Channel number that&#039;s being recorded&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.NextRecordingTitle&lt;br /&gt;
|  Title of the next programme that will be recorded&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.NextRecordingDateTime&lt;br /&gt;
|  Start date and time of the next recording&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.NextRecordingChannel&lt;br /&gt;
|  Channel name of the next recording&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendName&lt;br /&gt;
|  Name of the backend being used&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendVersion&lt;br /&gt;
|  Version of the backend that&#039;s being used&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendHost&lt;br /&gt;
|  Backend hostname&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendDiskSpace&lt;br /&gt;
|  Available diskspace on the backend&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendChannels&lt;br /&gt;
|  Number of available channels the backend provides&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendTimers&lt;br /&gt;
|  Number of timers set for the backend&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendRecordings&lt;br /&gt;
|  Number of recording available on the backend&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
|  PVR.BackendDiskspace&lt;br /&gt;
|  Free diskspace available for recordings on the backend&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.BackendNumber&lt;br /&gt;
|  Backend number&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TotalDiscSpace&lt;br /&gt;
|  Total diskspace available for recordings&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.NextTimer&lt;br /&gt;
|  Next timer date&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.EpgEventDuration[(format)]&lt;br /&gt;
|  Returns the duration of the currently played title on TV. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.EpgEventElapsedTime[(format)]&lt;br /&gt;
|  Returns the time position of the currently played title on TV. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.EpgEventRemainingTime[(format)]&lt;br /&gt;
|  Returns the remaining time for currently playing epg event. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.EpgEventFinishTime[(format)]&lt;br /&gt;
|  Returns the time the currently playing epg event will end. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.EpgEventSeekTime[(format)]&lt;br /&gt;
|  Returns the seek time of the currently playing epg event. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.EpgEventProgress&lt;br /&gt;
|  Returns the position of currently played title on TV as integer&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeShiftStart[(format)]&lt;br /&gt;
|  Start position of the timeshift. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeShiftEnd[(format)]&lt;br /&gt;
|  End position of the timeshift. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeShiftCur[(format)]&lt;br /&gt;
|  Current position of the timeshift. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeShiftOffset[(format)]&lt;br /&gt;
|  Current offset of the timeshift. See ListItem.Duration for optinional formatting options&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeShiftProgress&lt;br /&gt;
|  Returns the position of currently timeshifted title on TV as interger&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamClient&lt;br /&gt;
| Stream client name&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamDevice&lt;br /&gt;
| Stream device name&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamStatus&lt;br /&gt;
| Status of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamSignal&lt;br /&gt;
| Signal quality of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamSnr&lt;br /&gt;
| Signal to noise ratio of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamBer&lt;br /&gt;
| Bit error rate of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamUnc&lt;br /&gt;
| UNC value of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamVideoBitRate&lt;br /&gt;
| Video bitrate of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamAudioBitRate&lt;br /&gt;
| Audio bitrate of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamDolbyBitRate&lt;br /&gt;
| Dolby bitrate of the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamProgrSignal&lt;br /&gt;
| Signal quality of the programme&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamProgrSnr&lt;br /&gt;
| Signal to noise ratio of the programme&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.ActStreamEncryptionName&lt;br /&gt;
| Encryption used on the stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNowRecordingTitle&lt;br /&gt;
| Title of the tv programme being recorded&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNowRecordingDateTime&lt;br /&gt;
| Start date and time of the current tv recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNowRecordingChannel&lt;br /&gt;
| Channel name of the current tv recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNowRecordingChannelIcon&lt;br /&gt;
| Icon of the current recording TV channel&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNextRecordingTitle&lt;br /&gt;
| Title of the next tv programme that will be recorded&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNextRecordingDateTime&lt;br /&gt;
| Start date and time of the next tv recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNextRecordingChannel&lt;br /&gt;
| Channel name of the next tv recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.TVNextRecordingChannelIcon&lt;br /&gt;
| Icon of the next recording tv channel&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.RadioNowRecordingTitle&lt;br /&gt;
| Title of the radio programme being recorded&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.RadioNowRecordingDateTime&lt;br /&gt;
| Start date and time of the current radio recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.RadioNowRecordingChannel&lt;br /&gt;
| Channel name of the current radio recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.RadioNowRecordingChannelIcon&lt;br /&gt;
| Icon of the current recording radio channel&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.RadioNextRecordingTitle&lt;br /&gt;
| Title of the next radio programme that will be recorded&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.RadioNextRecordingDateTime&lt;br /&gt;
| Start date and time of the next radio recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| PVR.RadioNextRecordingChannel&lt;br /&gt;
| Channel name of the next radio recording&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.ChannelNumberInput&lt;br /&gt;
|  Label displaying the number the user entered on remote or keyboard&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressDuration&lt;br /&gt;
|  Returns the duration of the PVR timeshift progress in the format hh:mm:ss. hh: will be omitted if hours value is zero&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressDuration(format)&lt;br /&gt;
|  Returns the duration of the PVR timeshift progress in different formats, hours (hh), minutes (mm) or seconds (ss)&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressStartTime&lt;br /&gt;
|  Returns the start time of the PVR timeshift progress in the format hh:mm:ss. hh: will be omitted if hours value is zero&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressStartTime(format)&lt;br /&gt;
|  Returns the start time of the PVR timeshift progress in different formats, hours (hh), minutes (mm) or seconds (ss)&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressEndTime&lt;br /&gt;
|  Returns the end time of the PVR timeshift progress in the format hh:mm:ss. hh: will be omitted if hours value is zero&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressEndTime(format)&lt;br /&gt;
|  Returns the end time of the PVR timeshift progress in different formats, hours (hh), minutes (mm) or seconds (ss)&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressPlayPos&lt;br /&gt;
|  Returns the percentage of the current play position within the PVR timeshift progress&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressEpgStart&lt;br /&gt;
|  Returns the percentage of the start of the currently playing epg event within the PVR timeshift progress&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressEpgEnd&lt;br /&gt;
|  Returns the percentage of the end of the currently playing epg event within the PVR timeshift progress&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressBufferStart&lt;br /&gt;
|  Returns the percentage of the start of the timeshift buffer within the PVR timeshift progress&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  PVR.TimeshiftProgressBufferEnd&lt;br /&gt;
|  Returns the percentage of the end of the timeshift buffer within the PVR timeshift progress&lt;br /&gt;
|  v18&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== RDS ===&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  RDS.AudioLanguage&lt;br /&gt;
|  The from RDS reported audio language of channel&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ChannelCountry&lt;br /&gt;
|  Country where the radio channel is sended&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.GetLine(number)&lt;br /&gt;
|  Returns the last sended RDS text messages on givern number, 0 is thelast and 4 rows are supported (0-3)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.Title&lt;br /&gt;
|  Title of item; e.g. track title of an album (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.Artist&lt;br /&gt;
|  A person or band/collective generally considered responsible for the work (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.Band&lt;br /&gt;
|  Band/orchestra/accompaniment/musician (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.Composer&lt;br /&gt;
|  Name of the original composer/author (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.Conductor&lt;br /&gt;
|  The artist(s) who performed the work. In classical music this would bethe conductor (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.Album&lt;br /&gt;
|  The collection name to which this track belongs (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.TrackNumber&lt;br /&gt;
|  The track number of the item on the album on which it was originallyreleased. (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.RadioStyle&lt;br /&gt;
|  The from radio channel used style of currently played part, e.g &amp;quot;popmusic&amp;quot;, &amp;quot;news&amp;quot; or &amp;quot;weather&amp;quot;&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.Comment&lt;br /&gt;
|  Radio station comment string if available (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoNews&lt;br /&gt;
|  Message / headline (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoNewsLocal&lt;br /&gt;
|  Local information news sended from radio channel (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoStock&lt;br /&gt;
|  Quote information; either as one part or as several distinct parts:&amp;quot;name 99latest value 99change 99high 99low 99volume&amp;quot; (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoStockSize&lt;br /&gt;
|  Number of rows present in stock information (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoSport&lt;br /&gt;
|  Result of a game; either as one part or as several distinct parts:&amp;quot;match 99result&amp;quot;, e.g. &amp;quot;Bayern München : Borussia 995:5&amp;quot;  (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoSportSize&lt;br /&gt;
|  Number of rows present in sport information (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoLottery&lt;br /&gt;
|  Raffle / lottery: &amp;quot;key word 99values&amp;quot; (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoLotterySize&lt;br /&gt;
|  Number of rows present in lottery information (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoWeather&lt;br /&gt;
|  Weather informations sended from radio channel (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoWeatherSize&lt;br /&gt;
|  Number of rows present in weather information (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoCinema&lt;br /&gt;
|  Information about movies in cinema (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoCinemaSize&lt;br /&gt;
|  Number of rows present in cinema information (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoHoroscope&lt;br /&gt;
|  Horoscope; either as one part or as two distinct parts:&amp;quot;key word 99text&amp;quot;, e.g. &amp;quot;sign of the zodiac 99blablabla&amp;quot; (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoHoroscopeSize&lt;br /&gt;
|  Number of rows present in horoscope information (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoOther&lt;br /&gt;
|  Other information, not especially specified: &amp;quot;key word 99info&amp;quot; (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.InfoOtherSize&lt;br /&gt;
|  Number of rows present with other informations (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ProgStation&lt;br /&gt;
|  Name of the radio channel@note becomes also be set from epg if from RDS not available&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ProgNow&lt;br /&gt;
|  Now played program name@note becomes also be set from epg if from RDS not available&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ProgNext&lt;br /&gt;
|  Next played program name (if available)@note becomes also be set from epg if from RDS not available&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ProgHost&lt;br /&gt;
|  Name of the host of the radio show&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ProgEditStaff&lt;br /&gt;
|  Name of the editorial staff; e.g. name of editorial journalist (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ProgHomepage&lt;br /&gt;
|  Link to radio station homepage (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.ProgStyle&lt;br /&gt;
|  Human readable string about radiostyle defined from RDS or RBDS&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.PhoneHotline&lt;br /&gt;
|  The telephone number of the radio station&#039;s hotline (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.PhoneStudio&lt;br /&gt;
|  The telephone number of the radio station&#039;s studio (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.SmsStudio&lt;br /&gt;
|  The sms number of the radio stations studio (to send directly a sms to the studio) (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.EmailHotline&lt;br /&gt;
|  The email adress of the radio stations hotline (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|  RDS.EmailStudio&lt;br /&gt;
|  The email adress of the radio stations studio (if available) (Only be available on RadiotextPlus)&lt;br /&gt;
|  &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Skin ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.CurrentTheme&lt;br /&gt;
|  Returns the current selected skin theme.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.CurrentColourTheme&lt;br /&gt;
|  Returns the current selected colour theme of the skin.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.Font&lt;br /&gt;
|  Returns the current fontset from Font.xml.&lt;br /&gt;
|  v18 addition&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.String(name)&lt;br /&gt;
| Returns the &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;user-set&amp;lt;/span&amp;gt; skin string, set via the Skin.SetString(name) &#039;&#039;&#039;[[List of Built In Functions]]&#039;&#039;&#039;. Allows skinners to have &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;user-customisable&amp;lt;/span&amp;gt; labels.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.AspectRatio&lt;br /&gt;
|  Returns the closest aspect ratio match using the resolution info from the skin&#039;s addon.xml file.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Slideshow ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-  &lt;br /&gt;
|  Slideshow.Altitude&lt;br /&gt;
|  Shows the altitude in meters where the current picture was taken. This is the value of the EXIF GPSInfo.GPSAltitude tag.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Aperture&lt;br /&gt;
|  Shows the F-stop used to take the current picture. This is the value of the EXIF FNumber tag (hex code 0x829D).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Author&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Byline&lt;br /&gt;
|  Shows the name of the person who created the current picture.  This is the value of the IPTC Byline tag (hex code 0x50).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.BylineTitle&lt;br /&gt;
|  Shows the title of the person who created the current picture. This is the value of the IPTC BylineTitle tag (hex code 0x55).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CameraMake&lt;br /&gt;
|  Shows the manufacturer of the camera used to take the current picture. This is the value of the EXIF Make tag (hex code 0x010F).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CameraModel&lt;br /&gt;
|  Shows the manufacturer&#039;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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Caption&lt;br /&gt;
|  Shows a description of the current picture. This is the value of the IPTC Caption tag (hex code 0x78).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Category&lt;br /&gt;
|  Shows the subject of the current picture as a category code. This is the value of the IPTC Category tag (hex code 0x0F).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CCDWidth&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.City&lt;br /&gt;
|  Shows the city where the current picture was taken. This is the value of the IPTC City tag (hex code 0x5A).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Colour&lt;br /&gt;
|  Shows whether the current picture is &amp;quot;Colour&amp;quot; or &amp;quot;Black and White&amp;quot;.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CopyrightNotice&lt;br /&gt;
|  Shows the copyright notice of the current picture. This is the value of the IPTC Copyright tag (hex code 0x74).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Country&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CountryCode&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Credit&lt;br /&gt;
|  Shows who provided the current picture. This is the value of the IPTC Credit tag (hex code 0x6E).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.DigitalZoom&lt;br /&gt;
|  Shows the digital zoom ratio when the current picture was taken. This is the value of the EXIF .DigitalZoomRatio tag (hex code 0xA404).  &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFComment&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFDate&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFDescription&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFSoftware&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFTime&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Exposure&lt;br /&gt;
|  Shows the class of the program used by the camera to set exposure when the current picture was taken. Values include &amp;quot;Manual&amp;quot;, &amp;quot;Program (Auto)&amp;quot;, &amp;quot;Aperture priority (Semi-Auto)&amp;quot;, &amp;quot;Shutter priority (semi-auto)&amp;quot;, etc. This is the value of the EXIF ExposureProgram tag (hex code 0x8822).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ExposureBias&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ExposureMode&lt;br /&gt;
|  Shows the exposure mode of the current picture. The possible values are &amp;quot;Automatic&amp;quot;, &amp;quot;Manual&amp;quot;, and &amp;quot;Auto bracketing&amp;quot;. This is the value of the EXIF ExposureMode tag (hex code 0xA402).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ExposureTime&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Filedate&lt;br /&gt;
|  Shows the file date of the current picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Filename&lt;br /&gt;
|  Shows the file name of the current picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Filesize&lt;br /&gt;
|  Shows the file size of the current picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.FlashUsed&lt;br /&gt;
|  Shows the status of flash when the current picture was taken. The value will be either &amp;quot;Yes&amp;quot; or &amp;quot;No&amp;quot;, and might include additional information. This is the value of the EXIF Flash tag (hex code 0x9209).  &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.FocalLength&lt;br /&gt;
|  Shows the focal length of the lens, in mm. This is the value of the EXIF FocalLength tag (hex code 0x920A).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.FocusDistance&lt;br /&gt;
|  Shows the distance to the subject, in meters. This is the value of the EXIF SubjectDistance tag (hex code 0x9206).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Headline&lt;br /&gt;
|  Shows a synopsis of the contents of the current picture. This is the value of the IPTC Headline tag (hex code 0x69).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ImageType&lt;br /&gt;
|  Shows the color components of the current picture. This is the value of the IPTC ImageType tag (hex code 0x82).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.IPTCDate&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ISOEquivalence&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Keywords&lt;br /&gt;
|  Shows keywords assigned to the current picture. This is the value of the IPTC Keywords tag (hex code 0x19).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Latitude&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.LightSource&lt;br /&gt;
|  Shows the kind of light source when the picture was taken. Possible values include &amp;quot;Daylight&amp;quot;, &amp;quot;Fluorescent&amp;quot;, &amp;quot;Incandescent&amp;quot;, etc. This is the value of the EXIF LightSource tag (hex code 0x9208).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.LongEXIFDate&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.LongEXIFTime&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Longitude&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.MeteringMode&lt;br /&gt;
|  Shows the metering mode used when the current picture was taken. The possible values are &amp;quot;Center weight&amp;quot;, &amp;quot;Spot&amp;quot;, or &amp;quot;Matrix&amp;quot;. This is the value of the EXIF MeteringMode tag (hex code 0x9207).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ObjectName&lt;br /&gt;
|  Shows a shorthand reference for the current picture. This is the value of the IPTC ObjectName tag (hex code 0x05).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Orientation&lt;br /&gt;
|  Shows the orientation of the current picture. Possible values are &amp;quot;Top Left&amp;quot;, &amp;quot;Top Right&amp;quot;, &amp;quot;Left Top&amp;quot;, &amp;quot;Right Bottom&amp;quot;, etc. This is the value of the EXIF Orientation tag (hex code 0x0112).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Path&lt;br /&gt;
|  Shows the file path of the current picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Process&lt;br /&gt;
|  Shows the process used to compress the current picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ReferenceService&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Resolution&lt;br /&gt;
|  Shows the dimensions of the current picture (Width x Height)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SlideComment&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SlideIndex&lt;br /&gt;
|  Shows the slide index of the current picture&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Source&lt;br /&gt;
|  Shows the original owner of the current picture. This is the value of the IPTC Source tag (hex code 0x73).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SpecialInstructions&lt;br /&gt;
|  Shows other editorial instructions concerning the use of the current picture. This is the value of the IPTC SpecialInstructions tag (hex code 0x28).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.State&lt;br /&gt;
|  Shows the State/Province where the current picture was taken. This is the value of the IPTC ProvinceState tag (hex code 0x5F).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Sublocation&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SupplementalCategories&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.TimeCreated&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.TransmissionReference&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Urgency&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.WhiteBalance&lt;br /&gt;
|  Shows the white balance mode set when the current picture was taken. The possible values are &amp;quot;Manual&amp;quot; and &amp;quot;Auto&amp;quot;. This is the value of the EXIF WhiteBalance tag (hex code 0xA403).&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== System ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  System.Time&lt;br /&gt;
|  Current time&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.Time(format)&lt;br /&gt;
|  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&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.Date&lt;br /&gt;
|  Current date&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.Date(format)&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.AlarmPos&lt;br /&gt;
|  Shutdown Timer position&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.BatteryLevel&lt;br /&gt;
|  Returns the remaining battery level in range 0-100&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.FreeSpace&lt;br /&gt;
|  Total Freespace on the drive&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.UsedSpace&lt;br /&gt;
|  Total Usedspace on the drive&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.TotalSpace&lt;br /&gt;
|  Totalspace on the drive&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.UsedSpacePercent&lt;br /&gt;
|  Total Usedspace Percent on the drive&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.FreeSpacePercent&lt;br /&gt;
|  Total Freespace Percent on the drive&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.CPUTemperature&lt;br /&gt;
|  Current CPU temperature&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.CpuUsage&lt;br /&gt;
|  Displays the cpu usage for each individual cpu core.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.CoreUsage(id)&lt;br /&gt;
|  Displays the usage of the cpu core with the given &#039;id&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.GPUTemperature&lt;br /&gt;
|  Current GPU temperature&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.FanSpeed&lt;br /&gt;
|  Current fan speed&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.BuildVersion&lt;br /&gt;
|  Version of build&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.BuildDate&lt;br /&gt;
|  Date of build&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.FriendlyName&lt;br /&gt;
|  Returns the Kodi instance name. It will auto append (%hostname%) in case the device name was not changed. eg. &amp;quot;Kodi (htpc)&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.FPS&lt;br /&gt;
|  Current rendering speed (frames per second)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.FreeMemory&lt;br /&gt;
|  Amount of free memory in Mb&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.Memory(format)&lt;br /&gt;
|  Available formats: used, used.percent, free, free.percent, total&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenMode&lt;br /&gt;
|  Screenmode (eg windowed / fullscreen)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenWidth&lt;br /&gt;
|  Width of screen in pixels&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenHeight&lt;br /&gt;
|  Height of screen in pixels&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.StartupWindow&lt;br /&gt;
|  The Window Kodi will load on startup&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.CurrentWindow&lt;br /&gt;
|  Current Window we are in&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.CurrentControl&lt;br /&gt;
|  Current focused control&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.CurrentControlID&lt;br /&gt;
|  ID of the currently focused control.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.DVDLabel&lt;br /&gt;
|  Label of the disk in the &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;DVD-ROM&amp;lt;/span&amp;gt; drive&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.HddTemperature&lt;br /&gt;
|  Hdd temperature&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.OSVersionInfo&lt;br /&gt;
|  System name + kernel version&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.KernelVersion (deprecated)&lt;br /&gt;
|  System name + kernel version&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.Uptime&lt;br /&gt;
|  System current uptime&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.TotalUptime&lt;br /&gt;
|  System total uptime&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.CpuFrequency&lt;br /&gt;
|  System cpu frequency&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenResolution&lt;br /&gt;
|  Screen resolution&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.VideoEncoderInfo&lt;br /&gt;
|  Video encoder info&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.InternetState&lt;br /&gt;
|  Will return the internet state, connected or not connected&lt;br /&gt;
and for Conditional use: Connected-&amp;gt;TRUE, not Connected-&amp;gt;FALSE, do not use to check status in a pythonscript since it is threaded.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.Language&lt;br /&gt;
|  Shows the current language&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileName&lt;br /&gt;
|  Shows the User name of the currently logged in Kodi user&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileCount&lt;br /&gt;
|  Shows the number of defined profiles&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileAutoLogin&lt;br /&gt;
|  The profile Kodi will auto login to&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.StereoscopicMode&lt;br /&gt;
|  The prefered stereoscopic mode (settings &amp;gt; video &amp;gt; playback)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.TemperatureUnits&lt;br /&gt;
|  Shows Celsius or Fahrenheit symbol&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.AddonTitle(id)&lt;br /&gt;
|  Returns the title of the addon with the given id&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.AddonVersion(id)&lt;br /&gt;
|  Returns the version of the addon with the given id&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Visualisation ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Visualisation.Preset&lt;br /&gt;
|  Shows the current preset of the visualisation.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Visualisation.Name&lt;br /&gt;
|  Shows the name of the visualisation.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Weather labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.Conditions&lt;br /&gt;
|  Current weather conditions – this is looked up in a background process.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.Temperature&lt;br /&gt;
|  Current weather temperature&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.Location&lt;br /&gt;
|  City/town which the above two items are for&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.fanartcode&lt;br /&gt;
|  Current weather fanartcode.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.plugin&lt;br /&gt;
|  Current weather plugin.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Window ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Window([window]).Property(key)&lt;br /&gt;
|  Window property. (key can be any value, optional window can be id or name)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Window.Property(xmlfile)&lt;br /&gt;
|  Displays the name of the xml file currently shown&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Window(AddonBrowser).Property(Updated)&lt;br /&gt;
|  Shows the date and time the addon repo was last checked for updates&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Window.Property(Addon.ID)&lt;br /&gt;
| Returns the id of the selected addon, in DialogAddonSettings.xml&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Window(Home).Property(key)&lt;br /&gt;
|  The home window has the following info labels.&lt;br /&gt;
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&lt;br /&gt;
&lt;br /&gt;
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&lt;br /&gt;
&lt;br /&gt;
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&lt;br /&gt;
&lt;br /&gt;
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&lt;br /&gt;
&lt;br /&gt;
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&lt;br /&gt;
&lt;br /&gt;
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&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Window(Weather).Property(key)&lt;br /&gt;
|  The weather window has the following info labels.&lt;br /&gt;
Location, Updated, Current.Condition, Current.Temperature, Current.FeelsLike, Current.UVIndex, Current.Wind (From &amp;lt;wind dir.&amp;gt; at &amp;lt;speed&amp;gt; &amp;lt;unit&amp;gt;), 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&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
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&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Images Available in Kodi ===&lt;br /&gt;
&lt;br /&gt;
See [[Artwork/Accessing with skins and JSON-RPC] for the general pattern of accessing artwork for media items.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
! Version&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Image&lt;br /&gt;
|  Fanart image for the parent TV Show. Note: Deprecated, use ListItem.Art(tvshow.fanart) instead.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Thumb&lt;br /&gt;
|  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).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Icon&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ActualIcon&lt;br /&gt;
|  Shows the icon of the currently selected item in a list or thumb control.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Overlay&lt;br /&gt;
|  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.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EPGEventIcon&lt;br /&gt;
|  Returns the icon of the EPG programme (if available).&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Fanart_Image)&lt;br /&gt;
|  Fanart Image currently selected item or of the parent TV show. Note: Deprecated, use ListItem.Art(fanart) or ListItem.Art(tvshow.fanart) instead.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Cover&lt;br /&gt;
|  Cover of currently playing album&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Fanart_Image)&lt;br /&gt;
|  Fanart image of the currently playing artist&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Icon&lt;br /&gt;
|  Shows the thumbnail (if it exists) of the currently playing item. If no thumbnail image exists, it will show the icon.&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Player.StarRating&lt;br /&gt;
|  Returns a value of 0 to 5 as a graphical display from images named rating0.png to rating5.png of the skin&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NowRecordingChannelIcon&lt;br /&gt;
|  Channel icon of the programme currently being recorded.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NextRecordingChannelIcon&lt;br /&gt;
|  Channel icon of the programme that will be recorded next.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.EPGEventIcon&lt;br /&gt;
|  Returns the icon of the currently playing EPG programme (if available).&lt;br /&gt;
|  v18&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.String(name)&lt;br /&gt;
| Returns the image or image folder set by the user via a Skin.SetPath(name) or Skin.SetImage(name) &#039;&#039;&#039;[[List of Built In Functions]]&#039;&#039;&#039;. Allows skinners to have &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;user-customisable&amp;lt;/span&amp;gt; images and multiimages.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.AddonIcon(id)&lt;br /&gt;
|  Returns the Icon of the specified addon. Instead of specifying the id directly, one can also use an infolabel (eg. $INFO[Skin.String(Foo)])&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileThumb&lt;br /&gt;
|  Shows the Thumbnail image of the currently logged in Kodi user&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Cover&lt;br /&gt;
|  Cover of currently playing movie.  Note: Deprecated, use ListItem.Art(poster) instead.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.ConditionsIcon&lt;br /&gt;
|  Image of current weather conditions (NOTE: Can be used to load/refresh weather conditions)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Window([window]).Property(key)&lt;br /&gt;
|  Window property. (key can be any value, optional window can be id or name)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|  Window(Weather).Property(key)&lt;br /&gt;
|  The weather window has the following info images.&lt;br /&gt;
Current.ConditionIcon, Day[0-6].OutlookIcon, Current.FanartCode, Day[0-6].FanartCode, WeatherProviderLogo&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section end=&amp;quot;main content&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&#039;&#039;&#039;Development:&#039;&#039;&#039;&lt;br /&gt;
* [[Add-on development]]&lt;br /&gt;
* [[Skinning]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Skin development]]&lt;br /&gt;
[[Category:Add-on development]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Artwork/Accessing_with_skins_and_JSON-RPC&amp;diff=157153</id>
		<title>Artwork/Accessing with skins and JSON-RPC</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Artwork/Accessing_with_skins_and_JSON-RPC&amp;diff=157153"/>
		<updated>2019-02-02T17:11:12Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* Example artwork types */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[Development]]|[[Artwork]]}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;The primary usage of artwork is to be displayed, and to that end, they can be accessed by name in skins and over JSON-RPC.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Media items with a &amp;quot;parent&amp;quot; media type, such as episodes to their TV show, can also access their parent&#039;s artwork with certain prefixes, like &amp;quot;tvshow.poster&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
= From skins =&lt;br /&gt;
&lt;br /&gt;
Skins can access library artwork for media items in a list with &amp;quot;ListItem.Art(&amp;lt;arttype&amp;gt;)&amp;quot; and artwork for the currently playing item with &amp;quot;Player.Art(&amp;lt;arttype&amp;gt;)&amp;quot;. &amp;quot;Container.Art(&amp;lt;arttype&amp;gt;)&amp;quot; can also be filled in some instances. Some examples are {{code|Player.Art(poster)}}, {{code|Player.Art(fanart)}}, {{code|ListItem.Art(banner)}}, and {{code|ListItem.Art(tvshow.clearlogo)}}.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|+ Additional InfoLabels&lt;br /&gt;
! Skin InfoLabel&lt;br /&gt;
! style=&amp;quot;width:80%&amp;quot; | Description&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| ListItem.Art(poster)&lt;br /&gt;
| Artwork for the currently focused ListItem.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| Player.Art(poster)&lt;br /&gt;
| Artwork for the currently playing item.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| Container.Art(poster)&lt;br /&gt;
| Artwork for the currently focused Container. Container artwork may be filled with &amp;quot;parent&amp;quot; type media item artwork if navigating a single item, like a list of episodes from a single TV show.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| Container(555).ListItem.Art(poster)&lt;br /&gt;
| Artwork for the currently focused ListItem in a specific container.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Additional InfoLabels for artwork ==&lt;br /&gt;
&lt;br /&gt;
There are other InfoLabels for artwork that don&#039;t match the above pattern, but many of them are deprecated. A set of them that can still be useful are&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|+ Additional InfoLabels&lt;br /&gt;
! Skin InfoLabel&lt;br /&gt;
! style=&amp;quot;width:30%&amp;quot; | Description&lt;br /&gt;
! Examples&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| MusicPlayer.offset(number).Cover&lt;br /&gt;
| Cover of the item offset by &#039;&#039;number&#039;&#039; from the currently playing item in the currently playing music player queue.&lt;br /&gt;
| {{code|MusicPlayer.offset(1).Cover}} - next item in queue&lt;br /&gt;
{{code|MusicPlayer.offset(-1).Cover}} - previous item in queue&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  MusicPlayer.Position(number).Cover&lt;br /&gt;
|  Cover of the item in position &#039;&#039;number&#039;&#039; of currently playing music player queue.&lt;br /&gt;
| {{code|MusicPlayer.Position(1).Cover}} - first item in queue&lt;br /&gt;
{{code|MusicPlayer.Position(2).Cover}} - second item in queue&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  MusicPlayer.Position(number).Property(Fanart_Image)&lt;br /&gt;
|  Fanart of the item in position &#039;&#039;number&#039;&#039; of the currently playing music player queue.&lt;br /&gt;
| {{code|MusicPlayer.Position(1).Property(Fanart_Image)}} - first item in queue&lt;br /&gt;
{{code|MusicPlayer.Position(2).Property(Fanart_Image)}} - second item in queue&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= From JSON-RPC =&lt;br /&gt;
&lt;br /&gt;
Several JSON-RPC methods (like &amp;quot;VideoLibrary.GetMovies&amp;quot;, &amp;quot;AudioLibrary.GetAlbumDetails&amp;quot;, and &amp;quot;Playlist.GetItems&amp;quot;) return info for media items in the library, and requesting the &amp;quot;art&amp;quot; property will return an &amp;quot;art&amp;quot; dictionary that maps all available artwork for the media item. The key is the artwork type and the value is a Kodi-encoded URL or path to the assigned artwork.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
example request:&lt;br /&gt;
 {&amp;quot;jsonrpc&amp;quot;:&amp;quot;2.0&amp;quot;,&amp;quot;id&amp;quot;:11,&amp;quot;method&amp;quot;:&amp;quot;VideoLibrary.GetEpisodes&amp;quot;,&amp;quot;params&amp;quot;:{&amp;quot;properties&amp;quot;:[&amp;quot;art&amp;quot;],&amp;quot;limits&amp;quot;:{&amp;quot;end&amp;quot;:1},&amp;quot;sort&amp;quot;:{&amp;quot;method&amp;quot;:&amp;quot;random&amp;quot;}}}&lt;br /&gt;
&lt;br /&gt;
and a possible response:&lt;br /&gt;
 {&lt;br /&gt;
     &amp;quot;id&amp;quot;: 11,&lt;br /&gt;
     &amp;quot;jsonrpc&amp;quot;: &amp;quot;2.0&amp;quot;,&lt;br /&gt;
     &amp;quot;result&amp;quot;: {&lt;br /&gt;
         &amp;quot;episodes&amp;quot;: [&lt;br /&gt;
            {&lt;br /&gt;
                 &amp;quot;art&amp;quot;: {&lt;br /&gt;
                     &amp;quot;season.banner&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fseason02-banner.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;season.landscape&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fseason02-landscape.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;season.poster&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fseason02-poster.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;thumb&amp;quot;: &amp;quot;image://video@nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fV%20(2009)%20-%2002x05%20-%20Concordia%20-%20720p%20WEB-DL.mkv/&amp;quot;,&lt;br /&gt;
                     &amp;quot;tvshow.banner&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fbanner.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;tvshow.clearlogo&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fclearlogo.png/&amp;quot;,&lt;br /&gt;
                     &amp;quot;tvshow.fanart&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2ffanart.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;tvshow.poster&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fposter.jpg/&amp;quot;&lt;br /&gt;
                 },&lt;br /&gt;
                 &amp;quot;episodeid&amp;quot;: 2196,&lt;br /&gt;
                 &amp;quot;label&amp;quot;: &amp;quot;2x05. Concordia&amp;quot;&lt;br /&gt;
             }&lt;br /&gt;
         ],&lt;br /&gt;
         &amp;quot;limits&amp;quot;: {&lt;br /&gt;
             &amp;quot;end&amp;quot;: 1,&lt;br /&gt;
             &amp;quot;start&amp;quot;: 0,&lt;br /&gt;
             &amp;quot;total&amp;quot;: 3352&lt;br /&gt;
         }&lt;br /&gt;
     }&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
== Kodi-encoded URL ==&lt;br /&gt;
&lt;br /&gt;
The image paths returned by JSON-RPC are the path or URL to the image encoded as Kodi&#039;s internal &amp;quot;image://&amp;quot; path.&lt;br /&gt;
&lt;br /&gt;
To turn that path into a URL that can actually be displayed in another application, you will need to encode it as a URI component (examples are [https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent encodeURIComponent] in JS and [https://docs.python.org/3/library/urllib.parse.html#urllib.parse.quote urllib.parse.quote] in Python 3), then add that to the end of the &amp;quot;images/&amp;quot; path of the Kodi HTTP server (like &amp;lt;nowiki&amp;gt;http://kodihost:8080/images/&amp;lt;/nowiki&amp;gt;). With these URLs you can display images wherever they happen to be stored; Kodi will handle opening a file over SMB or NFS if they are stored on a NAS next to the media items, for instance.&lt;br /&gt;
&lt;br /&gt;
The final URL will look like &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;http://kodihost:8080/images/image%3A%2F%2Fnfs%253a%252f%252fCUBER%252fmedia%252fpreserved%252fTVShows%252fV%2520(2009)%252fposter.jpg%2F&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can also turn the &amp;quot;image://&amp;quot; URL into a more traditional looking path/URL (https:// or smb:// or H:\) by chopping off the &amp;quot;image://&amp;quot; up front and the slash at the end, then decoding the rest as a URI component.&lt;br /&gt;
&lt;br /&gt;
= Access &amp;quot;parent&amp;quot; artwork =&lt;br /&gt;
&lt;br /&gt;
For several media types, it is possible to access artwork for the &amp;quot;parent&amp;quot; media item as well as the item&#039;s own artwork. This works for skins and JSON-RPC. For instance, TV episodes can access the artwork for the containing season and TV show. Use &amp;quot;&amp;lt;parenttype&amp;gt;.&amp;lt;arttype&amp;gt;&amp;quot; as the art type.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|+ Media types and their parent types&lt;br /&gt;
! style=&amp;quot;width:8%&amp;quot; | Media type&lt;br /&gt;
! Parent type&lt;br /&gt;
! style=&amp;quot;width:40%&amp;quot; | Description&lt;br /&gt;
! style=&amp;quot;width:30%&amp;quot; | Skin examples&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  TV episodes&lt;br /&gt;
|  &amp;quot;season&amp;quot;, &amp;quot;tvshow&amp;quot;&lt;br /&gt;
|  TV episodes can access artwork for their containing season and TV show&lt;br /&gt;
|  &amp;quot;Player.Art(tvshow.clearlogo)&amp;quot;, &amp;quot;Player.Art(season.poster)&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  Seasons&lt;br /&gt;
|  &amp;quot;tvshow&amp;quot;&lt;br /&gt;
|  TV show artwork&lt;br /&gt;
|  &amp;quot;ListItem.Art(tvshow.banner)&amp;quot;, &amp;quot;ListItem.Art(tvshow.clearlogo)&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  Movies&lt;br /&gt;
|  &amp;quot;set&amp;quot;&lt;br /&gt;
|  In Kodi 18, movies can access artwork for their containing set / collection&lt;br /&gt;
|  &amp;quot;ListItem.Art(set.clearlogo)&amp;quot;, &amp;quot;ListItem.Art(set.poster)&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  Songs&lt;br /&gt;
|  &amp;quot;album&amp;quot;, &amp;quot;artist&amp;quot;, &amp;quot;albumartist&amp;quot;, &amp;quot;artist1&amp;quot;, &amp;quot;albumartist1&amp;quot;&lt;br /&gt;
|  Songs can access the artwork for their containing album and all artists. Songs can have multiple artists; in Kodi 18 &amp;quot;artist1&amp;quot; will be artwork for the second artist - &amp;quot;artist2&amp;quot;, &amp;quot;artist3&amp;quot;, and so on will be filled for additional artists. &amp;quot;albumartist&amp;quot; works the same for album artists.&lt;br /&gt;
|  &amp;quot;Player.Art(album.thumb)&amp;quot;, &amp;quot;Player.Art(artist.fanart)&amp;quot;, &amp;quot;Player.Art(albumartist.clearlogo)&amp;quot;, &amp;quot;Player.Art(artist1.fanart)&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  Albums&lt;br /&gt;
|  &amp;quot;artist&amp;quot;, &amp;quot;artist1&amp;quot;&lt;br /&gt;
|  Albums can access the artwork for their containing album. Albums can have multiple artists; in Kodi 18 &amp;quot;artist1&amp;quot; will be artwork for the second artist - &amp;quot;artist2&amp;quot;, &amp;quot;artist3&amp;quot;, and so on will be filled for additional artists.&lt;br /&gt;
|  &amp;quot;ListItem.Art(artist.fanart)&amp;quot;, &amp;quot;ListItem.Art(artist.clearlogo)&amp;quot;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Example artwork types ==&lt;br /&gt;
&lt;br /&gt;
Here is a short list of example artwork types and how to access them. Kodi&#039;s artwork system allows any number of artwork types, so it&#039;s impossible to list all that may be available here. See the artwork pages for different library sections like [[Movie artwork]] or [[Music artwork]] for a list of generally available artwork types, or navigate to image 2 of [[Artwork#Kodi- Choose Art]] on a media item in your local Kodi installation to see what types of artwork are currently available for at least one of that media type in your local library.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|+ Example artwork types and skin access&lt;br /&gt;
! Artwork type&lt;br /&gt;
! Skin InfoLabel&lt;br /&gt;
! style=&amp;quot;50%&amp;quot; | Description&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  poster&lt;br /&gt;
|  ListItem.Art(poster)&lt;br /&gt;
|  Poster of the currently focused media item (like a movie or TV show)&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  fanart&lt;br /&gt;
|  ListItem.Art(fanart)&lt;br /&gt;
|  Fanart of the currently focused media item&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  landscape&lt;br /&gt;
|  ListItem.Art(landscape)&lt;br /&gt;
|  Landscape of the currently focused media item&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  clearlogo&lt;br /&gt;
|  Player.Art(clearlogo)&lt;br /&gt;
|  Clearlogo of the currently playing media item&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  tvshow.poster&lt;br /&gt;
|  Player.Art(tvshow.poster)&lt;br /&gt;
|  For a currently playing TV episode, this is the poster of the parent TV show&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  set.poster&lt;br /&gt;
|  Player.Art(set.clearlogo)&lt;br /&gt;
|  For currently playing movies, this is the clearlogo of the containing movie set&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  album.thumb&lt;br /&gt;
|  Player.Art(album.thumb)&lt;br /&gt;
|  For currently playing music, this is the cover of the album&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  album.thumb&lt;br /&gt;
|  ListItem.Art(thumb)&lt;br /&gt;
|  Thumb of the currently focused media item. This has some notable fallback behavior in the video library. It will be the artwork type named exactly &amp;quot;thumb&amp;quot; if it exists for the current item, but will fall back to &amp;quot;poster&amp;quot; then &amp;quot;banner&amp;quot; if not.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= {{Kodi}} version updates =&lt;br /&gt;
&lt;br /&gt;
* The music library in {{Kodi}} 17 and before was &#039;&#039;&#039;limited to just &amp;quot;fanart&amp;quot; and &amp;quot;thumb&amp;quot; for artist images&#039;&#039;&#039; and &#039;&#039;&#039;&amp;quot;thumb&amp;quot; for album images&#039;&#039;&#039;, it did not have the flexibility to add a wide variety of artwork. The video library has had this level of support for some time now.&lt;br /&gt;
* {{Kodi}} 18 adds a &#039;&#039;&#039;[[Advancedsettings.xml#Music library extra artwork| whitelist in advancedsettings.xml]]&#039;&#039;&#039; ([[Advancedsettings.xml#Extra artwork|for the video library]]) so that {{Kodi}} will add any specified artwork from scrapers and the file system automatically.&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Artwork/Accessing_with_skins_and_JSON-RPC&amp;diff=157152</id>
		<title>Artwork/Accessing with skins and JSON-RPC</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Artwork/Accessing_with_skins_and_JSON-RPC&amp;diff=157152"/>
		<updated>2019-02-02T17:10:36Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* Example artwork types */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[Development]]|[[Artwork]]}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;The primary usage of artwork is to be displayed, and to that end, they can be accessed by name in skins and over JSON-RPC.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Media items with a &amp;quot;parent&amp;quot; media type, such as episodes to their TV show, can also access their parent&#039;s artwork with certain prefixes, like &amp;quot;tvshow.poster&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
= From skins =&lt;br /&gt;
&lt;br /&gt;
Skins can access library artwork for media items in a list with &amp;quot;ListItem.Art(&amp;lt;arttype&amp;gt;)&amp;quot; and artwork for the currently playing item with &amp;quot;Player.Art(&amp;lt;arttype&amp;gt;)&amp;quot;. &amp;quot;Container.Art(&amp;lt;arttype&amp;gt;)&amp;quot; can also be filled in some instances. Some examples are {{code|Player.Art(poster)}}, {{code|Player.Art(fanart)}}, {{code|ListItem.Art(banner)}}, and {{code|ListItem.Art(tvshow.clearlogo)}}.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|+ Additional InfoLabels&lt;br /&gt;
! Skin InfoLabel&lt;br /&gt;
! style=&amp;quot;width:80%&amp;quot; | Description&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| ListItem.Art(poster)&lt;br /&gt;
| Artwork for the currently focused ListItem.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| Player.Art(poster)&lt;br /&gt;
| Artwork for the currently playing item.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| Container.Art(poster)&lt;br /&gt;
| Artwork for the currently focused Container. Container artwork may be filled with &amp;quot;parent&amp;quot; type media item artwork if navigating a single item, like a list of episodes from a single TV show.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| Container(555).ListItem.Art(poster)&lt;br /&gt;
| Artwork for the currently focused ListItem in a specific container.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Additional InfoLabels for artwork ==&lt;br /&gt;
&lt;br /&gt;
There are other InfoLabels for artwork that don&#039;t match the above pattern, but many of them are deprecated. A set of them that can still be useful are&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|+ Additional InfoLabels&lt;br /&gt;
! Skin InfoLabel&lt;br /&gt;
! style=&amp;quot;width:30%&amp;quot; | Description&lt;br /&gt;
! Examples&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| MusicPlayer.offset(number).Cover&lt;br /&gt;
| Cover of the item offset by &#039;&#039;number&#039;&#039; from the currently playing item in the currently playing music player queue.&lt;br /&gt;
| {{code|MusicPlayer.offset(1).Cover}} - next item in queue&lt;br /&gt;
{{code|MusicPlayer.offset(-1).Cover}} - previous item in queue&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  MusicPlayer.Position(number).Cover&lt;br /&gt;
|  Cover of the item in position &#039;&#039;number&#039;&#039; of currently playing music player queue.&lt;br /&gt;
| {{code|MusicPlayer.Position(1).Cover}} - first item in queue&lt;br /&gt;
{{code|MusicPlayer.Position(2).Cover}} - second item in queue&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  MusicPlayer.Position(number).Property(Fanart_Image)&lt;br /&gt;
|  Fanart of the item in position &#039;&#039;number&#039;&#039; of the currently playing music player queue.&lt;br /&gt;
| {{code|MusicPlayer.Position(1).Property(Fanart_Image)}} - first item in queue&lt;br /&gt;
{{code|MusicPlayer.Position(2).Property(Fanart_Image)}} - second item in queue&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= From JSON-RPC =&lt;br /&gt;
&lt;br /&gt;
Several JSON-RPC methods (like &amp;quot;VideoLibrary.GetMovies&amp;quot;, &amp;quot;AudioLibrary.GetAlbumDetails&amp;quot;, and &amp;quot;Playlist.GetItems&amp;quot;) return info for media items in the library, and requesting the &amp;quot;art&amp;quot; property will return an &amp;quot;art&amp;quot; dictionary that maps all available artwork for the media item. The key is the artwork type and the value is a Kodi-encoded URL or path to the assigned artwork.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
example request:&lt;br /&gt;
 {&amp;quot;jsonrpc&amp;quot;:&amp;quot;2.0&amp;quot;,&amp;quot;id&amp;quot;:11,&amp;quot;method&amp;quot;:&amp;quot;VideoLibrary.GetEpisodes&amp;quot;,&amp;quot;params&amp;quot;:{&amp;quot;properties&amp;quot;:[&amp;quot;art&amp;quot;],&amp;quot;limits&amp;quot;:{&amp;quot;end&amp;quot;:1},&amp;quot;sort&amp;quot;:{&amp;quot;method&amp;quot;:&amp;quot;random&amp;quot;}}}&lt;br /&gt;
&lt;br /&gt;
and a possible response:&lt;br /&gt;
 {&lt;br /&gt;
     &amp;quot;id&amp;quot;: 11,&lt;br /&gt;
     &amp;quot;jsonrpc&amp;quot;: &amp;quot;2.0&amp;quot;,&lt;br /&gt;
     &amp;quot;result&amp;quot;: {&lt;br /&gt;
         &amp;quot;episodes&amp;quot;: [&lt;br /&gt;
            {&lt;br /&gt;
                 &amp;quot;art&amp;quot;: {&lt;br /&gt;
                     &amp;quot;season.banner&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fseason02-banner.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;season.landscape&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fseason02-landscape.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;season.poster&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fseason02-poster.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;thumb&amp;quot;: &amp;quot;image://video@nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fV%20(2009)%20-%2002x05%20-%20Concordia%20-%20720p%20WEB-DL.mkv/&amp;quot;,&lt;br /&gt;
                     &amp;quot;tvshow.banner&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fbanner.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;tvshow.clearlogo&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fclearlogo.png/&amp;quot;,&lt;br /&gt;
                     &amp;quot;tvshow.fanart&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2ffanart.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;tvshow.poster&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fposter.jpg/&amp;quot;&lt;br /&gt;
                 },&lt;br /&gt;
                 &amp;quot;episodeid&amp;quot;: 2196,&lt;br /&gt;
                 &amp;quot;label&amp;quot;: &amp;quot;2x05. Concordia&amp;quot;&lt;br /&gt;
             }&lt;br /&gt;
         ],&lt;br /&gt;
         &amp;quot;limits&amp;quot;: {&lt;br /&gt;
             &amp;quot;end&amp;quot;: 1,&lt;br /&gt;
             &amp;quot;start&amp;quot;: 0,&lt;br /&gt;
             &amp;quot;total&amp;quot;: 3352&lt;br /&gt;
         }&lt;br /&gt;
     }&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
== Kodi-encoded URL ==&lt;br /&gt;
&lt;br /&gt;
The image paths returned by JSON-RPC are the path or URL to the image encoded as Kodi&#039;s internal &amp;quot;image://&amp;quot; path.&lt;br /&gt;
&lt;br /&gt;
To turn that path into a URL that can actually be displayed in another application, you will need to encode it as a URI component (examples are [https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent encodeURIComponent] in JS and [https://docs.python.org/3/library/urllib.parse.html#urllib.parse.quote urllib.parse.quote] in Python 3), then add that to the end of the &amp;quot;images/&amp;quot; path of the Kodi HTTP server (like &amp;lt;nowiki&amp;gt;http://kodihost:8080/images/&amp;lt;/nowiki&amp;gt;). With these URLs you can display images wherever they happen to be stored; Kodi will handle opening a file over SMB or NFS if they are stored on a NAS next to the media items, for instance.&lt;br /&gt;
&lt;br /&gt;
The final URL will look like &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;http://kodihost:8080/images/image%3A%2F%2Fnfs%253a%252f%252fCUBER%252fmedia%252fpreserved%252fTVShows%252fV%2520(2009)%252fposter.jpg%2F&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can also turn the &amp;quot;image://&amp;quot; URL into a more traditional looking path/URL (https:// or smb:// or H:\) by chopping off the &amp;quot;image://&amp;quot; up front and the slash at the end, then decoding the rest as a URI component.&lt;br /&gt;
&lt;br /&gt;
= Access &amp;quot;parent&amp;quot; artwork =&lt;br /&gt;
&lt;br /&gt;
For several media types, it is possible to access artwork for the &amp;quot;parent&amp;quot; media item as well as the item&#039;s own artwork. This works for skins and JSON-RPC. For instance, TV episodes can access the artwork for the containing season and TV show. Use &amp;quot;&amp;lt;parenttype&amp;gt;.&amp;lt;arttype&amp;gt;&amp;quot; as the art type.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|+ Media types and their parent types&lt;br /&gt;
! style=&amp;quot;width:8%&amp;quot; | Media type&lt;br /&gt;
! Parent type&lt;br /&gt;
! style=&amp;quot;width:40%&amp;quot; | Description&lt;br /&gt;
! style=&amp;quot;width:30%&amp;quot; | Skin examples&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  TV episodes&lt;br /&gt;
|  &amp;quot;season&amp;quot;, &amp;quot;tvshow&amp;quot;&lt;br /&gt;
|  TV episodes can access artwork for their containing season and TV show&lt;br /&gt;
|  &amp;quot;Player.Art(tvshow.clearlogo)&amp;quot;, &amp;quot;Player.Art(season.poster)&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  Seasons&lt;br /&gt;
|  &amp;quot;tvshow&amp;quot;&lt;br /&gt;
|  TV show artwork&lt;br /&gt;
|  &amp;quot;ListItem.Art(tvshow.banner)&amp;quot;, &amp;quot;ListItem.Art(tvshow.clearlogo)&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  Movies&lt;br /&gt;
|  &amp;quot;set&amp;quot;&lt;br /&gt;
|  In Kodi 18, movies can access artwork for their containing set / collection&lt;br /&gt;
|  &amp;quot;ListItem.Art(set.clearlogo)&amp;quot;, &amp;quot;ListItem.Art(set.poster)&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  Songs&lt;br /&gt;
|  &amp;quot;album&amp;quot;, &amp;quot;artist&amp;quot;, &amp;quot;albumartist&amp;quot;, &amp;quot;artist1&amp;quot;, &amp;quot;albumartist1&amp;quot;&lt;br /&gt;
|  Songs can access the artwork for their containing album and all artists. Songs can have multiple artists; in Kodi 18 &amp;quot;artist1&amp;quot; will be artwork for the second artist - &amp;quot;artist2&amp;quot;, &amp;quot;artist3&amp;quot;, and so on will be filled for additional artists. &amp;quot;albumartist&amp;quot; works the same for album artists.&lt;br /&gt;
|  &amp;quot;Player.Art(album.thumb)&amp;quot;, &amp;quot;Player.Art(artist.fanart)&amp;quot;, &amp;quot;Player.Art(albumartist.clearlogo)&amp;quot;, &amp;quot;Player.Art(artist1.fanart)&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  Albums&lt;br /&gt;
|  &amp;quot;artist&amp;quot;, &amp;quot;artist1&amp;quot;&lt;br /&gt;
|  Albums can access the artwork for their containing album. Albums can have multiple artists; in Kodi 18 &amp;quot;artist1&amp;quot; will be artwork for the second artist - &amp;quot;artist2&amp;quot;, &amp;quot;artist3&amp;quot;, and so on will be filled for additional artists.&lt;br /&gt;
|  &amp;quot;ListItem.Art(artist.fanart)&amp;quot;, &amp;quot;ListItem.Art(artist.clearlogo)&amp;quot;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Example artwork types ==&lt;br /&gt;
&lt;br /&gt;
Here is a short list of example artwork types and how to access them. Kodi&#039;s artwork system allows any number of artwork types, so it&#039;s impossible to list all that may be available here. See the artwork pages for different library sections like [[Movie artwork]] or [[Music artwork]] for a list of generally available artwork types, or navigate to image 2 of [[Artwork#Kodi- Choose Art]] on a media item in your local Kodi installation to see what types of artwork are currently available for at least one of that media type in your local library.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|+ Example artwork types and skin access&lt;br /&gt;
! Artwork type&lt;br /&gt;
! Skin InfoLabel&lt;br /&gt;
! style=&amp;quot;50%&amp;quot; | Description&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  poster&lt;br /&gt;
|  ListItem.Art(poster)&lt;br /&gt;
|  Poster of the currently focused media item (like a movie or TV show)&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  fanart&lt;br /&gt;
|  ListItem.Art(fanart)&lt;br /&gt;
|  Fanart of the currently focused media item&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  landscape&lt;br /&gt;
|  ListItem.Art(landscape)&lt;br /&gt;
|  Landscape of the currently focused media item&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  clearlogo&lt;br /&gt;
|  Player.Art(clearlogo)&lt;br /&gt;
|  Clearlogo of the currently playing media item&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  tvshow.poster&lt;br /&gt;
|  Player.Art(tvshow.poster)&lt;br /&gt;
|  For a currently playing TV episode, this is the poster of the parent TV show&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  set.poster&lt;br /&gt;
|  Player.Art(set.clearlogo)&lt;br /&gt;
|  For currently playing movies, this is the clearlogo of the containing movie set&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  album.thumb&lt;br /&gt;
|  Player.Art(album.thumb)&lt;br /&gt;
|  For currently playing music, this is the cover of the album&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  album.thumb&lt;br /&gt;
|  List.Art(thumb)&lt;br /&gt;
|  Thumb of the currently focused media item. This has some notable fallback behavior in the video library. It will be the artwork type named exactly &amp;quot;thumb&amp;quot; if it exists for the current item, but will fall back to &amp;quot;poster&amp;quot; then &amp;quot;banner&amp;quot; if not.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= {{Kodi}} version updates =&lt;br /&gt;
&lt;br /&gt;
* The music library in {{Kodi}} 17 and before was &#039;&#039;&#039;limited to just &amp;quot;fanart&amp;quot; and &amp;quot;thumb&amp;quot; for artist images&#039;&#039;&#039; and &#039;&#039;&#039;&amp;quot;thumb&amp;quot; for album images&#039;&#039;&#039;, it did not have the flexibility to add a wide variety of artwork. The video library has had this level of support for some time now.&lt;br /&gt;
* {{Kodi}} 18 adds a &#039;&#039;&#039;[[Advancedsettings.xml#Music library extra artwork| whitelist in advancedsettings.xml]]&#039;&#039;&#039; ([[Advancedsettings.xml#Extra artwork|for the video library]]) so that {{Kodi}} will add any specified artwork from scrapers and the file system automatically.&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Artwork/Accessing_with_skins_and_JSON-RPC&amp;diff=157151</id>
		<title>Artwork/Accessing with skins and JSON-RPC</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Artwork/Accessing_with_skins_and_JSON-RPC&amp;diff=157151"/>
		<updated>2019-02-02T17:03:45Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* From skins */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[Development]]|[[Artwork]]}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;The primary usage of artwork is to be displayed, and to that end, they can be accessed by name in skins and over JSON-RPC.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Media items with a &amp;quot;parent&amp;quot; media type, such as episodes to their TV show, can also access their parent&#039;s artwork with certain prefixes, like &amp;quot;tvshow.poster&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
= From skins =&lt;br /&gt;
&lt;br /&gt;
Skins can access library artwork for media items in a list with &amp;quot;ListItem.Art(&amp;lt;arttype&amp;gt;)&amp;quot; and artwork for the currently playing item with &amp;quot;Player.Art(&amp;lt;arttype&amp;gt;)&amp;quot;. &amp;quot;Container.Art(&amp;lt;arttype&amp;gt;)&amp;quot; can also be filled in some instances. Some examples are {{code|Player.Art(poster)}}, {{code|Player.Art(fanart)}}, {{code|ListItem.Art(banner)}}, and {{code|ListItem.Art(tvshow.clearlogo)}}.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|+ Additional InfoLabels&lt;br /&gt;
! Skin InfoLabel&lt;br /&gt;
! style=&amp;quot;width:80%&amp;quot; | Description&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| ListItem.Art(poster)&lt;br /&gt;
| Artwork for the currently focused ListItem.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| Player.Art(poster)&lt;br /&gt;
| Artwork for the currently playing item.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| Container.Art(poster)&lt;br /&gt;
| Artwork for the currently focused Container. Container artwork may be filled with &amp;quot;parent&amp;quot; type media item artwork if navigating a single item, like a list of episodes from a single TV show.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| Container(555).ListItem.Art(poster)&lt;br /&gt;
| Artwork for the currently focused ListItem in a specific container.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Additional InfoLabels for artwork ==&lt;br /&gt;
&lt;br /&gt;
There are other InfoLabels for artwork that don&#039;t match the above pattern, but many of them are deprecated. A set of them that can still be useful are&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|+ Additional InfoLabels&lt;br /&gt;
! Skin InfoLabel&lt;br /&gt;
! style=&amp;quot;width:30%&amp;quot; | Description&lt;br /&gt;
! Examples&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| MusicPlayer.offset(number).Cover&lt;br /&gt;
| Cover of the item offset by &#039;&#039;number&#039;&#039; from the currently playing item in the currently playing music player queue.&lt;br /&gt;
| {{code|MusicPlayer.offset(1).Cover}} - next item in queue&lt;br /&gt;
{{code|MusicPlayer.offset(-1).Cover}} - previous item in queue&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  MusicPlayer.Position(number).Cover&lt;br /&gt;
|  Cover of the item in position &#039;&#039;number&#039;&#039; of currently playing music player queue.&lt;br /&gt;
| {{code|MusicPlayer.Position(1).Cover}} - first item in queue&lt;br /&gt;
{{code|MusicPlayer.Position(2).Cover}} - second item in queue&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  MusicPlayer.Position(number).Property(Fanart_Image)&lt;br /&gt;
|  Fanart of the item in position &#039;&#039;number&#039;&#039; of the currently playing music player queue.&lt;br /&gt;
| {{code|MusicPlayer.Position(1).Property(Fanart_Image)}} - first item in queue&lt;br /&gt;
{{code|MusicPlayer.Position(2).Property(Fanart_Image)}} - second item in queue&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= From JSON-RPC =&lt;br /&gt;
&lt;br /&gt;
Several JSON-RPC methods (like &amp;quot;VideoLibrary.GetMovies&amp;quot;, &amp;quot;AudioLibrary.GetAlbumDetails&amp;quot;, and &amp;quot;Playlist.GetItems&amp;quot;) return info for media items in the library, and requesting the &amp;quot;art&amp;quot; property will return an &amp;quot;art&amp;quot; dictionary that maps all available artwork for the media item. The key is the artwork type and the value is a Kodi-encoded URL or path to the assigned artwork.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
example request:&lt;br /&gt;
 {&amp;quot;jsonrpc&amp;quot;:&amp;quot;2.0&amp;quot;,&amp;quot;id&amp;quot;:11,&amp;quot;method&amp;quot;:&amp;quot;VideoLibrary.GetEpisodes&amp;quot;,&amp;quot;params&amp;quot;:{&amp;quot;properties&amp;quot;:[&amp;quot;art&amp;quot;],&amp;quot;limits&amp;quot;:{&amp;quot;end&amp;quot;:1},&amp;quot;sort&amp;quot;:{&amp;quot;method&amp;quot;:&amp;quot;random&amp;quot;}}}&lt;br /&gt;
&lt;br /&gt;
and a possible response:&lt;br /&gt;
 {&lt;br /&gt;
     &amp;quot;id&amp;quot;: 11,&lt;br /&gt;
     &amp;quot;jsonrpc&amp;quot;: &amp;quot;2.0&amp;quot;,&lt;br /&gt;
     &amp;quot;result&amp;quot;: {&lt;br /&gt;
         &amp;quot;episodes&amp;quot;: [&lt;br /&gt;
            {&lt;br /&gt;
                 &amp;quot;art&amp;quot;: {&lt;br /&gt;
                     &amp;quot;season.banner&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fseason02-banner.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;season.landscape&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fseason02-landscape.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;season.poster&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fseason02-poster.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;thumb&amp;quot;: &amp;quot;image://video@nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fV%20(2009)%20-%2002x05%20-%20Concordia%20-%20720p%20WEB-DL.mkv/&amp;quot;,&lt;br /&gt;
                     &amp;quot;tvshow.banner&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fbanner.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;tvshow.clearlogo&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fclearlogo.png/&amp;quot;,&lt;br /&gt;
                     &amp;quot;tvshow.fanart&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2ffanart.jpg/&amp;quot;,&lt;br /&gt;
                     &amp;quot;tvshow.poster&amp;quot;: &amp;quot;image://nfs%3a%2f%2fCUBER%2fmedia%2fpreserved%2fTVShows%2fV%20(2009)%2fposter.jpg/&amp;quot;&lt;br /&gt;
                 },&lt;br /&gt;
                 &amp;quot;episodeid&amp;quot;: 2196,&lt;br /&gt;
                 &amp;quot;label&amp;quot;: &amp;quot;2x05. Concordia&amp;quot;&lt;br /&gt;
             }&lt;br /&gt;
         ],&lt;br /&gt;
         &amp;quot;limits&amp;quot;: {&lt;br /&gt;
             &amp;quot;end&amp;quot;: 1,&lt;br /&gt;
             &amp;quot;start&amp;quot;: 0,&lt;br /&gt;
             &amp;quot;total&amp;quot;: 3352&lt;br /&gt;
         }&lt;br /&gt;
     }&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
== Kodi-encoded URL ==&lt;br /&gt;
&lt;br /&gt;
The image paths returned by JSON-RPC are the path or URL to the image encoded as Kodi&#039;s internal &amp;quot;image://&amp;quot; path.&lt;br /&gt;
&lt;br /&gt;
To turn that path into a URL that can actually be displayed in another application, you will need to encode it as a URI component (examples are [https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent encodeURIComponent] in JS and [https://docs.python.org/3/library/urllib.parse.html#urllib.parse.quote urllib.parse.quote] in Python 3), then add that to the end of the &amp;quot;images/&amp;quot; path of the Kodi HTTP server (like &amp;lt;nowiki&amp;gt;http://kodihost:8080/images/&amp;lt;/nowiki&amp;gt;). With these URLs you can display images wherever they happen to be stored; Kodi will handle opening a file over SMB or NFS if they are stored on a NAS next to the media items, for instance.&lt;br /&gt;
&lt;br /&gt;
The final URL will look like &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;http://kodihost:8080/images/image%3A%2F%2Fnfs%253a%252f%252fCUBER%252fmedia%252fpreserved%252fTVShows%252fV%2520(2009)%252fposter.jpg%2F&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can also turn the &amp;quot;image://&amp;quot; URL into a more traditional looking path/URL (https:// or smb:// or H:\) by chopping off the &amp;quot;image://&amp;quot; up front and the slash at the end, then decoding the rest as a URI component.&lt;br /&gt;
&lt;br /&gt;
= Access &amp;quot;parent&amp;quot; artwork =&lt;br /&gt;
&lt;br /&gt;
For several media types, it is possible to access artwork for the &amp;quot;parent&amp;quot; media item as well as the item&#039;s own artwork. This works for skins and JSON-RPC. For instance, TV episodes can access the artwork for the containing season and TV show. Use &amp;quot;&amp;lt;parenttype&amp;gt;.&amp;lt;arttype&amp;gt;&amp;quot; as the art type.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|+ Media types and their parent types&lt;br /&gt;
! style=&amp;quot;width:8%&amp;quot; | Media type&lt;br /&gt;
! Parent type&lt;br /&gt;
! style=&amp;quot;width:40%&amp;quot; | Description&lt;br /&gt;
! style=&amp;quot;width:30%&amp;quot; | Skin examples&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  TV episodes&lt;br /&gt;
|  &amp;quot;season&amp;quot;, &amp;quot;tvshow&amp;quot;&lt;br /&gt;
|  TV episodes can access artwork for their containing season and TV show&lt;br /&gt;
|  &amp;quot;Player.Art(tvshow.clearlogo)&amp;quot;, &amp;quot;Player.Art(season.poster)&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  Seasons&lt;br /&gt;
|  &amp;quot;tvshow&amp;quot;&lt;br /&gt;
|  TV show artwork&lt;br /&gt;
|  &amp;quot;ListItem.Art(tvshow.banner)&amp;quot;, &amp;quot;ListItem.Art(tvshow.clearlogo)&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  Movies&lt;br /&gt;
|  &amp;quot;set&amp;quot;&lt;br /&gt;
|  In Kodi 18, movies can access artwork for their containing set / collection&lt;br /&gt;
|  &amp;quot;ListItem.Art(set.clearlogo)&amp;quot;, &amp;quot;ListItem.Art(set.poster)&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  Songs&lt;br /&gt;
|  &amp;quot;album&amp;quot;, &amp;quot;artist&amp;quot;, &amp;quot;albumartist&amp;quot;, &amp;quot;artist1&amp;quot;, &amp;quot;albumartist1&amp;quot;&lt;br /&gt;
|  Songs can access the artwork for their containing album and all artists. Songs can have multiple artists; in Kodi 18 &amp;quot;artist1&amp;quot; will be artwork for the second artist - &amp;quot;artist2&amp;quot;, &amp;quot;artist3&amp;quot;, and so on will be filled for additional artists. &amp;quot;albumartist&amp;quot; works the same for album artists.&lt;br /&gt;
|  &amp;quot;Player.Art(album.thumb)&amp;quot;, &amp;quot;Player.Art(artist.fanart)&amp;quot;, &amp;quot;Player.Art(albumartist.clearlogo)&amp;quot;, &amp;quot;Player.Art(artist1.fanart)&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  Albums&lt;br /&gt;
|  &amp;quot;artist&amp;quot;, &amp;quot;artist1&amp;quot;&lt;br /&gt;
|  Albums can access the artwork for their containing album. Albums can have multiple artists; in Kodi 18 &amp;quot;artist1&amp;quot; will be artwork for the second artist - &amp;quot;artist2&amp;quot;, &amp;quot;artist3&amp;quot;, and so on will be filled for additional artists.&lt;br /&gt;
|  &amp;quot;ListItem.Art(artist.fanart)&amp;quot;, &amp;quot;ListItem.Art(artist.clearlogo)&amp;quot;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Example artwork types ==&lt;br /&gt;
&lt;br /&gt;
Here is a short list of example artwork types and how to access them. Kodi&#039;s artwork system allows any number of artwork types, so it&#039;s impossible to list all that may be available here. See the artwork pages for different library sections like [[Movie artwork]] or [[Music artwork]] for a list of generally available artwork types, or navigate to image 2 of [[Artwork#Kodi- Choose Art]] on a media item in your local Kodi installation to see what types of artwork are currently available for at least one of that media type in your local library.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|+ Example artwork types and skin access&lt;br /&gt;
! Artwork type&lt;br /&gt;
! Skin InfoLabel&lt;br /&gt;
! style=&amp;quot;50%&amp;quot; | Description&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  poster&lt;br /&gt;
|  ListItem.Art(poster)&lt;br /&gt;
|  Poster of the currently focused media item (like a movie or TV show)&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  fanart&lt;br /&gt;
|  ListItem.Art(fanart)&lt;br /&gt;
|  Fanart of the currently focused media item&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  landscape&lt;br /&gt;
|  ListItem.Art(landscape)&lt;br /&gt;
|  Landscape of the currently focused media item&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  clearlogo&lt;br /&gt;
|  Player.Art(clearlogo)&lt;br /&gt;
|  Clearlogo of the currently playing media item&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  tvshow.poster&lt;br /&gt;
|  Player.Art(tvshow.poster)&lt;br /&gt;
|  For a currently playing TV episode, this is the poster of the parent TV show&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  set.poster&lt;br /&gt;
|  Player.Art(set.clearlogo)&lt;br /&gt;
|  For currently playing movies, this is the clearlogo of the containing movie set&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|  album.thumb&lt;br /&gt;
|  Player.Art(album.thumb)&lt;br /&gt;
|  For currently playing music, this is the cover of the album&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= {{Kodi}} version updates =&lt;br /&gt;
&lt;br /&gt;
* The music library in {{Kodi}} 17 and before was &#039;&#039;&#039;limited to just &amp;quot;fanart&amp;quot; and &amp;quot;thumb&amp;quot; for artist images&#039;&#039;&#039; and &#039;&#039;&#039;&amp;quot;thumb&amp;quot; for album images&#039;&#039;&#039;, it did not have the flexibility to add a wide variety of artwork. The video library has had this level of support for some time now.&lt;br /&gt;
* {{Kodi}} 18 adds a &#039;&#039;&#039;[[Advancedsettings.xml#Music library extra artwork| whitelist in advancedsettings.xml]]&#039;&#039;&#039; ([[Advancedsettings.xml#Extra artwork|for the video library]]) so that {{Kodi}} will add any specified artwork from scrapers and the file system automatically.&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=User:Rmrector&amp;diff=157150</id>
		<title>User:Rmrector</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=User:Rmrector&amp;diff=157150"/>
		<updated>2019-02-02T14:12:21Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== v18 Artwork updates ===&lt;br /&gt;
* &#039;&#039;Nothing in progress&#039;&#039;&lt;br /&gt;
* But still need to update the Movies, TV shows, and Music Videos pages&lt;br /&gt;
&lt;br /&gt;
==== Merged ====&lt;br /&gt;
* [[User:Rmrector/Artwork/Accessing with skins and JSON-RPC - new]]&lt;br /&gt;
* [[User:Rmrector/Artwork - updates for Kodi 18]]&lt;br /&gt;
* [[User:Rmrector/Music artwork - for Kodi 18]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Artwork&amp;diff=157149</id>
		<title>Artwork</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Artwork&amp;diff=157149"/>
		<updated>2019-02-02T14:03:45Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Artwork_Contents}}&lt;br /&gt;
{{mininav|[[Music_library|Music Library]] {{l2|[[Video_library|Video Library]]}} |[[HOW-TO:Create_Music_Library|Create Music Library]] {{l2|[[HOW-TO:Create_Video_Library|Create Video Library]]}}}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;The use of artwork takes pride of place in Kodi. The artwork will transform your mundane media player into a showpiece to be proud of, especially when teamed up with your favourite skin. Kodi   will allow you to display Movie Posters, Fanart, Album Covers, Actor and Artist images to name a few. Install the Kodi slideshow add-on, and you will have a constant display of video or music fanart to brighten your entertainment room.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As the topic covering artwork is comprehensive, it has been broken down into smaller and more manageable pages for ease of reading. Choose the subject that interests you to obtain further information. Information common to all categories is located on this page. Specific category details are located on linked pages.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Be aware that artwork is skin dependent. Not all artwork types are used in all skins.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
= Flexible artwork types =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=350px heights=200px&amp;gt;&lt;br /&gt;
File:Artwork-PosterView01.jpg&lt;br /&gt;
File:Artwork-FanartView01.jpg&lt;br /&gt;
File:Artwork-Banner01.jpg&lt;br /&gt;
File:Artwork-PosterView02.jpg&lt;br /&gt;
File:Artwork-MusicArtist01.jpg&lt;br /&gt;
File:Artwork-ClearLogo02.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Kodi}}&#039;s support for artwork types to represent media items is very flexible: Any number of artwork can be added to a media item with free-form names that have only a few rules.&lt;br /&gt;
* Naming rules: artwork names must be&lt;br /&gt;
** only alphanumeric characters&lt;br /&gt;
** lowercase letters&lt;br /&gt;
** keep them short - 20 characters is a bit long, though not forbidden&lt;br /&gt;
* Named by convention so that skins and JSON-RPC consumers can find and use them reliably&lt;br /&gt;
* Some common types of artwork are &amp;quot;fanart&amp;quot;, &amp;quot;clearlogo&amp;quot;, &amp;quot;landscape&amp;quot;, &amp;quot;banner&amp;quot;, and &amp;quot;poster&amp;quot;&lt;br /&gt;
&lt;br /&gt;
To view all art types that are already assigned in your Kodi library for any particular media type, use Kodi&#039;s built-in [[Artwork#Kodi- Choose Art| Choose Art]] dialog on nearly any item in the library (movie, TV show, episode, so on), and the list of artwork types shown on this window are assigned to at least one media item of the same type.&lt;br /&gt;
&lt;br /&gt;
== Artwork whitelist ==&lt;br /&gt;
&lt;br /&gt;
Starting with Kodi 18, there is a whitelist configuration for artwork types to be added automatically. This whitelist applies to all artwork added automatically by Kodi, either when scanning in local files or scraping from online sources. This allows you to share one media file library with a full artwork selection and configure individual Kodi clients separately based on processing power, skin selection, or client-local storage space (the local artwork cache takes up the most space of all Kodi running data). It is currently configured with advancedsettings.xml &#039;&#039;&#039;[[Advancedsettings.xml#Extra artwork| for the video library]]&#039;&#039;&#039; and  &#039;&#039;&#039;[[Advancedsettings.xml#Extra artwork 2| for the music library]]&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
= Obtaining Artwork =&lt;br /&gt;
Movie, TV Show and Music artwork can be obtained using a variety of methods. The most common method is via the Kodi scraper.&lt;br /&gt;
&lt;br /&gt;
== Scrapers ==&lt;br /&gt;
A scraper is a Kodi core function which, in combination with the relevant metadata API add-on, will preform an automatic online search for movie, tv show and music information and then retrieve all relevant metadata and artwork and import the data into the Kodi Library and the artwork into the [[Artwork#Cache|cache]]. The default sources for information are: &lt;br /&gt;
&lt;br /&gt;
Movies- [https://www.themoviedb.org/ The MovieDB]&amp;lt;br /&amp;gt;&lt;br /&gt;
TV Shows- [http://thetvdb.com/ The TVDB]&amp;lt;br /&amp;gt;&lt;br /&gt;
Music- [http://www.theaudiodb.com/ The AudioDB]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
There are many other scraper information sources, but most are specialist listings for foreign language movies or Disney movies, for example.&lt;br /&gt;
&lt;br /&gt;
The Video scraping process is reliant on your local directory and file names being named in accordance with the title listed at the scraper site. To ensure correct naming, simply visit the website, search for your title, and copy the title from the site and paste into your directory/filename. &lt;br /&gt;
&lt;br /&gt;
The Music scraping process is reliant on correct file naming and music tags.&lt;br /&gt;
&lt;br /&gt;
Kodi will then match the video or music and download all relevant metadata and artwork. It is important to note that if you already have correctly named artwork in the video and music folder, then Kodi will scrape the local artwork and ignore the online source. Metadata will still be downloaded though.&lt;br /&gt;
&lt;br /&gt;
If you subsequently locate artwork that is preferable, it is possible to replace the Kodi selected artwork. Refer to [[Artwork#Kodi-_Choose_Art|paragraph 2.1]] below.&lt;br /&gt;
; {{see also|Naming video files}}&lt;br /&gt;
; {{see also|Add-on:The Movie Database}}&lt;br /&gt;
; {{see also|Add-on:The TVDB}}&lt;br /&gt;
; {{see also|Add-on:Universal Album Scraper}}&lt;br /&gt;
; {{see also|Add-on:Universal Artist Scraper}}&lt;br /&gt;
&lt;br /&gt;
== Media Managers ==&lt;br /&gt;
There is a range of software that can create nfo files and download artwork and save them to the correct location and correct naming. They perform the same process and function as the Kodi Scraping operation does natively, but they do not add any entries into the Kodi library. Instead they create what is known as &#039;&#039;&#039;[[NFO_files|NFO files]]&#039;&#039;&#039;. This file holds all the metadata for that particular movie, tv show or music. The software will also download associated artwork from the scraper site. Kodi can then read this file and scrape it into the library along with the artwork.&lt;br /&gt;
&lt;br /&gt;
Although these programs are quick and easy to use, they are more suited for use where a movie or tv show is not listed at the scraper site. You are then able to create the metadata from scratch. You would normally use this for, say, home movies, sporting events or other items that are not listed at the scraper site. &lt;br /&gt;
&lt;br /&gt;
It is always best to use Kodi for the normal mainstream scrapes and the Media Managers for the non-listed movie, tv show and music scrapes.&lt;br /&gt;
; {{see also|NFO_files}}&lt;br /&gt;
&lt;br /&gt;
== Web Search ==&lt;br /&gt;
Using an online search engine can help you discover individual artworks, or additional sites where artwork is hosted. When downloading, check that the resolution is of an acceptable standard. Also pay respect to any copyright notices that are attached to the artwork.&lt;br /&gt;
&lt;br /&gt;
Once downloaded, they must be named and saved correctly for the artwork to be visible to Kodi.&lt;br /&gt;
&lt;br /&gt;
== Create Your Own ==&lt;br /&gt;
So you are not happy with the artwork the scraper downloaded? And you just can&#039;t find that perfect artwork by manually searching the internet. Then, you will just have to create your own. For those who are artistically minded and can easily navigate around image editing software, then you should be able to easily create your very own user-defined artwork on your computer.  Only your imagination is the limit, but be mindful that the artwork needs to remain true to the movie or tv show it represents. &lt;br /&gt;
&lt;br /&gt;
If you are unsure where to start, the following links may prove useful. Especially if you plan to share your masterpieces. If this is the case, it is best to stick to the posted guidelines.&lt;br /&gt;
*Fanart.TV- The premier repository for all things artwork. They have an in-depth guide for artwork requirements&lt;br /&gt;
:;&#039;&#039;see : [https://fanart.tv/movie-fanart/&amp;lt;nowiki&amp;gt;Fanart.tv- Image Creation Guide&amp;lt;/nowiki&amp;gt;]&#039;&#039;&lt;br /&gt;
*The MovieDB- The go to movie scraper site for Kodi. In addition to metadata, they also hold a large repository of artwork that are created and uploaded to the site by people just like you. Read their easy to understand artwork creation guide.&lt;br /&gt;
:; &#039;&#039;see : [https://www.themoviedb.org/documentation/editing/images&amp;lt;nowiki&amp;gt;themoviedb- Image Creation Guide&amp;lt;/nowiki&amp;gt;]&#039;&#039;&lt;br /&gt;
*The TVDB- The go to TV Show scraper site for Kodi. In addition to metadata, they also hold a large repository of artwork devoted to TV Shows. Read their easy to understand artwork creation guide.&lt;br /&gt;
:; &#039;&#039;see : [http://www.thetvdb.com/wiki/index.php/Category:Images&amp;lt;nowiki&amp;gt;theTVDB- Image Creation Guide&amp;lt;/nowiki&amp;gt;]&#039;&#039;&lt;br /&gt;
*IMDB- A comprehensive listing of ensuring artwork is appropriate and suitable.&lt;br /&gt;
:; &#039;&#039;see : [https://contribute.imdb.com/updates/guide/images&amp;lt;nowiki&amp;gt;IMDB- Image Submission Guide&amp;lt;/nowiki&amp;gt;]&#039;&#039;&lt;br /&gt;
*TheAudioDB- The go to scraper site for all things music. They hold metadata on Artists, Albums and Songs with a large collection of music artwork.&lt;br /&gt;
:; &#039;&#039;see : [http://theaudiodb.com/forum/viewtopic.php?f=2&amp;amp;t=1&amp;lt;nowiki&amp;gt;TheAudioDB- Image Creation Guide&amp;lt;/nowiki&amp;gt;]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
= Importing-Scanning Artwork =&lt;br /&gt;
{{anchor|Importing-Scraping Artwork}}&lt;br /&gt;
&lt;br /&gt;
This section does not apply to the Kodi scraper or any other add-on scraping process. It only applies to artwork you have manually sourced and saved.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;When performing an Update Library or Scrape, Kodi will always use Local Artwork first if it exists. If there is no local artwork, Kodi will obtain the artwork from online sources.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;It is important to note that once a movie, tv show, artist or album has been scraped into the library, Kodi will ignore them on subsequent scans.&#039;&#039;&#039; If you have made changes to either artwork and/or metadata (in the form of a nfo file), you must instruct Kodi to update using one of the following methods...&lt;br /&gt;
#If the Library has not yet been created, or the source has not yet been added&lt;br /&gt;
#*Ensure your artwork is named and saved correctly. Add the [[Media sources]] to Kodi and allow to update. Artwork will be cached&lt;br /&gt;
#This Movie/TV Show/Album/Artist is new and has not been added to the library yet&lt;br /&gt;
#*An Update Library will scrape and cache the artwork, or&lt;br /&gt;
#*For Videos, navigate Videos&amp;gt;Files, navigate to the item and call up the Information page. This will start an automatic scrape for that single item&lt;br /&gt;
#*For Music, navigate Music&amp;gt;Files, locate and highlight the new artist or album. From the context menu select &#039;&#039;Scan item to library&#039;&#039;&lt;br /&gt;
#I added new artwork for Movie/TV Show/Album/Artist already in the library&lt;br /&gt;
#*For videos follow instructions for &#039;&#039;Kodi- Choose Art&#039;&#039; below&lt;br /&gt;
#*For music follow instructions in [[Music_artwork]]&lt;br /&gt;
#I added new artwork for a lot of Movies/TV Shows/Music already in the library&lt;br /&gt;
#*Update each Movie/TV Show/Music manually using instructions in the previous option, or&lt;br /&gt;
#*Remove the Source and clean library. Re-add the source and allow the Update Library&lt;br /&gt;
:&#039;&#039;&#039;&#039;&#039;See also: [[Updating_or_removing_videos|Update Video Library]]&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Available&amp;quot; artwork ==&lt;br /&gt;
&lt;br /&gt;
Scrapers and NFO files can include multiple images for a single type of artwork. The first image will be assigned to the media item for skins and other interfaces to access for display, and the full list will be saved for the &amp;quot;Choose art&amp;quot; dialog, where you can select a new image for any art type.&lt;br /&gt;
&lt;br /&gt;
== Kodi- Choose Art ==&lt;br /&gt;
From within Kodi, you have the ability to manually change the artwork at any time by following these directions. &lt;br /&gt;
&lt;br /&gt;
#Highlight the media item whose artwork you want to change. &lt;br /&gt;
#Call up the &#039;&#039;Information&#039;&#039; page, (Image 1)&lt;br /&gt;
#* For seasons and movie sets the &amp;quot;Choose Art&amp;quot; option is in the [[Context menu]].&lt;br /&gt;
#Select &#039;&#039;Choose Art&#039;&#039;. (Image 1)&lt;br /&gt;
#From within this page, you will be given the option to select which type of artwork you would like to change. (Image 2)&lt;br /&gt;
#* This dialog is filled with artwork already assigned to similar media items in the library. If your type of artwork is not listed, then use the &#039;&#039;&#039;Add art&#039;&#039;&#039; button. An onscreen keyboard will be displayed. Enter the new type of artwork and select &#039;&#039;&#039;Ok&#039;&#039;&#039;.&lt;br /&gt;
#* Examples of artwork type are those listed in the following pages- eg clearlogo, clearart, banner etc...&lt;br /&gt;
#Once selected, you will then be provided with a list of available artwork at the scraper site, or you can navigate to a local or network location. (Image 3)&lt;br /&gt;
#Once you select the desired image, it will replace the existing image. You will be returned to the screen displayed in Image 2&lt;br /&gt;
#If you do not intend to change any other artwork types, simply Esc or Back out of the screen&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=350px heights=200px&amp;gt;&lt;br /&gt;
File:Artwork-ChooseArt03.jpg|Image 1- Choose Art on the Information Page&lt;br /&gt;
File:Artwork-ChooseArt01.jpg|Image 2- Select which type of artwork to change&lt;br /&gt;
File:Artwork-ChooseArt02.jpg|Image 3- List of available remote artworks from the scraper site, as well as the ability to &#039;&#039;Browse&#039;&#039; local and network sources&lt;br /&gt;
File:Artwork-ChooseArt04.jpg|Image 4- Using the Refresh Method&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
An alternative method:&lt;br /&gt;
#Choose &#039;&#039;Refresh&#039;&#039; as seen in Image 1.&lt;br /&gt;
#You will then be asked &#039;&#039;Locally stored information found. Ignore and refresh from Internet?&#039;&#039; (Image 4)&lt;br /&gt;
#*To scrape local artwork and metadata - Select &#039;&#039;&#039;No&#039;&#039;&#039; note- If you have no local nfo file, Kodi will scrape metadata from the online scraper site&lt;br /&gt;
#*To scrape online artwork and metadata - Select &#039;&#039;&#039;Yes&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
= Artwork details for media sections =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=350px heights=200px&amp;gt;&lt;br /&gt;
File:Skin.rapier fullscreen music.jpg&lt;br /&gt;
File:Artwork-MusicBanner01.jpg&lt;br /&gt;
File:Artwork-FanartView02.jpg&lt;br /&gt;
File:Rapier new tvshows.jpg&lt;br /&gt;
File:Artwork-Animated01.gif&lt;br /&gt;
File:Artwork-musiclandscape-EstuaryATF.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Movie Artwork ==&lt;br /&gt;
{{#lst:Movie_artwork|intro}}&lt;br /&gt;
{{see|Movie artwork}}&lt;br /&gt;
&lt;br /&gt;
== TV Show Artwork ==&lt;br /&gt;
{{#lst:TV-Show_artwork|intro}}&lt;br /&gt;
{{see|TV-Show artwork}}&lt;br /&gt;
&lt;br /&gt;
== Music Artwork ==&lt;br /&gt;
{{#lst:Music_artwork|intro}}&lt;br /&gt;
{{see|Music artwork}}&lt;br /&gt;
&lt;br /&gt;
== Music Videos Artwork ==&lt;br /&gt;
{{#lst:Music_Video_artwork|intro}}&lt;br /&gt;
{{see|Music Video artwork}}&lt;br /&gt;
&lt;br /&gt;
== Live TV Artwork ==&lt;br /&gt;
{{#lst:Live_TV_Artwork|intro}}&lt;br /&gt;
{{see|Live TV Artwork}}&lt;br /&gt;
&lt;br /&gt;
== Pictures Artwork ==&lt;br /&gt;
There is no user definable artwork for the Pictures section of Kodi.&amp;lt;br /&amp;gt;&lt;br /&gt;
:&#039;&#039;&#039;&#039;&#039;See: [[Pictures]]&lt;br /&gt;
&lt;br /&gt;
All images added to Pictures are cached as follows:&lt;br /&gt;
#Embedded EXIF previews are scanned and cached. If none available then&lt;br /&gt;
#Preview images are created and cached&lt;br /&gt;
:&#039;&#039;&#039;&#039;&#039;See: [[Artwork#Cache|Artwork Cache]]&#039;&#039;&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To add an image to the folder icon:&lt;br /&gt;
:&#039;&#039;&#039;&#039;&#039;See: [[Movie_artwork#Source Folder Artwork|Folder Image]]&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
= Add-ons to display artwork =&lt;br /&gt;
The following add-ons allow you to display your movie, TV show and music artwork.&lt;br /&gt;
&lt;br /&gt;
=== Screensavers ===&lt;br /&gt;
&lt;br /&gt;
Want to do more with all that wonderful fanart? Install this Kodi screensaver. Just like a screensaver on computers from yesteryear, the Kodi screensaver will produce a slideshow of your Movie and TV Show fanart, or set it to display your Music Fanart. Don&#039;t like either of those? Then setup a directory with your own pictures and it can produce a screensaver from your selection of photos.&lt;br /&gt;
; {{see also|Add-on:Picture Slideshow Screensaver}}&lt;br /&gt;
&lt;br /&gt;
= Managing Artwork =&lt;br /&gt;
There are a number of ways to maintain and improve Kodi&#039;s handling of the artwork. &lt;br /&gt;
&lt;br /&gt;
== Cache ==&lt;br /&gt;
{{#lst:Artwork/Cache|intro}}&lt;br /&gt;
; {{see also|Artwork/Cache}}&lt;br /&gt;
&lt;br /&gt;
== Recovering Disk Space ==&lt;br /&gt;
After years of use, it is expected that your system will gather some clutter- that being either orphaned artwork files or corrupted artwork which will not display. &lt;br /&gt;
; {{see also|HOW-TO:Reduce disk space usage}}&lt;br /&gt;
; {{see also|Artwork/Cache}}&lt;br /&gt;
&lt;br /&gt;
=== Texture Cache Maintenance ===&lt;br /&gt;
{{#lst:Texture_Cache_Maintenance_utility|intro}}&lt;br /&gt;
; {{see also|Texture Cache Maintenance utility}}&lt;br /&gt;
&lt;br /&gt;
== Import/Export ==&lt;br /&gt;
{{#lst:import-export_library|intro}}&lt;br /&gt;
; {{see also|Import-export library}}&lt;br /&gt;
&lt;br /&gt;
= Troubleshooting =&lt;br /&gt;
There are certain scenarios where attempting to replace existing artwork with new artwork, &#039;&#039;&#039;you may experience {{kodi}} refusing to load the new artwork&#039;&#039;&#039;. This occurs when replacing one artwork with another artwork having the same name. eg replacing &#039;&#039;poster.jpg&#039;&#039; with a new &#039;&#039;poster.jpg&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Rest assured that the new image has been accepted, but due to the same filename, {{kodi}} may take upto 24 hrs to check the image hash, realise the image is different and clear out the cached image and replace it with the new one. This is intended behaviour. Further reading available in the following link&lt;br /&gt;
&lt;br /&gt;
; {{see also|Artwork/Cache}}&lt;br /&gt;
&lt;br /&gt;
= Animated artwork - experimental =&lt;br /&gt;
&lt;br /&gt;
Kodi has basic support for displaying animated artwork, and two artwork types have a decent collection of animated options: posters and fanart for movies. The most comprehensive support for animated artwork is Skin Helper Service, which has taken to naming these as &amp;quot;animatedposter&amp;quot; and &amp;quot;animatedfanart&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
New animated movie posters (and textless posters / keyart which could be named &amp;quot;animatedkeyart&amp;quot;) are often posted to [https://forum.kodi.tv/showthread.php?tid=215727 this forum thread].&lt;br /&gt;
&lt;br /&gt;
== Limitations of animated artwork ==&lt;br /&gt;
&lt;br /&gt;
Kodi&#039;s support for displaying animated artwork is basic, and does have some limitations.&lt;br /&gt;
&lt;br /&gt;
Number one is a hard limit on the number of pixels in a single animated artwork. The size of animated artwork is limited to roughly 12 frames of 1920x1080. This limit is defined as fully decoded pixels. The trend for animated posters is for smaller images with more frames (a recent &amp;quot;animatedposter&amp;quot; is 500x713 with 60 frames). Kodi will discard any remaining frames after it has reached this limit, which will probably hitch unpleasantly, so obeying this limit is important.&lt;br /&gt;
* Technically this limit is 11 frames but Kodi will decode full frames until it has decoded MORE than this, so the calculation is&lt;br /&gt;
** 1920 × 1080 = 2,073,600 * 11 =&lt;br /&gt;
*** 22,809,600 pixels &#039;&#039;&#039;plus&#039;&#039;&#039; one more frame&lt;br /&gt;
&lt;br /&gt;
Number two is that Kodi doesn&#039;t save animated artwork to the texture cache and will not play them (only displaying the first frame) unless they are stored on a client-local file system.&lt;br /&gt;
&lt;br /&gt;
= Accessing with skins and JSON-RPC =&lt;br /&gt;
{{#lst:Artwork/Accessing with skins and JSON-RPC|intro}}&lt;br /&gt;
; {{see also|Artwork/Accessing with skins and JSON-RPC}}&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Guides]]&lt;br /&gt;
[[Category:Manual]]&lt;br /&gt;
[[Category:Karellen]]&lt;br /&gt;
[[Category:Video library]]&lt;br /&gt;
[[Category:Music library]]&lt;br /&gt;
[[Category:Advanced topics]]&lt;br /&gt;
[[Category:First time user]]&lt;br /&gt;
[[Category:Quick Start Guide]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Artwork&amp;diff=157148</id>
		<title>Artwork</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Artwork&amp;diff=157148"/>
		<updated>2019-02-02T13:58:06Z</updated>

		<summary type="html">&lt;p&gt;Rmrector: /* Artwork details for media sections */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Artwork_Contents}}&lt;br /&gt;
{{mininav|[[Music_library|Music Library]] {{l2|[[Video_library|Video Library]]}} |[[HOW-TO:Create_Music_Library|Create Music Library]] {{l2|[[HOW-TO:Create_Video_Library|Create Video Library]]}}}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;The use of artwork takes pride of place in Kodi. The artwork will transform your mundane media player into a showpiece to be proud of, especially when teamed up with your favourite skin. Kodi   will allow you to display Movie Posters, Fanart, Album Covers, Actor and Artist images to name a few. Install the Kodi slideshow add-on, and you will have a constant display of video or music fanart to brighten your entertainment room.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As the topic covering artwork is comprehensive, it has been broken down into smaller and more manageable pages for ease of reading. Choose the subject that interests you to obtain further information. Information common to all categories is located on this page. Specific category details are located on linked pages.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Be aware that artwork is skin dependent. Not all artwork types are used in all skins.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
= Flexible artwork types =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=350px heights=200px&amp;gt;&lt;br /&gt;
File:Artwork-PosterView01.jpg&lt;br /&gt;
File:Artwork-FanartView01.jpg&lt;br /&gt;
File:Artwork-Banner01.jpg&lt;br /&gt;
File:Artwork-PosterView02.jpg&lt;br /&gt;
File:Artwork-MusicArtist01.jpg&lt;br /&gt;
File:Artwork-ClearLogo02.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Kodi}}&#039;s support for artwork types to represent media items is very flexible: Any number of artwork can be added to a media item with free-form names that have only a few rules.&lt;br /&gt;
* Naming rules: artwork names must be&lt;br /&gt;
** only alphanumeric characters&lt;br /&gt;
** lowercase letters&lt;br /&gt;
** keep them short - 20 characters is a bit long, though not forbidden&lt;br /&gt;
* Named by convention so that skins and JSON-RPC consumers can find and use them reliably&lt;br /&gt;
* Some common types of artwork are &amp;quot;fanart&amp;quot;, &amp;quot;clearlogo&amp;quot;, &amp;quot;landscape&amp;quot;, &amp;quot;banner&amp;quot;, and &amp;quot;poster&amp;quot;&lt;br /&gt;
&lt;br /&gt;
To view all art types that are already assigned in your Kodi library for any particular media type, use Kodi&#039;s built-in [[Artwork#Kodi- Choose Art| Choose Art]] dialog on nearly any item in the library (movie, TV show, episode, so on), and the list of artwork types shown on this window are assigned to at least one media item of the same type.&lt;br /&gt;
&lt;br /&gt;
== Artwork whitelist ==&lt;br /&gt;
&lt;br /&gt;
Starting with Kodi 18, there is a whitelist configuration for artwork types to be added automatically. This whitelist applies to all artwork added automatically by Kodi, either when scanning in local files or scraping from online sources. This allows you to share one media file library with a full artwork selection and configure individual Kodi clients separately based on processing power, skin selection, or client-local storage space (the local artwork cache takes up the most space of all Kodi running data). It is currently configured with advancedsettings.xml &#039;&#039;&#039;[[Advancedsettings.xml#Extra artwork| for the video library]]&#039;&#039;&#039; and  &#039;&#039;&#039;[[Advancedsettings.xml#Extra artwork 2| for the music library]]&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
= Obtaining Artwork =&lt;br /&gt;
Movie, TV Show and Music artwork can be obtained using a variety of methods. The most common method is via the Kodi scraper.&lt;br /&gt;
&lt;br /&gt;
== Scrapers ==&lt;br /&gt;
A scraper is a Kodi core function which, in combination with the relevant metadata API add-on, will preform an automatic online search for movie, tv show and music information and then retrieve all relevant metadata and artwork and import the data into the Kodi Library and the artwork into the [[Artwork#Cache|cache]]. The default sources for information are: &lt;br /&gt;
&lt;br /&gt;
Movies- [https://www.themoviedb.org/ The MovieDB]&amp;lt;br /&amp;gt;&lt;br /&gt;
TV Shows- [http://thetvdb.com/ The TVDB]&amp;lt;br /&amp;gt;&lt;br /&gt;
Music- [http://www.theaudiodb.com/ The AudioDB]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
There are many other scraper information sources, but most are specialist listings for foreign language movies or Disney movies, for example.&lt;br /&gt;
&lt;br /&gt;
The Video scraping process is reliant on your local directory and file names being named in accordance with the title listed at the scraper site. To ensure correct naming, simply visit the website, search for your title, and copy the title from the site and paste into your directory/filename. &lt;br /&gt;
&lt;br /&gt;
The Music scraping process is reliant on correct file naming and music tags.&lt;br /&gt;
&lt;br /&gt;
Kodi will then match the video or music and download all relevant metadata and artwork. It is important to note that if you already have correctly named artwork in the video and music folder, then Kodi will scrape the local artwork and ignore the online source. Metadata will still be downloaded though.&lt;br /&gt;
&lt;br /&gt;
If you subsequently locate artwork that is preferable, it is possible to replace the Kodi selected artwork. Refer to [[Artwork#Kodi-_Choose_Art|paragraph 2.1]] below.&lt;br /&gt;
; {{see also|Naming_video_files}}&lt;br /&gt;
; {{see also|Add-on:The_Movie_Database}}&lt;br /&gt;
; {{see also|Add-on:The_TVDB}}&lt;br /&gt;
; {{see also|Add-on:Universal_Album_Scraper}}&lt;br /&gt;
; {{see also|Add-on:Universal_Artist_Scraper}}&lt;br /&gt;
&lt;br /&gt;
== Media Managers ==&lt;br /&gt;
There is a range of software that can create nfo files and download artwork and save them to the correct location and correct naming. They perform the same process and function as the Kodi Scraping operation does natively, but they do not add any entries into the Kodi library. Instead they create what is known as &#039;&#039;&#039;[[NFO_files|NFO files]]&#039;&#039;&#039;. This file holds all the metadata for that particular movie, tv show or music. The software will also download associated artwork from the scraper site. Kodi can then read this file and scrape it into the library along with the artwork.&lt;br /&gt;
&lt;br /&gt;
Although these programs are quick and easy to use, they are more suited for use where a movie or tv show is not listed at the scraper site. You are then able to create the metadata from scratch. You would normally use this for, say, home movies, sporting events or other items that are not listed at the scraper site. &lt;br /&gt;
&lt;br /&gt;
It is always best to use Kodi for the normal mainstream scrapes and the Media Managers for the non-listed movie, tv show and music scrapes.&lt;br /&gt;
; {{see also|NFO_files}}&lt;br /&gt;
&lt;br /&gt;
== Web Search ==&lt;br /&gt;
Using an online search engine can help you discover individual artworks, or additional sites where artwork is hosted. When downloading, check that the resolution is of an acceptable standard. Also pay respect to any copyright notices that are attached to the artwork.&lt;br /&gt;
&lt;br /&gt;
Once downloaded, they must be named and saved correctly for the artwork to be visible to Kodi.&lt;br /&gt;
&lt;br /&gt;
== Create Your Own ==&lt;br /&gt;
So you are not happy with the artwork the scraper downloaded? And you just can&#039;t find that perfect artwork by manually searching the internet. Then, you will just have to create your own. For those who are artistically minded and can easily navigate around image editing software, then you should be able to easily create your very own user-defined artwork on your computer.  Only your imagination is the limit, but be mindful that the artwork needs to remain true to the movie or tv show it represents. &lt;br /&gt;
&lt;br /&gt;
If you are unsure where to start, the following links may prove useful. Especially if you plan to share your masterpieces. If this is the case, it is best to stick to the posted guidelines.&lt;br /&gt;
*Fanart.TV- The premier repository for all things artwork. They have an in-depth guide for artwork requirements&lt;br /&gt;
:;&#039;&#039;see : [https://fanart.tv/movie-fanart/&amp;lt;nowiki&amp;gt;Fanart.tv- Image Creation Guide&amp;lt;/nowiki&amp;gt;]&#039;&#039;&lt;br /&gt;
*The MovieDB- The go to movie scraper site for Kodi. In addition to metadata, they also hold a large repository of artwork that are created and uploaded to the site by people just like you. Read their easy to understand artwork creation guide.&lt;br /&gt;
:; &#039;&#039;see : [https://www.themoviedb.org/documentation/editing/images&amp;lt;nowiki&amp;gt;themoviedb- Image Creation Guide&amp;lt;/nowiki&amp;gt;]&#039;&#039;&lt;br /&gt;
*The TVDB- The go to TV Show scraper site for Kodi. In addition to metadata, they also hold a large repository of artwork devoted to TV Shows. Read their easy to understand artwork creation guide.&lt;br /&gt;
:; &#039;&#039;see : [http://www.thetvdb.com/wiki/index.php/Category:Images&amp;lt;nowiki&amp;gt;theTVDB- Image Creation Guide&amp;lt;/nowiki&amp;gt;]&#039;&#039;&lt;br /&gt;
*IMDB- A comprehensive listing of ensuring artwork is appropriate and suitable.&lt;br /&gt;
:; &#039;&#039;see : [https://contribute.imdb.com/updates/guide/images&amp;lt;nowiki&amp;gt;IMDB- Image Submission Guide&amp;lt;/nowiki&amp;gt;]&#039;&#039;&lt;br /&gt;
*TheAudioDB- The go to scraper site for all things music. They hold metadata on Artists, Albums and Songs with a large collection of music artwork.&lt;br /&gt;
:; &#039;&#039;see : [http://theaudiodb.com/forum/viewtopic.php?f=2&amp;amp;t=1&amp;lt;nowiki&amp;gt;TheAudioDB- Image Creation Guide&amp;lt;/nowiki&amp;gt;]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
= Importing-Scanning Artwork =&lt;br /&gt;
{{anchor|Importing-Scraping Artwork}}&lt;br /&gt;
&lt;br /&gt;
This section does not apply to the Kodi scraper or any other add-on scraping process. It only applies to artwork you have manually sourced and saved.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;When performing an Update Library or Scrape, Kodi will always use Local Artwork first if it exists. If there is no local artwork, Kodi will obtain the artwork from online sources.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;It is important to note that once a movie, tv show, artist or album has been scraped into the library, Kodi will ignore them on subsequent scans.&#039;&#039;&#039; If you have made changes to either artwork and/or metadata (in the form of a nfo file), you must instruct Kodi to update using one of the following methods...&lt;br /&gt;
#If the Library has not yet been created, or the source has not yet been added&lt;br /&gt;
#*Ensure your artwork is named and saved correctly. Add the [[Media sources]] to Kodi and allow to update. Artwork will be cached&lt;br /&gt;
#This Movie/TV Show/Album/Artist is new and has not been added to the library yet&lt;br /&gt;
#*An Update Library will scrape and cache the artwork, or&lt;br /&gt;
#*For Videos, navigate Videos&amp;gt;Files, navigate to the item and call up the Information page. This will start an automatic scrape for that single item&lt;br /&gt;
#*For Music, navigate Music&amp;gt;Files, locate and highlight the new artist or album. From the context menu select &#039;&#039;Scan item to library&#039;&#039;&lt;br /&gt;
#I added new artwork for Movie/TV Show/Album/Artist already in the library&lt;br /&gt;
#*For videos follow instructions for &#039;&#039;Kodi- Choose Art&#039;&#039; below&lt;br /&gt;
#*For music follow instructions in [[Music_artwork]]&lt;br /&gt;
#I added new artwork for a lot of Movies/TV Shows/Music already in the library&lt;br /&gt;
#*Update each Movie/TV Show/Music manually using instructions in the previous option, or&lt;br /&gt;
#*Remove the Source and clean library. Re-add the source and allow the Update Library&lt;br /&gt;
:&#039;&#039;&#039;&#039;&#039;See also: [[Updating_or_removing_videos|Update Video Library]]&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Available&amp;quot; artwork ==&lt;br /&gt;
&lt;br /&gt;
Scrapers and NFO files can include multiple images for a single type of artwork. The first image will be assigned to the media item for skins and other interfaces to access for display, and the full list will be saved for the &amp;quot;Choose art&amp;quot; dialog, where you can select a new image for any art type.&lt;br /&gt;
&lt;br /&gt;
== Kodi- Choose Art ==&lt;br /&gt;
From within Kodi, you have the ability to manually change the artwork at any time by following these directions. &lt;br /&gt;
&lt;br /&gt;
#Highlight the media item whose artwork you want to change. &lt;br /&gt;
#Call up the &#039;&#039;Information&#039;&#039; page, (Image 1)&lt;br /&gt;
#* For seasons and movie sets the &amp;quot;Choose Art&amp;quot; option is in the [[Context menu]].&lt;br /&gt;
#Select &#039;&#039;Choose Art&#039;&#039;. (Image 1)&lt;br /&gt;
#From within this page, you will be given the option to select which type of artwork you would like to change. (Image 2)&lt;br /&gt;
#* This dialog is filled with artwork already assigned to similar media items in the library. If your type of artwork is not listed, then use the &#039;&#039;&#039;Add art&#039;&#039;&#039; button. An onscreen keyboard will be displayed. Enter the new type of artwork and select &#039;&#039;&#039;Ok&#039;&#039;&#039;.&lt;br /&gt;
#* Examples of artwork type are those listed in the following pages- eg clearlogo, clearart, banner etc...&lt;br /&gt;
#Once selected, you will then be provided with a list of available artwork at the scraper site, or you can navigate to a local or network location. (Image 3)&lt;br /&gt;
#Once you select the desired image, it will replace the existing image. You will be returned to the screen displayed in Image 2&lt;br /&gt;
#If you do not intend to change any other artwork types, simply Esc or Back out of the screen&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=350px heights=200px&amp;gt;&lt;br /&gt;
File:Artwork-ChooseArt03.jpg|Image 1- Choose Art on the Information Page&lt;br /&gt;
File:Artwork-ChooseArt01.jpg|Image 2- Select which type of artwork to change&lt;br /&gt;
File:Artwork-ChooseArt02.jpg|Image 3- List of available remote artworks from the scraper site, as well as the ability to &#039;&#039;Browse&#039;&#039; local and network sources&lt;br /&gt;
File:Artwork-ChooseArt04.jpg|Image 4- Using the Refresh Method&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
An alternative method:&lt;br /&gt;
#Choose &#039;&#039;Refresh&#039;&#039; as seen in Image 1.&lt;br /&gt;
#You will then be asked &#039;&#039;Locally stored information found. Ignore and refresh from Internet?&#039;&#039; (Image 4)&lt;br /&gt;
#*To scrape local artwork and metadata - Select &#039;&#039;&#039;No&#039;&#039;&#039; note- If you have no local nfo file, Kodi will scrape metadata from the online scraper site&lt;br /&gt;
#*To scrape online artwork and metadata - Select &#039;&#039;&#039;Yes&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
= Artwork details for media sections =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=350px heights=200px&amp;gt;&lt;br /&gt;
File:Skin.rapier fullscreen music.jpg&lt;br /&gt;
File:Artwork-MusicBanner01.jpg&lt;br /&gt;
File:Artwork-FanartView02.jpg&lt;br /&gt;
File:Rapier new tvshows.jpg&lt;br /&gt;
File:Artwork-Animated01.gif&lt;br /&gt;
File:Artwork-musiclandscape-EstuaryATF.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Movie Artwork ==&lt;br /&gt;
{{#lst:Movie_artwork|intro}}&lt;br /&gt;
{{see|Movie artwork}}&lt;br /&gt;
&lt;br /&gt;
== TV Show Artwork ==&lt;br /&gt;
{{#lst:TV-Show_artwork|intro}}&lt;br /&gt;
{{see|TV-Show artwork}}&lt;br /&gt;
&lt;br /&gt;
== Music Artwork ==&lt;br /&gt;
{{#lst:Music_artwork|intro}}&lt;br /&gt;
{{see|Music artwork}}&lt;br /&gt;
&lt;br /&gt;
== Music Videos Artwork ==&lt;br /&gt;
{{#lst:Music_Video_artwork|intro}}&lt;br /&gt;
{{see|Music Video artwork}}&lt;br /&gt;
&lt;br /&gt;
== Live TV Artwork ==&lt;br /&gt;
{{#lst:Live_TV_Artwork|intro}}&lt;br /&gt;
{{see|Live TV Artwork}}&lt;br /&gt;
&lt;br /&gt;
== Pictures Artwork ==&lt;br /&gt;
There is no user definable artwork for the Pictures section of Kodi.&amp;lt;br /&amp;gt;&lt;br /&gt;
:&#039;&#039;&#039;&#039;&#039;See: [[Pictures]]&lt;br /&gt;
&lt;br /&gt;
All images added to Pictures are cached as follows:&lt;br /&gt;
#Embedded EXIF previews are scanned and cached. If none available then&lt;br /&gt;
#Preview images are created and cached&lt;br /&gt;
:&#039;&#039;&#039;&#039;&#039;See: [[Artwork#Cache|Artwork Cache]]&#039;&#039;&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To add an image to the folder icon:&lt;br /&gt;
:&#039;&#039;&#039;&#039;&#039;See: [[Movie_artwork#Source_Folder_Artwork|Folder Image]]&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
= Add-ons to display artwork =&lt;br /&gt;
The following add-ons allow you to display your movie, TV show and music artwork.&lt;br /&gt;
&lt;br /&gt;
=== Screensavers ===&lt;br /&gt;
&lt;br /&gt;
Want to do more with all that wonderful fanart? Install this Kodi screensaver. Just like a screensaver on computers from yesteryear, the Kodi screensaver will produce a slideshow of your Movie and TV Show fanart, or set it to display your Music Fanart. Don&#039;t like either of those? Then setup a directory with your own pictures and it can produce a screensaver from your selection of photos.&lt;br /&gt;
; {{see also|Add-on:Picture_Slideshow_Screensaver}}&lt;br /&gt;
&lt;br /&gt;
= Managing Artwork =&lt;br /&gt;
There are a number of ways to maintain and improve Kodi&#039;s handling of the artwork. &lt;br /&gt;
&lt;br /&gt;
== Cache ==&lt;br /&gt;
{{#lst:Artwork/Cache|intro}}&lt;br /&gt;
; {{see also|Artwork/Cache}}&lt;br /&gt;
&lt;br /&gt;
== Recovering Disk Space ==&lt;br /&gt;
After years of use, it is expected that your system will gather some clutter- that being either orphaned artwork files or corrupted artwork which will not display. &lt;br /&gt;
; {{see also|HOW-TO:Reduce_disk_space_usage}}&lt;br /&gt;
; {{see also|Artwork/Cache}}&lt;br /&gt;
&lt;br /&gt;
=== Texture Cache Maintenance ===&lt;br /&gt;
{{#lst:Texture_Cache_Maintenance_utility|intro}}&lt;br /&gt;
; {{see also|Texture_Cache_Maintenance_utility}}&lt;br /&gt;
&lt;br /&gt;
== Import/Export ==&lt;br /&gt;
{{#lst:import-export_library|intro}}&lt;br /&gt;
; {{see also|Import-export library}}&lt;br /&gt;
&lt;br /&gt;
= Troubleshooting =&lt;br /&gt;
There are certain scenarios where attempting to replace existing artwork with new artwork, &#039;&#039;&#039;you may experience {{kodi}} refusing to load the new artwork&#039;&#039;&#039;. This occurs when replacing one artwork with another artwork having the same name. eg replacing &#039;&#039;poster.jpg&#039;&#039; with a new &#039;&#039;poster.jpg&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Rest assured that the new image has been accepted, but due to the same filename, {{kodi}} may take upto 24 hrs to check the image hash, realise the image is different and clear out the cached image and replace it with the new one. This is intended behaviour. Further reading available in the following link&lt;br /&gt;
&lt;br /&gt;
; {{see also|Artwork/Cache}}&lt;br /&gt;
&lt;br /&gt;
= Animated artwork - experimental =&lt;br /&gt;
&lt;br /&gt;
Kodi has basic support for displaying animated artwork, and two artwork types have a decent collection of animated options: posters and fanart for movies. The most comprehensive support for animated artwork is Skin Helper Service, which has taken to naming these as &amp;quot;animatedposter&amp;quot; and &amp;quot;animatedfanart&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
New animated movie posters (and textless posters / keyart which could be named &amp;quot;animatedkeyart&amp;quot;) are often posted to [https://forum.kodi.tv/showthread.php?tid=215727 this forum thread].&lt;br /&gt;
&lt;br /&gt;
== Limitations of animated artwork ==&lt;br /&gt;
&lt;br /&gt;
Kodi&#039;s support for displaying animated artwork is basic, and does have some limitations.&lt;br /&gt;
&lt;br /&gt;
Number one is a hard limit on the number of pixels in a single animated artwork. The size of animated artwork is limited to roughly 12 frames of 1920x1080. This limit is defined as fully decoded pixels. The trend for animated posters is for smaller images with more frames (a recent &amp;quot;animatedposter&amp;quot; is 500x713 with 60 frames). Kodi will discard any remaining frames after it has reached this limit, which will probably hitch unpleasantly, so obeying this limit is important.&lt;br /&gt;
* Technically this limit is 11 frames but Kodi will decode full frames until it has decoded MORE than this, so the calculation is&lt;br /&gt;
** 1920 × 1080 = 2,073,600 * 11 =&lt;br /&gt;
*** 22,809,600 pixels &#039;&#039;&#039;plus&#039;&#039;&#039; one more frame&lt;br /&gt;
&lt;br /&gt;
Number two is that Kodi doesn&#039;t save animated artwork to the texture cache and will not play them (only displaying the first frame) unless they are stored on a client-local file system.&lt;br /&gt;
&lt;br /&gt;
= Accessing with skins and JSON-RPC =&lt;br /&gt;
{{#lst:Artwork/Accessing with skins and JSON-RPC|intro}}&lt;br /&gt;
; {{see also|Artwork/Accessing with skins and JSON-RPC}}&lt;br /&gt;
&lt;br /&gt;
{{Top}}&lt;br /&gt;
&lt;br /&gt;
{{updated|18}}&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Guides]]&lt;br /&gt;
[[Category:Manual]]&lt;br /&gt;
[[Category:Karellen]]&lt;br /&gt;
[[Category:Video library]]&lt;br /&gt;
[[Category:Music library]]&lt;br /&gt;
[[Category:Advanced topics]]&lt;br /&gt;
[[Category:First time user]]&lt;br /&gt;
[[Category:Quick Start Guide]]&lt;/div&gt;</summary>
		<author><name>Rmrector</name></author>
	</entry>
</feed>