skillfree 0.1.11 → 0.1.12
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/SKILL.md +6 -8
- package/package.json +1 -1
- package/scripts/commands/pilot.js +1 -1
package/SKILL.md
CHANGED
|
@@ -112,10 +112,10 @@ skillfree pilot --type tts --text "你好世界" --output hello.mp3
|
|
|
112
112
|
|
|
113
113
|
```bash
|
|
114
114
|
# 文生视频(自动轮询,完成后显示下载链接)
|
|
115
|
-
skillfree pilot --type video --model
|
|
115
|
+
skillfree pilot --type video --model kling-v2-6-text2video --prompt "大龙虾在海底漫步"
|
|
116
116
|
|
|
117
117
|
# 自动下载到本地
|
|
118
|
-
skillfree pilot --type video --model
|
|
118
|
+
skillfree pilot --type video --model kling-v2-6-text2video --prompt "大龙虾在海底漫步" --output ./video.mp4
|
|
119
119
|
|
|
120
120
|
# 超时后手动查询进度(使用提交时返回的 task_id)
|
|
121
121
|
skillfree task <task_id>
|
|
@@ -126,13 +126,11 @@ skillfree task <task_id> --output ./video.mp4
|
|
|
126
126
|
|
|
127
127
|
| 模型ID | 名称 | 积分 | 最适合的场景 |
|
|
128
128
|
|--------|------|------|-------------|
|
|
129
|
-
| `
|
|
130
|
-
| `
|
|
131
|
-
| `paiwo-v5.6-ttv` | 拍我 5.6 文生视频 | 160 |
|
|
132
|
-
| `paiwo-v5.6-itv` | 拍我 5.6 图生视频 | 160 |
|
|
129
|
+
| `kling-v2-6-text2video` | 可灵 2.6 文生视频 | 427 | **默认首选**。快手出品,运动物理感最真实,商业广告级别 |
|
|
130
|
+
| `kling-v2-6-image2video` | 可灵 2.6 图生视频 | 427 | 图生视频旗舰,电影级画质 |
|
|
131
|
+
| `paiwo-v5.6-ttv` | 拍我 5.6 文生视频 | 160 | 性价比较高,适合商业级视频内容制作 |
|
|
132
|
+
| `paiwo-v5.6-itv` | 拍我 5.6 图生视频 | 160 | 图片转视频,质量较高 |
|
|
133
133
|
| `paiwo-v5.6-itv2` | 拍我 5.6 首尾帧 | 214 | **首尾帧控制**。指定视频开始和结束画面,精准控制故事走向 |
|
|
134
|
-
| `kling-v2-6-text2video` | 可灵 2.6 文生视频 | 427 | **顶级视频质量**。快手出品,运动物理感最真实,商业广告级别 |
|
|
135
|
-
| `kling-v2-6-image2video` | 可灵 2.6 图生视频 | 427 | 图生视频中的旗舰,电影级画质 |
|
|
136
134
|
|
|
137
135
|
---
|
|
138
136
|
|
package/package.json
CHANGED
|
@@ -335,7 +335,7 @@ async function pilot(flags) {
|
|
|
335
335
|
// ── VIDEO ─────────────────────────────────────────────────────────────────────
|
|
336
336
|
if (type === 'video') {
|
|
337
337
|
if (!prompt) throw new Error('--prompt 是必需的(视频描述)')
|
|
338
|
-
const videoModel = model || '
|
|
338
|
+
const videoModel = model || 'kling-v2-6-text2video'
|
|
339
339
|
|
|
340
340
|
// 1. 提交任务
|
|
341
341
|
process.stdout.write(`🎬 提交视频任务(${videoModel})...`)
|