Sources.xml/Types: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
>Gamester17
No edit summary
mNo edit summary
 
(141 intermediate revisions by 27 users not shown)
Line 1: Line 1:
There are two main types of bookmarks, Local and Network. In addition, there are specialty bookmarks that are only available in certain sections of XBMC, (such as in My Music or My Videos). Only local bookmarks are supported under My Programs, (you can not stream Xbox games or other executables of the network). You can also add multiple paths (<path></path>) in each bookmark.
{{cleanup}}
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.
<pre>
<source>
    <name>01 Movies</name>
    <path pathversion="1">F:\Kodi\Movies HD\</path>
    <path pathversion="1">E:\Kodi\Movies SD\Movies New\</path>
</source>
</pre>
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).


==Local Bookmarks==
You can have multiple paths in '''local''', [[SMB]] and [[NFS]] sources, not for the other protocols.
===Basic Bookmarks===
{|
| valign="top" |
Local bookmarks are ones that reference the local Xbox harddisk drive, DVD--ROM drive or memory cards.


'''C D E F G''' are all valid local Xbox drives to access, (D being the DVD-ROM drive, C and E being the default C: and E: partitions, and F and G being the extended F: and G: partitions that you get when you replace your Xbox harddrive with a larger one).
== 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.


'''H I J K L M N O''' are the memory-card ports, (but fair warning XBMC's memory card support is little to none).
== 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 [[File_sharing|Sharing media from your PC]] how to configure such servers yourself.


'''X Y Z''' are Xbox default cache partitions and should not need to be referenced for any reason.
=== 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.}}
<xml>
  <bookmark>
    <name>E Drive</name>
    <path>E:\Media\Movies\</path>
    <path>F:\Media\Movies\</path>
  </bookmark>


  <bookmark>
The full syntax for sharing is as follows:
    <name>DVD-ROM Drive</name>
    <path>D:\</path>
  </bookmark>
</xml>
|}


 
<pre>
===Advanced Special Bookmarks===
   <source>
 
XBMC has the option to force the DVD drive to read the disk as a iso9660 or UDF filesystem.<br>
If you have the need for these functions simply use the following bookmarks:
 
<xml>
  <bookmark>
    <name>ISO</name>
    <path>iso9660://</path>
  </bookmark>
 
  <bookmark>
    <name>UDF</name>
    <path>UDF://</path>
  </bookmark>
</xml>
 
 
 
==Generic Network Bookmarks==
Network bookmarks reference remote shares of various types. XBMC supports SMB (windows file sharing), XBMS (also known as CCX), among others. These generic network bookmarks are supported in all XBMC sections in XBMC ("'''My Music'''", "'''My Videos'''", "'''My Pictures'''", and "'''File-Manager'''"), with the exception of "My Programs" (where only local bookmarks are supported). You can also add multiple paths (<path></path>) in each bookmark.
 
 
===Windows File Sharing (SMB/SAMBA/CIFS)===
[[SMB]] sharing is the most common and probebely the best performing sharing solution for XBMC. It supports domains and workgroups as well. The full syntax for sharing is as follows:
 
<xml>
   <bookmark>
     <path>smb://domain;username:password@computername_or_ipaddress/sharename/path</path>
     <path>smb://domain;username:password@computername_or_ipaddress/sharename/path</path>
   </bookmark>
   </source>
</xml>
</pre>


''domain'' - If you use a domain controller you may enter it here
''domain'' - If you use a domain controller you may enter it here
Line 74: Line 47:
''path'' - path relative to the share
''path'' - path relative to the share


If any variables are not needed omit the required punctuation.<br />
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:
<pre>
  <source>
    <path>smb://USER:[email protected]</path>
  </source>
</pre>
For a direct link to a share on a server use:
<pre>
  <source>
    <path>smb://USER:[email protected]/share/</path>
  </source>
</pre>
For a direct link to a subfolder under a share on a server use:
<pre>
  <source>
    <path>smb://USER:[email protected]/share/path/</path>
  </source>
</pre>
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):
<pre>
  <source>
    <path>smb://</path>
  </source>
</pre>


If any variables are not needed omit the required punctuation.<br>
=== Network Filesystem (NFS) ===
Examples (where "xbox" is the user-name, "12345" is the password, and "192.168.0.200" is the IP-address of the server):
[[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.


For a direct link to a server use:<br>
{{note|For much more information about using NFS in Kodi, see the [[NFS]] article.}}
<xml>
  <bookmark>
    <path>xbox:12345@smb://192.168.0.200</path>
  </bookmark>
</xml>


For a direct link to share on a server use:<br>
The full syntax for sharing is as follows:
<xml>
  <bookmark>
    <path>smb://xbox:[email protected]/share/</path>
  </bookmark>
</xml>


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


For a direct link subfolder under share on a server use:<br>
''ipaddress'' - At the moment there is no name resolution possible. Use the direct IP address of the NFS server for now.
<xml>
  <bookmark>
    <path>smb://xbox:[email protected].200/share/path/</path>
  </bookmark>
</xml>


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 XBMC GUI first):<br>
''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.
<xml>
  <bookmark>
    <path>smb://</path>
  </bookmark>
</xml>


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):
<pre>
  <source>
    <path>nfs://192.168.0.200</path>
  </source>
