/install pixmind-video
Pixmind Video Generation Skill
Generate AI videos using Pixmind. Supports text-to-video and image-to-video generation.
Note: The API endpoint
aihub-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
- 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 name |
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) |
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:9
Task Status Polling
After generation, poll for results:
# Via curl
curl https://aihub-admin.aimix.pro/open-api/v1/task/\x3CTASK_ID> \
-H "X-API-Key: $PIXMIND_API_KEY"
# Or use the helper script
node {baseDir}/task-status.js --task-id \x3CTASK_ID> --poll
Response 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
text2videomode unless user provides a reference image - 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 - After getting the task ID, poll until completion and return video URL
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install pixmind-video - 安装完成后,直接呼叫该 Skill 的名称或使用
/pixmind-video触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Pixmind Video Generation 是什么?
Generate AI videos via Pixmind API (text-to-video and image-to-video). 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 138 次。
如何安装 Pixmind Video Generation?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install pixmind-video」即可一键安装,无需额外配置。
Pixmind Video Generation 是免费的吗?
是的,Pixmind Video Generation 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Pixmind Video Generation 支持哪些平台?
Pixmind Video Generation 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Pixmind Video Generation?
由 Pixmind(@fuyunzhishang)开发并维护,当前版本 v1.3.0。