- name
- pixmind-video
- description
- Generate AI videos via Pixmind API (text-to-video and image-to-video)
- homepage
- https://www.pixmind.io
- metadata
- {"openclaw": {"requires": {"env": ["PIXMIND_API_KEY"]}, "primaryEnv": "PIXMIND_API_KEY"}}
Pixmind Video Generation Skill
Generate AI videos using Pixmind. Supports text-to-video and image-to-video generation.
Note: The API endpointaihub-admin.aimix.prois the official Pixmind API gateway. Result URLs onchatmix.topare Pixmind's CDN for generated content.
When to use
- User asks to generate or create a video
- User wants to animate an existing image into a video
- User requests video content from a text description
Prerequisites
- Register at pixmind.io — 注册即送 200 积分免费试用
- Create an API key at pixmind.io/api-keys
- Set env
PIXMIND_API_KEYwith your key
API Details
Endpoint: POST https://aihub-admin.aimix.pro/open-api/v1/video/generate Auth: Header X-API-Key: {API_KEY} (from env PIXMIND_API_KEY)
Request Body (JSON)
| Parameter | Required | Type | Description |
|---|---|---|---|
prompt | Yes | string | Video description / prompt |
model | No | string | Model ID (default varies) |
duration | No | number | Video duration in seconds |
aspectRatio | No | string | Aspect ratio: 16:9, 9:16, 1:1 |
resolution | No | string | Resolution: 1080p, 720p |
generateType | No | string | text2video (default) or img2video |
imageUrl | No | string | Reference image URL (required for img2video) |
Available Models
| Model ID | Name | Text-to-Video | Image-to-Video | Notes |
|---|---|---|---|---|
seedance-1.5-pro | Seedance 1.5 Pro | ✓ | ✓ | Latest ByteDance flagship video model |
seedance-1.5 | Seedance 1.5 | ✓ | ✓ | ByteDance Seedance 1.5 standard |
seedance-1.5-lite | Seedance 1.5 Lite | ✓ | ✓ | Lightweight variant |
seedance-1.5-turbo | Seedance 1.5 Turbo | ✓ | ✓ | Fast generation variant |
seedance-1.0-pro | Seedance 1.0 Pro | ✓ | ✓ | Previous generation, high quality |
seedance-1.0 | Seedance 1.0 | ✓ | ✓ | Previous generation standard |
seedance-1.0-lite | Seedance 1.0 Lite | ✓ | ✓ | Economy variant |
veo-3.0 | Veo 3.0 | ✓ | ✓ | Google Veo 3.0 |
veo-3 | Veo 3 | ✓ | ✓ | Google Veo 3 |
veo-3.0-fast | Veo 3.0 Fast | ✓ | ✓ | Fast variant of Veo 3.0 |
veo-2 | Veo 2 | ✓ | ✓ | Google Veo 2 |
sora-2 | Sora 2 | ✓ | ✓ | OpenAI Sora 2 |
pixverse-4.0 | Pixverse 4.0 | ✓ | ✓ | Latest Pixverse model |
pixverse-3.0 | Pixverse 3.0 | ✓ | ✓ | Pixverse 3.0 |
pixverse-2.0 | Pixverse 2.0 | ✓ | ✓ | Pixverse 2.0 |
pixverse-1.0 | Pixverse 1.0 | ✓ | ✓ | Pixverse 1.0 |
pixverse-video | Pixverse Video | ✓ | ✓ | Pixverse default |
kling-v1.6 | Kling 1.6 | ✓ | ✓ | Kuaishou Kling v1.6 |
kling-v1.5 | Kling 1.5 | ✓ | ✓ | Kuaishou Kling v1.5 |
kling-std-1.6 | Kling 1.6 Standard | ✓ | ✓ | Standard quality |
minimax-t2v-01 | MiniMax T2V 01 | ✓ | ✗ | MiniMax text-to-video |
minimax-t2v-01-live | MiniMax T2V 01 Live | ✓ | ✗ | MiniMax live mode |
wan2.1-t2v | Wan 2.1 T2V | ✓ | ✗ | Alibaba Wan 2.1 text-to-video |
Model Introductions
Seedance (ByteDance) — Flagship video generation series. Known for smooth motion, realistic physics, and high visual fidelity.
seedance-1.5-pro— Latest and highest quality. Best for professional-grade video production.seedance-1.5/seedance-1.5-lite/seedance-1.5-turbo— Quality, cost, and speed tradeoffs within the 1.5 generation.seedance-1.0series — Previous generation, still capable for general use.
Google Veo — Google's state-of-the-art video generation models.
veo-3.0/veo-3— Latest Veo 3 series with highest realism and instruction following.veo-3.0-fast— Faster generation with slightly reduced quality.veo-2— Previous generation, reliable quality.
OpenAI Sora — OpenAI's video generation model.
sora-2— Latest Sora version, strong at complex scenes and physical accuracy.
Pixverse — Specialized creative video model with strong artistic style.
pixverse-4.0— Latest version with best quality and style control.pixverse-3.0/2.0/1.0— Previous generations.
Kling (Kuaishou) — Chinese video generation platform with strong performance.
kling-v1.6— Latest version with improved motion and consistency.kling-v1.5— Previous stable version.kling-std-1.6— Standard quality variant for cost efficiency.
MiniMax — Efficient text-to-video generation.
minimax-t2v-01— Base model, text-to-video only.minimax-t2v-01-live— Optimized for real-time or near-real-time generation.
Wan (Alibaba) — Alibaba's video generation diffusion model.
wan2.1-t2v— Text-to-video model with good visual quality.
Usage
Use curl or the included helper script:
# Text to video (via curl)
curl -X POST https://aihub-admin.aimix.pro/open-api/v1/video/generate \
-H "Content-Type: application/json" \
-H "X-API-Key: $PIXMIND_API_KEY" \
-d '{"prompt": "ocean waves", "duration": 5, "aspectRatio": "16:9"}'
# Or use the helper script
node {baseDir}/video-generate.js --prompt "描述文字" --duration 5 --aspect-ratio 16:9Task Status Polling
After generation, poll for results:
# Via curl
curl https://aihub-admin.aimix.pro/open-api/v1/task/<TASK_ID> \
-H "X-API-Key: $PIXMIND_API_KEY"
# Or use the helper script
node {baseDir}/task-status.js --task-id <TASK_ID> --pollResponse Format
Generate response:
{"code": 1000, "data": {"taskId": 19401, "status": "processing"}}Task status response:
{
"code": 1000,
"data": {
"taskId": 19401,
"status": "ready",
"progress": 100,
"videoUrl": "https://chatmix.top/...",
"coverUrl": "https://chatmix.top/..."
}
}data.taskId— Use this to poll status- Status values:
processing→ready(success) - On success:
data.videoUrlcontains the video URL,data.coverUrlhas the cover image
Guidelines
- Always confirm the prompt and duration with the user before generating
- Default to
seedance-1.5orsora-2unless user specifies otherwise - Use
16:9aspect ratio by default for video content - If user provides a reference image, automatically use
img2videomode - Video generation takes longer than images — use
--pollwith appropriate interval (recommend 5–10s) - After getting the task ID, poll until completion and return video URL
- For longer videos, consider
seedance-1.5-liteorkling-std-1.6for faster results