pixverse-ai-cli 1.0.8 → 1.0.10
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 +8 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -104,12 +104,18 @@ pixverse create sound --video <video_id> --prompt "Birds chirping in a forest"
|
|
|
104
104
|
# Extend video duration
|
|
105
105
|
pixverse create extend --video <video_id>
|
|
106
106
|
|
|
107
|
+
# Modify an existing video
|
|
108
|
+
pixverse create modify --video <video_id> --prompt "Change the background to a beach"
|
|
109
|
+
|
|
107
110
|
# Upscale video resolution
|
|
108
111
|
pixverse create upscale --video <video_id> --quality 1080p
|
|
109
112
|
|
|
110
113
|
# Generate video with character reference (1–7 images)
|
|
111
114
|
pixverse create reference --images ./char1.png ./char2.png --prompt "Two friends walking in a park"
|
|
112
115
|
|
|
116
|
+
# Motion control — character image + motion reference video
|
|
117
|
+
pixverse create motion-control --image ./character.png --video ./dance.mp4
|
|
118
|
+
|
|
113
119
|
# Create from a template/effect
|
|
114
120
|
pixverse create template --template-id 12345 --image ./photo.png
|
|
115
121
|
```
|
|
@@ -247,8 +253,10 @@ pixverse asset download "$VID" --dest ./output/
|
|
|
247
253
|
| `create speech` | Add lip-sync speech to video |
|
|
248
254
|
| `create sound` | Add AI sound effects to video |
|
|
249
255
|
| `create extend` | Extend video duration |
|
|
256
|
+
| `create modify` | Modify an existing video |
|
|
250
257
|
| `create upscale` | Upscale video resolution |
|
|
251
258
|
| `create reference` | Generate video with character references |
|
|
259
|
+
| `create motion-control` | Motion control with character image + reference video |
|
|
252
260
|
| `create template` | Create from a template/effect |
|
|
253
261
|
| `template categories` | List template categories |
|
|
254
262
|
| `template list` | List templates (with category filter) |
|