Browse Source

fix: add voice dependency compatibility #641

master
zhayujie 1 year ago
parent
commit
f644682be7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      channel/wechat/wechat_channel.py

+ 1
- 1
channel/wechat/wechat_channel.py View File

@@ -20,7 +20,6 @@ from common.tmp_dir import TmpDir
from config import conf
from common.time_check import time_checker
from plugins import *
from voice.audio_convert import mp3_to_wav


thread_pool = ThreadPoolExecutor(max_workers=8)
@@ -272,6 +271,7 @@ 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)


Loading…
Cancel
Save