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
Missing some special Movie Tags
Re: Missing some special Movie Tags
You could do your own matching:
https://regexr.com/
Code: Select all
fn.match(Open.Matte|Silver.Screen.Edition.35mm|...)

-
- Posts: 64
- Joined: 20 May 2017, 17:51
Re: Missing some special Movie Tags
Oh Okay.
Thanks
Thanks
-
- Posts: 64
- Joined: 20 May 2017, 17:51
Re: Missing some special Movie Tags
Hello again,
i´ve Test it on some different Files on my Synology it only works if used it like this:
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
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
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/)}
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/)}
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
Re: Missing some special Movie Tags
Option A:
Option B:
Code: Select all
{fn.matchAll(/SkyActionHD|UHD2BD|Kenzo.TrueHD.Atmos/)}
Code: Select all
{fn.match(/SkyActionHD/)}
{fn.match(/UHD2BD/)}
{fn.match(/Kenzo.TrueHD.Atmos/)}