mirror of
https://github.com/bellingcat/whisperbox-transcribe.git
synced 2026-06-07 19:18:35 +03:00
8 lines
195 B
Python
8 lines
195 B
Python
import os
|
|
import sys
|
|
from whisper import _download, _MODELS # type: ignore
|
|
|
|
if __name__ == "__main__":
|
|
model_name = sys.argv[1].strip()
|
|
_download(_MODELS[model_name], "/models/", False)
|