Sources.xml/Types

From Official Kodi Wiki
Jump to navigation Jump to search
Cleanup.png This page or section may require cleanup, updating, spellchecking, reformatting and/or updated images. Please improve this page if you can. The discussion page may contain suggestions.


There are two main types of sources, Local and Network. In addition, there are specialty sources that are only available in certain sections of Kodi, (such as in Music_library or Video_library).

Sources with multiple paths / targets

It is possible to let a media source point to more than one target or path. You can accomplish this through the User Interface or by directly editing the sources.xml. One example from the Videos section of the default Sources.xml file.

<source>
    <name>01 Movies</name>
    <path pathversion="1">F:\Kodi\Movies HD\</path>
    <path pathversion="1">E:\Kodi\Movies SD\Movies New\</path>
</source>

The pathversion="1" parameter means it was written with a more recent version of Kodi. It's to ensure that saved paths can be reliably updated if/when a new way to store them is implemented (e.g. old paths using Q: are now stored using special://xbmc etc).

You can have multiple paths in local, SMB and NFS sources, not for the other protocols.

Local Sources

Basic Sources

Local sources are ones that point to the local available drives like hard disks, memory cards, optical drive, etc. Kodi can play audio CDs from DVD drives as well as Video-DVD's. Kodi has a built in audio CD ripper. This ripper supports ripping to wav, mp3 and OGG vorbis formats and attempts to name your tracks using data sourced from CDDB.com.

Generic Network Sources

Network sources reference remote shares of various types. Kodi supports SMB (windows file sharing, also known as Samba or CIFS), among others. These generic network sources are supported in all Kodi sections in Kodi ("Music", "Videos", "Pictures", and "Filemanager"). You can also add multiple paths (<path></path>) in each source. See Sharing media from your PC how to configure such servers yourself.

Windows File Sharing (SMB/SAMBA/CIFS)

SMB sharing is the most common and probably the best performing sharing solution for Kodi. It supports domains and workgroups as well.

Note: For much more information about using SMB/SAMBA/CIFS in Kodi, see the File_sharing article.

The full syntax for sharing is as follows:

  <source>
    <path>smb://domain;username:password@computername_or_ipaddress/sharename/path</path>
  </source>

domain - If you use a domain controller you may enter it here

username - The username used to authenticate with the server

password - The password used to authenticate with the server

computername/ipaddress - As long as a name server is available on the network computer names *should* work. If any connectivity issues are encountered when using computer names replace it with the direct IP address of the computer.

sharename - Share name on the remote server

path - path relative to the share

If any variables are not needed omit the required punctuation.
Examples (where "USER" is the user-name, "12345" is the password, and "192.168.0.200" is the IP-address of the server):

For a direct link to a server use:

  <source>
    <path>smb://USER:[email protected]</path>
  </source>

For a direct link to a share on a server use:

  <source>
    <path>smb://USER:[email protected]/share/</path>
  </source>

For a direct link to a subfolder under a share on a server use:

  <source>
    <path>smb://USER:[email protected]/share/path/</path>
  </source>

For a direct link to all servers in your workgroup/domain use (for this you must have entered your username, password and workgroup/domain in the Kodi GUI first):

  <source>
    <path>smb://</path>
  </source>

Network Filesystem (NFS)

NFS sharing is the a full alternative to SMB sharing. It allows the the same features by reaching a better performance (due to less protocol overhead). Also there is no need to save any account information (username, password) inside the xml files, because NFS authentication is done via UID of the user running Kodi and the access rights granted for this UID on the NFS exported filesystem.

Note: For much more information about using NFS in Kodi, see the NFS article.

The full syntax for sharing is as follows:

  <source>
    <path>nfs://ipaddress/exported_path</path>
  </source>

ipaddress - At the moment there is no name resolution possible. Use the direct IP address of the NFS server for now.

exported_path - The absolute path on the NFS server. The exported_path can be the exported path or exported path including subfolders. At least one of the exported paths of the NFS server should be found inside the the exported_path.

For a direct link to a server for getting a list of exported paths do (exchange IP with the one from your NFS server in the example below):

  <source>
    <path>nfs://192.168.0.200</path>
  </source>

UPnP (Universal Plug and Play)

UPnP (short for "Universal Plug and Play") media sharing is an extremely easy method of sharing your media (pictures/video/audio) on your network as it features automatic-discovery and does not require any configuration. The UPnP-client in Kodi (also called "UPnP AV Media Server Control Point") supports direct links to the server/shares and auto-discovery of servers available on the local network. UPnP require a UPnP-server (also called "UPnP AV Media Server"), UPnP AV Media Servers is where you store and share your media (pictures/videos/audio/music) from. There are UPnP Media Servers available for most operating-systems and many hardware-platforms, UPnP AV Media Servers can be either be categorized as software-based or hardware-based. Software-based Media Servers can be run on PC (personal-computer), mainly on Windows, Linux, BSD, Unix or Mac platform. And, hardware-based Media Servers may run on any NAS (Network Attached Storage) or any specific hardware for delivering media, like for example a PVR (Personal Video Recorder) device.

