fix: add warning log when pysilk module is not installed

master
lanvent 2023-06-10 11:22:12 +08:00
parent a33df9312f
commit c34d70b3cb
1 changed files with 7 additions and 1 deletions

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时支持的采样率