Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -69,15 +69,15 @@ def abstract_to_audio(insert_pdf):
|
|
| 69 |
|
| 70 |
# Generate audio file that speaks the generated sentence using Bark
|
| 71 |
# download and load all models
|
| 72 |
-
|
| 73 |
|
| 74 |
# generate audio from text
|
| 75 |
-
|
| 76 |
-
|
| 77 |
|
| 78 |
-
tss_pipeline = pipeline("text-to-speech", "suno/bark")
|
| 79 |
-
speech = tss_pipeline(tss_prompt)
|
| 80 |
-
return (speech["sampling_rate"], speech["audio"])
|
| 81 |
|
| 82 |
|
| 83 |
|
|
@@ -86,4 +86,4 @@ def abstract_to_audio(insert_pdf):
|
|
| 86 |
|
| 87 |
my_app = gr.Interface(fn=abstract_to_audio, inputs='file', outputs='audio', title="PDF Abstract Summarizer",
|
| 88 |
description="Extracts abstracts from PDFs and generates audio summaries. This app only accepts PDFs with abstracts.")
|
| 89 |
-
my_app.launch(
|
|
|
|
| 69 |
|
| 70 |
# Generate audio file that speaks the generated sentence using Bark
|
| 71 |
# download and load all models
|
| 72 |
+
preload_models()
|
| 73 |
|
| 74 |
# generate audio from text
|
| 75 |
+
audio_array = generate_audio(tss_prompt)
|
| 76 |
+
return (SAMPLE_RATE, audio_array)
|
| 77 |
|
| 78 |
+
#tss_pipeline = pipeline("text-to-speech", "suno/bark")
|
| 79 |
+
#speech = tss_pipeline(tss_prompt)
|
| 80 |
+
#return (speech["sampling_rate"], speech["audio"])
|
| 81 |
|
| 82 |
|
| 83 |
|
|
|
|
| 86 |
|
| 87 |
my_app = gr.Interface(fn=abstract_to_audio, inputs='file', outputs='audio', title="PDF Abstract Summarizer",
|
| 88 |
description="Extracts abstracts from PDFs and generates audio summaries. This app only accepts PDFs with abstracts.")
|
| 89 |
+
my_app.launch()
|