Enterprise AI-powered video ad generation from any product URL — included in the Hermes Agent Enterprise consultancy package.
AI-generated UGC ad for Hermes Agent Consultancy — rendered with Veo 3.1 Fast via OpenRouter.
4 scenes: Agent Reveal → Squad Network → Before/After → Brand Close. 32 seconds, 9:16 vertical.
No humans, no embedded text — subtitles can be added separately for each platform.
# 1. Set your OpenRouter API key
export OPENROUTER_API_KEY="sk-or-v1-your-key-here"
# 2. Check cost estimate first
cd skills/ugc-ad-pipeline
python3 pipeline_runner.py \
--url "https://yourproduct.com" \
--name "Your Product" \
--tagline "Your tagline" \
--features Feature1 Feature2 Feature3 \
--dry-run
# 3. Generate ads (~$60-85 for a full run)
python3 pipeline_runner.py \
--url "https://yourproduct.com" \
--name "Your Product" \
--tagline "Your tagline" \
--features Feature1 Feature2 Feature3
# 4. Find your ads in ~/ugc-ads/
pip install requests beautifulsoup4apt install ffmpegA full ad run (3 formats × 4 scenes × 3 aspect ratios = 36 renders) at 720p costs approximately $60-85 in OpenRouter API credits — paid directly by you, no markup.
Use --dry-run to see exact cost estimates before rendering. Control costs by choosing resolution (720p vs 1080p) and selecting specific formats.
python3 pipeline_runner.py --url "..." --avatar 2 # Sam (trustworthy, early-40s) python3 pipeline_runner.py --url "..." --avatar-desc "A trendy Gen Z creator with pink hair"
python3 pipeline_runner.py --url "..." --skip-avatar
# Use cheaper models for testing export UGC_MODEL_UGC="bytedance/seedance-2.0-fast" export UGC_MODEL_WILDCARD="google/veo-3.1-lite" # Or change the API endpoint export OPENROUTER_API_BASE_URL="https://openrouter.ai/api/v1"
~/ugc-ads/ ├── scripts.json # Generated ad scripts ├── pipeline-report.json # Cost and status report ├── avatars/ # AI avatar reference files ├── scenes/ # Raw rendered scenes ├── 9x16/ # Vertical (TikTok, Reels, Shorts) ├── 1x1/ # Square (Instagram, Facebook) └── 16x9/ # Landscape (YouTube, website)