jhj0517 commited on
Commit
849f222
·
1 Parent(s): adb050a
Files changed (1) hide show
  1. notebook/whisper-webui.ipynb +3 -3
notebook/whisper-webui.ipynb CHANGED
@@ -70,7 +70,7 @@
70
  "\n",
71
  "USERNAME = '' #@param {type: \"string\"}\n",
72
  "PASSWORD = '' #@param {type: \"string\"}\n",
73
- "DISABLE_FASTER_WHISPER = False #@param {type: \"boolean\"}\n",
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 DISABLE_FASTER_WHISPER:\n",
84
- " arguments += f\" --disable_faster_whisper\"\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)."
 
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)."