Search found 7 matches

by Voleure
11 Jun 2022, 16:52
Forum: Episode / Movie Naming Scheme
Topic: How to detect silent movies
Replies: 11
Views: 2191

Re: How to detect silent movies

The.Business.2005.1080p.BluRay.x265-RARBG The.Calculator.2014.RUSSIAN.1080p.BluRay.x265-VXT Godzilla.And.Mothra.The.Battle.For.Earth.1992.JAPANESE.1080p.BluRay.x265-VXT Godzilla.And.Mothra.The.Battle.For.Earth.1992.DUBBED.1080p.BluRay.x265-RARBG The.Circus.1928.REMASTERED.1080p.BluRay.x265-RARBG St...
by Voleure
10 Jun 2022, 14:33
Forum: Episode / Movie Naming Scheme
Topic: How to detect silent movies
Replies: 11
Views: 2191

Re: How to detect silent movies

Sure I will run that for you guys. Just looking through things for a full representation. My guess this is an edge case involving the PLEX macro/expansion with groovy Any in the gui presets. Have a lot on today with the systems will report back later.

Cheers,
Mark
by Voleure
10 Jun 2022, 06:05
Forum: Episode / Movie Naming Scheme
Topic: How to detect silent movies
Replies: 11
Views: 2191

Re: How to detect silent movies

Appreciate the help Noah! Hope the bug is an easy one to squash.
Mark
by Voleure
09 Jun 2022, 23:51
Forum: Episode / Movie Naming Scheme
Topic: How to detect silent movies
Replies: 11
Views: 2191

Re: How to detect silent movies

Ah so the any clause catches the fail in the command line but not in the gui presets... odd i would have thought that was just a shell above the command version. I've just been pasting it in as a preset for convenience. So if it helps the any clause is not trapping the fail in the gui. I will make s...
by Voleure
09 Jun 2022, 23:42
Forum: Episode / Movie Naming Scheme
Topic: How to detect silent movies
Replies: 11
Views: 2191

Re: How to detect silent movies

Hey thanks yes i did all that and pulled some more silent films into the test area. None of the early films return anything from languages or audioLanguages and the any clause doesn't catch it. Tried all the above on both which is why i asked if there was way to throw out debug or trace logs. I adde...
by Voleure
09 Jun 2022, 16:22
Forum: Episode / Movie Naming Scheme
Topic: How to detect silent movies
Replies: 11
Views: 2191

Re: How to detect silent movies

Thanks Noah...I tried that but it still doesn't fall through to end on silent movies :( I used: any{ audioLanguages.size() > 1 ? 'MULTI' : languages[0].name.upper() }{ 'SILENT' } Result: C:\Users\Home>cd /d S:\Media\Movies S:\Media\Movies>dir /b Godzilla vs. Mothra (1992) - [ENGLISH] Godzilla vs. Mo...
by Voleure
08 Jun 2022, 19:40
Forum: Episode / Movie Naming Scheme
Topic: How to detect silent movies
Replies: 11
Views: 2191

How to detect silent movies

Hi I have a simple labeling scheme that separates DUBBED from original language movies but I can't find a way to detect silent movies seems to not have a languages entry or at least i can't seem to detect it programmatically {drive}/Media/Movies/{plex[1]} - [{if (audioLanguages[0] =~ /eng/) return &...