Quellcode durchsuchen

fix: voice to text bug

master
lanvent vor 1 Jahr
Ursprung
Commit
72994bc9ef
1 geänderte Dateien mit 4 neuen und 3 gelöschten Zeilen
  1. +4
    -3
      channel/wechat/wechat_channel.py

+ 4
- 3
channel/wechat/wechat_channel.py Datei anzeigen

@@ -20,8 +20,10 @@ from common.tmp_dir import TmpDir
from config import conf
from common.time_check import time_checker
from plugins import *


try:
from voice.audio_convert import mp3_to_wav
except Exception as e:
pass
thread_pool = ThreadPoolExecutor(max_workers=8)


@@ -271,7 +273,6 @@ class WechatChannel(Channel):
msg.download(mp3_path)
# mp3转wav
wav_path = os.path.splitext(mp3_path)[0] + '.wav'
from voice.audio_convert import mp3_to_wav
mp3_to_wav(mp3_path=mp3_path, wav_path=wav_path)
# 语音识别
reply = super().build_voice_to_text(wav_path)


Laden…
Abbrechen
Speichern