Skip to content

Commit

Permalink
Merge pull request #187 from jhj0517/fix/colab-requirements
Browse files Browse the repository at this point in the history
Fix arg
  • Loading branch information
jhj0517 authored Jun 28, 2024
2 parents 6211b24 + 849f222 commit 960b0fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions notebook/whisper-webui.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"\n",
"USERNAME = '' #@param {type: \"string\"}\n",
"PASSWORD = '' #@param {type: \"string\"}\n",
"DISABLE_FASTER_WHISPER = False #@param {type: \"boolean\"}\n",
"WHISPER_TYPE = 'faster-whisper' #@param {type: \"string\"}\n",
"THEME = '' #@param {type: \"string\"}\n",
"\n",
"arguments = \"\"\n",
Expand All @@ -80,8 +80,8 @@
" arguments += f\" --password {PASSWORD}\"\n",
"if THEME:\n",
" arguments += f\" --theme {THEME}\"\n",
"if DISABLE_FASTER_WHISPER:\n",
" arguments += f\" --disable_faster_whisper\"\n",
"if WHISPER_TYPE:\n",
" arguments += f\" --whisper_type {WHISPER_TYPE}\"\n",
"\n",
"\n",
"#@markdown If you wonder how these arguments are used, you can see the [Wiki](https://github.com/jhj0517/Whisper-WebUI/wiki/Command-Line-Arguments)."
Expand Down

0 comments on commit 960b0fb

Please sign in to comment.