Posts: 4
Joined: Feb 2011
Reputation:
0
Hello all!
Experimenting with this add-on. Really liking it so far, however, I am having trouble getting sfnfo files to work. Can someone please post an example file? I've created one based on the structure shared in this thread about 10 pages back, but when attempting to scan the file the add-on throws errors. So, I assume something is wrong with my structure. Any tips or documentation I should be following.
Thanks!
Posts: 48
Joined: Apr 2015
Reputation:
1
Has anyone had any chance to look into the problem of writing to SMB shares? I have a very large catalog,but my only option for serving is via a SMB share, so I have not had any luck getting this to scan the files.
Posts: 401
Joined: May 2009
Reputation:
7
Can you specify multiple folders that count as "Extras" folders? Like "Extras" but also "Featurettes" etc? ×
Posts: 52
Joined: May 2020
Reputation:
4
Hi Everyone,
I'm trying to use this add-on but facing a peculiar issue.
I'm using a MySQL Centralized Database with Kodi running on 3 devices.
Here is my advancedsettings.xml:
<advancedsettings>
<videodatabase>
<type>mysql</type>
<host>192.168.0.116</host>
<port>3306</port>
<user>kodi</user>
<pass>********</pass>
</videodatabase>
<musicdatabase>
<type>mysql</type>
<host>192.168.0.116</host>
<port>3306</port>
<user>kodi</user>
<pass>********</pass>
</musicdatabase>
<videolibrary>
<importwatchedstate>true</importwatchedstate>
<importresumepoint>true</importresumepoint>
<recentlyaddeditems>50</recentlyaddeditems>
</videolibrary>
<pathsubstitution>
<substitute>
<from>special://profile/Thumbnails/</from>
<to>smb://192.168.0.116/Thumbnails/</to>
</substitute>
</pathsubstitution>
<gui>
<algorithmdirtyregions>0</algorithmdirtyregions>
</gui>
<video>
<excludefromscan action="append">
<regexp>/Extras/</regexp>
<regexp>[\\/]Extras[\\/]</regexp>
</excludefromscan>
<excludetvshowsfromscan action="append">
<regexp>/Extras/</regexp>
<regexp>[\\/]Extras[\\/]</regexp>
</excludetvshowsfromscan>
</video>
</advancedsettings>
Whenever, I'm removing the below code, the add-on is working fine:
<video>
<excludefromscan action="append">
<regexp>/Extras/</regexp>
<regexp>[\\/]Extras[\\/]</regexp>
</excludefromscan>
<excludetvshowsfromscan action="append">
<regexp>/Extras/</regexp>
<regexp>[\\/]Extras[\\/]</regexp>
</excludetvshowsfromscan>
</video>
However, if I'm adding that code, the folder containing my extras (videos) are not opening in the add-on.
I need to add this code otherwise the Extras folders are getting synced in my library.
I tried placing ".nomedia" text files in my extras folder. However, the same issue is happening there also.
I checked my Kodi log also, there is no warning or error.
Please advise.
Thanks,
Shibaji Chattopadhaya.
Posts: 52
Joined: May 2020
Reputation:
4
2020-05-10, 16:36
(This post was last modified: 2020-05-10, 23:06 by Karellen.)
Further to my above post. Now I'm facing another issue. The add-on is not working at all even after removing the code from advancedsettings.xml
Please help!