925b365d6a
CI/CD Pipeline / Check if frontend-only change (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 / Frontend Lint (push) Successful in 57s
CI/CD Pipeline / Validate - Type Check (mypy) (push) Successful in 1m22s
CI/CD Pipeline / Validate - Migration (alembic) (push) Successful in 1m23s
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 / Build Staging Web Image (push) Successful in 1m56s
CI/CD Pipeline / Deploy Production (push) Has been skipped
CI/CD Pipeline / Validate - Code Quality (push) Failing after 2m56s
CI/CD Pipeline / Frontend Unit Tests (push) Successful in 1m21s
CI/CD Pipeline / Production Browser E2E (push) Has been skipped
CI/CD Pipeline / Integration Tests (push) Successful in 2m3s
CI/CD Pipeline / Build Staging Worker Image (push) Successful in 5m22s
CI/CD Pipeline / Unit Tests (push) Successful in 7m2s
CI/CD Pipeline / Build Staging API Image (push) Successful in 14m26s
CI/CD Pipeline / Deploy Staging (Watchtower auto-deploy) (push) Successful in 1m42s
CI/CD Pipeline / ACR Image Cleanup (push) Successful in 37s
CI/CD Pipeline / Staging E2E Tests (push) Successful in 3m8s
CI/CD Pipeline / Staging API Integration Tests (push) Successful in 4m7s
CI/CD Pipeline / Canary Release to Production (push) Has been skipped
49 lines
1.7 KiB
Python
Executable File
49 lines
1.7 KiB
Python
Executable File
"""绿幕抠像引擎 — 基于 FFmpeg colorkey / chromakey 滤镜.
|
||
|
||
支持将指定颜色(默认绿色)变为透明,可用于虚拟背景、画中画背景替换等场景。
|
||
|
||
注:核心领域模型已抽离到 packages/domain/chroma_key_config.py,
|
||
本模块保留薄包装层,确保向后兼容。
|
||
"""
|
||
|
||
from __future__ import annotations
|
||
|
||
import logging
|
||
from typing import Optional
|
||
|
||
from packages.domain.chroma_key_config import (
|
||
CHROMA_KEY_PRESETS,
|
||
ChromaKeyConfig,
|
||
apply_chroma_key_if_needed,
|
||
)
|
||
from packages.domain.chroma_key_config import ( # noqa: F401 — 向后兼容
|
||
build_chromakey_filter as _build_chromakey_filter_base,
|
||
)
|
||
from packages.domain.chroma_key_config import build_colorkey_filter as _build_colorkey_filter_base
|
||
from packages.domain.chroma_key_config import normalize_color as _normalize_color_base
|
||
|
||
logger = logging.getLogger(__name__)
|
||
|
||
|
||
class ChromaKeyEngine:
|
||
"""绿幕抠像引擎.
|
||
|
||
薄包装层,实际逻辑委托给 packages.domain.chroma_key_config。
|
||
"""
|
||
|
||
def __init__(self, config: ChromaKeyConfig):
|
||
self.config = config
|
||
|
||
@staticmethod
|
||
def _normalize_color(color_str: str) -> str:
|
||
"""将颜色字符串转为 FFmpeg colorkey 接受的格式."""
|
||
return _normalize_color_base(color_str)
|
||
|
||
def build_filter(self, input_label: str, output_label: str) -> str:
|
||
"""构建 colorkey 滤镜字符串."""
|
||
return _build_colorkey_filter_base(self.config, input_label, output_label)
|
||
|
||
def build_filter_chromakey(self, input_label: str, output_label: str) -> str:
|
||
"""使用 chromakey 滤镜(更高级的版本,支持更多参数)."""
|
||
return _build_chromakey_filter_base(self.config, input_label, output_label)
|