ai_qc/backend/profiles/video_general.json
nickviljoen 20259dcad0 Add Honda client, video QC, session refresh, Amazon check tuning
- Add Honda client with static_general and video_general profiles
- Add video QC capability using Gemini native video analysis (4 checks:
  visual_quality, brand_consistency, text_legibility, pacing_flow)
- Add video_general profile assigned to all 8 clients
- Extend session lifetime with MSAL silent token refresh (proactive
  every 45min + reactive on expiry), switch cache to localStorage
- Re-enable OCR layout measurements for Amazon checks
- Add scope boundary notes to all 6 Amazon checks to prevent cross-
  check penalization (locale errors isolated to logo_country only)
- Relax margins left-alignment tolerance from 1% to 4% to account
  for logo lockup internal padding
- Update brand guidelines DB with Amazon localization matrix and
  processed Dove PDF summary

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-16 14:53:52 +02:00

30 lines
No EOL
1.1 KiB
JSON

{
"name": "Video General",
"description": "General-purpose video QC profile for marketing video assets. Evaluates visual quality, brand consistency, text legibility, and pacing/flow using Gemini's native video analysis.",
"checks": {
"video_visual_quality": {
"enabled": true,
"weight": 2.5,
"llm": "Gemini",
"description": "Evaluates resolution, colour grading, exposure, focus, stability, and technical artifacts throughout the video"
},
"video_brand_consistency": {
"enabled": true,
"weight": 2.5,
"llm": "Gemini",
"description": "Checks logo usage, brand colours, typography consistency, and end card presence throughout the video"
},
"video_text_legibility": {
"enabled": true,
"weight": 2.5,
"llm": "Gemini",
"description": "Evaluates on-screen text readability, spelling accuracy, subtitle timing, legal text visibility, and CTA prominence"
},
"video_pacing_flow": {
"enabled": true,
"weight": 2.5,
"llm": "Gemini",
"description": "Assesses video structure, pacing, transitions, opening hook, and closing/CTA effectiveness"
}
}
}