Kodi Community Forum
TV Shows not found - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Supplementary Tools for Kodi (https://forum.kodi.tv/forumdisplay.php?fid=116)
+---- Forum: Ember Media Manager (https://forum.kodi.tv/forumdisplay.php?fid=195)
+---- Thread: TV Shows not found (/showthread.php?tid=239889)



TV Shows not found - tigger555 - 2015-09-23

Hi,

I'm using Ember Media Manager 1.4.7.2 and really like it.
For my movies everything works fine, but I have problems to get my TV shows scraped.

I tried several ways to create a working regex for my TV shows (DVD rip) without success.

The folder structure I'm using is always like the following:
M:\Serien\Black Books\Season 02\Black Books S02E02 Fever\VIDEO_TS\VIDEO_TS.IFO

As regex I tried e.g.
Code:
([^\\/]*)\\([^\\/]*)\\([^\\/]*)[Ss]([0-9]+)[ ._-]*[Ee]([0-9]+)([^\\/]*)(?:(?:[\\/]VIDEO_TS)?[\\/]VIDEO_TS\.IFO)$
but no TV show is found.

Please help.


RE: TV Shows not found - DanCooper - 2015-09-24

Episode folders (and in Ember this is an Episode folder) will be supportet in next release 1.4.8.0.
Atm you have no chance that Ember will find your VIDEO_TS file.
Also we have to check your regex.


RE: TV Shows not found - DanCooper - 2015-09-24

Ok, your regex does not work. You don't have escaped the "/", also the first group has to catch the season, the second has to catch the episode number.

But here is the regex from Kodi Wiki, and that one will working in next release:
Code:
[Ss]([0-9]+)[ ._-]*[Ee]([0-9]+)([^\\\/]*)(?:(?:[\\\/]VIDEO_TS)?[\\\/]VIDEO_TS\.IFO)$

You can always check your regex on https://regex101.com


RE: TV Shows not found - tigger555 - 2015-09-24

Hi Dan,

thank you very much for your quick replies. I'm looking forwart to next release.


RE: TV Shows not found - passacaglia - 2015-10-02

I'd like to second the desire for "recursive" TV shows. My folder structure looks like:

> Video
-----> TV
-------------> I, Claudius
---------------------------> I, Claudius S01E01E02E03
------------------------------------> VIDEO_TS
---------------------------> I, Claudius S01E04E05E06
------------------------------------> VIDEO_TS

(etc.)


Right now Ember does not find these files; will this work with 1.4.8?

Thanks.


RE: TV Shows not found - DanCooper - 2015-10-02

(2015-10-02, 04:51)passacaglia Wrote: I'd like to second the desire for "recursive" TV shows. My folder structure looks like:

> Video
-----> TV
-------------> I, Claudius
---------------------------> I, Claudius S01E01E02E03
------------------------------------> VIDEO_TS
---------------------------> I, Claudius S01E04E05E06
------------------------------------> VIDEO_TS

(etc.)


Right now Ember does not find these files; will this work with 1.4.8?

Thanks.

It will works with 1.4.8.0 if you add the regex for VIDEO_TS structure.


RE: TV Shows not found - Chrolm - 2017-01-10

Sorry for necromancing a thread - but I'm trying to do this in 1.4.8.0 alpha 23 (x64). I simply cannot get EMM to see the DVD folders with TV shows in them. This is the log for testing:

Code:
2017-01-09 14:16:34.8017,EmberAPI.Scanner,EmberAPI.Scanner.IsValidDir,16,INFO,"[Sanner] [IsValidDir] [NotValidDirIs] Path ""\\192.168.1.250\test\Better Off Ted\Better Off Ted.S01E01E02E03E04E05E06E07E08\VIDEO_TS"" has been skipped (path name is ""video_ts"")",
2017-01-09 14:16:34.8017,EmberAPI.Scanner,EmberAPI.Scanner.IsValidDir,16,INFO,"[Sanner] [IsValidDir] [NotValidDirIs] Path ""\\192.168.1.250\test\Better Off Ted\Better Off Ted.S01E09E10E11E12E13E14E15\VIDEO_TS"" has been skipped (path name is ""video_ts"")",
2017-01-09 14:16:34.8107,EmberAPI.ModulesManager,EmberAPI.ModulesManager.RunGeneric,1,TRACE,[ModulesManager] [RunGeneric] [Start] <AfterUpdateDB_TV>,
2017-01-09 14:16:34.8107,EmberAPI.ModulesManager,EmberAPI.ModulesManager.RunGeneric,1,WARN,[ModulesManager] [RunGeneric] No generic modules defined <AfterUpdateDB_TV>,

I've added the regex in TV Shows->Files&Sources->RegEx:

Code:
[Ss]([0-9]+)[ ._-]*[Ee]([0-9]+)([^\\\/]*)(?:(?:[\\\/]VIDEO_TS)?[\\\/]VIDEO_TS\.IFO)$

I have no directories under Settings->File System->Excluded Directories.


RE: TV Shows not found - DanCooper - 2017-01-10

(2017-01-10, 00:26)Chrolm Wrote: Sorry for necromancing a thread - but I'm trying to do this in 1.4.8.0 alpha 23 (x64). I simply cannot get EMM to see the DVD folders with TV shows in them. This is the log for testing:

Code:
2017-01-09 14:16:34.8017,EmberAPI.Scanner,EmberAPI.Scanner.IsValidDir,16,INFO,"[Sanner] [IsValidDir] [NotValidDirIs] Path ""\\192.168.1.250\test\Better Off Ted\Better Off Ted.S01E01E02E03E04E05E06E07E08\VIDEO_TS"" has been skipped (path name is ""video_ts"")",
2017-01-09 14:16:34.8017,EmberAPI.Scanner,EmberAPI.Scanner.IsValidDir,16,INFO,"[Sanner] [IsValidDir] [NotValidDirIs] Path ""\\192.168.1.250\test\Better Off Ted\Better Off Ted.S01E09E10E11E12E13E14E15\VIDEO_TS"" has been skipped (path name is ""video_ts"")",
2017-01-09 14:16:34.8107,EmberAPI.ModulesManager,EmberAPI.ModulesManager.RunGeneric,1,TRACE,[ModulesManager] [RunGeneric] [Start] <AfterUpdateDB_TV>,
2017-01-09 14:16:34.8107,EmberAPI.ModulesManager,EmberAPI.ModulesManager.RunGeneric,1,WARN,[ModulesManager] [RunGeneric] No generic modules defined <AfterUpdateDB_TV>,

I've added the regex in TV Shows->Files&Sources->RegEx:

Code:
[Ss]([0-9]+)[ ._-]*[Ee]([0-9]+)([^\\\/]*)(?:(?:[\\\/]VIDEO_TS)?[\\\/]VIDEO_TS\.IFO)$

I have no directories under Settings->File System->Excluded Directories.

Any full path sample?

Edit: just tested and yes, it does not work out-of-the box. The regex is ok, but as default Ember do skip VIDEO_TS for tv shows. Try to add this to the AdvancedSettings.xml ("video_ts" has been removed):

Code:
<Setting Section="*EmberAPP" Content="None" Name="NotValidDirIs" DefaultValue="">.actors|extrafanart|extrathumbs|bdmv|audio_ts|recycler|subs|subtitles|.trashes</Setting>

I'm not shure if this is enough to fix the bug. I'll fix that in next release.


RE: TV Shows not found - Chrolm - 2017-01-10

Thanks Dan! Nice to know it wasn't just me. Anyway, tried the advancedsettings.xml you proposed, but that made EMM add every single file under video_ts as each and every episode - i.e. ~30x S01E01, ~30x S01E02 and so forth. The log is here: https://dl.dropboxusercontent.com/u/472497248/ember-2017-01-09.csv

I'll await next release before trying to add the dvd tv folders. Smile


RE: TV Shows not found - DanCooper - 2017-01-14

Alpha 24 will have full VIDEO_TS and BDMV support for tv show/episodes. Tested and working :-)


RE: TV Shows not found - pfp-az - 2017-03-07

(2017-01-14, 02:15)DanCooper Wrote: Alpha 24 will have full VIDEO_TS and BDMV support for tv show/episodes. Tested and working :-)

By any chance did Alpha 24 get renamed to Alpha 23.1?


RE: TV Shows not found - DanCooper - 2017-03-07

Nope :-P
24 will be 24... or 1.9.0.0