noob question, add year to series name
noob question, add year to series name
I've searched and can't seem to find what i'm looking for. is there a way to modify the formatting in the amc script to add the year to the series name. So instead of finding and making a folder named "Watchmen" it creates a folder "Watchmen (2019)"?
Re: noob question, add year to series name
Yes, the {ny} name/year binding will do that for you:
Code: Select all
{ny}
Re: noob question, add year to series name
what if you want an alias/alternative title? I used this:
Just wondering if there's a better way.
Code: Select all
{alias[0]}{' ('}{y}{')'}
Re: noob question, add year to series name
I'd rewrite the parenthesis at the very least:
Note that alias[0] is not a specific alias name. If you test this format on many movies / shows then you will find that you sometimes don't get the alias name you want. I'd probably use something more predictable like primaryTitle which gives you the movie / series name in the original language.
Format: Select all
{alias[0]} ({y})

Re: noob question, add year to series name
Thanks for the tip on the parenthesis. Primary Title didn't return the name I wanted for the TV show. I think the TMDB page is "wrong".
Re: noob question, add year to series name

Re: noob question, add year to series name
This is the show:
https://www.themoviedb.org/tv/4241-8-si ... e-daughter
I wanted the original title, which TMDB has listed as an alt "8 Simple Rules... for Dating My Teenage Daughter. They have the original name as "8 Simple Rules" which is what the show was renamed to in season 3.
https://www.themoviedb.org/tv/4241-8-si ... e-daughter
I wanted the original title, which TMDB has listed as an alt "8 Simple Rules... for Dating My Teenage Daughter. They have the original name as "8 Simple Rules" which is what the show was renamed to in season 3.
Re: noob question, add year to series name

Code: Select all
[8 прости правила, 8 Simple Rules ..., A Few Simple Rules, Few Simple Rules, 8 jednoduchých pravidiel, 8 Regrinhas Básicas... para Namorar Minhas Filhas Adolescentes, 8 reguli simple, 8 semplici regole... per uscire con mia figlia, 8 простых правил для друга моей дочери-подростка, 8 простых правил для друга моей дочериподростка, Meine wilden Töchter, Meine wilden Toechter, No con mis hijas, Pimaszok, avagy kamaszba nem üt a mennykő, Pimaszok avagy kamaszba nem uet a mennykő, Teinitytön kasvatusopas, Teinitytoen kasvatusopas, Touche pas à mes filles, Осем прости правила, 八项注意之泡我女儿没那么容易, 8 Simple Rules for Dating My Teenage Daughter, 8 Simple Rules... for Dating My Teenage Daughter]
Format: Select all
{ alias[-1] }


e.g. use character replacement
Format: Select all
{
n.replace(
'8 Simple Rules' : '8 Simple Rules... for Dating My Teenage Daughter',
)
}