</pre>


===UPnP (Universal Plug and Play)===
=== UPnP (Universal Plug and Play) ===
[[UPnP Sharing|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 XBMC (also called "UPnP AV MediaServer ControlPoint") 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 MediaServer"), UPnP AV MediaServers is where you store and share your media (pictures/videos/audio/music) from. There are UPnP MediaServers available for most operating-systems and many hardware-platforms, UPnP AV MediaServers can be either be categorized as software-based or hardware-based. Software-based MediaServers can be run on PC (personal-computer), mainly on Win32, Linux, BSD, Unix or Mac platform. And, hardware-based MediaServers 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 more information about using UPnP, see [[UPnP Sharing]].
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 xbmc) use the following share:<br>
For auto-discovery (default in Kodi) use the following share:<br />
<xml>
<pre>
   <bookmark>
   <source>
     <path>upnp://</path>
     <path>upnp://</path>
   </bookmark>
   </source>
</xml>
</pre>


For a direct link to a server use:<br>
For a direct link to a server use:<br />
<xml>
<pre>
   <bookmark>
   <source>
     <path>upnp://ip_address:1901</path>
     <path>upnp://ip_address:1901</path>
   </bookmark>
   </source>
</xml>
</pre>


For a direct link to spesific share on a server use:<br>
For a direct link to a specific share on a server use:
<xml>
<pre>
   <bookmark>
   <source>
     <path>upnp://ip_address:1901/share/</path>
     <path>upnp://ip_address:1901/share/</path>
   </bookmark>
   </source>
</xml>
</pre>


For a direct link subfolder under share on a server use:<br>
For a direct link to a subfolder under a share on a server use:
<xml>
<pre>
   <bookmark>
   <source>
     <path>upnp://ip_address:1901/share/path/</path>
     <path>upnp://ip_address:1901/share/path/</path>
   </bookmark>
   </source>
</xml>
</pre>


=== 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):
<pre>
  <source>
    <!--to connect as anonymous use ftp://ip:port/-->
    <path>ftp://username:password@ipaddress:port/folder/</path>
  </source>
</pre>


===XBMS Protocol (CCX/ccXStream)===
=== SFTP (SSH File Transfer Protocol) Client ===
XBMSP (XBox Media Stream Protocol) was developed by PuhPuh and is a very user-friendly protocol. The XBMSP-client in XBMC supports direct links to the server/shares and auto-discovery of servers available on the local network. XBMSP (or "XBMS" for short) require that you run a XBMSP-server on your computer, XBMSP-servers are also known as "CCX" or "ccXStream" servers. For more information about using XBMS, see [[Windows ccx gui (xbms)|Configuring XBMS Shares]].


For auto-discovery (default in xbmc) use the following share:<br>
Example (source.xml):
<xml>
<pre>
  <bookmark>
    <video>
    <path>xbms://</path>
        <source>
  </bookmark>
        <name>Remote SFTP Videos</name>
</xml>
        <path>sftp://username:[email protected]/share/videos/</path>
      </source>
    </video>
</pre>


For a direct link to a server use:<br>
<xml>
  <bookmark>
    <path>xbms://ip_address:1400</path>
  </bookmark>
</xml>


For a direct link to spesific share on a server use:<br>
=== HTTP (Hypertext Transfer Protocol ) Client ===
<xml>
Kodi also contains an HTTP-client with which you can add sources in all sections in the Kodi interface.
  <bookmark>
    <path>xbms://ip_address:1400/share/</path>
  </bookmark>
</xml>


For a direct link subfolder under share on a server use:<br>
Example (if any variables are not needed, omit the required punctuation):
<xml>
<pre>
  <bookmark>
  <source>
     <path>xbms://ip_address:1400/share/path/</path>
    <!--to connect as anonymous use "http://ipaddress:port/" or just "http://ipaddress"-->
   </bookmark>
     <path>http://username:password@ipaddress:port/directory/|option1=value1&option2=value2</path>
</xml>
   </source>
</pre>


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 <code><nowiki>http://username:password@host:port/directory/|auth=digest</nowiki></code>. For maximum flexibility, use <code>auth=any</code> or <code>auth=anysafe</code> (i.e. anything other than basic).


