Spaces:
Sleeping
Sleeping
Update app.py
Browse filesadding the instructions to run the app
app.py
CHANGED
@@ -88,9 +88,9 @@ def upload_file(files): # the actual translation should happen here
|
|
88 |
with gr.Blocks() as demo:
|
89 |
gr.Markdown( "# V2T Engine" )
|
90 |
with gr.Accordion("Steps to run the App"):
|
91 |
-
gr.Markdown("1. Click
|
92 |
-
gr.Markdown("2. The audio will
|
93 |
-
gr.Markdown("3. ")
|
94 |
|
95 |
upload_button = gr.UploadButton("Click to Upload a File", file_types=["audio"], file_count="single")
|
96 |
df_output = gr.Dataframe(
|
|
|
88 |
with gr.Blocks() as demo:
|
89 |
gr.Markdown( "# V2T Engine" )
|
90 |
with gr.Accordion("Steps to run the App"):
|
91 |
+
gr.Markdown("1. Click \"Click to Upload a File\" to open a dialog box and browse your local files.")
|
92 |
+
gr.Markdown("2. The uploaded audio will be transcribed in the original language and translated into English.")
|
93 |
+
gr.Markdown("3. The transcriptions and translations will be displayed in a table, which is how they will be stored in the database.")
|
94 |
|
95 |
upload_button = gr.UploadButton("Click to Upload a File", file_types=["audio"], file_count="single")
|
96 |
df_output = gr.Dataframe(
|