But if the episodes within the season have differing vs and vf thenDevs/Season 1 [Bluray 1080p]/Devs - S01E01 - Episode 1
Is that something filebot can do?Devs/Season 1/Devs - S01E01 - Episode 1 [Bluray 1080p]
But if the episodes within the season have differing vs and vf thenDevs/Season 1 [Bluray 1080p]/Devs - S01E01 - Episode 1
Is that something filebot can do?Devs/Season 1/Devs - S01E01 - Episode 1 [Bluray 1080p]
Code: Select all
{n} {model.vc.sort().unique()}/{plex.name}None, let me try again.What {vs} {vf} values do you want in the folder path if there's more than one?
It writes all the video codecs in the processed batch even if they're from other seasons/shows, so do i have to batch process season per season or can it be narrowed down with code?Code: Select all
{n} {model.vc.sort().unique()}/{plex.name}
Code: Select all
model.vc.unique().size() == 1 ? vc : nullCode: Select all
model.findAll{ id == it.id }.vcCode: Select all
{model.findAll{ id == it.id }.collect{ [it.vf, it.vc] }.unique().size() == 1 ? {allOf{vf}{vc}.joining(' ', ' [', ']')} : null}Code: Select all
{model.findAll{ id == it.id && it.s}Code: Select all
model.findAll{ id == it.id }Code: Select all
model.findAll{ id == it.id && s == it.s }Code: Select all
model.findAll{ id == it.id && s == it.s }.every{ it.fn =~ /VOSTFR/ } ? "VOSTFR" : nullCode: Select all
s == it.s