User:Karellen/scratchpad01: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
No edit summary
m (Blanked the page)
Tags: Blanking Manual revert
 
(41 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{mininav|[[Video library]] {{l2|[[Music library]]}}|[[Video management|Management]] <br />&nbsp; }}


<section begin="intro" />NFO files can be used to provide metadata to the library for video and a music files. They are helpful if the metadata fetched from a web site does not match the video or music you have, or if data for that particular file does not exist, such as for home movies. It can also be used to control the search behaviour of scrapers.<section end="intro" />
= What is nfo =
'''nfo''' is a contraction of Info or Information. It is a Filename Extension - ''mymovie.nfo'' and the contents of the file are written in [http://en.wikipedia.org/wiki/XML XML]. The file itself does nothing except hold information. It is basically a text document with special tags inserted around the information. These tags are recognised by Kodi which enables data importing.
Kodi uses nfo files as one way of importing metadata into the library. It may also be used as a method of exporting the library for various reasons, including backup.  '''''See: [[Import-Export_library | Import & Export]]'''''
One of the most considered features of Kodi is the way media is displayed. Gone are the days when choosing a movie to watch or album to listen to involved scrolling through lines of text. Kodi uses [[Artwork]], and Extended Information to display your media. This information includes Actors, Directors, Plots, Taglines, Ratings, Run Times  and more. All this data, known as metadata, is stored in the Kodi Library. The Library is a [http://www.sqlite.org/ SQLite database].
There are two primary methods to load metadata into your library:
#Use the online scraper
#Create a nfo file, from which Kodi is able to import the metadata
For information on how to use the online scraper within Kodi:<br />
:'''''See: [[Adding_music_to_the_library]]'''''
:'''''See: [[Adding_video_sources]]'''''
:'''''See: [[Set_content_and_scan]]'''''<br />
'''The remainder of this wiki topic will provide the required information to create and use nfo files.'''
= Types of nfo =
Kodi can use the nfo file in one of two ways depending on the contents of the nfo file. This page primarily deals with the Metadata nfo.
== Metadata nfo ==
This is the most common use of the nfo file. The Metadata nfo contains the metadata for the movie/tv show/album/artist within the file. Kodi will read this file and scrape its contents into the library.
== Parsing nfo ==
A Parsing nfo does not contain any metadata that Kodi can use to scrape into the library. Instead it contains the URL to the movie/tv show/album/artist that you want scraped.
As an example, searching for ''The Mummy'' on [[https://www.themoviedb.org/ |TMDB]] returns 65 titles. If you are attempting to add one of the more obscure versions to your library, chances are that Kodi will scrape the incorrect title, and trying to navigate to the 65th entry will be problematic. The parsing nfo offers an easy solution to this problem.
To create and use the parsing nfo, follow these steps:
#Locate the title at the appropriate scraper site
#Ensure you have named your files/folder the same as shown on the scraper site and in accordance with the [Naming_video_files | Kodi naming conventions]
#Open a text editor and copy the entire address from the address bar into the text editor. No surrounding tags are required. ''see example after step 5''
#Save the file in accordance with the naming convention in section 4 below. '''Ensure the extension is *.nfo and not *.nfo.txt or *.nfo.doc'''
#Run an Update Library. Kodi will parse the URL and locate the title and scrape the correct metadata.
https://www.themoviedb.org/movie/15849-the-mummy''
<!--- http://kodi.wiki/view/Scraper#.3CCustomFunction.3E --->
= Creating nfo =
The following are the three methods that may be used to create nfo files for Kodi. The simplest method is using a Media Manager.
== Media Managers ==
This is, by far, the simplest method for creating nfo files for your media. The Media Manager can create nfo files in one of three ways:
#Scraping- This is the same process as performed by the Kodi scraper. The Media Manager will fetch metadata from the online scraper site and will create the nfo file, unlike Kodi that imports the metadata directly into the library database.
#Manual- The Media Manager offers a simple interface that allows you to manually type in the data. This method does not require you to have knowledge of XML tags
#Combination- A combination of both methods can be used. If you are not satisfied with the scraped metadata, then simply modify it.
Once the program has been setup and pointed at your media, very little input is required by the user. Select a movie, tv show, album or artist and select scrape. Depending upon your settings, the media manager will scrape the media and create the nfo which is placed in the correct location with the media file. It can also download all artwork for the media.
There are a few media managers available. The following managers can be found in the Kodi forum:
*[https://forum.kodi.tv/showthread.php?tid=259449 | Ember Media Managers]
*[https://forum.kodi.tv/showthread.php?tid=142723 | Tiny Media Manager aka TMM]
*[https://forum.kodi.tv/showthread.php?tid=129134 | Media Companion 3]
*[https://forum.kodi.tv/showthread.php?tid=136333 | MediaElch]
Further information, screenshots and guides are available at the websites of the Media Managers.
== Kodi Created nfo ==
This option requires that your library has already been scraped with metadata. Using the built in export function of Kodi, you can export the library metadata into individual nfo files correctly created and saved. This is useful if you have an existing library and would like to backup the library or to import the library into another Kodi installation.
:'''''See: [[Import-Export_library | Import & Export]]'''''
== Manual Creation ==
The more difficult of the three methods. It requires basic knowledge of XML Tags. They can be created using a simple text editor such as Notepad in Windows, or the equivelant in other operating systems. There are dedicated code editors that can also be used. They will not provide the required Kodi tags, but they will avoid glitches when saving the nfo file, which is commonly experienced with text editors.
Two common code editors that can be used:
*[https://notepad-plus-plus.org/ | Notepad++]
*[https://code.visualstudio.com/ | Visual Studio Code]
Requirements of the nfo file are as follows:
#Each Tag must have an opening tag and a closing tag. eg ''<title>my movie title</title>''.  '''''<title>''''' = opening tag, '''''my movie title''''' = metadata, '''''</title>''''' = closing tag
#The file must be in Unicode Transformation Format-8 (UTF-8). The file must be saved in this format. The first line of the file must contain the following ''<?xml version="1.0" encoding="UTF-8" standalone="yes"?>''
#The second line may contain a note detailing the creation time and date. It may also include the name of the media manager, if one was used to create it. This is optional. ''<!-- created on 2017-08-10 15:09:33 - by MediaManager -->''
#The next line sets the nfo category - <movie>, <tvshow>, <episodedetails>, <artist>, <album> or <musicvideo>
#Between the opening and closing category tags are the tags for the media metadata.
#Available tags are listed in Section 6
Once created, the file is saved with the nfo extension and placed in the folder as directed in Section 4.
See example nfo files in Section 6
= nfo Placement =
Correct placement of the nfo file is essential. Failing to save the file in the correct location, as detailed below, will force Kodi to scrape the information from online sources or, if you have ''Local Info Only'' set as your scraper, then no entry will be made into the library.
The order of importing metadata is as follows:
#nfo file. If no nfo file exists then
#online scraper sites
When Kodi locates the nfo file it will load the *.nfo file and attempt to either,
#If the nfo file contains XML data (tags), Kodi will import the meta-data directly into the library from the .nfo file or
#Will parse the nfo file for a direct URL to the scraper info page.
== Movies ==
Movies require one nfo file as follows:
<div style="{{linear-gradient|top|#a1f5e4, #f5f5a1}}">
'''''Naming & Saving conventions for your Movie *.nfo files:'''''
{|
|- valign="top"
| width=200px |'''''Saved movies as'''''
| width=300px |'''''File Name'''''
| width=600px |'''''Save Location'''''
|- valign="top"
| width=200px |BluRay Structure:
| width=300px |index.nfo
| width=600px |f:\MyMovies\Big Buck Bunny (2008)\BDMV\index.nfo
|- valign="top"
| width=200px |DVD Structure:
| width=300px |VIDEO_TS.nfo
| width=600px |f:\MyMovies\Big Buck Bunny (2008)\VIDEO_TS\VIDEO_TS.nfo
|- valign="top"
| width=200px |Single movie in directory:
| width=300px |<MovieFileName>.nfo
| width=600px |f:\MyMovies\Big Buck Bunny (2008)\<MovieFileName>.nfo
|- valign="top"
| width=200px |All movies in single directory:
| width=300px |<MovieFileName>.nfo
| width=600px |f:\MyMovies\Big Buck Bunny (2008)\<MovieFileName>.nfo
|}
</div>
== TV Shows ==
TV Shows require the following nfo files
#One nfo file for the TV Show. See the first table below
#One nfo file for '''each''' Episode. See the second table below
For one TV Show with 10 episodes, you will require 11 nfo files.
<div style="{{linear-gradient|top|#a1f5e4, #f5f5a1}}">
'''''Naming & Saving conventions for your TV Show *.nfo files:'''''
{|
|- valign="top"
| width=200px |'''''Saved TV Show as'''''
| width=300px |'''''File Name'''''
| width=600px |'''''Save Location'''''
|- valign="top"
| width=200px |All formats
| width=300px |tvshow.nfo
| width=600px |f:\MyTVShows\iZombie\tvshow.nfo
|}
</div>
<div style="{{linear-gradient|top|#f5f5a1, #a1f5e4}}">
'''''Naming & Saving conventions for your TV Episode *.nfo files:'''''
{|
|- valign="top"
| width=200px |'''''Saved Episodes as'''''
| width=300px |'''''File Name'''''
| width=600px |'''''Save Location'''''
|- valign="top"
| width=200px |BluRay Structure:
| width=300px |index.nfo
| width=600px |f:\MyTVShows\iZombie\iZombie S01E01\BDMV\index.nfo
|- valign="top"
| width=200px |DVD Structure:
| width=300px |VIDEO_TS.nfo
| width=600px |f:\MyTVShows\iZombie\iZombie S01E01\VIDEO_TS\VIDEO_TS.nfo
|- valign="top"
| width=200px |Single Episode file in directory:
| width=300px |<EpisodeFileName>.nfo
| width=600px |f:\MyTVShows\iZombie\iZombie S01E01\<EpisodeFileName>.nfo
|- valign="top"
| width=200px |All episodes in TV Show directory:
| width=300px |<MovieFileName>.nfo
| width=600px |f:\MyTVShows\iZombie\<EpisodeFileName>.nfo
|}
</div>
== Music ==
Music requires the following nfo files
#One nfo file for the Artist. See the first table below
#One nfo file for '''each''' Album. See the second table below
The exception to the above requirement are compilation/various artist albums. These require only a single Album nfo file.
<div style="{{linear-gradient|top|#a1f5e4, #f5f5a1}}">
'''''Naming & Saving conventions for your Music Artist *.nfo files:'''''
{|
|- valign="top"
| width=200px |'''''Saved Artist as'''''
| width=300px |'''''File Name'''''
| width=600px |'''''Save Location'''''
|- valign="top"
| width=200px |Artist\Album\Songs
| width=300px |artist.nfo
| width=600px |f:\MyMusic\Stevie Nicks\artist.nfo
|}
</div>
<div style="{{linear-gradient|top|#f5f5a1, #a1f5e4}}">
'''''Naming & Saving conventions for your Music Album *.nfo files:'''''
{|
|- valign="top"
| width=200px |'''''Saved Album as'''''
| width=300px |'''''File Name'''''
| width=600px |'''''Save Location'''''
|- valign="top"
| width=200px |Artist\Album\Songs
| width=300px |album.nfo
| width=600px |f:\MyMusic\Stevie Nicks\Crystal Visions\album.nfo
|}
</div>
== Music Videos ==
Music Videos require one nfo for '''each''' music video in the folder. These nfo files need to be named exactly as the Music Video file is named, but with the nfo extension.
<div style="{{linear-gradient|top|#a1f5e4, #f5f5a1}}">
'''''Naming & Saving conventions for your Music Videos *.nfo files:'''''
{|
|- valign="top"
| width=200px |'''''Saved Music Videos as'''''
| width=300px |'''''File Name'''''
| width=600px |'''''Save Location'''''
|- valign="top"
| width=200px |All formats
| width=300px |<MusicVideoFileName>.nfo
| width=600px |f:\MyMusicVideos\<MusicVideoFileName>.nfo
|}
</div>
= Scraping nfo files =
There is no special procedure to scrape nfo files. Performing the usual Library Update will scrape the nfo files into the library. Be aware that nfo files are not easily interchangeable between Movies, TV Shows, Artists and Albums. Although they all share common tags, each also has its own specific tags that won't be recognised in other parts of the library.
'''After the NFO files are scanned into the library, the NFO file is no longer used and only serves as a backup. If you make changes to the NFO file you will need to '''[[refresh]]''' that library entry for the changes to be loaded into Kodi.'''
Kodi also contains a Local-NFO-only mode for when you add videos to the library, but this mode is only required if you want to prevent online-lookups for videos that lack NFO files. See '''[[Set content and scan#Local NFO only options]]''' for more information on this Local-NFO-only mode.
= Sample nfo Files =
Provided below are sample nfo files to assist with the manual creation process
== Movie nfo ==
Sample Movie nfo file
{{collapse top| Movie nfo file  (click 'expand' to view)}}
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- created on 2017-08-10 15:09:33 - tinyMediaManager 2.9.3.1 -->
<movie>
    <title>Ghost in the Shell</title>
    <originaltitle>Ghost in the Shell</originaltitle>
    <sorttitle></sorttitle>
    <rating>5.9</rating>
    <year>2017</year>
    <top250></top250>
    <votes>1936</votes>
    <outline>In the near future, Major is the first of her kind: a human saved from a terrible crash, then cyber-enhanced to be a perfect soldier devoted to stopping the world's most dangerous criminals.</outline>
    <plot>In the near future, Major is the first of her kind: a human saved from a terrible crash, then cyber-enhanced to be a perfect soldier devoted to stopping the world's most dangerous criminals.</plot>
    <tagline>There's nothing sadder than a puppet without a ghost.</tagline>
    <runtime>107</runtime>
    <thumb>https://assets.fanart.tv/fanart/movies/315837/movieposter/ghost-in-the-shell-5951b7c0843b0.jpg</thumb>
    <fanart>http://image.tmdb.org/t/p/original/dXJh6bXF3WI1gpNuM3tNbnIiW2z.jpg</fanart>
    <mpaa>AU:M</mpaa>
    <certification>AU:M</certification>
    <id>tt1219827</id>
    <ids>
        <entry>
            <key>tmdb</key>
            <value xsi:type="xs:int" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">315837</value>
        </entry>
        <entry>
            <key>imdb</key>
            <value xsi:type="xs:string" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">tt1219827</value>
        </entry>
    </ids>
    <tmdbId>315837</tmdbId>
    <country>Australia, New Zealand, United States, United Kingdom, India, China, Canada, Japan, Hong Kong</country>
    <premiered>2017-03-29</premiered>
    <fileinfo>
        <streamdetails>
            <video>
                <codec>h264</codec>
                <aspect>1.78</aspect>
                <width>1920</width>
                <height>1080</height>
                <durationinseconds>6417</durationinseconds>
            </video>
            <audio>
                <codec>TrueHD  AC3</codec>
                <language>eng</language>
                <channels>8</channels>
            </audio>
            <subtitle>
                <language>eng</language>
            </subtitle>
            <subtitle>
                <language>eng</language>
            </subtitle>
        </streamdetails>
    </fileinfo>
    <watched>false</watched>
    <playcount>0</playcount>
    <genre>Action</genre>
    <genre>Crime</genre>
    <genre>Drama</genre>
    <genre>Mystery</genre>
    <genre>Science Fiction</genre>
    <genre>Thriller</genre>
    <studio>Paramount Pictures</studio>
    <studio>DreamWorks SKG</studio>
    <studio>Shanghai Film Group</studio>
    <studio>Reliance Entertainment</studio>
    <studio>Arad Productions</studio>
    <studio>Grosvenor Park Productions</studio>
    <studio>Steven Paul Production</studio>
    <studio>Huahua Media</studio>
    <studio>Seaside Entertainment</studio>
    <studio>Amblin Partners</studio>
    <studio>Weying Galaxy Entertainment</studio>
    <credits>Ehren Kruger</credits>
    <credits>Jamie Moss</credits>
    <credits>Masamune Shirow</credits>
    <credits>William Wheeler</credits>
    <director>Rupert Sanders</director>
    <tag>BluRay</tag>
    <actor>
        <name>Scarlett Johansson</name>
        <role>Major Motoko Kusanagi</role>
        <thumb>http://image.tmdb.org/t/p/w185/8EueDe6rPF0jQU4LSpsH2Rmrqac.jpg</thumb>
    </actor>
    <actor>
        <name>Pilou Asb├ªk</name>
        <role>Batou</role>
        <thumb>http://image.tmdb.org/t/p/w185/wcQRF5ZOBY8NX7xrjXE2pOBmwyZ.jpg</thumb>
    </actor>
    <actor>
        <name>Takeshi Kitano</name>
        <role>Daisuke Aramaki</role>
        <thumb>http://image.tmdb.org/t/p/w185/xkXZ7HC8uyhu5MtNnbdP8mhdiFN.jpg</thumb>
    </actor>
    <actor>
        <name>Juliette Binoche</name>
        <role>Dr. Ou├⌐let</role>
        <thumb>http://image.tmdb.org/t/p/w185/rkW6eE75Tt1i3J1s2fsIDZBW0kd.jpg</thumb>
    </actor>
    <actor>
        <name>Michael Pitt</name>
        <role>Hideo Kuze</role>
        <thumb>http://image.tmdb.org/t/p/w185/fWR4Z1xk1ZMUMMnMeRADVh1s3DW.jpg</thumb>
    </actor>
    <actor>
        <name>Chin Han</name>
        <role>Togusa</role>
        <thumb>http://image.tmdb.org/t/p/w185/xvMCVDvrQ2WlAB2LmkG6HAzlYag.jpg</thumb>
    </actor>
    <actor>
        <name>Lasarus Ratuere</name>
        <role>Ishikawa</role>
        <thumb>http://image.tmdb.org/t/p/w185/tATw6bSySFmqunfBXmyy0ppbsXi.jpg</thumb>
    </actor>
    <actor>
        <name>Yutaka Izumihara</name>
        <role>Saito</role>
        <thumb>http://image.tmdb.org/t/p/w185/rGPYp0jWNplBEv1vWDbmpysaGte.jpg</thumb>
    </actor>
    <actor>
        <name>Tawanda Manyimo</name>
        <role>Borma</role>
        <thumb>http://image.tmdb.org/t/p/w185/vUpTeHW9Yokx2R2sipMZdiTfiIk.jpg</thumb>
    </actor>
    <actor>
        <name>Rila Fukushima</name>
        <role>Red Robed Geisha</role>
        <thumb>http://image.tmdb.org/t/p/w185/AsxUTMScQetJ1Iommki98w3rHPH.jpg</thumb>
    </actor>
    <actor>
        <name>Michael Wincott</name>
        <role>Dr. Osmund</role>
        <thumb>http://image.tmdb.org/t/p/w185/pvKUzexxZT4sRTT1BczzrwX8ghz.jpg</thumb>
    </actor>
    <actor>
        <name>Anamaria Marinca</name>
        <role>Dr. Dahlin</role>
        <thumb>http://image.tmdb.org/t/p/w185/ajLN2RMuYHgTEFAzs8x8vZH0Rlu.jpg</thumb>
    </actor>
    <actor>
        <name>Daniel Henshall</name>
        <role>Skinny Man</role>
        <thumb>http://image.tmdb.org/t/p/w185/4LYeThK5O9EUy1OllvdsD5bTRbb.jpg</thumb>
    </actor>
    <actor>
        <name>Kaori Momoi</name>
        <role>Hairi</role>
        <thumb>http://image.tmdb.org/t/p/w185/aHPQaKWk1foxvieDZubUJE8olaO.jpg</thumb>
    </actor>
    <actor>
        <name>Peter Ferdinando</name>
        <role>Cutter</role>
        <thumb>http://image.tmdb.org/t/p/w185/eSxMkW04VuOkQqxG2HIPw0FMJKe.jpg</thumb>
    </actor>
    <actor>
        <name>Christopher Obi</name>
        <role>Ambassador Kiyoshi</role>
        <thumb>http://image.tmdb.org/t/p/w185/9mkVa3qKba8S7UcyzUYZPkeRG37.jpg</thumb>
    </actor>
    <actor>
        <name>Danusia Samal</name>
        <role>Ladriya</role>
        <thumb>http://image.tmdb.org/t/p/w185/8FqUG5hRe9MskGzXzx8ktS7b20y.jpg</thumb>
    </actor>
    <actor>
        <name>Mana Hira Davis</name>
        <role>Bearded Man</role>
        <thumb>http://image.tmdb.org/t/p/w185/fBDzK8Vd7XBx97nsH9sXXGf4nMD.jpg</thumb>
    </actor>
    <actor>
        <name>Adwoa Aboah</name>
        <role>Lia</role>
        <thumb>http://image.tmdb.org/t/p/w185/jD8FV3TcLNJe64udKygGLnHkP6K.jpg</thumb>
    </actor>
    <actor>
        <name>Kai Fung Rieck</name>
        <role>Diamond Face</role>
        <thumb>http://image.tmdb.org/t/p/w185/mqS7nagL7Dp1QK1152eyfT1RjOI.jpg</thumb>
    </actor>
    <actor>
        <name>Andrew Stehlin</name>
        <role>No Pupils</role>
        <thumb>http://image.tmdb.org/t/p/w185/kcDr96zRyuM3IiR5RWPV14D5dMK.jpg</thumb>
    </actor>
    <actor>
        <name>Matthias Luafutu</name>
        <role>Thick Built Yakuza</role>
        <thumb>http://image.tmdb.org/t/p/w185/65KBlRWu561lTVPHlhgHskprLOh.jpg</thumb>
    </actor>
    <actor>
        <name>John Luafutu</name>
        <role>Barkeep</role>
        <thumb>http://image.tmdb.org/t/p/w185/ryhkaAVyAxAfCUj6P12EkYO8Rk4.jpg</thumb>
    </actor>
    <actor>
        <name>Kaori Yamamoto</name>
        <role>Motoko</role>
        <thumb>http://image.tmdb.org/t/p/w185/iJFsfqfmUy14kU2VNrxE3JGVBAY.jpg</thumb>
    </actor>
    <actor>
        <name>Pete Teo</name>
        <role>Tony</role>
        <thumb>http://image.tmdb.org/t/p/w185/7bJutZz5qd2rYBHHC2gyMQWNQbu.jpg</thumb>
    </actor>
    <actor>
        <name>Tanya Drewery</name>
        <role>Geisha</role>
        <thumb>http://image.tmdb.org/t/p/w185/7Q4eMvFKcmYSUfLSlNMHtlSkoKh.jpg</thumb>
    </actor>
    <actor>
        <name>Jacqueline Lee Geurts</name>
        <role>Geisha</role>
        <thumb>http://image.tmdb.org/t/p/w185/9YcJF1avZliG3Mu01mUQxuiUuu4.jpg</thumb>
    </actor>
    <actor>
        <name>Hannah Tasker-Poland</name>
        <role>Geisha</role>
        <thumb>http://image.tmdb.org/t/p/w185/fpXCLG1HbNlPl6nEDnqQTvohMEm.jpg</thumb>
    </actor>
    <actor>
        <name>Emma Coppersmith</name>
        <role>Geisha</role>
        <thumb>http://image.tmdb.org/t/p/w185/aAHgg8eO7kaHw0Mmn1jatBxmRYv.jpg</thumb>
    </actor>
    <actor>
        <name>Shinji Ikefuji</name>
        <role>Kinsana</role>
        <thumb>http://image.tmdb.org/t/p/w185/6m1scLGa91uDDYBftdEcEOuXrAm.jpg</thumb>
    </actor>
    <actor>
        <name>Xavier Horan</name>
        <role>Section Six Soldier</role>
        <thumb>http://image.tmdb.org/t/p/w185/yNdHNB90SXulSRLqbYeZ5JXppqO.jpg</thumb>
    </actor>
    <actor>
        <name>Allan Henry</name>
        <role>Section Six Soldier</role>
        <thumb>http://image.tmdb.org/t/p/w185/ma3ZFzGiF4ANlEym3ACFOG0n7qV.jpg</thumb>
    </actor>
    <actor>
        <name>Joseph Naufahu</name>
        <role>Police Commander Johns</role>
        <thumb>http://image.tmdb.org/t/p/w185/9N4UmM1runLmdhzIhZ5Xfk4Qo21.jpg</thumb>
    </actor>
    <actor>
        <name>Makoto Murata</name>
        <role>Yakuza Gunman</role>
        <thumb>http://image.tmdb.org/t/p/w185/f32b7dh8dg5s5LWXyiSYZacDQAG.jpg</thumb>
    </actor>
    <producer>
        <name>Avi Arad</name>
        <role>Producer</role>
        <thumb>http://image.tmdb.org/t/p/w185/kIG4HF5LSywU0ZdDheDaEsxxohu.jpg</thumb>
    </producer>
    <producer>
        <name>Leslee Feldman</name>
        <role>Casting</role>
    </producer>
    <producer>
        <name>Mitsuhisa Ishikawa</name>
        <role>Executive Producer</role>
    </producer>
    <producer>
        <name>Steven Paul</name>
        <role>Producer</role>
    </producer>
    <producer>
        <name>Jeffrey Silver</name>
        <role>Executive Producer</role>
    </producer>
    <producer>
        <name>Lucy Bevan</name>
        <role>Casting</role>
    </producer>
    <producer>
        <name>Mark Sourian</name>
        <role>Executive Producer</role>
    </producer>
    <producer>
        <name>Michael Costigan</name>
        <role>Executive Producer</role>
    </producer>
    <producer>
        <name>Mark Sussman</name>
        <role>ADR Voice Casting</role>
    </producer>
    <producer>
        <name>Ari Arad</name>
        <role>Producer</role>
    </producer>
    <producer>
        <name>Miranda Rivers</name>
        <role>Casting</role>
    </producer>
    <producer>
        <name>Maguy R. Cohen</name>
        <role>Producer</role>
    </producer>
    <producer>
        <name>Patty Majorczak-Connolly</name>
        <role>ADR Voice Casting</role>
    </producer>
    <producer>
        <name>C├⌐cile Bouquet</name>
        <role>Researcher</role>
    </producer>
    <producer>
        <name>Tetsuya Fujimura</name>
        <role>Executive Producer</role>
    </producer>
    <producer>
        <name>Nanw Rowlands</name>
        <role>Casting Associate</role>
    </producer>
    <languages>Japanese, English</languages>
</movie>
{{collapse bottom}}
== TV Show nfo ==
Sample TV Show nfo
{{collapse top| TV Show nfo file  (click 'expand' to view)}}
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- created on 2017-08-03 15:20:37 - tinyMediaManager 2.9.3.1 -->
<tvshow>
    <title>iZombie</title>
    <sorttitle></sorttitle>
    <year>2015</year>
    <rating>8.3</rating>
    <votes>66</votes>
    <plot>When over-achieving medical resident Liv Moore attends a party that turns into a zombie feeding frenzy, she ends up joining the ranks of the living dead.</plot>
    <mpaa>E</mpaa>
    <episodeguide>
        <url cache="281470.xml">http://www.thetvdb.com/api/1D62F2F90030C444/series/281470/all/en.xml</url>
    </episodeguide>
    <id>281470</id>
    <imdbid>tt3501584</imdbid>
    <genre>Action</genre>
    <genre>Comedy</genre>
    <genre>Crime</genre>
    <genre>Drama</genre>
    <genre>Horror</genre>
    <premiered>2015-03-17</premiered>
    <status>Continuing</status>
    <studio>The CW</studio>
    <actor>
        <name>Rose McIver</name>
        <role>Olivia "Liv" Moore</role>
        <thumb>http://thetvdb.com/banners/actors/346010.jpg</thumb>
    </actor>
    <actor>
        <name>Rahul Kohli</name>
        <role>Dr. Ravi Chakrabarti</role>
        <thumb>http://thetvdb.com/banners/actors/346008.jpg</thumb>
    </actor>
    <actor>
        <name>Robert Buckley</name>
        <role>Major Lilywhite</role>
        <thumb>http://thetvdb.com/banners/actors/329726.jpg</thumb>
    </actor>
    <actor>
        <name>Aly Michalka</name>
        <role>Peyton Charles</role>
        <thumb>http://thetvdb.com/banners/actors/437907.jpg</thumb>
    </actor>
    <actor>
        <name>Malcolm Goodwin</name>
        <role>Clive Babineaux</role>
        <thumb>http://thetvdb.com/banners/actors/346009.jpg</thumb>
    </actor>
    <actor>
        <name>David Anders</name>
        <role>Blaine</role>
        <thumb>http://thetvdb.com/banners/actors/329728.jpg</thumb>
    </actor>
    <actor>
        <name>Tongayi Chirisa</name>
        <role>Justin Bell</role>
        <thumb>http://thetvdb.com/banners/actors/437906.jpg</thumb>
    </actor>
    <actor>
        <name>Andrea Savage</name>
        <role>Vivian Stoll</role>
        <thumb>http://thetvdb.com/banners/actors/437905.jpg</thumb>
    </actor>
    <actor>
        <name>Jason Dohring</name>
        <role>Chase Graves</role>
        <thumb>http://thetvdb.com/banners/actors/437903.jpg</thumb>
    </actor>
    <actor>
        <name>Nick Purcha</name>
        <role>Evan Moore</role>
        <thumb>http://thetvdb.com/banners/actors/436318.jpg</thumb>
    </actor>
    <actor>
        <name>Leanne Lapp</name>
        <role>Rita/Gilda</role>
        <thumb>http://thetvdb.com/banners/actors/436317.jpg</thumb>
    </actor>
    <actor>
        <name>Greg Finley</name>
        <role>Drake Holloway</role>
        <thumb>http://thetvdb.com/banners/actors/436315.jpg</thumb>
    </actor>
    <actor>
        <name>Jessica Harmon</name>
        <role>Dale Bozzio</role>
        <thumb>http://thetvdb.com/banners/actors/436314.jpg</thumb>
    </actor>
    <actor>
        <name>Bryce Hodgson</name>
        <role>Don Everhart</role>
        <thumb>http://thetvdb.com/banners/actors/430151.jpg</thumb>
    </actor>
    <actor>
        <name>Bradley James</name>
        <role>Lowell Tracey</role>
        <thumb>http://thetvdb.com/banners/actors/417361.jpg</thumb>
    </actor>
</tvshow>
{{collapse bottom}}
== TV Show Episode nfo ==
Sample TV Episode nfo
{{collapse top| TV Episode nfo file  (click 'expand' to view)}}
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<episodedetails>
    <title>The Bone Orchard</title>
    <showtitle>American Gods</showtitle>
    <ratings>
        <rating name="default" max="10" default="true">
            <value>7.400000</value>
            <votes>14</votes>
        </rating>
    </ratings>
    <userrating>0</userrating>
    <top250>0</top250>
    <season>1</season>
    <episode>1</episode>
    <displayseason>-1</displayseason>
    <displayepisode>-1</displayepisode>
    <outline></outline>
    <plot>When Shadow Moon is released from prison early after the death of his wife, he meets Mr. Wednesday and is recruited as his bodyguard. Shadow discovers that this may be more than he bargained for.</plot>
    <tagline></tagline>
    <runtime>62</runtime>
    <mpaa>E</mpaa>
    <playcount>1</playcount>
    <lastplayed>2017-07-26</lastplayed>
    <id>5088686</id>
    <uniqueid type="unknown" default="true">5088686</uniqueid>
    <genre>Action</genre>
    <genre>Adventure</genre>
    <genre>Fantasy</genre>
    <genre>Mystery</genre>
    <credits>Bryan Fuller</credits>
    <credits>Michael Green</credits>
    <director>David Slade</director>
    <premiered>2017-04-30</premiered>
    <year>2017</year>
    <status></status>
    <code></code>
    <aired>2017-04-30</aired>
    <studio>Starz!</studio>
    <trailer></trailer>
    <fileinfo>
        <streamdetails>
            <video>
                <codec>h264</codec>
                <aspect>1.777778</aspect>
                <width>1920</width>
                <height>1080</height>
                <durationinseconds>3763</durationinseconds>
                <stereomode></stereomode>
            </video>
            <audio>
                <codec>dtshd_ma</codec>
                <language>eng</language>
                <channels>6</channels>
            </audio>
            <subtitle>
                <language>eng</language>
            </subtitle>
        </streamdetails>
    </fileinfo>
    <actor>
        <name>Ian McShane</name>
        <role>Wednesday</role>
        <order>0</order>
        <thumb>http://thetvdb.com/banners/actors/418593.jpg</thumb>
    </actor>
    <actor>
        <name>Ricky Whittle</name>
        <role>Shadow  Moon</role>
        <order>1</order>
        <thumb>http://thetvdb.com/banners/actors/418586.jpg</thumb>
    </actor>
    <actor>
        <name>Emily Browning</name>
        <role>Laura Moon</role>
        <order>2</order>
        <thumb>http://thetvdb.com/banners/actors/418119.jpg</thumb>
    </actor>
    <actor>
        <name>Pablo Schreiber</name>
        <role>Mad Sweeney</role>
        <order>3</order>
        <thumb>http://thetvdb.com/banners/actors/418590.jpg</thumb>
    </actor>
    <actor>
        <name>Yetide Badaki</name>
        <role>Bilquis</role>
        <order>4</order>
        <thumb>http://thetvdb.com/banners/actors/418588.jpg</thumb>
    </actor>
    <actor>
        <name>Bruce Langley</name>
        <role>Technical Boy</role>
        <order>5</order>
        <thumb>http://thetvdb.com/banners/actors/418587.jpg</thumb>
    </actor>
    <actor>
        <name>Orlando Jones</name>
        <role>Nancy</role>
        <order>6</order>
        <thumb>http://thetvdb.com/banners/actors/418591.jpg</thumb>
    </actor>
    <actor>
        <name>Chris Obi</name>
        <role>Jacquel</role>
        <order>7</order>
        <thumb>http://thetvdb.com/banners/actors/429117.jpg</thumb>
    </actor>
    <actor>
        <name>Demore Barnes</name>
        <role>Ibis</role>
        <order>8</order>
        <thumb>http://thetvdb.com/banners/actors/429116.jpg</thumb>
    </actor>
    <actor>
        <name>Omid Abtahi</name>
        <role>Salim</role>
        <order>9</order>
        <thumb>http://thetvdb.com/banners/actors/428857.jpg</thumb>
    </actor>
    <actor>
        <name>Cloris Leachman</name>
        <role>Zorya Vechernyaya</role>
        <order>10</order>
        <thumb>http://thetvdb.com/banners/actors/421778.jpg</thumb>
    </actor>
    <actor>
        <name>Gillian Anderson</name>
        <role>Media</role>
        <order>11</order>
        <thumb>http://thetvdb.com/banners/actors/421117.jpg</thumb>
    </actor>
    <actor>
        <name>Crispin Glover</name>
        <role>World</role>
        <order>12</order>
        <thumb>http://thetvdb.com/banners/actors/418592.jpg</thumb>
    </actor>
    <actor>
        <name>Peter Stormare</name>
        <role>Czernobog</role>
        <order>13</order>
        <thumb>http://thetvdb.com/banners/actors/418589.jpg</thumb>
    </actor>
    <actor>
        <name>Kristin Chenoweth</name>
        <role>Easter</role>
        <order>14</order>
        <thumb>http://thetvdb.com/banners/actors/418124.jpg</thumb>
    </actor>
    <resume>
        <position>0.000000</position>
        <total>0.000000</total>
    </resume>
    <dateadded>2017-07-19 17:50:00</dateadded>
</episodedetails>
{{collapse bottom}}
== Music Artist nfo ==
Sample Music Artist nfo
{{collapse top| Music Artist nfo file  (click 'expand' to view)}}
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<artist>
    <name>Fleetwood Mac</name>
    <musicBrainzArtistID>bd13909f-1c29-4c27-a874-d4aaf27c5b1a</musicBrainzArtistID>
    <genre>Rock</genre>
    <style>Rock/Pop</style>
    <mood>Relaxed</mood>
    <yearsactive>1960s - 2010s</yearsactive>
    <born></born>
    <formed>London, England (1967)</formed>
    <biography>Fleetwood Mac are a British-American rock band formed in 1967 in London. The only original member present in the band is its eponymous drummer, Mick Fleetwood.</biography>
    <died></died>
    <disbanded></disbanded>
    <thumb preview="http://assets.fanart.tv/preview/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistthumb/fleetwood-mac-56146ecf89860.jpg">http://assets.fanart.tv/fanart/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistthumb/fleetwood-mac-56146ecf89860.jpg</thumb>
    <thumb preview="http://assets.fanart.tv/preview/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistthumb/fleetwood-mac-56146ecf89860.jpg">http://assets.fanart.tv/fanart/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistthumb/fleetwood-mac-56146ecf89860.jpg</thumb>
    <thumb preview="http://assets.fanart.tv/preview/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistthumb/fleetwood-mac-56146ecf89860.jpg">http://assets.fanart.tv/fanart/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistthumb/fleetwood-mac-56146ecf89860.jpg</thumb>
    <thumb preview="http://assets.fanart.tv/preview/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistthumb/fleetwood-mac-56146ecf89860.jpg">http://assets.fanart.tv/fanart/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistthumb/fleetwood-mac-56146ecf89860.jpg</thumb>
    <thumb preview="http://assets.fanart.tv/preview/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistthumb/fleetwood-mac-56146ecf89860.jpg">http://assets.fanart.tv/fanart/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistthumb/fleetwood-mac-56146ecf89860.jpg</thumb>
    <thumb preview="http://assets.fanart.tv/preview/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistthumb/fleetwood-mac-53a0df3715867.jpg">http://assets.fanart.tv/fanart/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistthumb/fleetwood-mac-53a0df3715867.jpg</thumb>
    <thumb preview="http://assets.fanart.tv/preview/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistthumb/fleetwood-mac-4fd37e9a22e1f.jpg">http://assets.fanart.tv/fanart/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistthumb/fleetwood-mac-4fd37e9a22e1f.jpg</thumb>
    <thumb preview="http://assets.fanart.tv/preview/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistthumb/fleetwood-mac-4fd37e9a22e1f.jpg">http://assets.fanart.tv/fanart/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistthumb/fleetwood-mac-4fd37e9a22e1f.jpg</thumb>
    <thumb preview="http://assets.fanart.tv/preview/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistthumb/fleetwood-mac-4fd37e9a22e1f.jpg">http://assets.fanart.tv/fanart/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistthumb/fleetwood-mac-4fd37e9a22e1f.jpg</thumb>
    <thumb preview="http://assets.fanart.tv/preview/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistthumb/fleetwood-mac-4fd37e9a22e1f.jpg">http://assets.fanart.tv/fanart/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistthumb/fleetwood-mac-4fd37e9a22e1f.jpg</thumb>
    <thumb preview="http://assets.fanart.tv/preview/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistthumb/fleetwood-mac-4fd37e9a22e1f.jpg">http://assets.fanart.tv/fanart/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistthumb/fleetwood-mac-4fd37e9a22e1f.jpg</thumb>
    <thumb preview="http://assets.fanart.tv/preview/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistthumb/fleetwood-mac-4fd37e9a22e1f.jpg">http://assets.fanart.tv/fanart/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistthumb/fleetwood-mac-4fd37e9a22e1f.jpg</thumb>
    <thumb preview="http://assets.fanart.tv/preview/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistthumb/fleetwood-mac-4fd37e9a22e1f.jpg">http://assets.fanart.tv/fanart/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistthumb/fleetwood-mac-4fd37e9a22e1f.jpg</thumb>
    <thumb preview="http://www.theaudiodb.com/images/media/artist/thumb/svtsux1447415485.jpg/preview">http://www.theaudiodb.com/images/media/artist/thumb/svtsux1447415485.jpg</thumb>
    <path>E:\Music- Test\Fleetwood Mac\</path>
    <fanart>
        <thumb preview="http://assets.fanart.tv/preview/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistbackground/fleetwood-mac-54a08371db4e2.jpg">http://assets.fanart.tv/fanart/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistbackground/fleetwood-mac-54a08371db4e2.jpg</thumb>
        <thumb preview="http://assets.fanart.tv/preview/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistbackground/fleetwood-mac-54a083a3607ed.jpg">http://assets.fanart.tv/fanart/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistbackground/fleetwood-mac-54a083a3607ed.jpg</thumb>
        <thumb preview="http://assets.fanart.tv/preview/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistbackground/fleetwood-mac-4e7ec8bebeba1.jpg">http://assets.fanart.tv/fanart/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistbackground/fleetwood-mac-4e7ec8bebeba1.jpg</thumb>
        <thumb preview="http://assets.fanart.tv/preview/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistbackground/fleetwood-mac-4e7ec8bebeba1.jpg">http://assets.fanart.tv/fanart/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistbackground/fleetwood-mac-4e7ec8bebeba1.jpg</thumb>
        <thumb preview="http://assets.fanart.tv/preview/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistbackground/fleetwood-mac-4e7ec8bebeba1.jpg">http://assets.fanart.tv/fanart/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistbackground/fleetwood-mac-4e7ec8bebeba1.jpg</thumb>
        <thumb preview="http://assets.fanart.tv/preview/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistbackground/fleetwood-mac-4e7ec8bebeba1.jpg">http://assets.fanart.tv/fanart/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistbackground/fleetwood-mac-4e7ec8bebeba1.jpg</thumb>
        <thumb preview="http://assets.fanart.tv/preview/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistbackground/fleetwood-mac-4e7ec8bebeba1.jpg">http://assets.fanart.tv/fanart/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistbackground/fleetwood-mac-4e7ec8bebeba1.jpg</thumb>
        <thumb preview="http://assets.fanart.tv/preview/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistbackground/fleetwood-mac-4e7ec8bebeba1.jpg">http://assets.fanart.tv/fanart/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistbackground/fleetwood-mac-4e7ec8bebeba1.jpg</thumb>
        <thumb preview="http://assets.fanart.tv/preview/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistbackground/fleetwood-mac-51c68f91253a9.jpg">http://assets.fanart.tv/fanart/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistbackground/fleetwood-mac-51c68f91253a9.jpg</thumb>
        <thumb preview="http://assets.fanart.tv/preview/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistbackground/fleetwood-mac-518f8f0a5a483.jpg">http://assets.fanart.tv/fanart/music/bd13909f-1c29-4c27-a874-d4aaf27c5b1a/artistbackground/fleetwood-mac-518f8f0a5a483.jpg</thumb>
    </fanart>
    <album>
        <title>Future Games</title>
        <year>1971</year>
    </album>
    <album>
        <title>Live in London 1968</title>
        <year>1989</year>
    </album>
    <album>
        <title>Bare Trees</title>
        <year>1972</year>
    </album>
    <album>
        <title>Tusk</title>
        <year>1979</year>
    </album>
    <album>
        <title>In Concert 1982</title>
        <year>2010</year>
    </album>
    <album>
        <title>Rumours</title>
        <year>1977</year>
    </album>
    <album>
        <title>Say You Will</title>
        <year>2003</year>
    </album>
    <album>
        <title>Kiln House</title>
        <year>1970</year>
    </album>
    <album>
        <title>Tango in the Night</title>
        <year>1987</year>
    </album>
    <album>
        <title>Fleetwood Mac</title>
        <year>1975</year>
    </album>
    <album>
        <title>Penguin</title>
        <year>1973</year>
    </album>
    <album>
        <title>Mirage</title>
        <year>1982</year>
    </album>
    <album>
        <title>Mystery to Me</title>
        <year>1973</year>
    </album>
    <album>
        <title>Peter GreenΓÇÖs Fleetwood Mac</title>
        <year>1968</year>
    </album>
</artist>
{{collapse bottom}}
== Music Album nfo ==
Sample Music Album nfo
{{collapse top| Music Album nfo file  (click 'expand' to view)}}
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<album>
    <title>The Annie Lennox Collection</title>
    <musicBrainzAlbumID>957cda28-5e1e-4507-9de7-1d5049415cea</musicBrainzAlbumID>
    <artistdesc>Annie Lennox</artistdesc>
    <genre>Pop</genre>
    <style>TalbumFstrstyles</style>
    <mood>TalbumFstrmoods</mood>
    <theme>TalbumFstrthemes</theme>
    <compilation>false</compilation>
    <review>TalbumFstrReview</review>
    <type>album/compilation</type>
    <releasedate></releasedate>
    <label>RCA/19 Recordings</label>
    <thumb preview="http://www.theaudiodb.com/images/media/album/thumb/the-annie-lennox-collection-50b9f63c63338.jpg/preview">http://www.theaudiodb.com/images/media/album/thumb/the-annie-lennox-collection-50b9f63c63338.jpg</thumb>
    <path>E:\Music Test Test\Annie Lennox\The Annie Lennox Collection\</path>
    <rating max="10">0.000000</rating>
    <userrating max="10">5</userrating>
    <votes>1500</votes>
    <year>2003</year>
    <albumArtistCredits>
        <artist>Annie Lennox</artist>
        <musicBrainzArtistID>3e30aebd-0557-4cfd-8fb9-3945afa5d72b</musicBrainzArtistID>
    </albumArtistCredits>
    <releasetype>album</releasetype>
</album>
{{collapse bottom}}
== Music Video nfo ==
Sample Music Video nfo
{{collapse top| Music Video nfo file  (click 'expand' to view)}}
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<musicvideo>
    <title>Dancing Queen</title>
    <userrating>0</userrating>
    <top250>0</top250>
    <track>-1</track>
    <album>Arrival</album>
    <outline></outline>
    <plot>"Dancing Queen" is a Europop song by the Swedish group ABBA, and the lead single from their fourth studio album, Arrival.</plot>
    <tagline></tagline>
    <runtime>0</runtime>
    <thumb preview="http://www.theaudiodb.com/images/media/album/thumb/arrival-4ee244732bbde.jpg/preview">http://www.theaudiodb.com/images/media/album/thumb/arrival-4ee244732bbde.jpg</thumb>
    <mpaa></mpaa>
    <playcount>0</playcount>
    <lastplayed></lastplayed>
    <id></id>
    <genre>Pop</genre>
    <year>1976</year>
    <status></status>
    <code></code>
    <aired></aired>
    <trailer></trailer>
    <artist>ABBA</artist>
    <resume>
        <position>0.000000</position>
        <total>0.000000</total>
    </resume>
    <dateadded>2017-06-15 14:18:10</dateadded>
</musicvideo>
{{collapse bottom}}
= nfo Tags =
A list of all available tags that Kodi recognises follows in this section. As mentioned previously, there are many common tags, but there are also specific tags for each part of the library. Ensure you use the correct tags.
== Movie Tags ==
== TV Show Tags ==
== TV Show Episode Tags ==
== Music Tags ==
== Music Video Tags ==
{{top}}

Latest revision as of 04:53, 29 May 2022