【发布时间】:2021-11-19 03:01:00
【问题描述】:
如何让 aiogram bot 回复音频消息? 我已经尝试过了:
if message.Audio.duration <= 60:
await message.reply("message")
【问题讨论】:
标签: python bots telegram aiogram
如何让 aiogram bot 回复音频消息? 我已经尝试过了:
if message.Audio.duration <= 60:
await message.reply("message")
【问题讨论】:
标签: python bots telegram aiogram
@dp.message_handler(content_types=types.ContentTypes.VOICE | types.ContentTypes.AUDIO)
async def audio_message_handler(msg: types.Message):
if msg.content_type == "voice":
await msg.reply("Voice message")
elif msg.content_type == "audio":
await msg.reply("Audio message")
【讨论】: