Files
Mofox-Core/plugins/bilibli/_manifest.json
雅诺狐 cb93b38162 Add Bilibili video analysis plugin
Introduced a new 'bilibli' plugin for Bilibili video parsing and AI-based content analysis. Added plugin manifest, base module for video info retrieval and analysis, and plugin integration with tool registration. Updated .gitignore to include the new plugin directory.
2025-08-30 00:26:44 +08:00

43 lines
1.2 KiB
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"manifest_version": 1,
"name": "哔哩哔哩视频解析插件 (Bilibili Video Parser)",
"version": "1.0.0",
"description": "解析哔哩哔哩视频链接获取视频的base64编码数据无音频版本支持BV号、AV号和短链接",
"author": {
"name": "雅诺狐"
},
"license": "GPL-v3.0-or-later",
"host_application": {
"min_version": "0.8.0"
},
"keywords": [
"bilibili",
"video",
"parser",
"tool",
"媒体处理"
],
"categories": [
"Media",
"Tools"
],
"default_locale": "zh-CN",
"plugin_info": {
"is_built_in": false,
"plugin_type": "tool",
"components": [
{
"type": "tool",
"name": "bilibili_video_parser",
"description": "解析哔哩哔哩视频链接获取视频的base64编码数据无音频版本"
}
],
"features": [
"支持BV号、AV号视频链接解析",
"支持b23.tv短链接解析",
"返回无音频的视频base64编码",
"自动处理重定向链接",
"详细的解析状态反馈"
]
}
}