Sources.xml/Types

From Official Kodi Wiki
< Sources.xml
Revision as of 10:14, 8 June 2006 by >Jmarshall
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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 My Programs or My Music)

Local Bookmarks

Basic Bookmarks

Local bookmarks are ones that reference the local xbox hard drive, dvd-rom drive or memory cards.

Simply use standard DOS drive:/path syntax for your path.

C D E F G are all valid xbox drives to access

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)

X Y Z are cache partitions and should not need to be referenced for any reason

<xml>

 <bookmark>
   <name>Local E Drive</name>
   <path>e:/media/movies/</path>
 </bookmark>

</xml>

Advanced Special Bookmarks

XBMC has the option to force the DVD drive to read the disk as a iso9660 or UDF filesystem.
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>

Network Bookmarks

Network bookmarks reference remote shares of various types. XBMC supports SMB (windows file sharing), XBMS (also known as CCX), among others.

Windows File Sharing (SMB/Samba)

SMB sharing is the most common and best performing sharing solution for XBMC. It supports domains and workgroups as well. The full syntax for sharing follows,

smb://domain;username:password@computername_or_ipaddress/sharename/path

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.
For example:

smb://xbox:[email protected]/share/
smb://192.168.0.200/

XBMS (CCX)

XBMS (CCX server) was developed by [XC]D-Ice and is a very user friendly protocol. It supports direct links to the server and auto discovers of shares available on the local network. For more information about using XBMS, see Configuring XBMS Shares.

For autodiscover (default in xbmc) use the following share:
xbms://

For a direct link to a server use:
xbmc://ip_address:1400

ReplayTV sharing

rtv://*/

My Music-Specific Bookmarks

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>

 <bookmark>
   <name>MS Soundtracks</name>
   <path>soundtrack://</path>
 </bookmark>

</xml>

iTunes Network Share (DAAP)

iTunes contains a method of sharing its database. XBMC can play all unprotected files. This means purchased music CANNOT be played in xbmc. 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 Configuring Itunes Shares

<xml>

 <bookmark>
   <name>iTunes Network Share (DAAP)</name>
   <!-- only use an IP address here !-->
   <path>daap://192.168.1.100</path>
 </bookmark>

</xml>

.

Shoutcast Top 500 Streams

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

<xml>

 <bookmark>
   <name>SHOUTcast Top 500</name>
   <path>shout://www.shoutcast.com/</path>
 </bookmark>

</xml>

Forced CDDA

XBMC employs auto detection of the type of cd or dvd in the drive. If for some reason you wish to have a share that forces the xbox to read the disk as an audio-cd (compact disk digital audio) use the following share.

<xml>

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

</xml>