@pippit-dev/cli 1.0.9 → 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 CHANGED
@@ -231,7 +231,7 @@ pippit-tool-cli generate-video \
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`。普通用户支持模型 `Seedance_2.0_mini_lite`;`seedance2.0_direct`、`seedance2.0_fast_direct`、`seedance2.0_vision`、`seedance2.0_fast_vision` 和 `Seedance_2.0_mini` 为 VIP 专属模型。CLI 会在提交前校验 prompt、素材数量和文件后缀;模型、比例、分辨率等语义校验由服务端处理。
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
- f74cc6e3fc592b21f827006f325558eb95366311e67cc9d9e426a459476a3996 pippit-tool-cli-1.0.9-darwin-amd64.tar.gz
2
- dad92b312b3aee1d28e27fb781ab3c151f690f8fe1c97e19e776ac621cd153f6 pippit-tool-cli-1.0.9-darwin-arm64.tar.gz
3
- 58db5bf7b5bdee7453983bf361493fa3da733d7409e854e960a262ad7373e292 pippit-tool-cli-1.0.9-linux-amd64.tar.gz
4
- 5a414fab07508f04241c30b15847542730a913d7235441ce2ff74775506943ac pippit-tool-cli-1.0.9-linux-arm64.tar.gz
5
- fd22dff28d01c1b304ecbc85b192ffbcbd0ef4e098e5d7347f9d37677b2bb9c9 pippit-tool-cli-1.0.9-windows-amd64.zip
6
- 7e26c5053609f5cefa813654b7e752f3a77c90103c3509c5d71028a432b67386 pippit-tool-cli-1.0.9-windows-arm64.zip
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: Seedance_2.0_mini_lite; VIP-only: seedance2.0_direct, seedance2.0_fast_direct, seedance2.0_vision, seedance2.0_fast_vision, Seedance_2.0_mini")
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pippit-dev/cli",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "Pippit CLI",
5
5
  "bin": {
6
6
  "pippit-tool-cli": "scripts/run.js"