Spaces:
Running
Running
Merge pull request #187 from jhj0517/fix/colab-requirements
Browse files
notebook/whisper-webui.ipynb
CHANGED
|
@@ -70,7 +70,7 @@
|
|
| 70 |
"\n",
|
| 71 |
"USERNAME = '' #@param {type: \"string\"}\n",
|
| 72 |
"PASSWORD = '' #@param {type: \"string\"}\n",
|
| 73 |
-
"
|
| 74 |
"THEME = '' #@param {type: \"string\"}\n",
|
| 75 |
"\n",
|
| 76 |
"arguments = \"\"\n",
|
|
@@ -80,8 +80,8 @@
|
|
| 80 |
" arguments += f\" --password {PASSWORD}\"\n",
|
| 81 |
"if THEME:\n",
|
| 82 |
" arguments += f\" --theme {THEME}\"\n",
|
| 83 |
-
"if
|
| 84 |
-
" arguments += f\" --
|
| 85 |
"\n",
|
| 86 |
"\n",
|
| 87 |
"#@markdown If you wonder how these arguments are used, you can see the [Wiki](https://github.com/jhj0517/Whisper-WebUI/wiki/Command-Line-Arguments)."
|
|
|
|
| 70 |
"\n",
|
| 71 |
"USERNAME = '' #@param {type: \"string\"}\n",
|
| 72 |
"PASSWORD = '' #@param {type: \"string\"}\n",
|
| 73 |
+
"WHISPER_TYPE = 'faster-whisper' #@param {type: \"string\"}\n",
|
| 74 |
"THEME = '' #@param {type: \"string\"}\n",
|
| 75 |
"\n",
|
| 76 |
"arguments = \"\"\n",
|
|
|
|
| 80 |
" arguments += f\" --password {PASSWORD}\"\n",
|
| 81 |
"if THEME:\n",
|
| 82 |
" arguments += f\" --theme {THEME}\"\n",
|
| 83 |
+
"if WHISPER_TYPE:\n",
|
| 84 |
+
" arguments += f\" --whisper_type {WHISPER_TYPE}\"\n",
|
| 85 |
"\n",
|
| 86 |
"\n",
|
| 87 |
"#@markdown If you wonder how these arguments are used, you can see the [Wiki](https://github.com/jhj0517/Whisper-WebUI/wiki/Command-Line-Arguments)."
|