hm_ai_qc_report_tool/modules/video_qc/blueprint.py
nickviljoen e6f3e9387e Add modular architecture, core framework, and web UI
New blueprint-based module system (hm_qc, video_qc, video_master,
reporting), core framework (database, config, templates), and
unified web interface with progress tracking and tab navigation.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-25 11:39:04 +02:00

24 lines
587 B
Python

"""
Video QC Module Blueprint (BETA).
Provides quality control for H&M video marketing assets:
- Video file upload and validation
- Technical specification checks (codec, resolution, bitrate, audio)
- AI-powered censorship checks
- Weighted scoring system
- Real-time progress tracking
"""
from flask import Blueprint
# Create blueprint
video_qc_bp = Blueprint(
'video_qc',
__name__,
template_folder='templates',
static_folder='static',
static_url_path='/video-qc/static',
url_prefix='/video-qc'
)
# Import routes after blueprint creation
from . import routes