fix: Avoid the same filename under multithreading (#933)
parent
d6a4b35cd3
commit
dca5c058e0
|
|
@ -79,7 +79,8 @@ class AzureVoice(Voice):
|
||||||
self.speech_config.speech_synthesis_voice_name = self.config["speech_synthesis_voice_name"]
|
self.speech_config.speech_synthesis_voice_name = self.config["speech_synthesis_voice_name"]
|
||||||
else:
|
else:
|
||||||
self.speech_config.speech_synthesis_voice_name = self.config["speech_synthesis_voice_name"]
|
self.speech_config.speech_synthesis_voice_name = self.config["speech_synthesis_voice_name"]
|
||||||
fileName = TmpDir().path() + "reply-" + str(int(time.time())) + ".wav"
|
# Avoid the same filename under multithreading
|
||||||
|
fileName = TmpDir().path() + "reply-" + str(int(time.time())) + "-" + str(hash(text) & 0x7FFFFFFF) + ".wav"
|
||||||
audio_config = speechsdk.AudioConfig(filename=fileName)
|
audio_config = speechsdk.AudioConfig(filename=fileName)
|
||||||
speech_synthesizer = speechsdk.SpeechSynthesizer(speech_config=self.speech_config, audio_config=audio_config)
|
speech_synthesizer = speechsdk.SpeechSynthesizer(speech_config=self.speech_config, audio_config=audio_config)
|
||||||
result = speech_synthesizer.speak_text(text)
|
result = speech_synthesizer.speak_text(text)
|
||||||
|
|
|
||||||
|
|
@ -82,7 +82,8 @@ class BaiduVoice(Voice):
|
||||||
{"spd": self.spd, "pit": self.pit, "vol": self.vol, "per": self.per},
|
{"spd": self.spd, "pit": self.pit, "vol": self.vol, "per": self.per},
|
||||||
)
|
)
|
||||||
if not isinstance(result, dict):
|
if not isinstance(result, dict):
|
||||||
fileName = TmpDir().path() + "reply-" + str(int(time.time())) + ".mp3"
|
# Avoid the same filename under multithreading
|
||||||
|
fileName = TmpDir().path() + "reply-" + str(int(time.time())) + "-" + str(hash(text) & 0x7FFFFFFF) + ".mp3"
|
||||||
with open(fileName, "wb") as f:
|
with open(fileName, "wb") as f:
|
||||||
f.write(result)
|
f.write(result)
|
||||||
logger.info("[Baidu] textToVoice text={} voice file name={}".format(text, fileName))
|
logger.info("[Baidu] textToVoice text={} voice file name={}".format(text, fileName))
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,8 @@ class GoogleVoice(Voice):
|
||||||
|
|
||||||
def textToVoice(self, text):
|
def textToVoice(self, text):
|
||||||
try:
|
try:
|
||||||
mp3File = TmpDir().path() + "reply-" + str(int(time.time())) + ".mp3"
|
# Avoid the same filename under multithreading
|
||||||
|
mp3File = TmpDir().path() + "reply-" + str(int(time.time())) + "-" + str(hash(text) & 0x7FFFFFFF) + ".mp3"
|
||||||
tts = gTTS(text=text, lang="zh")
|
tts = gTTS(text=text, lang="zh")
|
||||||
tts.save(mp3File)
|
tts.save(mp3File)
|
||||||
logger.info("[Google] textToVoice text={} voice file name={}".format(text, mp3File))
|
logger.info("[Google] textToVoice text={} voice file name={}".format(text, mp3File))
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@ class PyttsVoice(Voice):
|
||||||
|
|
||||||
def textToVoice(self, text):
|
def textToVoice(self, text):
|
||||||
try:
|
try:
|
||||||
# avoid the same filename
|
# Avoid the same filename under multithreading
|
||||||
wavFileName = "reply-" + str(int(time.time())) + "-" + str(hash(text) & 0x7FFFFFFF) + ".wav"
|
wavFileName = "reply-" + str(int(time.time())) + "-" + str(hash(text) & 0x7FFFFFFF) + ".wav"
|
||||||
wavFile = TmpDir().path() + wavFileName
|
wavFile = TmpDir().path() + wavFileName
|
||||||
logger.info("[Pytts] textToVoice text={} voice file name={}".format(text, wavFile))
|
logger.info("[Pytts] textToVoice text={} voice file name={}".format(text, wavFile))
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue