pixverse-cli 1.0.1 → 1.0.2
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 +12 -3
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -171,12 +171,19 @@ pixverse subscribe
|
|
|
171
171
|
### Configuration
|
|
172
172
|
|
|
173
173
|
```bash
|
|
174
|
-
# Set
|
|
175
|
-
pixverse config set default-model v5.6
|
|
174
|
+
# Set output directory
|
|
176
175
|
pixverse config set output-dir ~/Downloads
|
|
177
176
|
|
|
178
177
|
# View current configuration
|
|
179
178
|
pixverse config list
|
|
179
|
+
|
|
180
|
+
# Show config file path
|
|
181
|
+
pixverse config path
|
|
182
|
+
|
|
183
|
+
# Set per-mode creation defaults (model, quality, duration, etc.)
|
|
184
|
+
pixverse config defaults set video model v5.6
|
|
185
|
+
pixverse config defaults set video quality 1080p
|
|
186
|
+
pixverse config defaults show
|
|
180
187
|
```
|
|
181
188
|
|
|
182
189
|
## JSON Output for Scripts & Agents
|
|
@@ -224,7 +231,7 @@ pixverse asset download "$VID" --dest ./output/
|
|
|
224
231
|
| `create sound` | Add AI sound effects to video |
|
|
225
232
|
| `create extend` | Extend video duration |
|
|
226
233
|
| `create upscale` | Upscale video resolution |
|
|
227
|
-
| `create reference` | Generate video with
|
|
234
|
+
| `create reference` | Generate video with character references |
|
|
228
235
|
| `create template` | Create from a template/effect |
|
|
229
236
|
| `template categories` | List template categories |
|
|
230
237
|
| `template list` | List templates (with category filter) |
|
|
@@ -243,6 +250,8 @@ pixverse asset download "$VID" --dest ./output/
|
|
|
243
250
|
| `config get` | Get a config value |
|
|
244
251
|
| `config list` | List all config values |
|
|
245
252
|
| `config reset` | Reset config to defaults |
|
|
253
|
+
| `config path` | Show config file path |
|
|
254
|
+
| `config defaults` | Manage per-mode creation defaults |
|
|
246
255
|
|
|
247
256
|
## Global Flags
|
|
248
257
|
|