KrillinAI Render Horizontal
Use this skill for render-horizontal. Read skills/krillinai-cli/references/cli-contract.md first for binary location, execution working directory, configuration, and JSON behavior.
Bilingual Subtitle Video
(cd "$KRILLINAI_CWD" && "$KRILLINAI_CLI" render-horizontal \
--workdir "$WORKDIR" \
--video "$WORKDIR/origin_video.mp4" \
--subtitle "$WORKDIR/bilingual_srt.srt")
Dubbed Video
(cd "$KRILLINAI_CWD" && "$KRILLINAI_CLI" render-horizontal \
--workdir "$WORKDIR" \
--video "$WORKDIR/video_with_tts.mp4" \
--subtitle "$WORKDIR/target_language_srt.srt" \
--dubbed)
Inputs
--video: source video, or omit when manifest has the correct input.--audio: optional replacement audio.--subtitle: usuallybilingual_srt.srtfor bilingual,target_language_srt.srtfor dubbed.--workdir: directory containingkrillinai_manifest.json.--subtitle-style-file: optional JSON override merged with the default subtitle style.
Outputs
horizontal_bilingual.mp4for the default variant.horizontal_dubbed.mp4with--dubbed.- Both variants are reported through the manifest key
horizontal_video.
Verification
- Require terminal JSON with
"ok": true. - Confirm output video exists and has video/audio streams.
- Extract a preview frame when checking subtitle placement.
- For manifest and error handling, read
skills/krillinai-cli/references/cli-contract.md.