This commit is contained in:
2025-06-17 03:15:18 -07:00
parent d0f15d15a8
commit 18aec0b78e
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ song_file_extensions = set([
@click.command()
@click.help_option("--help", "-h")
@click.option('--model', '-m', default='small', help='Which whisper model to use (choices are those of whisper.available_models)')
@click.option('--language', '-l', required=True)
@click.option('--language', '-l', required=True, help='What language the lyrics are in')
@click.argument('directory')
def main(model, language, directory):
print(f"Loading {model} model for use with language {language}...")