mirror of
https://github.com/bellingcat/whisperbox-transcribe.git
synced 2026-06-08 03:28:35 +03:00
feat: add whisper tasks
This commit is contained in:
7
scripts/download_model.py
Normal file
7
scripts/download_model.py
Normal file
@@ -0,0 +1,7 @@
|
||||
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)
|
||||
Reference in New Issue
Block a user