mirror of
https://github.com/bellingcat/whisperbox-transcribe.git
synced 2026-06-11 13:08:35 +03:00
8 lines
191 B
Python
8 lines
191 B
Python
import sys
|
|
from whisper import _download, _MODELS # type: ignore
|
|
|
|
if __name__ == "__main__":
|
|
args = sys.argv[1:]
|
|
for name in args:
|
|
_download(_MODELS[name], "/models/", False)
|