pixverse-cli 1.0.0 → 1.0.1
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 +26 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ The official command-line interface (CLI) for [PixVerse](https://pixverse.ai)
|
|
|
4
4
|
|
|
5
5
|
## What is PixVerse?
|
|
6
6
|
|
|
7
|
-
PixVerse is an AI-powered creative platform that generates high-quality videos and images from text prompts or reference images. It supports a wide range of creative workflows including text-to-video, image-to-video, text-to-image, video transitions, lip-sync speech, sound effects, and more.
|
|
7
|
+
PixVerse is an AI-powered creative platform that generates high-quality videos and images from text prompts or reference images. It supports a wide range of creative workflows including text-to-video, image-to-video, text-to-image, video transitions, lip-sync speech, sound effects, templates/effects, and more.
|
|
8
8
|
|
|
9
9
|
## What is PixVerse CLI?
|
|
10
10
|
|
|
@@ -109,6 +109,9 @@ pixverse create upscale --video <video_id> --quality 1080p
|
|
|
109
109
|
|
|
110
110
|
# Generate video with character reference (requires 2+ images)
|
|
111
111
|
pixverse create reference --images ./char1.png ./char2.png --prompt "Two friends walking in a park"
|
|
112
|
+
|
|
113
|
+
# Create from a template/effect
|
|
114
|
+
pixverse create template --template-id 12345 --image ./photo.png
|
|
112
115
|
```
|
|
113
116
|
|
|
114
117
|
### Task Management
|
|
@@ -137,6 +140,23 @@ pixverse asset download <id>
|
|
|
137
140
|
pixverse asset delete <id>
|
|
138
141
|
```
|
|
139
142
|
|
|
143
|
+
### Templates
|
|
144
|
+
|
|
145
|
+
```bash
|
|
146
|
+
# List template categories
|
|
147
|
+
pixverse template categories
|
|
148
|
+
|
|
149
|
+
# List templates (with optional category filter and pagination)
|
|
150
|
+
pixverse template list
|
|
151
|
+
pixverse template list --category 5 --page 2 --limit 10
|
|
152
|
+
|
|
153
|
+
# Search templates by keyword
|
|
154
|
+
pixverse template search "dance"
|
|
155
|
+
|
|
156
|
+
# Get template details
|
|
157
|
+
pixverse template info <template_id>
|
|
158
|
+
```
|
|
159
|
+
|
|
140
160
|
### Account & Subscription
|
|
141
161
|
|
|
142
162
|
```bash
|
|
@@ -205,6 +225,11 @@ pixverse asset download "$VID" --dest ./output/
|
|
|
205
225
|
| `create extend` | Extend video duration |
|
|
206
226
|
| `create upscale` | Upscale video resolution |
|
|
207
227
|
| `create reference` | Generate video with reference style |
|
|
228
|
+
| `create template` | Create from a template/effect |
|
|
229
|
+
| `template categories` | List template categories |
|
|
230
|
+
| `template list` | List templates (with category filter) |
|
|
231
|
+
| `template search` | Search templates by keyword |
|
|
232
|
+
| `template info` | Get template details |
|
|
208
233
|
| `task status` | Check task status |
|
|
209
234
|
| `task wait` | Wait for task completion |
|
|
210
235
|
| `asset list` | List generated assets |
|