Tag for cinema version, the movie shown in cinema?

Support for Windows users
Post Reply
Biff
Posts: 241
Joined: 02 Mar 2014, 17:52

Tag for cinema version, the movie shown in cinema?

Post by Biff »

Is there a tag one can use for the cinema version,so the movie shown in cinema (not the extended edition, uncut, etc. but the version of the movie which is shown in a cinema)?
Newest portable, stable FileBot, Windows 10 Home, 64bit
User avatar
rednoah
The Source
Posts: 23004
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Tag for cinema version, the movie shown in cinema?

Post by rednoah »

No idea. The {tags} binding doesn't match anything like that. How would you determine if a given movie file is the version they played in the cinema?
:idea: Please read the FAQ and How to Request Help.
Biff
Posts: 241
Joined: 02 Mar 2014, 17:52

Re: Tag for cinema version, the movie shown in cinema?

Post by Biff »

I have any idea myself how to determine / call such a tag / version. I hat thought, there would / must be a common tag / term that could be recognized by a scraper like "extended", "uncut", "director's cut" or so. As there very often are versions cut / made for the cinema, shown only there I had supposed there must be a tag, but obviously it is not distinguished between a version shown in a cinema and other ones.
Newest portable, stable FileBot, Windows 10 Home, 64bit
User avatar
rednoah
The Source
Posts: 23004
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Tag for cinema version, the movie shown in cinema?

Post by rednoah »

The {tags} binding matches these patterns:

Code: Select all

Extended|Uncensored|Remastered|Unrated|Uncut|IMAX|(Director.?s|Theatrical|Ultimate|Final|Rogue|Collectors|Special).(Cut|Edition|Version)
Maybe Theatrical Cut is what you want?
:idea: Please read the FAQ and How to Request Help.
Biff
Posts: 241
Joined: 02 Mar 2014, 17:52

Re: Tag for cinema version, the movie shown in cinema?

Post by Biff »

Ah yes, that sounds very good, it must be Theatrical Cut. I had totally forgotten it.

Do I have to add this
Extended|Uncensored|Remastered|Unrated|Uncut|IMAX|(Director.?s|Theatrical|Ultimate|Final|Rogue|Collectors|Special).(Cut|Edition|Version)
to
{n.replace(':', ' -')} ({y}){' CD'+pi}{'.'+lang}{tags}
or does it automatically use the those tags (e.g. "extended" is automatically added to the file name that way: [Extended])?
Newest portable, stable FileBot, Windows 10 Home, 64bit
User avatar
rednoah
The Source
Posts: 23004
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Tag for cinema version, the movie shown in cinema?

Post by rednoah »

When using {tags} it'll automatically match words like Extended or Theatrical Cut from the file path.
:idea: Please read the FAQ and How to Request Help.
Biff
Posts: 241
Joined: 02 Mar 2014, 17:52

Re: Tag for cinema version, the movie shown in cinema?

Post by Biff »

That's great, so when in the file or folder name the tag "Kinofassung" occurs I just need to enter "Theatrical Cut" to the file name and then let FileBot rename it?
Newest portable, stable FileBot, Windows 10 Home, 64bit
User avatar
rednoah
The Source
Posts: 23004
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Tag for cinema version, the movie shown in cinema?

Post by rednoah »

Pretty much, but you could also add something like this to your format:

Code: Select all

{file.path =~ /Kinofassung/ ? 'Theatrical Cut' : ''}
:idea: Please read the FAQ and How to Request Help.
Biff
Posts: 241
Joined: 02 Mar 2014, 17:52

Re: Tag for cinema version, the movie shown in cinema?

Post by Biff »

Alright, thank you, done:

Code: Select all

{n.replace(':', ' -')} ({y}){' CD'+pi}{'.'+lang}{tags}{file.path =~ /Kinofassung/ ? 'Theatrical Cut' : ''}
Newest portable, stable FileBot, Windows 10 Home, 64bit
Post Reply