Spaces:
Sleeping
Sleeping
eaglelandsonce
commited on
Commit
•
204ee93
1
Parent(s):
edcf95f
Update app.py
Browse files
app.py
CHANGED
@@ -53,13 +53,13 @@ with gr.Blocks() as demo:
|
|
53 |
|
54 |
with gr.Tab('Upload MP4 for Transcription'):
|
55 |
with gr.Row():
|
56 |
-
input_file = gr.
|
57 |
output_text_file = gr.Textbox(placeholder='Transcription of the video', label='Transcription')
|
58 |
result_button_file = gr.Button('Get Transcription from File')
|
59 |
|
60 |
with gr.Tab('Summary from Uploaded MP4'):
|
61 |
with gr.Row():
|
62 |
-
input_file_summary = gr.
|
63 |
output_text_file_summary = gr.Textbox(placeholder='Summary text of the video', label='Summary')
|
64 |
result_button_file_summary = gr.Button('Get Summary from File')
|
65 |
|
|
|
53 |
|
54 |
with gr.Tab('Upload MP4 for Transcription'):
|
55 |
with gr.Row():
|
56 |
+
input_file = gr.File(label='Upload MP4')
|
57 |
output_text_file = gr.Textbox(placeholder='Transcription of the video', label='Transcription')
|
58 |
result_button_file = gr.Button('Get Transcription from File')
|
59 |
|
60 |
with gr.Tab('Summary from Uploaded MP4'):
|
61 |
with gr.Row():
|
62 |
+
input_file_summary = gr.File(label='Upload MP4')
|
63 |
output_text_file_summary = gr.Textbox(placeholder='Summary text of the video', label='Summary')
|
64 |
result_button_file_summary = gr.Button('Get Summary from File')
|
65 |
|