TV Shows not found
#1
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.
Reply
#2
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.
Reply
#3
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
Reply
#4
Hi Dan,

thank you very much for your quick replies. I'm looking forwart to next release.
Reply
#5
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.
Reply
#6
(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.
Reply
#7
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.
Reply
#8
(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.
Reply
#9
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/4724...-01-09.csv

I'll await next release before trying to add the dvd tv folders. Smile
Reply
#10
Alpha 24 will have full VIDEO_TS and BDMV support for tv show/episodes. Tested and working :-)
Reply
#11
(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?
Reply
#12
Nope :-P
24 will be 24... or 1.9.0.0
Reply

Logout Mark Read Team Forum Stats Members Help
TV Shows not found0