Update app.py
Browse files
app.py
CHANGED
|
@@ -405,7 +405,7 @@ class App:
|
|
| 405 |
|
| 406 |
@staticmethod
|
| 407 |
def get_transcription(input_params: tuple):
|
| 408 |
-
gr.Dataframe, gr.Files, gr.textbox = self.whisper_inf.transcribe_file(input_params)
|
| 409 |
return gr.Dataframe, gr.Files, gr.textbox
|
| 410 |
|
| 411 |
# Create the parser for command-line arguments
|
|
|
|
| 405 |
|
| 406 |
@staticmethod
|
| 407 |
def get_transcription(input_params: tuple):
|
| 408 |
+
gr.Dataframe, gr.Files, gr.textbox = self.whisper_inf.transcribe_file(*input_params)
|
| 409 |
return gr.Dataframe, gr.Files, gr.textbox
|
| 410 |
|
| 411 |
# Create the parser for command-line arguments
|