Update app.py
Browse files
app.py
CHANGED
|
@@ -1621,12 +1621,14 @@ def create_gradio_interface():
|
|
| 1621 |
gr.Markdown("#### π΅ Generated Podcast")
|
| 1622 |
|
| 1623 |
podcast_audio_player = gr.Audio(
|
| 1624 |
-
label="",
|
| 1625 |
type="filepath",
|
| 1626 |
interactive=False,
|
| 1627 |
autoplay=True,
|
| 1628 |
container=False
|
|
|
|
| 1629 |
)
|
|
|
|
| 1630 |
|
| 1631 |
with gr.Accordion("π Transcript", open=False):
|
| 1632 |
podcast_transcript_display = gr.Markdown(
|
|
|
|
| 1621 |
gr.Markdown("#### π΅ Generated Podcast")
|
| 1622 |
|
| 1623 |
podcast_audio_player = gr.Audio(
|
| 1624 |
+
label="podcast_audio_player",
|
| 1625 |
type="filepath",
|
| 1626 |
interactive=False,
|
| 1627 |
autoplay=True,
|
| 1628 |
container=False
|
| 1629 |
+
show_label=False
|
| 1630 |
)
|
| 1631 |
+
gr.DownloadButton("πΎ Download MP3", value=podcast_audio_player)
|
| 1632 |
|
| 1633 |
with gr.Accordion("π Transcript", open=False):
|
| 1634 |
podcast_transcript_display = gr.Markdown(
|