76fdab4f63
CI/CD Pipeline / Check if frontend-only change (push) Has been skipped
CI/CD Pipeline / Frontend Lint (push) Has been skipped
CI/CD Pipeline / PR Build API Image (push) Has been skipped
CI/CD Pipeline / PR Build Web Image (push) Has been skipped
CI/CD Pipeline / PR Build Worker Image (push) Has been skipped
CI/CD Pipeline / Validate - Type Check (mypy) (push) Successful in 2m2s
CI/CD Pipeline / Validate - Migration (alembic) (push) Successful in 2m46s
CI/CD Pipeline / Frontend Unit Tests (push) Successful in 2m56s
CI/CD Pipeline / Build Staging Web Image (push) Successful in 3m27s
CI/CD Pipeline / Validate - Code Quality (push) Successful in 5m17s
CI/CD Pipeline / Build Staging Worker Image (push) Successful in 5m33s
CI/CD Pipeline / Integration Tests (push) Successful in 2m51s
CI/CD Pipeline / Unit Tests (push) Successful in 10m13s
CI/CD Pipeline / Build Production API Image (push) Has been skipped
CI/CD Pipeline / Build Production Web Image (push) Has been skipped
CI/CD Pipeline / Build Production Worker Image (push) Has been skipped
CI/CD Pipeline / CI Gate (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 / Build Staging API Image (push) Successful in 12m49s
CI/CD Pipeline / Deploy Staging (Watchtower auto-deploy) (push) Successful in 29s
CI/CD Pipeline / ACR Image Cleanup (push) Failing after 14s
CI/CD Pipeline / Staging E2E Tests (push) Failing after 17s
CI/CD Pipeline / Staging API Integration Tests (push) Successful in 5m31s
CI/CD Pipeline / Canary Release to Production (push) Has been skipped
19 lines
568 B
Python
19 lines
568 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, url_security
|
|
|
|
__all__ = [
|
|
"ffmpeg_utils",
|
|
"oss_helpers",
|
|
"dedup_helpers",
|
|
"url_security",
|
|
]
|