For auto-discovery (default in Kodi) use the following share:

  <source>
    <path>upnp://</path>
  </source>

For a direct link to a server use:

  <source>
    <path>upnp://ip_address:1901</path>
  </source>

For a direct link to a specific share on a server use:

  <source>
    <path>upnp://ip_address:1901/share/</path>
  </source>

For a direct link to a subfolder under a share on a server use:

  <source>
    <path>upnp://ip_address:1901/share/path/</path>
  </source>

FTP (File Transfer Protocol) Client

Kodi also contains an FTP-client with which you can add sources in all sections in Kodi interface. (Remember that the default FTP-port is usually 21).

Example (if any variables are not needed, omit the required punctuation):

  <source>
    <!--to connect as anonymous use ftp://ip:port/-->
    <path>ftp://username:password@ipaddress:port/folder/</path>
  </source>

SFTP (SSH File Transfer Protocol) Client

Example (source.xml):

     <video>
        <source>
         <name>Remote SFTP Videos</name>
         <path>sftp://username:[email protected]/share/videos/</path>
       </source>
     </video>


HTTP (Hypertext Transfer Protocol ) Client

Kodi also contains an HTTP-client with which you can add sources in all sections in the Kodi interface.

Example (if any variables are not needed, omit the required punctuation):

  <source>
    <!--to connect as anonymous use "http://ipaddress:port/" or just "http://ipaddress"-->
    <path>http://username:password@ipaddress:port/directory/|option1=value1&option2=value2</path>
  </source>

Examples of options include "auth", which is required if your HTTP server uses any type of authentication other than basic (which is, in fact, unsafe unless used over HTTPS). E.g. if your HTTP server uses digest authentication, use http://username:password@host:port/directory/|auth=digest. For maximum flexibility, use auth=any or auth=anysafe (i.e. anything other than basic).

Other options include:

  • Referrer
  • User-Agent
  • Cookie
  • Encoding

For the meanings of these, see RFC 2616.

RSS Feeds

RSS (which stands for "Really Simple Syndication") is a family of web feed formats used to publish frequently updated works—such as blog entries, news headlines, audio, and video—in a standardized format. An RSS document is commonly called a "RSS feed", "RSS channel", or "Web feed", includes full or summarized text, plus metadata such as publishing dates and authorship. Podcasts is a is a series of audio or video digital-media files which is distributed over the Internet by such RSS feeds, and Video Podcasts are often referred to as "Vidcast" or "Vodcast".

Kodi features a built RSS Feed Reader Client for such audio and video sources, this type of media source will connect to the RSS feed you enter and lists the video or audio available to stream with thumbnails and metadata if available.

Note: Please make sure you have read the RSS Feeds in Kodi Guide.

<source>
  <name>RSS Feed</name>
  <path>rss://</path>
</source>

WebDAV

Incomplete.png INCOMPLETE:
This page or section is incomplete. Please add information or correct uncertain data which is marked with a ?

Plugin Sources

A plugin source is a special type of source that is powered by a python script automatically run by Kodi. A plugin source is typically used to represent the online content of a website as a hierarchical file system.

Kodi supports 3 types of plugin sources: video, music, and pictures. Plugins are placed in the "plugins\<type of media>" folder within the Kodi folder.

Plugin sources can be added from within Kodi through the Addon Manager, accessible from the "Settings" menu option on the home screen.

The actual file that is invoked by Kodi is "plugins\<type of media>\<name of plugin>\default.py". This file must be present for the plugin to show up in "Add Source" the dialog.

Videos Specific Sources

Video Library

This special source allows you to access the video database without switching to library view. This is useful for remote browsing of the video library, i.e. via the web interface.

  <source>
    <name>Library</name>
    <path>videodb://</path>
  </source>

HDHomeRun

This type of media source will connect to a HDHomeRun (Networked Digital Cable TV/HDTV Tuner) box and allows you to watch Live TV directly from Kodi.


<source>
  <name>HDHomeRun</name>
  <path>hdhomerun://</path>
</source>

Music Specific Sources

Music Library

This special source allows you to access the music database without switching to Music Library view. This is useful for remote browsing of the music library, i.e. via the web interface.

  <source>
    <name>Library</name>
    <path>musicdb://</path>
  </source>

Forced CDDA

Kodi employs auto-detection of the type of CD or DVD disks in the drive. If for some reason you wish to have a share that forces Kodi to read the disk as an CDDA AudioCD (Compact Disk Digital Audio) use the following share.

  <source>  
    <name>CDDA</name>
    <path>cdda://</path>
  </source>