Parcourir la source

fix: Avoid the same filename under multithreading (#933)

master
JS00000 GitHub il y a 1 an
Parent
révision
dca5c058e0
Aucune clé connue n'a été trouvée dans la base pour cette signature ID de la clé GPG: 4AEE18F83AFDEB23
4 fichiers modifiés avec 7 ajouts et 4 suppressions
  1. +2
    -1
      voice/azure/azure_voice.py
  2. +2
    -1
      voice/baidu/baidu_voice.py
  3. +2
    -1
      voice/google/google_voice.py
  4. +1
    -1
      voice/pytts/pytts_voice.py

+ 2
- 1
voice/azure/azure_voice.py Voir le fichier

@@ -79,7 +79,8 @@ class AzureVoice(Voice):
self.speech_config.speech_synthesis_voice_name = self.config["speech_synthesis_voice_name"]
else:
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)
speech_synthesizer = speechsdk.SpeechSynthesizer(speech_config=self.speech_config, audio_config=audio_config)
result = speech_synthesizer.speak_text(text)


+ 2
- 1
voice/baidu/baidu_voice.py Voir le fichier

@@ -82,7 +82,8 @@ class BaiduVoice(Voice):
{"spd": self.spd, "pit": self.pit, "vol": self.vol, "per": self.per},
)
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:
f.write(result)
logger.info("[Baidu] textToVoice text={} voice file name={}".format(text, fileName))


+ 2
- 1
voice/google/google_voice.py Voir le fichier

@@ -35,7 +35,8 @@ class GoogleVoice(Voice):

def textToVoice(self, text):
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.save(mp3File)
logger.info("[Google] textToVoice text={} voice file name={}".format(text, mp3File))


+ 1
- 1
voice/pytts/pytts_voice.py Voir le fichier

@@ -34,7 +34,7 @@ class PyttsVoice(Voice):

def textToVoice(self, text):
try:
# avoid the same filename
# Avoid the same filename under multithreading
wavFileName = "reply-" + str(int(time.time())) + "-" + str(hash(text) & 0x7FFFFFFF) + ".wav"
wavFile = TmpDir().path() + wavFileName
logger.info("[Pytts] textToVoice text={} voice file name={}".format(text, wavFile))


Chargement…
Annuler
Enregistrer