Artwork: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
>Jmarshall
 
mNo edit summary
 
(270 intermediate revisions by 38 users not shown)
Line 1: Line 1:
An impressive feature of XBMC is its ability to display custom thumbnails on most items displayed. You can assign thumbnails to folders, programs, music, videos and bookmarks.
{{Artwork_Contents}}
===Folder Thumbnails===
{{mininav|[[Music_library|Music Library]] {{l2|[[Video_library|Video Library]]}} }}
You can change the thumbnail displayed for any folder by simply placing your custom graphic within the folder and renaming it '''folder.jpg'''. Note that it MUST be named .jpg, even if it is a .png format image.
__NOTOC__


===Program Thumbnails===
In order to display the image displayed for a game, emulator or application, simply rename the desired image default.tbn and place it in  the folder where the corresponding default.XBE is located.


===Music Thumbnails===
= Introduction =
Music Thumbs are assigned as part of a multitier process. First, the Tag Reader runs and caches any embedded art using the folder path and the album name. If the album name is unavailable, its cached using the fully qualified name. (This assumes, of course, that you have tag reading enabled.)
<section begin="intro" />The use of 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 Posters, Fanart, Album Covers, Actor and Artist images to name a few. Install the '''''[[Add-on:Picture_Slideshow_Screensaver| Picture Slideshow add-on]]''''', and you will have a constant display of video or music fanart to brighten your entertainment room.<section end="intro" />


Then the code which assigns thumbs to files runs and assigns thumbs in the following order:


;1) Cached Album Thumb
If you prefer  not to manually source and save artwork to your local media folders, then scraped artwork can be automatically downloaded and saved into your local  folders by installing one of the following add-ons:
:This is all the embedded album art read from by the tag reader and cached using the folder path and album name.
* '''[https://forum.kodi.tv/showthread.php?tid=360078 Artwork Dump]'''- for v19 and later
;2) Cached filename.tbn
* '''[https://forum.kodi.tv/showthread.php?tid=258886 Artwork Beef]'''- for v18 and earlier
:This includes an embedded thumb cached with the fully qualified name.
;3) Remote filename.tbn
:(which is then cached)
;4) Cached folder.jpg
:Based off the folder path
;5) Remote folder.jpg
:(which is then cached)
;6) Remote foldername.tbn
:(which is then cached)<br>


'''Note 1:''' Running a scan automatically enables “tag reading” so everything can be cached. Once a scan is run, all your files and their associated thumbs are stored in the database. When you first enter a folder path, xbmc checks the database before all this occurs. If the items are found in the database, all of this is skipped because the information is already known.


'''Note 2:''' Using Album Information will allow you to choose to use the cover art available from allmusic.com.  Press the "Get Thumb" button to bring up a choice of the local thumbs you have, the current thumb, and the allmusic.com thumb.
'''v19 Matrix''' introduced new artwork settings. These new {{Kodi}} settings replace the artwork settings in the new python range of scrapers. They also remove the need for the advancedsettings.xml artwork tags which were introduced in v18.<br>


===Video Thumbnails===
* Music artwork settings are located in {{highlight|[[Settings/Media/Music#Artwork|Settings > Media > Music > Artwork]]}}
XBMC applies thumbs to video files in the following order:
* Video artwork settings are located in {{highlight|[[Settings/Media/Videos#Artwork|Settings > Media > Videos > Artwork]]}}


1.  Cached thumb.  Thumbs are cached to UserData\Thumbnails\Video using the CRC of the path of the file or folder.


2.  User thumb.  For files, XBMC checks <filename>.tbn and uses that if it exists.  The thumb is cached the first time it is read. For folders, XBMC first checks for <folder>.tbn in the same directory as the folder lies.  It then checks for folder.jpg inside the folder.  In either case the thumb is cached.
'''{{red|The {{kodi}} scrapers automatically download artwork with little input required by the user. These pages are for those users that want greater control over their artwork by saving artwork locally or creating their own.}}'''


3.  IMDb thumbs.  When you do a "Movie Information" lookup on a movie XBMC will download the IMDb thumbnail if none is available.  The "Get Thumb" option from the movie information screen can be used to switch between the IMDb thumb and any user-defined thumb you may have.


===Picture Thumbnails===
XBMC applies thumbs to picture files in the following order:


1.  Cached thumb.  Thumbs are cached to UserData\Thumbnails\Pictures using the CRC of the path of the file or folder.


2.  For images, EXIF thumbnail in JPEG images are then read.  If no EXIF thumbnail is available, XBMC will load the image in and generate a thumbnail from it.  These are cached.


3.  For folders, <folder>/folder.jpg is checked first.  If that doesn't exist, XBMC will generate a thumbnail from up to 4 random images inside the folder.
{{updated|20}}


===Thumbnailing Individual Items in a Single Directory===
[[Category:Karellen]]
Name the icon file the same as the file you would like it to display for with a .tbn extension ie: ''Transformers.avi, Transformers.tbn''. This is particularly useful for using custom thumbnails for movies.
[[Category:Music library]]
===Bookmark Thumbnails===
[[Category:Video library]]
You can change the thumbnail displayed for a bookmark by editing xboxmediacenter.xml. Simply modify your bookmark as shown:
<xml>
<bookmark>
  <name>Music</name>
  <path>xbms://192.168.1.100:1400/Music/</path>
  <thumbnail>F:\Apps\XBMC\thumbs\shares\thumb.png</thumbnail>
</bookmark>
</xml>

Latest revision as of 21:41, 13 February 2023

Artwork contents

Artwork Main Page



See also:


Return to:

Home icon grey.png   ▶ Music Library
▶ Video Library
▶ Artwork


Introduction

The use of 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 Posters, Fanart, Album Covers, Actor and Artist images to name a few. Install the Picture Slideshow add-on, and you will have a constant display of video or music fanart to brighten your entertainment room.


If you prefer not to manually source and save artwork to your local media folders, then scraped artwork can be automatically downloaded and saved into your local folders by installing one of the following add-ons:


v19 Matrix introduced new artwork settings. These new Kodi settings replace the artwork settings in the new python range of scrapers. They also remove the need for the advancedsettings.xml artwork tags which were introduced in v18.


The Kodi scrapers automatically download artwork with little input required by the user. These pages are for those users that want greater control over their artwork by saving artwork locally or creating their own.