156390b676
CI/CD Pipeline / Build Staging API Image (pull_request) Has been skipped
CI/CD Pipeline / Build Staging Worker Image (pull_request) Has been skipped
CI/CD Pipeline / Build Staging Web Image (pull_request) Has been skipped
CI/CD Pipeline / Deploy Staging (Watchtower auto-deploy) (pull_request) Has been skipped
CI/CD Pipeline / Staging E2E Tests (pull_request) Has been skipped
CI/CD Pipeline / Staging API Integration Tests (pull_request) Has been skipped
CI/CD Pipeline / ACR Image Cleanup (pull_request) Has been skipped
CI/CD Pipeline / Check if frontend-only change (pull_request) Successful in 43s
CI/CD Pipeline / Validate - Type Check (mypy) (pull_request) Successful in 1m31s
AI Code Review / AI Code Review (pull_request) Successful in 1m31s
CI/CD Pipeline / Validate - Migration (alembic) (pull_request) Successful in 1m35s
PR Automation / Auto Merge on CI Green + Approved (pull_request) Successful in 1m39s
Preview Deploy / Deploy Preview Environment (pull_request) Successful in 2m28s
CI/CD Pipeline / Frontend Unit Tests (pull_request) Successful in 1m46s
CI/CD Pipeline / Validate - Code Quality (pull_request) Has been cancelled
CI/CD Pipeline / Unit Tests (pull_request) Has been cancelled
CI/CD Pipeline / Integration Tests (pull_request) Has been cancelled
CI/CD Pipeline / Frontend Lint (pull_request) Has been cancelled
CI/CD Pipeline / PR Build API Image (pull_request) Has been cancelled
CI/CD Pipeline / PR Build Web Image (pull_request) Has been cancelled
CI/CD Pipeline / PR Build Worker Image (pull_request) Has been cancelled
CI/CD Pipeline / Build Production API Image (pull_request) Has been cancelled
CI/CD Pipeline / Build Production Web Image (pull_request) Has been cancelled
CI/CD Pipeline / Build Production Worker Image (pull_request) Has been cancelled
CI/CD Pipeline / Deploy Production (pull_request) Has been cancelled
CI/CD Pipeline / Production Browser E2E (pull_request) Has been cancelled
CI/CD Pipeline / Canary Release to Production (pull_request) Has been cancelled
CI/CD Pipeline / CI Gate (pull_request) Has been cancelled
PR Automation / Auto Approve on CI Green (pull_request) Has been cancelled
修复项: 1. Code Quality: 修复F401未使用import + 配置tests目录忽略B011(assert-false) 2. Unit Tests(14个失败): - shared.url_security补全ALLOWED_VIDEO_MIME_TYPES re-export - video_processing.__init__导出url_security子模块 - test_classification更新AssetLibraryKind(新增IMAGE) - test_multi_track_subtitle_concat修复POSITION_ALIGNMENT导入路径 3. Frontend Unit Tests: 更新useGenerateVideo测试为实际存在的导出
71 lines
2.5 KiB
Python
Executable File
71 lines
2.5 KiB
Python
Executable File
"""视频调速引擎 — 基于 FFmpeg setpts + atempo 的速度调整能力.
|
||
|
||
支持:
|
||
- 0.25x ~ 4x 变速范围
|
||
- 视频调速(setpts)
|
||
- 音频调速(atempo,多级串联处理超范围值)
|
||
- 音调修正(pitch_correct,默认开启)
|
||
- 边界自动钳制,不阻断渲染
|
||
|
||
注:核心领域模型已抽离到 packages/domain/speed_config.py,
|
||
本模块保留薄包装层,确保向后兼容。
|
||
"""
|
||
|
||
from __future__ import annotations
|
||
|
||
from packages.domain.speed_config import (
|
||
DEFAULT_SPEED,
|
||
SpeedConfig,
|
||
_split_atempo_stages,
|
||
)
|
||
from packages.domain.speed_config import adjust_duration as _adjust_duration_base # noqa: F401 — 向后兼容
|
||
from packages.domain.speed_config import build_audio_filter as _build_audio_filter_base
|
||
from packages.domain.speed_config import build_video_filter as _build_video_filter_base
|
||
from packages.domain.speed_config import resolve_clip_speed as _resolve_clip_speed_base
|
||
|
||
|
||
class SpeedEngine:
|
||
"""调速引擎 — 生成 FFmpeg 调速滤镜链.
|
||
|
||
薄包装层,实际逻辑委托给 packages.domain.speed_config。
|
||
"""
|
||
|
||
def build_video_filter(self, config: SpeedConfig) -> str:
|
||
"""生成视频调速滤镜字符串."""
|
||
return _build_video_filter_base(config)
|
||
|
||
def build_audio_filter(self, config: SpeedConfig) -> str:
|
||
"""生成音频调速滤镜字符串."""
|
||
return _build_audio_filter_base(config)
|
||
|
||
@staticmethod
|
||
def _split_atempo_stages(speed: float) -> list[float]:
|
||
"""将速度拆分为多级 atempo 串联(内部方法,向后兼容)."""
|
||
return _split_atempo_stages(speed)
|
||
|
||
def adjust_duration(self, original_duration: float, config: SpeedConfig) -> float:
|
||
"""计算调速后的时长."""
|
||
return _adjust_duration_base(original_duration, config)
|
||
|
||
def build_clip_speed_filter(
|
||
self,
|
||
speed: float,
|
||
pitch_correct: bool = True,
|
||
) -> tuple[str, str, SpeedConfig]:
|
||
"""便捷方法:从单一 speed 值生成视频+音频滤镜."""
|
||
config = SpeedConfig(speed=speed, pitch_correct=pitch_correct)
|
||
config.clamp()
|
||
return (
|
||
self.build_video_filter(config),
|
||
self.build_audio_filter(config),
|
||
config,
|
||
)
|
||
|
||
@staticmethod
|
||
def resolve_clip_speed(
|
||
clip_config: dict,
|
||
global_speed: float = DEFAULT_SPEED,
|
||
) -> float:
|
||
"""从 clip config 中解析 playback_speed,0 或缺失则使用全局速度."""
|
||
return _resolve_clip_speed_base(clip_config, global_speed)
|