Enterprise dashboard for AI video compliance auditing and certification
Project description
AI Video Compliance Dashboard
Enterprise-grade compliance scanning and certification for AI-generated video projects.
What is this?
A production-ready web dashboard that analyzes AI video projects (Clapper, MimicMotion, Runway workflows) and generates audit trails with full model provenance tracking, training data license verification, and EU AI Act compliance scoring. It integrates your existing synth-provenance-api and eu-compliance-certificate-generator into a polished SaaS interface that studios can confidently use to ship AI video to enterprise clients with legal documentation.
Features
- Drag-and-drop video upload with automatic metadata extraction
- Real-time provenance scanning – detects Stable Diffusion, Runway, Pika, and other model signatures
- EU AI Act compliance scoring with specific Article citations (Articles 10, 52, etc.)
- One-click PDF certificate generation with studio branding options
- API integration for Clapper/MimicMotion projects via webhooks and CLI plugins
- Compliance dashboard – track audit trails and certification history across projects
- Team collaboration – multi-user accounts with role-based access
- Freemium SaaS billing – integrated Stripe for subscriptions and metering
Quick Start
Prerequisites
- Python 3.11+
- PostgreSQL 14+
- Docker & Docker Compose (optional)
Installation
-
Clone and install dependencies:
pip install -r requirements.txt
-
Configure environment:
cp .env.example .env # Edit .env with your API keys, database URL, Stripe credentials
-
Run database migrations:
alembic upgrade head
-
Start the application:
python app/main.pyOr with Docker:
docker-compose up -d
-
Access the dashboard at
http://localhost:8000
Usage Examples
Upload and scan a video project
curl -X POST http://localhost:8000/api/projects \
-H "Authorization: Bearer YOUR_TOKEN" \
-F "file=@video.mp4" \
-F "project_name=Q1 Campaign"
Generate compliance certificate
curl -X POST http://localhost:8000/api/certificates \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"project_id": "proj_123",
"studio_name": "Acme Studios",
"include_branding": true
}'
Webhook integration (MimicMotion/Clapper)
# Configure webhook endpoint in your video tool:
POST /api/webhooks/video-export
{
"project_id": "clapper_proj_456",
"video_url": "s3://bucket/video.mp4",
"model_metadata": {...}
}
Tech Stack
- Backend: FastAPI + SQLAlchemy
- Database: PostgreSQL with Alembic migrations
- Authentication: JWT-based auth with role-based access control
- Integrations: Stripe (billing), synth-provenance-api (model detection), eu-compliance-certificate-generator (PDF certificates)
- Deployment: Docker, Docker Compose
- API Documentation: Auto-generated OpenAPI/Swagger at
/docs
Project Structure
app/
├── main.py # FastAPI application
├── config.py # Environment and app configuration
├── database.py # SQLAlchemy setup
├── models.py # Database models
├── schemas.py # Pydantic request/response schemas
├── auth.py # JWT and auth logic
└── routers/
├── auth.py # User login/registration
├── projects.py # Video project endpoints
├── scans.py # Compliance scanning
├── certificates.py # PDF generation
├── subscriptions.py # Stripe billing
└── webhooks.py # Inbound integrations
Environment Variables
See .env.example for all required variables. Key settings:
DATABASE_URL– PostgreSQL connection stringSTRIPE_API_KEY– Stripe secret key for billingSYNTH_PROVENANCE_API_URL– Your model detection microserviceEU_COMPLIANCE_API_URL– Your compliance certificate generatorJWT_SECRET– Secret key for token signing
API Documentation
Full interactive API docs available at /docs (Swagger UI) or /redoc (ReDoc) after starting the server.
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ai_video_compliance_dashboard-0.1.0.tar.gz.
File metadata
- Download URL: ai_video_compliance_dashboard-0.1.0.tar.gz
- Upload date:
- Size: 15.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b578ac31f2fddaab12e361487cebfb2befef4468029010a183e01a4d8688f28
|
|
| MD5 |
9eefcc50d03c709e1de01ac805d76f8a
|
|
| BLAKE2b-256 |
931648aa1aea5f9611186a1bf98828d80eea2fdc4604a13840fcd63d8c5fc39e
|
File details
Details for the file ai_video_compliance_dashboard-0.1.0-py3-none-any.whl.
File metadata
- Download URL: ai_video_compliance_dashboard-0.1.0-py3-none-any.whl
- Upload date:
- Size: 17.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e210453cea219f4c25f8b0c275875da8834e34d52b048173fd3922cc744216b8
|
|
| MD5 |
af97c4a6e7c90cd84e5033855f97e774
|
|
| BLAKE2b-256 |
91d12501617bc4653c591e4392a1c75e3b2363a69c0ec55ebd8d59ec39ee7b32
|