← ClaudeAtlas

video-enhancementlisted

AI Video Enhancement - Upscale video resolution, denoise, sharpen. Supports local files and YouTube/Bilibili URLs. HD/4K upscaling with real-time progress.
verging-ai/agent-skills · ★ 0 · AI & Automation · score 66
Install: claude install-skill verging-ai/agent-skills
# video-enhancement - AI Video Enhancement Upscale and enhance video quality using AI via verging.ai. ## Command Format ``` /video-enhancement --video <video file or URL> [options] ``` ## Options | Option | Short | Description | Default | |--------|-------|-------------|---------| | --video | -v | Video file path or URL (YouTube/Bilibili) | Required | | --start | -s | Start time in seconds | 0 | | --end | -e | End time in seconds | Video end (max 30s) | | --hd | | HD upscaling (5 credits/sec) | false (3 credits/sec) | | --api-key | -k | API Key | $VERGING_API_KEY | | --output | -o | Save path for result | Current directory | | --download | -d | Auto download result | false | ## Authentication **Recommended:** `Authorization: ApiKey <your_key>` ```bash # ✅ Recommended (canonical form) curl -H "Authorization: ApiKey vrg_sk_your_key_here" https://verging.ai/api/v1/auth/me # ✅ Also works (Bearer with API key is supported) curl -H "Authorization: Bearer vrg_sk_your_key_here" https://verging.ai/api/v1/auth/me ``` Get your API key: https://verging.ai → Login → Avatar → API Keys ## API Reference (Exact Formats) ### 1. Check Credits ```bash curl -H "Authorization: ApiKey $VERGING_API_KEY" \ https://verging.ai/api/v1/auth/me ``` Response: `{"email":"...","name":"...","credits":100}` ### 2. Get Upload URL (Form Data - NOT JSON) ```bash # ⚠️ MUST use -F (multipart form-data) curl -X POST https://verging.ai/api/v1/upload-video \ -H "Authorization: ApiKey $VERGING_API_KEY"