Missing some special Movie Tags

All about user-defined episode / movie / file name format expressions
Post Reply
Predator2912
Posts: 64
Joined: 20 May 2017, 17:51

Missing some special Movie Tags

Post by Predator2912 »

Hello

I miss some "special" movie tags and wanted to ask if you can add some or all of those tags.

Open Matte
Silver Screen Edition and/or Silver Screen Edition 35mm
THEATRICAL and THEATRICAL Cut
SkyActionHD
Special Uncut Langfassung / Special Uncut Long Version
Remastered Eureka
Ultimate Hunter Edition
Ultimate Unrated Edition
Ultimate Uncut Edition
Full Sequence UNRATED
FANCUT untouched
FANCUT Edition
Unrated Criterion Collection
Criterion Collection
Remastered Shout Factory
Bluray Collector’s Edition (Restored Master)
Collector’s Edition
UHD2BD
REGRADED PROPER
SHOUT FACTORY 2K SCAN
Restaurierte Fassung / Restored Version
4K-Remastered
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Missing some special Movie Tags

Post by rednoah »

You could do your own matching:

Code: Select all

fn.match(Open.Matte|Silver.Screen.Edition.35mm|...)
:arrow: https://regexr.com/
:idea: Please read the FAQ and How to Request Help.
Predator2912
Posts: 64
Joined: 20 May 2017, 17:51

Re: Missing some special Movie Tags

Post by Predator2912 »

Oh Okay.

Thanks
Predator2912
Posts: 64
Joined: 20 May 2017, 17:51

Re: Missing some special Movie Tags

Post by Predator2912 »

Hello again,

i´ve Test it on some different Files on my Synology it only works if used it like this:

Code: Select all

{'fn.match(/SkyActionHD|UHD2BD|Kenzo.TrueHD.Atmos/)}
without the / it doesn't work and i became the Error:
ScriptException: SyntaxError: unexpected token: 35

Now i used this and it works fine for me

Code: Select all

{'-'+fn.match(/SkyActionHD|UHD2BD|Kenzo.TrueHD.Atmos/)}
But if I have more then one tags in a filename, he will only find the first one or just take that one.
How should I use it to get all the tags I'm looking for?

For example:

UHD2BD.DTS.XLL.7.1.by.Kenzo.TrueHD.Atmos.7.1.DL.1080p.x264

The fn.match only used UHD2BD in the renaming File and ignore Kenzo.TrueHD.Atmos
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Missing some special Movie Tags

Post by rednoah »

Option A:

Code: Select all

{fn.matchAll(/SkyActionHD|UHD2BD|Kenzo.TrueHD.Atmos/)}
Option B:

Code: Select all

{fn.match(/SkyActionHD/)}
{fn.match(/UHD2BD/)}
{fn.match(/Kenzo.TrueHD.Atmos/)}
:idea: Please read the FAQ and How to Request Help.
Post Reply