@pippit-dev/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 +2 -2
- package/checksums.txt +6 -6
- package/cmd/generate_video/generate_video.go +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -227,11 +227,11 @@ pippit-tool-cli generate-video \
|
|
|
227
227
|
--audio "~/audio/bgm.mp3" \
|
|
228
228
|
--duration 5 \
|
|
229
229
|
--ratio "9:16" \
|
|
230
|
-
--model "
|
|
230
|
+
--model "Seedance_2.0_mini_lite" \
|
|
231
231
|
--resolution "720p"
|
|
232
232
|
```
|
|
233
233
|
|
|
234
|
-
命令输出 `thread_id`、`run_id` 和 `web_thread_link`。提交生视频 HTTP 请求时,参考图、参考视频和参考音频会使用上传接口返回的 `pippit_asset_id`,并分别写入 `video_part_tool_param.images`、`video_part_tool_param.videos` 和 `video_part_tool_param.audios`。图片最多 9 张,支持 `.jpg`、`.jpeg`、`.png`、`.gif`、`.bmp`、`.webp`、`.svg`;视频最多 3 个,支持 `.mp4`、`.avi`、`.mov`、`.wmv`、`.flv`、`.webm`、`.mkv`、`.m4v`;音频最多 3 个,仅支持 `.mp3`、`.wav`。普通用户支持模型 `seedance2.
|
|
234
|
+
命令输出 `thread_id`、`run_id` 和 `web_thread_link`。提交生视频 HTTP 请求时,参考图、参考视频和参考音频会使用上传接口返回的 `pippit_asset_id`,并分别写入 `video_part_tool_param.images`、`video_part_tool_param.videos` 和 `video_part_tool_param.audios`。图片最多 9 张,支持 `.jpg`、`.jpeg`、`.png`、`.gif`、`.bmp`、`.webp`、`.svg`;视频最多 3 个,支持 `.mp4`、`.avi`、`.mov`、`.wmv`、`.flv`、`.webm`、`.mkv`、`.m4v`;音频最多 3 个,仅支持 `.mp3`、`.wav`。普通用户支持模型 `Seedance_2.0_mini_lite`;`seedance2.0_vision`、`seedance2.0_fast_vision` 和 `Seedance_2.0_mini` 为 VIP 专属模型。CLI 会在提交前校验 prompt、素材数量和文件后缀;模型、比例、分辨率等语义校验由服务端处理。
|
|
235
235
|
|
|
236
236
|
查询并下载生视频结果:
|
|
237
237
|
|
package/checksums.txt
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
44e0b20d9ce770e4a1bfc8ae474aaec8b6fc7e17beb7e9c00468024caa3888dd pippit-tool-cli-1.0.10-darwin-amd64.tar.gz
|
|
2
|
+
0d77c0aae453c3a64c61699823b775367816f7300aca04f0d47aec1151038092 pippit-tool-cli-1.0.10-darwin-arm64.tar.gz
|
|
3
|
+
7ee3fd6064406864ce4f3bbb8886421dc1cde462cb678e3faac66d81c6e64cbb pippit-tool-cli-1.0.10-linux-amd64.tar.gz
|
|
4
|
+
95c1b80c2e743eafce3ab91c94f86df727d236c859d8f9d581eb7a7d5b055125 pippit-tool-cli-1.0.10-linux-arm64.tar.gz
|
|
5
|
+
cd9997499e4a217c456b18b021e0215705bf5fba64325bc3461380fed315cf10 pippit-tool-cli-1.0.10-windows-amd64.zip
|
|
6
|
+
b82a6022de7f4cdd9ffbcc6e00c8390fcf5ae323630c202a72861eee411c1c52 pippit-tool-cli-1.0.10-windows-arm64.zip
|
|
@@ -44,7 +44,7 @@ func NewCommand(stdout, stderr io.Writer, runner *common.Runner) *cobra.Command
|
|
|
44
44
|
flags.StringArrayVar(&opts.AudioPaths, "audio", nil, "local reference audio path; repeat for multiple audios, up to 3")
|
|
45
45
|
flags.IntVar(&durationSec, "duration", 0, "video duration in seconds")
|
|
46
46
|
flags.StringVar(&opts.Ratio, "ratio", "", "video ratio, such as 9:16, 16:9, 3:4, 4:3")
|
|
47
|
-
flags.StringVar(&opts.Model, "model", "", "video model; normal users:
|
|
47
|
+
flags.StringVar(&opts.Model, "model", "", "video model; normal users: Seedance_2.0_mini_lite; VIP-only: seedance2.0_vision, seedance2.0_fast_vision, Seedance_2.0_mini")
|
|
48
48
|
flags.StringVar(&opts.Resolution, "resolution", "", "video resolution, such as 720p, 1080p")
|
|
49
49
|
return cmd
|
|
50
50
|
}
|