From sundial-org-awesome-openclaw-skills-4
Generates SRT subtitles from video/audio with transcription (Hebrew via ivrit.ai, English via Whisper) and translation. Supports burning subtitles into video for social media.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sundial-org-awesome-openclaw-skills-4:video-subtitlesThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Generate movie-style subtitles from video or audio files. Supports transcription, translation, and burning subtitles directly into video.
Generate movie-style subtitles from video or audio files. Supports transcription, translation, and burning subtitles directly into video.
# Plain transcript
./scripts/generate_srt.py video.mp4
# Generate SRT file
./scripts/generate_srt.py video.mp4 --srt
# Burn subtitles into video (always visible)
./scripts/generate_srt.py video.mp4 --srt --burn
# Translate to English + burn in
./scripts/generate_srt.py video.mp4 --srt --burn --translate en
# Force language
./scripts/generate_srt.py video.mp4 --lang he # Hebrew
./scripts/generate_srt.py video.mp4 --lang en # English
| Flag | Description |
|---|---|
--srt | Generate SRT subtitle file |
--burn | Burn subtitles into video (hardcoded, always visible) |
--embed | Embed soft subtitles (toggle in player) |
--translate en | Translate to English |
--lang he/en | Force input language |
-o FILE | Custom output path |
--srt: Creates video.srt alongside input--burn: Creates video_subtitled.mp4 with hardcoded subsbrew install ffmpeg-full)npx claudepluginhub sundial-org/awesome-openclaw-skillsGenerates SRT subtitles from video/audio with transcription (Hebrew via ivrit.ai, English via Whisper) and translation. Supports burning subtitles into video for social media.
Translates video subtitles to any language (e.g., Hebrew, Arabic) via pipeline: transcribe audio, translate with context, refine semantically, embed RTL-safe subtitles.
Burns SRT subtitles into video files using FFmpeg via TypeScript CLI script. Supports styling options, end credits, RTL detection/fix, and frame extraction.