我试图在 google colab 中循环运行音频,但它没有给我任何输出
from gtts import gTTS
from IPython.display import Audio
for voice in ["Aniket","sachin"]:
tts = gTTS("Hello {}".format(voice))
tts.save('1.wav')
sound_file = '1.wav'
Audio(sound_file, autoplay=True)
输出我想要的是它应该听起来 hello aniket hello sachin 请帮助