openclaw-media-gen
⚠Review·Scanned 2/17/2026
This skill is a client for generating images and videos via AIsa (Gemini/Qwen) using AISA_API_KEY and the https://api.aisa.one endpoints. It explicitly reads AISA_API_KEY, provides curl and python3 examples that perform network requests, and saves outputs like out.png/out.mp4.
from clawhub.ai·v35c242e·18.7 KB·0 installs
Scanned from 1.0.0 at 35c242e · Transparency log ↗
$ vett add clawhub.ai/chaimengphp/openclaw-media-genReview findings below
OpenClaw Media Gen
Generate images and videos using AIsa API:
- Gemini Image:
gemini-3-pro-image-preview(/v1/models/{model}:generateContent) - Wan 2.6 Video:
wan2.6-t2v(/apis/v1/services/aigc/...async task + polling)
API Documentation: https://aisa.mintlify.app/api-reference/introduction
Pricing Comparison - Video (WAN)
| Resolution | AIsa (Contract) | AIsa (Official) | Bailian (Official) | OpenRouter |
|---|---|---|---|---|
| 720P | $0.06/sec | ~$0.08 | ~$0.10 | ❌ |
| 1080P | $0.09/sec | ~$0.12 | ~$0.15 | ❌ |
| Pro/Animate | $0.108–0.156 | ~$0.18 | ~$0.25 | ❌ |
Competitive Advantage: AIsa offers the lowest pricing for WAN video generation with contract rates, and remains competitive even at official pricing. OpenRouter does not currently support video generation.
Quick Start
export AISA_API_KEY="your-key"
Generate Image
python scripts/media_gen_client.py image \
--prompt "A cute red panda, cinematic lighting" \
--out out.png
Generate Video (Create Task + Poll)
python scripts/media_gen_client.py video-create \
--prompt "cinematic close-up, slow push-in" \
--img-url "https://upload.wikimedia.org/wikipedia/commons/thumb/3/3a/Cat03.jpg/320px-Cat03.jpg" \
--duration 5
python scripts/media_gen_client.py video-wait \
--task-id <task_id> \
--poll 10 \
--timeout 600
Auto-download Generated Video (mp4)
python scripts/media_gen_client.py video-wait \
--task-id <task_id> \
--download \
--out out.mp4