Thanks for that great reply chewitt. Ahh, XML, a bit closer to what I'm used to, but I'm still no expert.
Just to check then, to make sure that my file structure fits what's needed, am I right in thinking that the following XML will link to the main sources of what I've got stored?
<sources>
<video>
<default pathversion="1"></default>
<source>
<name>TV</name>
<path pathversion="1">smb://username:password@DISKSTATION/Video/</path>
<allowsharing>true</allowsharing>
</source>
<source>
<name>Concerts</name>
<path pathversion="1">smb://username:password@DISKSTATION/Video/Concerts/</path>
<allowsharing>true</allowsharing>
</source>
<source>
<name>Movies</name>
<path pathversion="1">smb://username:password@DISKSTATION/Video/My%20Films/</path>
<allowsharing>true</allowsharing>
</source>
</video>
</sources>
<?xml version="1.0" encoding="utf-8" ?>
<sources>
<music>
<default pathversion="1"></default>
<source>
<name>Music</name>
<path pathversion="1">smb://username:password@DISKSTATION/music/</path>
<allowsharing>true</allowsharing>
</source>
</music>
</sources>
Display More
For info, the paths to my files are:
DISKSTATION/music (then usually /artist/album/song.mp3 but also /compilations/year/album/song.mp3)
DISKSTATION/Videos (then either /Title/Season/episode.mp4 OR (as an example) /Star Trek/Discovery/Season/Epiosode.mp4) for my TV Series
DISKSTATION/Videos/Concerts/title.mp4
DISKSTATION/Videos/My Films (then either /title.mp4 OR (as an example) /Star Wars/title.mp4) for my Movies
Am I right in thinking that XML needs %20 to represent a space in the directory name? (the "My Films" case in point)
So would I need to specify every single path or will the system pick up on what's there when it scans? I say that as the Synology Video Station does successfully scan what I have so I'm hoping that Kodi will be just as clever.