瀏覽代碼

fix: add warning log when pysilk module is not installed

develop
lanvent 1 年之前
父節點
當前提交
c34d70b3cb
共有 1 個檔案被更改,包括 7 行新增1 行删除
  1. +7
    -1
      voice/audio_convert.py

+ 7
- 1
voice/audio_convert.py 查看文件

@@ -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…
取消
儲存