# ============================================================================== # 🚀 VIDEO GENERATOR - EXAMPLE ENVIRONMENT CONFIGURATION # ============================================================================== # 🔑 API CREDENTIALS # ------------------------------------------------------------------------------ # Pexels API: Recommended (Primary source for high-quality stock footage) # Get a free key at: https://www.pexels.com/api/ PEXELS_API_KEY=your_pexels_api_key_here # Pixabay API: Optional (Secondary fallback for stock images/videos) # Get a free key at: https://pixabay.com/api/docs/ PIXABAY_API_KEY=your_pixabay_api_key_here # 🌐 SERVER SETTINGS # ------------------------------------------------------------------------------ # Default port for the local asset/API server PORT=3001 # Recommended when deploying the portal publicly. # Used for canonical URLs, sitemap.xml, robots.txt, and social metadata. PUBLIC_BASE_URL=https://your-domain.example # 🎬 DEFAULT VIDEO SPECIFICATIONS # ------------------------------------------------------------------------------ # Default orientation (options: 'landscape' for 16:9 or 'portrait' for 9:16) VIDEO_ORIENTATION=landscape # AI Voice ID (Edge-TTS Neural Voice) # 👨 Male: en-US-GuyNeural, en-US-ChristopherNeural, en-GB-RyanNeural, en-IN-PrabhatNeural # 👩 Female: en-US-JennyNeural, en-US-AriaNeural, en-US-SaraNeural, en-GB-SoniaNeural VIDEO_VOICE=en-US-GuyNeural # ============================================================================== # 👋 Tip: Copy this file to .env and fill in your actual API keys. # ==============================================================================