From 0c3d8ce6e34778e038a689b57c43db461fc6a67f Mon Sep 17 00:00:00 2001 From: Karl Date: Mon, 8 Jan 2024 12:30:59 +0000 Subject: [PATCH] no need for output param --- auto_subtitle/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/auto_subtitle/cli.py b/auto_subtitle/cli.py index e1ec10b..8c5f0dd 100644 --- a/auto_subtitle/cli.py +++ b/auto_subtitle/cli.py @@ -29,8 +29,8 @@ def main(): "int16", "float16", "bfloat16", "float32"], help="Type to use for computation. \ See https://opennmt.net/CTranslate2/quantization.html.") - parser.add_argument("--output_dir", "-o", type=str, - default=".", help="directory to save the outputs") + # parser.add_argument("--output_dir", "-o", type=str, + # default=".", help="directory to save the outputs") parser.add_argument("--output_srt", type=str2bool, default=False, help="whether to output the .srt file along with the video files") parser.add_argument("--srt_only", type=str2bool, default=False,