videodraft 0.11.0 → 0.12.0
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 +11 -1
- package/dist/index.js +476 -19
- package/package.json +1 -1
- package/skills/index.json +5 -5
- package/skills/videodraft/SKILL.md +3 -1
- package/skills/videodraft/references/models.md +15 -11
- package/skills/videodraft/references/pipeline.md +1 -1
package/README.md
CHANGED
|
@@ -50,6 +50,10 @@ videodraft avatar create ./founder.jpg --script "$(videodraft avatar script 'our
|
|
|
50
50
|
videodraft edit video ./clip.mp4 "Add falling snow" --model grok-imagine-video-edit --download ./clip-snow.mp4
|
|
51
51
|
videodraft edit motion ./character.png "Apply the reference dance" --motion-video ./dance.mp4 --download ./character-dance.mp4
|
|
52
52
|
videodraft generate video "Match this performance" --model kling-o3-video-ref-edit --ref-video ./performance.mp4 --ref ./wardrobe.png --download ./guided.mp4
|
|
53
|
+
videodraft kling-voices create ./speaker.wav --name "Narrator" --confirm-consent
|
|
54
|
+
videodraft kling-voices create ./speaker.wav --name "Narrator" --estimate
|
|
55
|
+
videodraft generate video "@Element1 says welcome" --model kling-3.0 --start-image ./scene.png --audio --element '{"video_url":"./speaker.mp4","voice_id":"VOICE_ID"}'
|
|
56
|
+
videodraft generate video "<<<voice_1>>> Welcome" --model kling-2.6-pro --start-image ./host.png --audio --voice-id VOICE_ID
|
|
53
57
|
```
|
|
54
58
|
|
|
55
59
|
`generate audio` automatically retries transient and lost responses with one
|
|
@@ -95,7 +99,7 @@ videodraft export <project> --download final.mp4
|
|
|
95
99
|
| Group | Commands |
|
|
96
100
|
| --------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
|
97
101
|
| Auth | `login` `logout` `whoami` |
|
|
98
|
-
| Account | `credits` `costs [model]` `models [image\|video\|audio\|voices\|styles]` `workspaces` `sessions list/create`
|
|
102
|
+
| Account | `credits` `costs [model]` `models [image\|video\|audio\|voices\|styles]` `workspaces` `sessions list/create` `kling-voices list/create/delete` |
|
|
99
103
|
| Projects | `projects list/get/delete/favorite/open` `checkpoint create/list/restore` |
|
|
100
104
|
| Pipeline | `create` `shots` `produce` (`--mode full_video`) `attach` `finalize` `export` `export-status` `video-prompts` |
|
|
101
105
|
| Generate | `generate image/video/audio/voiceover/music/sound-effect/dialogue/voice-changer/dub` `edit video/motion` `upscale image/video` `avatar script/create/render/get/list/fabric/lipsync` |
|
|
@@ -107,6 +111,12 @@ videodraft export <project> --download final.mp4
|
|
|
107
111
|
|
|
108
112
|
`call` reaches **every** VideoDraft API tool (the full MCP catalog), including ones without a curated command — new platform features work in the CLI the day they ship.
|
|
109
113
|
|
|
114
|
+
Kling voice creation costs 1 VideoDraft credit on the platform Fal account and
|
|
115
|
+
0 credits with Fal BYOK. `--estimate` checks the active account without creating
|
|
116
|
+
a voice. Samples must be MP3, WAV, MP4, or MOV, 5-30 seconds, and no larger
|
|
117
|
+
than 50 MB. Voice IDs are opaque strings scoped to the Fal account that created
|
|
118
|
+
them; keep a `voice_id` inside its image-backed or video-backed element so the binding is preserved.
|
|
119
|
+
|
|
110
120
|
## For agents and scripts
|
|
111
121
|
|
|
112
122
|
- `--json` on any command prints a single JSON document on stdout.
|