Browse Source

fix: voice to text bug

master
lanvent 1 year ago
parent
commit
72994bc9ef
1 changed files with 4 additions and 3 deletions
  1. +4
    -3
      channel/wechat/wechat_channel.py

+ 4
- 3
channel/wechat/wechat_channel.py View File

@@ -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)


Loading…
Cancel
Save