LAP-DEV commited on
Commit
a3bea99
·
verified ·
1 Parent(s): b1547e5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -97,11 +97,14 @@ class App:
97
  dd_lang = gr.Dropdown(choices=["Automatic Detection"] + self.whisper_inf.available_langs,value=whisper_params["lang"], label="Language", info="If the language is known upfront, always set it manually")
98
  #dd_file_format = gr.Dropdown(choices=["SRT", "WebVTT", "txt"], value="SRT", label="File Format")
99
  dd_file_format = gr.Dropdown(choices=["SRT", "txt"], value="txt", label="Output format", visible=True)
 
 
 
100
  cb_translate = gr.Checkbox(value=whisper_params["is_translate"], label="Translate to English",interactive=True)
101
  cb_timestamp = gr.Checkbox(value=whisper_params["add_timestamp"], label="Add timestamp to output file",interactive=True, visible=False)
102
-
103
  with gr.Accordion("Diarization options", open=False):
104
- cb_diarize = gr.Checkbox(value=diarization_params["is_diarize"], label="Speaker diarization",interactive=True)
105
  tb_hf_token = gr.Text(label="HuggingFace Token", value=diarization_params["hf_token"],
106
  info="This is only needed the first time you download the model. If you already have"
107
  " models, you don't need to enter. To download the model, you must manually go "
 
97
  dd_lang = gr.Dropdown(choices=["Automatic Detection"] + self.whisper_inf.available_langs,value=whisper_params["lang"], label="Language", info="If the language is known upfront, always set it manually")
98
  #dd_file_format = gr.Dropdown(choices=["SRT", "WebVTT", "txt"], value="SRT", label="File Format")
99
  dd_file_format = gr.Dropdown(choices=["SRT", "txt"], value="txt", label="Output format", visible=True)
100
+
101
+ with gr.Row():
102
+ cb_diarize = gr.Checkbox(value=diarization_params["is_diarize"], label="Speaker diarization (Token required)",interactive=True)
103
  cb_translate = gr.Checkbox(value=whisper_params["is_translate"], label="Translate to English",interactive=True)
104
  cb_timestamp = gr.Checkbox(value=whisper_params["add_timestamp"], label="Add timestamp to output file",interactive=True, visible=False)
105
+
106
  with gr.Accordion("Diarization options", open=False):
107
+
108
  tb_hf_token = gr.Text(label="HuggingFace Token", value=diarization_params["hf_token"],
109
  info="This is only needed the first time you download the model. If you already have"
110
  " models, you don't need to enter. To download the model, you must manually go "