
Add Subtitles
- 1 installs
- 534 repo stars
- Updated August 4, 2026
- majiayu000/claude-skill-registry
Adds SRT-formatted subtitles to a video file using an ffmpeg command that muxes the subtitle track into an MP4 output.
About
Embeds existing SRT subtitles into a video via a single ffmpeg command producing a subtitled MP4. A user uses it when they have an SRT file and want to burn or mux subtitles into their video.
- Single ffmpeg command muxes SRT into MP4
- Pairs with a transcribe-srt skill to create subtitles first
Add Subtitles by the numbers
- 1 all-time installs (skills.sh)
- Ranked #1,200 of 1,335 Generative Media skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/majiayu000/claude-skill-registry --skill add-subtitlesAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| repo stars | ★ 534 |
| Last updated | August 4, 2026 |
| Repository | majiayu000/claude-skill-registry ↗ |
What it does
Adds SRT-formatted subtitles to a video file using an ffmpeg command that muxes the subtitle track into an MP4 output.
Files
Add Subtitles
Instructions
This assumes you have created subtitles or have downloaded subtitles in SRT format. If you don't have subtitles then you can use the transcribe-srt skill to create SRT formatted subtitles.
Once you have subtitles, you can call ffmpeg -n -i "{INPUT FILE}.webm" -i "{INPUT FILE}.srt" -s 720x480 -c:s mov_text "{INPUT FILE}.mp4". This will output the "{INPUT FILE}.mp4" file with the "{INPUT FILE}.srt" subtitles.
Typically the video files will be stored in ~/Videos.
Examples
Can you please add the subtitles ~/Videos/my_video.srt to ~/Videos/my_video.webm?Then you would call ffmpeg -n -i "~/Videos/my_video.webm" -i "~/Videos/my_video.srt" -s 720x480 -c:s mov_text "~/Videos/my_video.mp4".