@acedatacloud/skills 2026.504.2 → 2026.504.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acedatacloud/skills",
|
|
3
|
-
"version": "2026.504.
|
|
3
|
+
"version": "2026.504.4",
|
|
4
4
|
"description": "Agent Skills for AceDataCloud AI services — music, image, video generation, LLM chat, web search. Compatible with Claude Code, GitHub Copilot, Gemini CLI, OpenAI Codex, and 30+ AI coding agents.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent-skills",
|
|
@@ -44,6 +44,7 @@ curl -X POST https://api.acedata.cloud/kling/videos \
|
|
|
44
44
|
|------|-------|------|---------|
|
|
45
45
|
| `std` (Standard) | Slower | Lower | Draft/preview |
|
|
46
46
|
| `pro` (Professional) | Faster | Higher | Final output |
|
|
47
|
+
| `4k` (Native 4K) | — | Premium | Native 4K output — only `kling-v3` and `kling-v3-omni`; incompatible with `camera_control` |
|
|
47
48
|
|
|
48
49
|
## Workflows
|
|
49
50
|
|
|
@@ -109,7 +110,7 @@ POST /kling/motion
|
|
|
109
110
|
|-----------|--------|-------------|
|
|
110
111
|
| `action` | `"text2video"`, `"image2video"`, `"extend"` | Generation mode |
|
|
111
112
|
| `model` | See models table | Model to use |
|
|
112
|
-
| `mode` | `"std"`, `"pro"` | Quality mode |
|
|
113
|
+
| `mode` | `"std"`, `"pro"`, `"4k"` | Quality mode (`4k` only for `kling-v3` / `kling-v3-omni`, incompatible with `camera_control`) |
|
|
113
114
|
| `duration` | `5`, `10` (v3/v3-omni: `3`–`15`) | Duration in seconds |
|
|
114
115
|
| `generate_audio` | `true`, `false` | Generate audio with video (v3, v3-omni, v2-6 pro only) |
|
|
115
116
|
| `aspect_ratio` | `"16:9"`, `"9:16"`, `"1:1"` | Video aspect ratio |
|
|
@@ -123,6 +124,7 @@ POST /kling/motion
|
|
|
123
124
|
## Gotchas
|
|
124
125
|
|
|
125
126
|
- `duration` supports `5` or `10` seconds for most models; `kling-v3` and `kling-v3-omni` support flexible `3`–`15` seconds
|
|
127
|
+
- `mode=4k` is only available for `kling-v3` and `kling-v3-omni` and is incompatible with `camera_control`
|
|
126
128
|
- `generate_audio` enables synchronized audio generation (supported by `kling-v3`, `kling-v3-omni`, and `kling-v2-6` in pro mode)
|
|
127
129
|
- `end_image_url` is only for `image2video` action — it defines the last frame
|
|
128
130
|
- Motion control (`/kling/motion`) is a separate endpoint from video generation
|
|
@@ -153,7 +153,7 @@ These top-level fields on `POST /midjourney/imagine` affect billing and are sepa
|
|
|
153
153
|
|-----------|------|-------------|
|
|
154
154
|
| `version` | string | Midjourney version (`"8"`, `"7"`, `"6.1"`, etc.) — used for billing calculation |
|
|
155
155
|
| `hd` | boolean | Enable HD 2K resolution (V8 only) — costs 4× GPU time |
|
|
156
|
-
| `quality` | string | Quality level: `".25"`, `".5"`, `"1"`, `"2"`, `"4"` — quality `"4"` is V8 only and costs
|
|
156
|
+
| `quality` | string | Quality level: `".25"`, `".5"`, `"1"`, `"2"`, `"4"` — quality `"4"` is V8 only and costs 4× GPU time |
|
|
157
157
|
| `style_reference` | boolean | Whether prompt uses `--sref` style references (V8: costs 4× GPU time) |
|
|
158
158
|
| `moodboard` | boolean | Whether prompt uses moodboard image references (V8: costs 4× GPU time) |
|
|
159
159
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: veo-video
|
|
3
|
-
description: Generate AI videos with Google Veo via AceDataCloud API. Use when creating videos from text descriptions, animating still images into video, or
|
|
3
|
+
description: Generate AI videos with Google Veo via AceDataCloud API. Use when creating videos from text descriptions, animating still images into video, upscaling/extending videos, re-shooting with new camera motion, or inserting/removing objects. Supports Veo 2, Veo 3, and Veo 3.1 models including fast variants.
|
|
4
4
|
license: Apache-2.0
|
|
5
5
|
metadata:
|
|
6
6
|
author: acedatacloud
|
|
@@ -74,7 +74,23 @@ POST /veo/videos
|
|
|
74
74
|
}
|
|
75
75
|
```
|
|
76
76
|
|
|
77
|
-
### 3.
|
|
77
|
+
### 3. Ingredients-to-Video (Multi-Image Blend)
|
|
78
|
+
|
|
79
|
+
Blend 1–3 reference images into a video (only `veo31-fast-ingredients`).
|
|
80
|
+
|
|
81
|
+
```json
|
|
82
|
+
POST /veo/videos
|
|
83
|
+
{
|
|
84
|
+
"action": "ingredients2video",
|
|
85
|
+
"image_urls": [
|
|
86
|
+
"https://example.com/img1.jpg",
|
|
87
|
+
"https://example.com/img2.jpg"
|
|
88
|
+
],
|
|
89
|
+
"model": "veo31-fast-ingredients"
|
|
90
|
+
}
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
### 4. Upscale to 1080p
|
|
78
94
|
|
|
79
95
|
Convert a previously generated video to full 1080p resolution.
|
|
80
96
|
|
|
@@ -91,22 +107,113 @@ POST /veo/videos
|
|
|
91
107
|
|
|
92
108
|
| Parameter | Values | Description |
|
|
93
109
|
|-----------|--------|-------------|
|
|
94
|
-
| `action` | `"text2video"`, `"image2video"`, `"get1080p"` | Generation mode |
|
|
110
|
+
| `action` | `"text2video"`, `"image2video"`, `"ingredients2video"`, `"get1080p"` | Generation mode |
|
|
95
111
|
| `model` | see Models table | Model to use (default: `veo2-fast`) |
|
|
96
112
|
| `resolution` | `"4k"`, `"1080p"`, `"gif"` | Output resolution (default: 720p) |
|
|
97
113
|
| `aspect_ratio` | `"16:9"`, `"9:16"`, `"1:1"`, `"4:3"`, `"3:4"` | Aspect ratio — only valid for `image2video` |
|
|
98
|
-
| `image_urls` | array of strings | Reference image URLs —
|
|
114
|
+
| `image_urls` | array of strings | Reference image URLs — for `image2video` (up to 2) or `ingredients2video` (up to 3) |
|
|
99
115
|
| `video_id` | string | Video to upscale — only for `get1080p` |
|
|
100
116
|
| `translation` | `true` / `false` | Auto-translate prompt to English (default: false) |
|
|
101
117
|
|
|
118
|
+
## Post-Generation Endpoints
|
|
119
|
+
|
|
120
|
+
After generating a video, use these endpoints to further process it:
|
|
121
|
+
|
|
122
|
+
### Upsample (`POST /veo/upsample`)
|
|
123
|
+
|
|
124
|
+
Upscale a generated video to 1080p, 4K, or convert to GIF.
|
|
125
|
+
|
|
126
|
+
```json
|
|
127
|
+
POST /veo/upsample
|
|
128
|
+
{
|
|
129
|
+
"video_id": "your-video-id",
|
|
130
|
+
"action": "4k"
|
|
131
|
+
}
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
| Parameter | Values | Description |
|
|
135
|
+
|-----------|--------|-------------|
|
|
136
|
+
| `video_id` | string | Task ID from `/veo/videos`, `/veo/extend`, `/veo/reshoot`, or `/veo/objects` |
|
|
137
|
+
| `action` | `"1080p"`, `"4k"`, `"gif"` | Upsample target |
|
|
138
|
+
|
|
139
|
+
### Extend (`POST /veo/extend`)
|
|
140
|
+
|
|
141
|
+
Continue an existing video — AI auto-generates the next segment.
|
|
142
|
+
|
|
143
|
+
```json
|
|
144
|
+
POST /veo/extend
|
|
145
|
+
{
|
|
146
|
+
"video_id": "your-video-id",
|
|
147
|
+
"model": "veo31-fast",
|
|
148
|
+
"prompt": "the camera slowly zooms out"
|
|
149
|
+
}
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
| Parameter | Values | Description |
|
|
153
|
+
|-----------|--------|-------------|
|
|
154
|
+
| `video_id` | string | Task ID from `/veo/videos` or a prior `/veo/extend` |
|
|
155
|
+
| `model` | `"veo31-fast"`, `"veo31"` | Only Veo 3.1 series is supported |
|
|
156
|
+
| `prompt` | string | Optional: guides the extended segment |
|
|
157
|
+
|
|
158
|
+
### Reshoot (`POST /veo/reshoot`)
|
|
159
|
+
|
|
160
|
+
Re-render a video keeping the same content but applying new camera motion.
|
|
161
|
+
|
|
162
|
+
```json
|
|
163
|
+
POST /veo/reshoot
|
|
164
|
+
{
|
|
165
|
+
"video_id": "your-video-id",
|
|
166
|
+
"motion_type": "LEFT_TO_RIGHT"
|
|
167
|
+
}
|
|
168
|
+
```
|
|
169
|
+
|
|
170
|
+
| Parameter | Values | Description |
|
|
171
|
+
|-----------|--------|-------------|
|
|
172
|
+
| `video_id` | string | Task ID from `/veo/videos` (cannot use `/veo/extend` output) |
|
|
173
|
+
| `motion_type` | see table below | Camera motion to apply |
|
|
174
|
+
|
|
175
|
+
**`motion_type` values:**
|
|
176
|
+
`STATIONARY`, `STATIONARY_UP`, `STATIONARY_DOWN`, `STATIONARY_LEFT`, `STATIONARY_RIGHT`, `STATIONARY_DOLLY_IN_ZOOM_OUT`, `STATIONARY_DOLLY_OUT_ZOOM_IN`, `UP`, `DOWN`, `LEFT_TO_RIGHT`, `RIGHT_TO_LEFT`, `FORWARD`, `BACKWARD`, `DOLLY_IN_ZOOM_OUT`, `DOLLY_OUT_ZOOM_IN`
|
|
177
|
+
|
|
178
|
+
### Objects (`POST /veo/objects`)
|
|
179
|
+
|
|
180
|
+
Insert or remove objects in a video using mask-based inpainting.
|
|
181
|
+
|
|
182
|
+
```json
|
|
183
|
+
POST /veo/objects
|
|
184
|
+
{
|
|
185
|
+
"video_id": "your-video-id",
|
|
186
|
+
"action": "insert",
|
|
187
|
+
"prompt": "add a flying bird"
|
|
188
|
+
}
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
```json
|
|
192
|
+
POST /veo/objects
|
|
193
|
+
{
|
|
194
|
+
"video_id": "your-video-id",
|
|
195
|
+
"action": "remove",
|
|
196
|
+
"image_mask": "https://example.com/mask.jpg"
|
|
197
|
+
}
|
|
198
|
+
```
|
|
199
|
+
|
|
200
|
+
| Parameter | Values | Description |
|
|
201
|
+
|-----------|--------|-------------|
|
|
202
|
+
| `video_id` | string | Task ID (cannot use `/veo/extend` output) |
|
|
203
|
+
| `action` | `"insert"`, `"remove"` | Operation type |
|
|
204
|
+
| `prompt` | string | Required for `insert`; optional for `remove` |
|
|
205
|
+
| `image_mask` | string | URL or base64 JPEG — white pixels = target region. Required for `remove`; optional for `insert` |
|
|
206
|
+
|
|
102
207
|
## Gotchas
|
|
103
208
|
|
|
104
209
|
- Veo 3 and 3.1 models generate **native audio** — `veo2`/`veo2-fast` do NOT support audio
|
|
105
210
|
- The `get1080p` action uses `video_id` (from a prior generation), not a URL
|
|
106
211
|
- `aspect_ratio` is **only valid** for the `image2video` action
|
|
107
|
-
- `image_urls` accepts an array —
|
|
212
|
+
- `image_urls` accepts an array — up to 2 images for `image2video`, up to 3 for `ingredients2video`
|
|
213
|
+
- `veo31-fast-ingredients` **requires** image input — it cannot do text-only generation
|
|
108
214
|
- `translation: true` auto-translates Chinese or other non-English prompts before sending to Veo
|
|
109
215
|
- Task polling uses `id` (not `task_id`) in the `/veo/tasks` request body
|
|
110
216
|
- Task states use `"succeeded"` (not "completed") — check for this value when polling
|
|
217
|
+
- `/veo/extend` output **cannot** be used as input for `/veo/reshoot` or `/veo/objects`
|
|
111
218
|
|
|
112
219
|
> **MCP:** `pip install mcp-veo` | Hosted: `https://veo.mcp.acedata.cloud/mcp` | See [all MCP servers](../_shared/mcp-servers.md)
|