Code: Select all
Y:/Regions/{info.productionCountries}Noir/{10 * (int)(y/10)}s/{n} ({director}, {y})
Y:/Regions/America/Noir/1940s/A Stolen Life (Curtis Bernhardt, 1946).avi
Code: Select all
Y:/Regions/{info.productionCountries}Noir/{10 * (int)(y/10)}s/{n} ({director}, {y})

Code: Select all
{info.productionCountries*.replace(/US/,'America').join()}Code: Select all
Y:/Regions/{info.productionCountries*.replace(/US/,'America/').join()}/Noir/{10 * (int)(y/10)}s/{n} ({director}, {y})Code: Select all
Y:/Regions/{info.productionCountries.contains(/US/) ? 'America' : 'Non-America'}/Noir/{10 * (int)(y/10)}s/{n} ({director}, {y})I though the following just meant Filebot made a poor match:rednoah wrote: 10 Apr 2018, 17:03You'll need to use Movie Mode ➔ TheMovieDB when processing Movies, and not Episode Mode.
rednoah wrote: 10 Apr 2018, 17:03 The screenshot above clearly shows an Episode match, and not a Movie match. Bindings such as {director} are undefined / null for Episode type objects and only work for Movie type objects.