18 lines
515 B
TOML
18 lines
515 B
TOML
[VideoMan]
|
|
enable = true
|
|
command = ["猛男", "肌肉", "帅哥"]
|
|
command-format = """
|
|
🎬猛男视频指令:
|
|
猛男
|
|
肌肉
|
|
帅哥
|
|
"""
|
|
|
|
[runtime]
|
|
# 猛男视频和普通视频插件的耗时结构基本一致:
|
|
# 1. 需要先拉接口,再下载视频文件,并额外抽首帧做封面;
|
|
# 2. 这些 IO/编解码步骤不适合长期占住前台并发槽位;
|
|
# 3. 因此同样默认走后台模式,并保留 4 分钟总超时。
|
|
message_dispatch_mode = "background"
|
|
plugin_process_timeout_seconds = 240
|