Skip to content

Commit 900dbc0

Browse files
committed
chore(release): bump version of web-video-presentation to 1.1.2
- Updated the version in manifest.json from 1.1.1 to 1.1.2. - Corrected argument in synthesize-audio.sh from --voice-id to --voice for consistency. - Minor clarification in AUDIO.md regarding voice options.
1 parent 10f4f28 commit 900dbc0

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

skills/web-video-presentation/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web-video-presentation",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"category": "Web Video / Presentation",
55
"description": "Turn scripts, articles, lessons, product demos, and talks into click-driven 16:9 web presentations that can be screen-recorded as cinematic videos. Ships a Vite + React + TypeScript scaffold, a (chapter, step) cursor model, hard collaboration checkpoints, and a theme-token architecture.",
66
"homepage": "https://github.com/ConardLi/garden-skills/tree/main/skills/web-video-presentation",

skills/web-video-presentation/references/AUDIO.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ Auto 模式首次需要按一次 `Space` 启动(绕过浏览器自动播放限
190190
| `mmx: command not found` | `npm install -g mmx-cli`;npm 全局 bin 不在 PATH 时 `npm config get prefix` 看一下 |
191191
| `401 / unauthorized` | `mmx auth login --api-key sk-xxxxx` 重新登录 |
192192
| 中间断了几条没合成 | `npm run synthesize-audio` 重跑 —— 已存在文件会跳过 |
193-
| 中文音色不自然 | mmx 默认音色未必最佳;查 `mmx speech --help``--voice-id` 可选项,然后传 `--voice=<id>` |
193+
| 中文音色不自然 | mmx 默认音色未必最佳;查 `mmx speech --help``--voice` 可选项,然后传 `--voice=<id>` |
194194
| 整段合成被截断 | 单段过长(mmx 默认上限约 5000 字符)。在 narrations.ts 里把这条拆成两条(也意味着该 step 应该拆成两个 step) |
195195
| 浏览器没播音频 | Auto / Audio 模式下首次需要用户手势——确认你按了 SPACE 启动 Auto,或者点过页面 |
196196
| 音频 404 但 Auto 模式还能跑 | 找不到 mp3 时 useAudioPlayer 退化到字数估时(4 字/秒),保证预览不中断 |

skills/web-video-presentation/templates/scripts/synthesize-audio.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ VOICE_ARG=""
2929
for arg in "$@"; do
3030
case "$arg" in
3131
--force) FORCE=true ;;
32-
--voice=*) VOICE_ARG="--voice-id ${arg#--voice=}" ;;
32+
--voice=*) VOICE_ARG="--voice ${arg#--voice=}" ;;
3333
*) echo "✗ unknown arg: $arg" >&2; exit 1 ;;
3434
esac
3535
done

0 commit comments

Comments
 (0)