MySQL/Sync other parts of Kodi: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
{{divbox|orange||'''Note:''' Path substitution or any kind of sharing of setting files is not officially supported (with the exception of playlists). It probably won't hurt anything, but some things might not always work right depending on what you are substituting. The following settings on this page are believed to work okay, but if something doesn't work out, just copy the file instead of trying to share/pathsub it.}}
{{divbox|orange||'''Note:''' Path substitution or any kind of sharing of setting files is not officially supported (with the exception of playlists). It probably won't hurt anything, but some things might not always work right depending on what you are substituting. The following settings on this page are believed to work okay, but if something doesn't work out, just copy the file instead of trying to share/pathsub it.}}
{{:HOW-TO:Sync multiple libraries/Contents}}
{{:HOW-TO:Sync multiple libraries/Contents}}
Many other things can be synced using [[path substitution]]. Note that you can also use the [[HOW-TO:Sync multiple libraries/Advanced notes#Symlink alternative to Path substitution|Symlink instructions]] if your OS supports it. '''DO NOT TRY TO SHARE DATABASES.'''  This works with both directories and single files '''(requires at least v11/Eden RC1 for single files)'''. The following directories and files are known to be safe for this task:
Many things can be synced using [[path substitution]]. Note that you can also use the [[HOW-TO:Sync multiple libraries/Advanced notes#Symlink alternative to Path substitution|Symlink]] or [[HOW-TO:Sync multiple libraries/Advanced notes#MKLINK|MKLINK]] instructions if your OS supports it. '''DO NOT TRY TO SHARE DATABASES.'''  This works with both directories and single files. The following directories and files are generally safe to share between XBMC devices:
__TOC__
__TOC__
{{-}}
{{-}}
Line 49: Line 49:
</pre>
</pre>
|}
|}
{{editor note|Note what this is and why you would want to do it}}
Useful if you want the controls on all your XBMC devices to be the same. Might not be a good idea if you use different types of remotes on different XBMC devices, as you'll likely want to have individual configurations for them.
{{-}}<br/><br/>
{{-}}<br/><br/>


Line 67: Line 67:
</pre>
</pre>
|}
|}
The sources.xml file contains a list of all the sources your media will be collected from, including both local and network-based media. It's important to make sure it contains only network shared sources (so that they are accessible by all clients) and that it is synchronised between your XBMC instances. If this isn't done, every time the Update Library command is run on a client, your shared database will be updated to reflect that particular client's sources.
The sources.xml file contains a list of all the sources your media will be collected from, including both local and network-based media. This will also allow you to sync everything that is just in Files view and not in the video library.
 
If an XBMC device has a source that is specific to it (such as on an internal hard drive that is not shared with the rest of the XBMC devices) then you might not want to share sources.xml.
 
mediasources.xml is similar to sources.xml, but only effects the options seen when you add a new source and select "browse". It really doesn't matter much if you share this file or not.
{{-}}<br/><br/>
{{-}}<br/><br/>


Line 81: Line 85:
</pre>
</pre>
|}
|}
{{editor note|Note what this is and why you would want to do it}}
This file tells XBMC what RSS feed to show on the home screen, if enabled.
{{-}}<br/><br/>
{{-}}<br/><br/>


Line 95: Line 99:
</pre>
</pre>
|}
|}
{{editor note|Note what this is and why you would want to do it}}
This will sync your [[favorites]] selections between all XBMC devices. If the favorite depends on a file path that is specific to one XBMC device then this might not work for the other XBMC devices.
{{-}}<br/><br/>
{{-}}<br/><br/>
==Other ways==
===Using MKLINK===
In Windows you can also use mklink.
Copy the map "Thumbnails" into a map on your server or nas and share the map with full rights.
Make a "network location" to the map you shared.
<pre>
  <substitute>
"xbmc (\\server) (X:)"
  </substitute>
</pre>
Now open commandpromt and type
<pre>
  <substitute>
