Update app.py
Browse files
app.py
CHANGED
@@ -62,7 +62,7 @@ def text_to_audio(text):
|
|
62 |
|
63 |
synthesiser = pipeline("text-to-speech", "suno/bark")
|
64 |
|
65 |
-
speech = synthesiser[str("summary")
|
66 |
|
67 |
scipy.io.wavfile.write("speech.wav", rate=speech["sampling_rate"], data=speech["audio"])
|
68 |
|
|
|
62 |
|
63 |
synthesiser = pipeline("text-to-speech", "suno/bark")
|
64 |
|
65 |
+
speech = synthesiser[str("summary")]
|
66 |
|
67 |
scipy.io.wavfile.write("speech.wav", rate=speech["sampling_rate"], data=speech["audio"])
|
68 |
|