Music videos: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
>Spiff
>Sho
m (fixes)
Line 1: Line 1:
With SVN build 10279, date: 2007-09-18, XBMC added the ability to include Music Videos in the [[Video Library]].
As of SVN build 10279 date 2007-09-18, XBMC added the ability to include Music Videos in the [[Video Library|Video]] and [[Music Library|Music Libraries]]. All scanned music videos will show up in both. Music Videos can also be part of [[Playlists#Party_Mode_Playlist|Party Mode]] and [[Playlists#Smart_Playlists|Smart Playlists]]. Playlists containing both music and music videos should be stored in the mixed playlist subfolder under [[The UserData Folder]].  


{|
{|
Line 8: Line 8:


== NFO example ==
== NFO example ==
The filename of the NFO should be the same as the music video file, only replacing the original extension with .nfo
;Music video filename example
bestsongintheworld - byme.avi
;Corresponding NFO filename:
  bestsongintheworld - byme.nfo


  <musicvideo>
  <musicvideo>
Line 13: Line 20:
   <artist>Me</artist>
   <artist>Me</artist>
   <album>Myself</album>
   <album>Myself</album>
  <genre>Pop</genre>
  <runtime>3:20</runtime>
  <plot>Scantly clad women hoing about</plot>
  <year>2000</year>
   <director>and I</director>
   <director>and I</director>
   <studio>Ego prod.</studio>
   <studio>Ego prod.</studio>
  </musicvideo>
  </musicvideo>
== Modifying the scraper to use different filenaming conventions ==
The Music video [[Scaper.xml|scraper]] can be found at the following location under the XBMC home directory
/system/scrapers/video/musicvideos.xml


[[category:Scraper]]
[[category:Scraper]]

Revision as of 23:19, 24 September 2007

As of SVN build 10279 date 2007-09-18, XBMC added the ability to include Music Videos in the Video and Music Libraries. All scanned music videos will show up in both. Music Videos can also be part of Party Mode and Smart Playlists. Playlists containing both music and music videos should be stored in the mixed playlist subfolder under The UserData Folder.

Music Videos Support in XBMC

Music.videos.jpg

Music Videos support is through a new content type. The scraper will look for a NFO file containing information on the music video files, failing that it will use the filename as a basis for the database entry (Artistname - Songname).

NFO example

The filename of the NFO should be the same as the music video file, only replacing the original extension with .nfo

Music video filename example
bestsongintheworld - byme.avi
Corresponding NFO filename
 bestsongintheworld - byme.nfo
<musicvideo>
 <title>Narcissism</title>
 <artist>Me</artist>
 <album>Myself</album>
 <genre>Pop</genre>
 <runtime>3:20</runtime>
 <plot>Scantly clad women hoing about</plot>
 <year>2000</year>
 <director>and I</director>
 <studio>Ego prod.</studio>
</musicvideo>

Modifying the scraper to use different filenaming conventions

The Music video scraper can be found at the following location under the XBMC home directory

/system/scrapers/video/musicvideos.xml