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>
24 lines
587 B
Python
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
|