From 251f4aa7291429a5b181a45cae4c8948c9405f1d Mon Sep 17 00:00:00 2001 From: liuwei Date: Wed, 21 May 2025 09:20:33 +0800 Subject: [PATCH] =?UTF-8?q?debug=20=E8=A7=86=E9=A2=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugins/video_man/main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/video_man/main.py b/plugins/video_man/main.py index 1799737..9f18469 100644 --- a/plugins/video_man/main.py +++ b/plugins/video_man/main.py @@ -112,7 +112,8 @@ class VideoManPlugin(MessagePluginInterface): return False, "视频下载失败" # 发送视频 - result = await self.bot.send_video_message((roomid if roomid else sender), Path(file_abspath)) + result = await self.bot.send_video_message((roomid if roomid else sender), Path(file_abspath), + Path(first_frame)) self.LOG.info(f"发送视频结果: {result}") return True, "发送成功"