Movie artwork: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
(3 intermediate revisions by the same user not shown)
Line 8: Line 8:


= Scanning & Scraping =
= Scanning & Scraping =
v18 introduces an '''experimental''' feature that will auto-load extended artwork without the use of additional add-ons. It is considered an advanced feature. Usage and practicality of this feature are being monitored and may change in later releases.
v18 introduces an '''experimental''' feature that will auto-load extended artwork without the use of additional add-ons. Usage and practicality of this feature is being monitored and may change in later releases.


In the Movie Library, artwork was traditionally described as follows:
In the Movie Library, artwork was traditionally described as follows:
Line 37: Line 37:


:'''1.''' Add the below code to the '''[[Advancedsettings.xml| advancedsettings.xml]]''' file, ensuring you do not duplicate any tags if they already exist... eg ''<advancedsettings></advancedsettings>, <videolibrary></videolibrary>''
:'''1.''' Add the below code to the '''[[Advancedsettings.xml| advancedsettings.xml]]''' file, ensuring you do not duplicate any tags if they already exist... eg ''<advancedsettings></advancedsettings>, <videolibrary></videolibrary>''
:'''2.''' Install the '''[[Add-on:Universal_Movie_Scraper|Universal Movie Scraper]]''' and adjust the settings to enable scraping of Extended artwork as they are disabled by default. (see image below code box)
:'''2a.''' Install the '''[[Add-on:Universal_Movie_Scraper|Universal Movie Scraper]]''' and adjust the settings to enable scraping of Extended artwork as they are disabled by default. (see image below code box)
:'''2b.''' If you have local artwork saved as detailed in the next section, {{kodi}} will scan this first and the Universal Movie Scraper is not required.
:'''3.''' Restart {{kodi}} and scan or scrape movies as per usual.  
:'''3.''' Restart {{kodi}} and scan or scrape movies as per usual.  


:'''Note:''' 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.
:'''Note:''' 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.
:'''Note:''' The Universal Movie Scraper does not scrape extra fanart (''fanartxx''). Extra fanart must saved as local artwork for Kodi to scan.
<syntaxhighlight lang="xml" line='line'>
<syntaxhighlight lang="xml" line='line'>
<advancedsettings>
<advancedsettings>
Line 72: Line 75:
Local movie artwork is saved in the same folder where the '''[[Naming_video_files|movie file]]''' is saved.
Local movie artwork is saved in the same folder where the '''[[Naming_video_files|movie file]]''' is saved.


The default file name for movie artwork is  '''<movie file name>-<arttype>.<ext>''' - see image below.  
The default file name for movie artwork is  '''<movie file name>-<arttype>.<ext>''' - see image below. {{resize|0.8em|(does not apply to DVD and Bluray folders)}}


There is also a short name '''<arttype>.<ext>''' that can be used. Short artwork names can be used and are scanned only when the following conditions are met...
There is also a short name '''<arttype>.<ext>''' that can be used. Short artwork names can be used and are scanned only when the following conditions are met...
Line 81: Line 84:


<gallery mode="packed" widths="1000px" heights="562px">
<gallery mode="packed" widths="1000px" heights="562px">
File:LocalMovieArtwork01.jpg|'''''Example of correct use of Movie Folder with artwork, nfo file, trailer and theme.<br> Take not of file naming and location.'''''
File:LocalMovieArtwork01.jpg|link=|'''''Example of correct use of Movie Folder with artwork, nfo file, trailer and theme.<br> Take not of file naming and location.'''''
</gallery>
</gallery>



Revision as of 22:49, 10 September 2019

Artwork contents

Artwork Main Page



See also:


Return to:

Home icon grey.png   ▶ Video Library Index ▶ Artwork ▶ Movie artwork


Movie artwork are images directly related to a movie, preferably of high quality that are displayed when viewing the movie entry in the library. The artwork support in Kodi's video library is very flexible and able to display many types of artwork depending on the skin in use.


Scanning & Scraping

v18 introduces an experimental feature that will auto-load extended artwork without the use of additional add-ons. Usage and practicality of this feature is being monitored and may change in later releases.

In the Movie Library, artwork was traditionally described as follows:

Basic Artwork Extended Artwork
fanart poster banner clearart clearlogo discart fanartxx (extrafanart) keyart landscape

Basic artwork requires no special setup as it has always been natively scanned and scraped by Kodi

Extended artwork required the use of additional add-ons in previous versions. Artwork Downloader (now defunct) was used. More recently Artwork Beef is used.

Users now have the option of allowing Kodi to load all artwork without add-ons. To use this feature...

1. Add the below code to the advancedsettings.xml file, ensuring you do not duplicate any tags if they already exist... eg <advancedsettings></advancedsettings>, <videolibrary></videolibrary>
2a. Install the Universal Movie Scraper and adjust the settings to enable scraping of Extended artwork as they are disabled by default. (see image below code box)
2b. If you have local artwork saved as detailed in the next section, Kodi will scan this first and the Universal Movie Scraper is not required.
3. Restart Kodi and scan or scrape movies as per usual.
Note: 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.
Note: The Universal Movie Scraper does not scrape extra fanart (fanartxx). Extra fanart must saved as local artwork for Kodi to scan.
<advancedsettings>
	<videolibrary>
		<movieextraart>
			<arttype>banner</arttype>
			<arttype>clearart</arttype>
			<arttype>clearlogo</arttype>
			<arttype>discart</arttype>
         <arttype>fanart1</arttype> <!-- Multiple fanart -->
         <arttype>fanart2</arttype> <!-- Add as many as required. -->
         <arttype>fanart3</arttype> 
			<arttype>keyart</arttype>
			<arttype>landscape</arttype>
		</movieextraart>
	</videolibrary>
</advancedsettings>



Note: There is no requirement to use this method. If you find this too complicated, then continue to use Artwork Beef to load extended artwork into Kodi


Local Artwork

Local movie artwork is saved in the same folder where the movie file is saved.

The default file name for movie artwork is <movie file name>-<arttype>.<ext> - see image below. (does not apply to DVD and Bluray folders)

There is also a short name <arttype>.<ext> that can be used. Short artwork names can be used and are scanned only when the following conditions are met...

  1. Movie Folders are used
  2. Movies are in separate folders that match the movie title must be Enabled in the Set Content Screen
  3. No corresponding artwork with long format names are present in that movie folder, as these take priority.




Return to top