Browse Source

fix: add warning log when pysilk module is not installed

master
lanvent 1 year ago
parent
commit
c34d70b3cb
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      voice/audio_convert.py

+ 7
- 1
voice/audio_convert.py View File

@@ -1,7 +1,13 @@
import shutil
import wave

import pysilk
from common.log import logger

try:
import pysilk
except ImportError:
logger.warn("import pysilk failed, wechaty voice message will not be supported.")

from pydub import AudioSegment

sil_supports = [8000, 12000, 16000, 24000, 32000, 44100, 48000] # slk转wav时,支持的采样率


Loading…
Cancel
Save