Tag for cinema version, the movie shown in cinema?
Tag for cinema version, the movie shown in cinema?
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
Re: Tag for cinema version, the movie shown in cinema?
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?
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
Re: Tag for cinema version, the movie shown in cinema?
The {tags} binding matches these patterns:
Maybe Theatrical Cut is what you want?
Code: Select all
Extended|Uncensored|Remastered|Unrated|Uncut|IMAX|(Director.?s|Theatrical|Ultimate|Final|Rogue|Collectors|Special).(Cut|Edition|Version)
Re: Tag for cinema version, the movie shown in cinema?
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])?
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
Re: Tag for cinema version, the movie shown in cinema?
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?
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
Re: Tag for cinema version, the movie shown in cinema?
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?
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