{% extends "base.html" %} {% block title %}Video QC - HM QC Platform{% endblock %} {% block content %}

Video Quality Control

Upload H&M video marketing assets for AI-powered visual quality checks.

Start Video QC

Upload one or more videos to begin quality control

Upload Videos
AI Checks
  • Language consistency across frames
  • Title & text legibility
  • Logo & branding clarity
  • Censorship / body coverage compliance
  • Frame-by-frame analysis (1fps)

Supported: MP4, MOV, AVI, MKV (up to 50 files per batch)

{% if batches %}

Batch Reports

{% for batch in batches %}
{{ batch.job_number or 'Batch' }} {{ batch.created_at.strftime('%Y-%m-%d %H:%M') }} ({{ batch.total }} videos) {{ batch.passed }} passed {% if batch.warnings %}{{ batch.warnings }} warnings{% endif %} {% if batch.failed %}{{ batch.failed }} failed{% endif %} Avg: {{ batch.avg_score }}
{% for report in batch.reports %} {% endfor %}
Filename Score Status
{{ report.filename }} {% if report.score is not none %} {{ '%.0f' % report.score }} {% else %}-{% endif %} {{ report.status }}
{% endfor %}
{% endif %} {% if individual_reports %}

Individual Reports

{% for report in individual_reports %} {% endfor %}
Filename Job # Score Status Date
{{ report.filename }} {{ report.job_number or '-' }} {% if report.score is not none %} {{ '%.0f' % report.score }} {% else %}-{% endif %} {{ report.status }} {{ report.created_at.strftime('%Y-%m-%d %H:%M') if report.created_at }}
{% endif %}
{% endblock %} {% block extra_scripts %} {% endblock %}