From 02a9d763cd36017e4abc935525cc0855430cfef8 Mon Sep 17 00:00:00 2001 From: Godzil Date: Fri, 20 Jul 2018 23:40:04 +0100 Subject: [PATCH] Add the episode title in the default file name template. --- src/batch.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/batch.ts b/src/batch.ts index 824a1a2..f7893d9 100644 --- a/src/batch.ts +++ b/src/batch.ts @@ -268,7 +268,7 @@ function parse(args: string[]): IConfigLine .option('-f, --format ', 'The subtitle format.', 'ass') .option('-o, --output ', 'The output path.') .option('-s, --series ', 'The series name override.') - .option('-n, --nametmpl ', 'Output name template', '{SERIES_TITLE} - s{SEASON_NUMBER}e{EPISODE_NUMBER} - [{TAG}]') + .option('-n, --nametmpl ', 'Output name template', '{SERIES_TITLE} - s{SEASON_NUMBER}e{EPISODE_NUMBER} - {EPISODE_TITLE} - [{TAG}]') .option('-t, --tag ', 'The subgroup.', 'CrunchyRoll') .option('-r, --resolution ', 'The video resolution. (valid: 360, 480, 720, 1080)', '1080') .option('-b, --batch ', 'Batch file', 'CrunchyRoll.txt')