云端粗出

This commit is contained in:
root
2025-07-12 17:07:14 +08:00
parent bb14fba3fa
commit 5f1fc7d9c8
9 changed files with 659 additions and 165 deletions

View File

@@ -10,6 +10,7 @@ import typer
# 导入命令模块
from python_core.cli.commands import scene_detect
from python_core.cli.commands.template import template_app
from python_core.cli.commands.category import category_app
app = typer.Typer(
name="mixvideo",
@@ -19,6 +20,7 @@ app = typer.Typer(
功能完整的视频处理和管理工具套件:
• 🎯 场景检测 - 智能识别视频场景变化
• 📋 模板管理 - 视频模板批量导入、列表查看、详情获取
• 🏷️ 分类管理 - 资源分类创建、更新、删除、搜索
• 📤 媒体管理 - 上传、处理、组织视频文件
• ⚙️ 系统管理 - 配置、状态、存储管理
""",
@@ -29,6 +31,7 @@ app = typer.Typer(
# 添加命令组到主应用
app.add_typer(scene_detect, name="scene")
app.add_typer(template_app, name="template")
app.add_typer(category_app, name="category")
@app.command()
def init():