mklink /d "C:\Users\USERNAME\AppData\Roaming\XBMC\userdata\Thumbnails" "x:\Thumbnails"
  </substitute>
</pre>
Do this on every PC with XBMC

Revision as of 06:13, 25 November 2012

HOW-TO:Sync multiple libraries/Contents Many things can be synced using path substitution. Note that you can also use the Symlink or MKLINK instructions if your OS supports it. DO NOT TRY TO SHARE DATABASES. This works with both directories and single files. The following directories and files are generally safe to share between XBMC devices:


Steps

  1. Share your existing userdata folder or a new folder with those files via NFS, SMB, or AFP (make sure have write access, not just read-only access). Most users to do this from the same computer/device as the MySQL server.
  2. Copy the text from the right hand boxes and add it to your advancedsettings.xml file, between the <pathsubstitution> and </pathsubstitution> tags.
  3. Note/copy the network path of your shared data folder and use that to replace PROTOCOL://YOUR_NETWORK_SHARE/xbmc/userdata/, for example an SMB share holding your playlists use smb://NAS/share/xbmc_stuff/Playlists/
  4. Make sure all XBMC devices that are being synced have this addition to their advancedsettings.xml file.

Playlists

  <substitute>
    <from>special://profile/playlists/</from>
    <to>PROTOCOL://YOUR_NETWORK_SHARE/xbmc/userdata/playlists/</to>
  </substitute>

The Playlist folder in XBMC contains music, video and mixed playlists. If you have imported from pre-existing media libraries then you can use your old playlist folder to save time on recreating the various playlists. If your playlists include local file paths, you will need to edit them to use network shares instead.


Add-on data

  <substitute>
    <from>special://profile/addon_data/</from>
    <to>PROTOCOL://YOUR_NETWORK_SHARE/xbmc/userdata/addon_data/</to>
  </substitute>

Sync some of the add-on settings and preferences. With the way python/add-ons/xbmc works, add-ons don't always follow path substitution, and might not always use the remote "addon_data" folder/share. You would have to ask the person who made the add-on to support being able to save the data on a remote share if it is not working with path subs.


Keymaps

  <substitute>
    <from>special://profile/keymaps/</from>
    <to>PROTOCOL://YOUR_NETWORK_SHARE/xbmc/userdata/keymaps/</to>
  </substitute>

Useful if you want the controls on all your XBMC devices to be the same. Might not be a good idea if you use different types of remotes on different XBMC devices, as you'll likely want to have individual configurations for them.


Sources

  <substitute>
    <from>special://profile/sources.xml</from>
    <to>PROTOCOL://YOUR_NETWORK_SHARE/xbmc/userdata/sources.xml</to>
  </substitute>
  <substitute>
    <from>special://profile/mediasources.xml</from>
    <to>PROTOCOL://YOUR_NETWORK_SHARE/xbmc/userdata/mediasources.xml</to>
  </substitute>

The sources.xml file contains a list of all the sources your media will be collected from, including both local and network-based media. This will also allow you to sync everything that is just in Files view and not in the video library.

If an XBMC device has a source that is specific to it (such as on an internal hard drive that is not shared with the rest of the XBMC devices) then you might not want to share sources.xml.

mediasources.xml is similar to sources.xml, but only effects the options seen when you add a new source and select "browse". It really doesn't matter much if you share this file or not.


RSS Feeds

  <substitute>
    <from>special://profile/RssFeeds.xml</from>
    <to>PROTOCOL://YOUR_NETWORK_SHARE/xbmc/userdata/RssFeeds.xml</to>
  </substitute>

This file tells XBMC what RSS feed to show on the home screen, if enabled.


Favourites

  <substitute>
    <from>special://profile/favourites.xml</from>
    <to>PROTOCOL://YOUR_NETWORK_SHARE/xbmc/userdata/favourites.xml</to>
  </substitute>

This will sync your favorites selections between all XBMC devices. If the favorite depends on a file path that is specific to one XBMC device then this might not work for the other XBMC devices.