Whisper-WebUI
Whisper-WebUI copied to clipboard
Load files from local
Is it possible to load videos in local storage not uploading?? i use colab and it's taking so long time to upload large videos... i want a direct way to use it
Hi @moonjy1120 , It seems that this feature would only be used in Colab,
So I should probably add an argument like --is_colab_user and use it.
"Input Folder Path" component added.
It will read all media files in the folder and transcribe if it's not empty.
Note that this tab only appears if you use --colab args when starting the WebUI.
For example, if you are using the Docker, the command would be :
docker run --gpus all -d `
-v /path/to/models:/Whisper-WebUI/models `
-v /path/to/outputs:/Whisper-WebUI/outputs `
-p 7860:7860 `
-it `
whisper-webui:latest --server_name 0.0.0.0 --server_port 7860 --colab
You need to add --colab arg.
Plesae feel free to re-open if you face any problem