Hi
Thanks for the responses. I only accessthe forum every few days hence the delay.
I have 2 things to mention. First I noticed that there is a seperate forum group for the 320L and mine is a 320L - so Should have posted there?
Also philphil61 -please pm the detiails - I will have alook and get back to you. Specifically when u say install kodi - you mean on all accessing devices surenot on the NAS dont you.
Finally as Imentioned I wanted to put all my music and photos and videos on the NAS and view them from the phone or table. In terms of Music/Videos I was hoping that I could stream them from the NAS - not actuall download them from NAS to phone in order to play them. Is this possible?
Thanks
There's no way (as yet) to get Kodi installed on the 320L
Only the database needs to be on the NAS ( centralized database )
Each device you want to stream to (or download) will need the
same version of Kodi
( why the same version? if you update kodi or install a different version it creates a different database (version specific) folder )
Why my setup - I download most of my media on my pc then move to relevant folder on 320L - when I power up any device (with kodi installed) and start kodi it is set to auto update media folders.
I have recently found (and currently testing 2 addons that can be set to update same folders at either specific time or when a media folder receives new content.
Just try it - download Kodi and install on a device
Install phpmyadmin onto 320L
Create a folders on 320L called Thumbs
Open Notepad - copy the following and complete the fields
<advancedsettings>
<videodatabase>
<type>mysql</type>
<host>IP of your 320L</host>
<port>3306</port>
<user>xbmc</user>
<pass>xbmc</pass>
<name>xbmc_video</name>
</videodatabase>
<musicdatabase>
<type>mysql</type>
<host>IP of your 320L</host>
<port>3306</port>
<user>xbmc</user>
<pass>xbmc</pass>
<name>xbmc_music</name>
</musicdatabase>
<videolibrary>
<importwatchedstate>true</importwatchedstate>
<importresumepoint>true</importresumepoint>
</videolibrary>
<pathsubstitution>
<substitute>
<from>special://profile/Thumbnails/</from>
<to>smb:// Location of Thumbs </to>
</substitute>
</pathsubstitution>
</advancedsettings>
save as advancedsettings.xml in Userdata folder of device with kodi (use this same file on other devices with kodi
You also need to create a sources.xml similar to below - depending on folder names / location etc
<sources>
<programs>
<default pathversion="1"></default>
</programs>
<video>
<default pathversion="1"></default>
<source>
<name>My Videos</name>
<path pathversion="1">smb://DLINK-?????/Volume_1/My Videos/</path>
<allowsharing>true</allowsharing>
</source>
<source>
<name>My TV Recordings</name>
<path pathversion="1">smb://DLINK-?????/Volume_1/My TV Recordings/</path>
<allowsharing>true</allowsharing>
</source>
</video>
<music>
<default pathversion="1">My Music</default>
<source>
<name>My Music</name>
<path pathversion="1">smb://DLINK-?????/Volume_1/My Music\</path>
<allowsharing>true</allowsharing>
</source>
</music>
<pictures>
<default pathversion="1"></default>
</pictures>
</sources>
and place in same folder
When all is done - let the system update/scan for content - it will take hours (if you've got loads of media already )but once all done it'll take minutes just to scan and update new content
HTH