Test / text-to-speach.py
SilvusTV's picture
update repo
496e159
raw history blame
No virus
526 Bytes
from bark import SAMPLE_RATE, generate_audio, preload_models
from scipy.io.wavfile import write as write_wav
from IPython.display import Audio
# download and load all models
preload_models()
# generate audio from text
text_prompt = """
Le meilleur pilotes de tout les temps ?
j'hésite ... Hamilton ? oui, je dirais Hamilton.
"""
audio_array = generate_audio(text_prompt)
# save audio to disk
write_wav("bark_generation.wav", SAMPLE_RATE, audio_array)
# play text in notebook
Audio(audio_array, rate=SAMPLE_RATE)