Use one database (through advancedsetttings.xml) and specify sources.xml

Hello,

I came from raspbmc and I am wondering if I can still use the movie database on my NAS.
On raspbmc I had two files:
advancedsettings.xml en sources.xml.
Are these still support and where do I have to place them?

They look like:
advancedsettings.xml

<advancedsettings>
    <videodatabase>
        <type>mysql</type>
        <host>192.168.1.101</host>
        <port>3306</port>
        <user>xyz</user>
        <pass>abc</pass>
    </videodatabase> 

    <musicdatabase>
        <type>mysql</type>
        <host>192.168.1.101</host>
        <port>3306</port>
        <user>xyz</user>
        <pass>abc</pass>
    </musicdatabase>

    <photodatabase>
        <type>mysql</type>
        <host>192.168.1.101</host>
        <port>3306</port>
        <user>xyz</user>
        <pass>abc</pass>
    </photodatabase>
	
	<pathsubstitution>
	  <substitute>
		<from>special://masterprofile/Thumbnails/</from>
		<to>smb://xyzXBMCLibrary/userdata/Thumbnails</to>
	  </substitute>
	</pathsubstitution>	
	
</advancedsettings>

Sources.xml:

<sources>
    <programs>
        <default pathversion="1"></default>
    </programs>
    <video>
        <default pathversion="1"></default>
        <source>
            <name>Movies</name>
            <path pathversion="1">smb://xyzvideo/Movies/</path>
            <allowsharing>true</allowsharing>
        </source>
        <source>
            <name>Music Videos</name>
            <path pathversion="1">smb://xyz/video/Music Videos/</path>
            <allowsharing>true</allowsharing>
        </source>
        <source>
            <name>TV Shows</name>
            <path pathversion="1">smb://xyz/video/TV Shows/</path>
            <allowsharing>true</allowsharing>
        </source>
    </video>
    <music>
        <default pathversion="1"></default>
        <source>
            <name>music</name>
            <path pathversion="1">smb://xyz/music/</path>
            <allowsharing>true</allowsharing>
        </source>
    </music>
    <pictures>
        <default pathversion="1"></default>
        <source>
            <name>Foto&apos;s (NASSISET)</name>
            <path pathversion="1">smb://xyz/photo/</path>
            <allowsharing>true</allowsharing>
        </source>
    </pictures>
</sources>

No change for that, supported as always in xbmc/kodi they go into /home/osmc/.kodi/userdata/

Thanks!

What is the best way to place the files there? Through ftp, samba or?

SCP is the easiest as the SSH server is already running

SCP… I am going to google that :slight_smile: Thanx
Found it, many thanks!

It all worked!