From 6c8628e5e1d50f73fc02859ea36051b7ebee7205 Mon Sep 17 00:00:00 2001 From: Luca Armaroli Date: Sat, 19 Sep 2020 23:16:55 +0200 Subject: [PATCH] code cleanup --- src/CommandLineParser.ts | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/src/CommandLineParser.ts b/src/CommandLineParser.ts index f3c3093..44f6b09 100644 --- a/src/CommandLineParser.ts +++ b/src/CommandLineParser.ts @@ -91,28 +91,6 @@ export const argv: any = yargs.options({ default: false, demandOption: false }, - // NOTE: useless - noCleanup: { - alias: 'nc', - describe: 'Do not delete the downloaded video file when an FFmpeg error occurs', - type: 'boolean', - default: false, - demandOption: false - }, - // NOTE: useless - vcodec: { - describe: 'Re-encode video track. Specify FFmpeg codec (e.g. libx265) or set to "none" to disable video.', - type: 'string', - default: 'copy', - demandOption: false - }, - // NOTE: useless - acodec: { - describe: 'Re-encode audio track. Specify FFmpeg codec (e.g. libopus) or set to "none" to disable audio.', - type: 'string', - default: 'copy', - demandOption: false - }, format: { describe: 'Output container format (mkv, mp4, mov, anything that FFmpeg supports)', type: 'string',