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 |
-
preload_models()
|
73 |
|
74 |
# generate audio from text
|
75 |
-
audio_array = generate_audio(tss_prompt)
|
76 |
-
return (SAMPLE_RATE, audio_array)
|
77 |
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
|
82 |
|
83 |
|
|
|
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-small")
|
79 |
+
speech = tss_pipeline(tss_prompt, forward_params={"do_sample": True})
|
80 |
+
return (speech["sampling_rate"], speech["audio"])
|
81 |
|
82 |
|
83 |
|