pixverse-ai-cli 1.1.5 → 1.1.7
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/README.md +28 -3
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -78,14 +78,28 @@ This opens a browser where you confirm the authorization. You can also copy the
|
|
|
78
78
|
| Sora 2 Pro | `sora-2-pro` | `720p` `1080p` | `4` `8` `12`s | `16:9` `9:16` |
|
|
79
79
|
| Sora 2 | `sora-2` | `720p` | `4` `8` `12`s | `16:9` `9:16` |
|
|
80
80
|
|
|
81
|
-
> Not all models support all creation modes.
|
|
81
|
+
> Not all models support all creation modes. See the per-mode support matrix below.
|
|
82
|
+
|
|
83
|
+
#### Per-mode Model Support
|
|
84
|
+
|
|
85
|
+
| Creation mode | Supported `--model` values |
|
|
86
|
+
|:---|:---|
|
|
87
|
+
| `create video` (text-to-video / image-to-video) | `v6` `pixverse-c1` `v5.6` `v5.5` `v5` `v5-fast` `seedance-2.0-standard` `seedance-2.0-fast` `grok-imagine` `veo-3.1-lite` `veo-3.1-standard` `veo-3.1-fast` `sora-2-pro` `sora-2` `kling-o3-pro` `kling-o3-standard` `kling-3.0-pro` `kling-3.0-standard` `happyhorse-1.0` |
|
|
88
|
+
| `create extend` | `v6` `v5.5` `v5` `grok-imagine` |
|
|
89
|
+
| `create reference` (multi-subject fusion) | `pixverse-c1` `v5` `v5.6` `seedance-2.0-standard` `seedance-2.0-fast` `kling-o3-pro` `kling-o3-standard` `grok-imagine` |
|
|
90
|
+
| `create transition` (2 frames) | `v6` `pixverse-c1` `v5.6` `v5.5` `v5` `v4.5` `seedance-2.0-standard` `seedance-2.0-fast` `veo-3.1-lite` `veo-3.1-standard` `veo-3.1-fast` `kling-o3-pro` `kling-o3-standard` `kling-3.0-pro` `kling-3.0-standard` |
|
|
91
|
+
| `create transition` (3+ frames) | `v5` `v4.5` |
|
|
92
|
+
| `create modify` | `v5.5` |
|
|
93
|
+
| `create motion-control` | `v5.6` |
|
|
94
|
+
| `create speech` (lip sync) | `v5` |
|
|
95
|
+
| `create sound` (sound effect) | `v5` |
|
|
82
96
|
|
|
83
97
|
### Image Models (`--model <value>`)
|
|
84
98
|
|
|
85
99
|
| Model | `--model` value | Quality | Aspect Ratio |
|
|
86
100
|
|:---|:---|:---|:---|
|
|
87
101
|
| Qwen-image *(default)* | `qwen-image` | `720p` `1080p` | `1:1` `16:9` `9:16` `4:3` `3:4` `5:4` `4:5` `3:2` `2:3` `21:9` |
|
|
88
|
-
| GPT Image 2 | `gpt-image-2.0` | `1080p` `1440p` `2160p` | `1:1` `
|
|
102
|
+
| GPT Image 2 | `gpt-image-2.0` | `1080p` `1440p` `2160p` | `1:1` `16:9` `9:16` `4:3` `3:4` `3:2` `2:3` `2:1` `1:2` `21:9` |
|
|
89
103
|
| Nano Banana 2 | `gemini-3.1-flash` | `512p` `1080p` `1440p` `2160p` | `auto` `1:1` `16:9` `9:16` + more |
|
|
90
104
|
| Nano Banana Pro | `gemini-3.0` | `1080p` `1440p` `2160p` | `auto` `1:1` `16:9` `9:16` + more |
|
|
91
105
|
| Nano Banana | `gemini-2.5-flash` | `1080p` | `auto` `1:1` `16:9` `9:16` + more |
|
|
@@ -161,6 +175,9 @@ pixverse create upscale --video <video_id> --quality 1080p
|
|
|
161
175
|
# Generate video with character reference (1–7 images)
|
|
162
176
|
pixverse create reference --images ./char1.png ./char2.png --prompt "Two friends walking in a park"
|
|
163
177
|
|
|
178
|
+
# Seedance 2.0 reference — mix images and videos (max 3 videos, total ≤ 15s)
|
|
179
|
+
pixverse create reference -m seedance-2.0-standard --images ./char.png --videos ./motion.mp4 --prompt "@image1 follows the motion in @video1"
|
|
180
|
+
|
|
164
181
|
# Motion control — character image + motion reference video
|
|
165
182
|
pixverse create motion-control --image ./character.png --video ./dance.mp4
|
|
166
183
|
|
|
@@ -188,6 +205,9 @@ These flags are available across most `create` subcommands:
|
|
|
188
205
|
# Check task status
|
|
189
206
|
pixverse task status <id>
|
|
190
207
|
|
|
208
|
+
# Batch status query (parallel; per-ID failures captured in the response map)
|
|
209
|
+
pixverse task status --ids 123,456,789 --type video --json
|
|
210
|
+
|
|
191
211
|
# Wait for a task to complete
|
|
192
212
|
pixverse task wait <id>
|
|
193
213
|
```
|
|
@@ -282,6 +302,10 @@ pixverse workspace manage
|
|
|
282
302
|
pixverse account info
|
|
283
303
|
pixverse account usage
|
|
284
304
|
|
|
305
|
+
# View current concurrent generation slots (image / video)
|
|
306
|
+
pixverse account slots
|
|
307
|
+
pixverse account slots --json
|
|
308
|
+
|
|
285
309
|
# Open subscription page in browser
|
|
286
310
|
pixverse subscribe
|
|
287
311
|
```
|
|
@@ -357,7 +381,7 @@ pixverse asset download "$VID" --dest ./output/
|
|
|
357
381
|
| `template list` | List templates (with category filter) |
|
|
358
382
|
| `template search` | Search templates by keyword |
|
|
359
383
|
| `template info` | Get template details |
|
|
360
|
-
| `task status` | Check task status |
|
|
384
|
+
| `task status` | Check task status (single `<id>` or `--ids id1,id2,...` for batch) |
|
|
361
385
|
| `task wait` | Wait for task completion |
|
|
362
386
|
| `asset list` | List assets (`--source create\|upload`, `--type video\|image`, `--off-peak`) |
|
|
363
387
|
| `asset upload` | Upload a local file or HTTPS URL to asset library |
|
|
@@ -377,6 +401,7 @@ pixverse asset download "$VID" --dest ./output/
|
|
|
377
401
|
| `workspace manage` | Open workspace management in browser |
|
|
378
402
|
| `account info` | View account info and workspace credits |
|
|
379
403
|
| `account usage` | View credit usage |
|
|
404
|
+
| `account slots` | View current concurrent generation slots (image / video) |
|
|
380
405
|
| `subscribe` | Open subscription page |
|
|
381
406
|
| `config set` | Set a config value |
|
|
382
407
|
| `config get` | Get a config value |
|