pixverse-ai-cli 1.2.3 → 1.2.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/README.md +3 -0
- package/dist/capabilities.json +2 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -228,6 +228,9 @@ pixverse create reference --images ./char1.png ./char2.png --prompt "Two friends
|
|
|
228
228
|
# Seedance 2.0 reference — mix images and videos (max 3 videos, total ≤ 15s)
|
|
229
229
|
pixverse create reference -m seedance-2.0-standard --images ./char.png --videos ./motion.mp4 --prompt "@image1 follows the motion in @video1"
|
|
230
230
|
|
|
231
|
+
# Seedance 2.0 reference — add audio references (max 3, each 2–15s, total ≤ 15s; needs a visual reference)
|
|
232
|
+
pixverse create reference -m seedance-2.0-standard --images ./char.png --audios ./voice.mp3 --prompt "@image1 speaks the line in @audio1"
|
|
233
|
+
|
|
231
234
|
# Motion control — character image + motion reference video
|
|
232
235
|
pixverse create motion-control --image ./character.png --video ./dance.mp4
|
|
233
236
|
|
package/dist/capabilities.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"cli": {
|
|
6
6
|
"name": "pixverse",
|
|
7
7
|
"package": "pixverse",
|
|
8
|
-
"version": "1.2.
|
|
8
|
+
"version": "1.2.4",
|
|
9
9
|
"binary": "pixverse",
|
|
10
10
|
"node": ">=20",
|
|
11
11
|
"description": "PixVerse CLI - generate videos and images from the command line"
|
|
@@ -304,6 +304,7 @@
|
|
|
304
304
|
"options": {
|
|
305
305
|
"--images <inputs...>": "Image inputs: file paths, HTTPS URLs, image IDs, or media paths (1–7, up to 9 for seedance-2.0; local oversized images are auto-resized to fit 1920x1920)",
|
|
306
306
|
"--videos <inputs...>": "Video reference inputs (seedance-2.0 only): file paths, HTTPS URLs, video IDs, or media paths (max 3, total duration ≤ 15s)",
|
|
307
|
+
"--audios <inputs...>": "Audio reference inputs (seedance-2.0 only): file paths, HTTPS URLs, audio IDs, or media paths (max 3, each 2–15s, total ≤ 15s; requires at least one image or video reference)",
|
|
307
308
|
"--prompt <text>": "Prompt text",
|
|
308
309
|
"-m, --model <model>": "Video model",
|
|
309
310
|
"-q, --quality <quality>": "Video quality",
|