2015-01-01, 13:34
Hi there all,
First of, I wish everybody a fantastic and healthy new year.
Second and the reason for posting: I'm trying to find a way so I can have Kodi running from every system (Android and Windows) with the same setup, addons, etc. I would like to redirect the Kodi to look for the addons, data, etc. on my NAS (QNAP), that way it'll all sync and no system should have a different setup.
This what I've done so far as to change the advancedsettings.xml on every system, note that Kodi has access to my MySQL-database. Not all addons will sync, did I miss something, is my approach the most logic or is there an addon that will provide me with a sollution that I'd like, etc.
First of, I wish everybody a fantastic and healthy new year.
Second and the reason for posting: I'm trying to find a way so I can have Kodi running from every system (Android and Windows) with the same setup, addons, etc. I would like to redirect the Kodi to look for the addons, data, etc. on my NAS (QNAP), that way it'll all sync and no system should have a different setup.
This what I've done so far as to change the advancedsettings.xml on every system, note that Kodi has access to my MySQL-database. Not all addons will sync, did I miss something, is my approach the most logic or is there an addon that will provide me with a sollution that I'd like, etc.
Code:
<advancedsettings>
<videodatabase>
<type>mysql</type>
<host>192.168.0.10</host>
<port>3306</port>
<user>xbmc</user>
<pass>xbmc</pass>
<name>KODI-video</name>
</videodatabase>
<musicdatabase>
<type>mysql</type>
<host>192.168.0.10</host>
<port>3306</port>
<user>xbmc</user>
<pass>xbmc</pass>
<name>KODI-music</name>
</musicdatabase>
<videolibrary>
<importwatchedstate>true</importwatchedstate>
<importresumepoint>true</importresumepoint>
</videolibrary>
<pathsubstitution>
<substitute>
<from>special://masterprofile/Thumbnails/</from>
<to>smb://192.168.0.10/Kodi/Thumbnails/</to>
</substitute>
<substitute>
<from>special://masterprofile/playlists/</from>
<to>smb://192.168.0.10/Kodi/playlists/</to>
</substitute>
<substitute>
<from>special://masterprofile/addon_data/</from>
<to>smb://192.168.0.10/Kodi/addon_data/</to>
</substitute>
<substitute>
<from>special://masterprofile/keymaps/</from>
<to>smb://192.168.0.10/Kodi/keymaps/</to>
</substitute>
<substitute>
<from>special://masterprofile/sources.xml</from>
<to>smb://192.168.0.10/Kodi/sources.xml</to>
</substitute>
<substitute>
<from>special://masterprofile/mediasources.xml</from>
<to>smb://192.168.0.10/Kodi/mediasources.xml</to>
</substitute>
<substitute>
<from>special://masterprofile/RssFeeds.xml</from>
<to>smb://192.168.0.10/Kodi/RssFeeds.xml</to>
</substitute>
<substitute>
<from>special://masterprofile/favourites.xml</from>
<to>smb://192.168.0.10/Kodi/favourites.xml</to>
</substitute>
<substitute>
<from>special://profile/Thumbnails/</from>
<to>smb://192.168.0.10/Kodi/Thumbnails/</to>
</substitute>
<substitute>
<from>special://profile/playlists/</from>
<to>smb://192.168.0.10/Kodi/playlists/</to>
</substitute>
<substitute>
<from>special://profile/addon_data/</from>
<to>smb://192.168.0.10/Kodi/addon_data/</to>
</substitute>
<substitute>
<from>special://profile/keymaps/</from>
<to>smb://192.168.0.10/Kodi/keymaps/</to>
</substitute>
<substitute>
<from>special://profile/sources.xml</from>
<to>smb://192.168.0.10/Kodi/sources.xml</to>
</substitute>
<substitute>
<from>special://profile/mediasources.xml</from>
<to>smb://192.168.0.10/Kodi/mediasources.xml</to>
</substitute>
<substitute>
<from>special://profile/RssFeeds.xml</from>
<to>smb://192.168.0.10/Kodi/RssFeeds.xml</to>
</substitute>
<substitute>
<from>special://profile/favourites.xml</from>
<to>smb://192.168.0.10/Kodi/favourites.xml</to>
</substitute>
</pathsubstitution>
</advancedsettings>