Page 1 of 1

Tag for cinema version, the movie shown in cinema?

Posted: 09 Aug 2016, 11:10
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)?

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

Posted: 09 Aug 2016, 12:35
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?

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

Posted: 09 Aug 2016, 12:51
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.

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

Posted: 09 Aug 2016, 12:55
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?

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

Posted: 09 Aug 2016, 13:08
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])?

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

Posted: 09 Aug 2016, 14:37
by rednoah
When using {tags} it'll automatically match words like Extended or Theatrical Cut from the file path.

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

Posted: 09 Aug 2016, 16:58
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?

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

Posted: 09 Aug 2016, 19:58
by rednoah
Pretty much, but you could also add something like this to your format:

Code: Select all

{file.path =~ /Kinofassung/ ? 'Theatrical Cut' : ''}

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

Posted: 09 Aug 2016, 20:57
by Biff
Alright, thank you, done:

Code: Select all

{n.replace(':', ' -')} ({y}){' CD'+pi}{'.'+lang}{tags}{file.path =~ /Kinofassung/ ? 'Theatrical Cut' : ''}