Spaces:
Runtime error
Runtime error
storresbusquets
commited on
Commit
·
6518c39
1
Parent(s):
b4a8eca
Update app.py
Browse files
app.py
CHANGED
@@ -115,4 +115,14 @@ with block as demo:
|
|
115 |
btn.click(transcribe_audio, inputs=[audio_file], outputs=[text])
|
116 |
# link.change(gio.populate_metadata, inputs=[link], outputs=[img, title])
|
117 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
demo.launch()
|
|
|
115 |
btn.click(transcribe_audio, inputs=[audio_file], outputs=[text])
|
116 |
# link.change(gio.populate_metadata, inputs=[link], outputs=[img, title])
|
117 |
|
118 |
+
gr.Markdown("About the app:")
|
119 |
+
|
120 |
+
with gr.Accordion("What is YouTube Insights?"):
|
121 |
+
gr.Markdown("YouTube Insights is a tool developed with academic purposes only, that creates summaries, keywords and sentiments analysis based on YouTube videos or user audio files.")
|
122 |
+
|
123 |
+
with gr.Accordion("How does it work?"):
|
124 |
+
gr.Markdown("Works by using OpenAI's Whisper, DistilBART for summarization and VoiceLabT5 for Keyword Extraction.")
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
demo.launch()
|