Skip to content
On this page

语音

发送一段 wav 格式的音频

注意

QQ 频道机器人暂时不支持发送语音,目前仅支持官方 QQ 群、 mirai-api-httpcq-http

Chain().voice()

参数名类型释义默认值
filestr语音 wav 文件路径
titlestr语音标题voice
python
Chain(data).voice(file)
python
@bot.on_message(keywords='hello')
async def _(data: Message):
    return Chain(data).voice('阿米娅_问候.wav')