===FTP (File Transfer Protocol) Client===
Other options include:
XBMC does also cotain a FTP-client with which you can add booksmarks in all sections (except for My Program), however as FTP (File Transfer Protocol) is not designed to stream audio/video data it is not recommended that you use it under the My Music nor in the My Videos sections, trying to stream audio or video via FTP does not go good. (Rememeber that the default FTP-port is usually 21).<br>
* Referrer
* User-Agent
* Cookie
* Encoding


Example (if any variables are not needed omit the required punctuation):
For the meanings of these, see RFC 2616.
<xml>
  <bookmark>
    <nowiki><!--to connect as anonymous use ftp://ip:port/--></nowiki>
    <path>ftp://username:password@ipaddress:port/folder/</path>
  </bookmark>
</xml>


=== RSS Feeds ===
[http://en.wikipedia.org/wiki/RSS 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. [http://en.wikipedia.org/wiki/Podcast Podcasts] is a is a series of audio or video digital-media files which is distributed over the Internet by such RSS feeds, and [http://en.wikipedia.org/wiki/Video_podcast 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.
<br />


==My Videos-Specific Bookmarks==
{{note|Please make sure you have read the [[RSS_media_source|RSS Feeds in Kodi Guide]].}}
===ReplayTV sharing===


[[ReplayTV]] is a stand-alone PVR/DVR (Personal Video Recoder/Digital Video Recoder) box, (a rival to [http://www.tivo.com TiVo]). ReplayTV  records TV (and sheduele recoding) to its built-in harddrive and stores it there, and via it's network-port the ReplayTV box can share that stored video on a local network. XBMC has a DVArchive-client which can auto-detect and browse such shares. Note that the system-clock on the ReplayTV box and the Xbox much match within a minute for streaming to work so be sure you set the correct date/time on both the Xbox and the ReplayTV box before you begin, (remember that the Xbox does not have a clock-battery so its date/time if it loases power for more than a couple of minutes).
<pre>
<source>
  <name>RSS Feed</name>
  <path>rss://</path>
</source>
</pre>


For auto-discovery (default in XBMC) use the following share in the video section:<br>
=== WebDAV ===
<xml>
{{incomplete}}
  <bookmark>
    <path>rtv://*/</path>
  </bookmark>
</xml>


== 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 [[Add-on_manager| Addon Manager]], accessible from the "Settings" menu option on the home screen.


==My Music-Specific Bookmarks==
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.
===Microsoft Soundtracks ===
The Microsoft dashboard contains the ablity to rip your cd's to WMA format. This type of bookmark (enabled by default in xbmc) allows you to read the MS database and play those tracks.


<xml>
== Videos Specific Sources ==
  <bookmark>
=== Video Library ===
    <name>MS Soundtracks</name>
This special source allows you to access the video database without switching to [[Video_library|library]] view. This is useful for remote browsing of the video library, i.e. via the [[Web_interface|web interface]].
    <path>soundtrack://</path>
  </bookmark>
</xml>


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


=== 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.<br />


===iTunes Network Share (DAAP)===
[[ITunes (DAAP)|iTunes]] contains a method of sharing its database. XBMC can play all unprotected files, (ie. all files not purchased on iTunes Music Store, which can not be be played in XBMC because they are encrypted with Apple's proprietary DRM, proprietary). To enable sharing in iTunes look under the edit tab, click on preferences, click on sharing and enable the sharing checkbox. To enable itunes sharing in xbmc edit the path of the following bookmark with the ip address of the PC you wish to connect to. Note that you CANNOT use computer names in this field. For more information about setting up iTunes shares, see [[iTunes (DAAP)|Configuring Itunes Shares]]
<xml>
  <bookmark>
    <name>iTunes Network Share (DAAP)</name>
    <nowiki><!-- Only use an IP-address here!--></nowiki>
    <path>daap://192.168.1.100</path>
  </bookmark>
</xml>


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


<div id="shoutcast"></div>.
== 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|web interface]].


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


===Shoutcast Top 500 Streams===
=== Forced CDDA ===
This type of bookmark will contact www.shoutcast.com and list the top 500 webradio streams provided by them. This bookmark is available in My Music by default
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.
<xml>
<pre>
   <bookmark>
   <source>
     <name>SHOUTcast Top 500</name>
     <name>CDDA</name>
     <path>shout://www.shoutcast.com/</path>
     <path>cdda://</path>
   </bookmark>
   </source>
</xml>
</pre>






===Forced CDDA===
[[Category:Development]]
XBMC 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 the Xbox to read the disk as an CDDA AudioCD (Compact Disk Digital Audio) use the following share.
<xml> 
  <bookmark> 
    <name>CDDA</name>
    <path>cdda://</path>
  </bookmark>
</xml>

Latest revision as of 23:31, 29 January 2021

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>