我可以在使用 playsound 模块停止时删除音频文件吗?我写了一个代码,但我做不到:
from gtts import gTTS
import os
import playsound
def say(textg):
tts = gTTS(text=textg, lang='en')
tts.save('audio.mp3')
playsound('audio.mp3')
time.sleep(here, what i have to do?)
os.remove('audio.mp3')
我正在使用 Python 2.7.15