bdf99bba39
CI/CD Pipeline / Validate Code Quality And Tests (push) Successful in 4m30s
CI/CD Pipeline / Frontend Lint (push) Successful in 3m22s
CI/CD Pipeline / Build Production Runtime Images (push) Has been skipped
CI/CD Pipeline / Deploy Production (push) Has been skipped
CI/CD Pipeline / Production Browser E2E (push) Has been skipped
CI/CD Pipeline / Integration Tests (push) Successful in 3m13s
CI/CD Pipeline / Build & Push Staging (Watchtower auto-deploy) (push) Successful in 7m31s
CI/CD Pipeline / Staging E2E Tests (push) Successful in 51s
CI/CD Pipeline / Staging API Integration Tests (push) Successful in 3m19s
18 lines
534 B
Python
18 lines
534 B
Python
"""
|
|
视频处理模块
|
|
|
|
轻量工具(ffmpeg_utils / oss_helpers / dedup_helpers)顶层直接导出,
|
|
无额外依赖。渲染相关组件(UnifiedRenderService / RenderAdapter /
|
|
VideoProcessor 等)按需从子模块导入,避免 __init__ 阶段引入
|
|
packages / DB 等重依赖。
|
|
"""
|
|
|
|
# 共享工具模块(零外部依赖,供 editing_modes / generation / edit_plan_generation 等复用)
|
|
from . import dedup_helpers, ffmpeg_utils, oss_helpers
|
|
|
|
__all__ = [
|
|
"ffmpeg_utils",
|
|
"oss_helpers",
|
|
"dedup_helpers",
|
|
]
|