#@title # (Optional) Configure arguments
#@markdown This section is used to configure some command line arguments.
#@markdown You can simply ignore this section and the default values will be used.
USERNAME = '' #@param {type: "string"}
PASSWORD = '' #@param {type: "string"}
DISABLE_FASTER_WHISPER = False #@param {type: "boolean"}
THEME = '' #@param {type: "string"}
arguments = ""
if USERNAME:
arguments += f" --username {USERNAME}"
if PASSWORD:
arguments += f" --password {PASSWORD}"
if THEME:
arguments += f" --theme {THEME}"
if DISABLE_FASTER_WHISPER:
arguments += f" --disable_faster_whisper"
#@markdown If you wonder how these arguments are used, you can see the [Wiki](https://github.com/jhj0517/Whisper-WebUI/wiki/Command-Line-Arguments).