Archive:Custom video entries: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
No edit summary
>NedBot
m (Robot: Cosmetic changes)
Line 3: Line 3:
Need to add videos such as home movies or other videos that are not normally found by XBMC's scrapers? Here's some solutions:
Need to add videos such as home movies or other videos that are not normally found by XBMC's scrapers? Here's some solutions:


==JustUseTheFileName==
== JustUseTheFileName ==
*Install the '[http://www.elbsolutions.com/xbmc/scraper/metadata.justUseFilename.org.zip justUseTheFilename]' scraper (manual install for now - working on it) and use that for the "Setting content" step of this guide. This simply add the videos to the library without any special info.
* Install the '[http://www.elbsolutions.com/xbmc/scraper/metadata.justUseFilename.org.zip justUseTheFilename]' scraper (manual install for now - working on it) and use that for the "Setting content" step of this guide. This simply add the videos to the library without any special info.


==NFO files==
== NFO files ==
*Add [[Import/Export library|nfo files]] for each file - (helpful guide: [http://www.pcmediacenter.com.au/forum/topic/35089-home-videos-library-mode-using-nfo-files/ Two guys who have successfully done it - one by movie, other as tv show])
* Add [[Import/Export library|nfo files]] for each file - (helpful guide: [http://www.pcmediacenter.com.au/forum/topic/35089-home-videos-library-mode-using-nfo-files/ Two guys who have successfully done it - one by movie, other as tv show])
*Here's a basic/bare minimal example of an NFO file:
* Here's a basic/bare minimal example of an NFO file:
<source lang="xml">
<source lang="xml">
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
Line 19: Line 19:
   </movie>
   </movie>
</source>
</source>
*XBMC will only look at your NFO files ONCE. To refresh a lot of videos with custom NFO files (say, when you've updated the NFO file itself): Go into Files, and on the source you added for your custom videos - set content and pick <None>, then click OK. Then set content again as if you were adding them for the first time.
* XBMC will only look at your NFO files ONCE. To refresh a lot of videos with custom NFO files (say, when you've updated the NFO file itself): Go into Files, and on the source you added for your custom videos - set content and pick <None>, then click OK. Then set content again as if you were adding them for the first time.

Revision as of 15:58, 27 April 2013

Adding videos to the library/Contents

Need to add videos such as home movies or other videos that are not normally found by XBMC's scrapers? Here's some solutions:

JustUseTheFileName

  • Install the 'justUseTheFilename' scraper (manual install for now - working on it) and use that for the "Setting content" step of this guide. This simply add the videos to the library without any special info.

NFO files

<?xml version="1.0" encoding="utf-8"?>
   <movie>
        <title>Some title</title>
        <originaltitle>Some title just in case - you most likely dont need this either</originaltitle>
        <sorttitle>It will sort by this title if you include it</sorttitle>
        <genre>HomeMovies</genre>
        <id>-1</id>
   </movie>
  • XBMC will only look at your NFO files ONCE. To refresh a lot of videos with custom NFO files (say, when you've updated the NFO file itself): Go into Files, and on the source you added for your custom videos - set content and pick <None>, then click OK. Then set content again as if you were adding them for the first time.