You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser.add_argument("--output_dir", "-o", type=str, default=".", help="directory to save the outputs")
24
25
parser.add_argument("--output_format", "-f", type=str, default="all", choices=["all", "srt", "vtt", "txt", "tsv", "json", "aud"], help="format of the output file; if not specified, all available formats will be produced")
25
26
parser.add_argument("--verbose", type=str2bool, default=True, help="whether to print out the progress and debug messages")
parser.add_argument("--task", type=str, default="transcribe", choices=["transcribe", "translate"], help="whether to perform X->X speech recognition ('transcribe') or X->English translation ('translate')")
28
30
parser.add_argument("--language", type=str, default=None, choices=sorted(LANGUAGES.keys()) +sorted([k.title() forkinTO_LANGUAGE_CODE.keys()]), help="language spoken in the audio, specify None to perform language detection")
0 commit comments