بنقرة واحدة
video-subtitles
Generate SRT subtitle files from video or audio using OpenAI Whisper. Free, local, no API key needed.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Generate SRT subtitle files from video or audio using OpenAI Whisper. Free, local, no API key needed.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| name | video-subtitles |
| description | Generate SRT subtitle files from video or audio using OpenAI Whisper. Free, local, no API key needed. |
Generate .srt subtitle files from any video or audio file using OpenAI Whisper. Runs locally — no API key, no cloud, no cost.
Install Whisper (one-time):
# macOS
brew install openai-whisper
# pip (any OS)
pip install openai-whisper
Requires ffmpeg:
# macOS
brew install ffmpeg
# Ubuntu/Debian
sudo apt install ffmpeg
whisper video.mp4 --model medium --output_format srt
Output: video.srt in the current directory.
whisper video.mp4 --model medium --output_format srt --language es
whisper video.mp4 --model medium --output_format all
Produces .srt, .vtt, .txt, .tsv, and .json.
whisper *.mp4 --model medium --output_format srt
whisper video.mp4 --model medium --output_format srt --output_dir ./subtitles
| Model | Size | Speed | Accuracy | Best for |
|---|---|---|---|---|
tiny | 39 MB | Fastest | Lower | Quick drafts, short clips |
base | 74 MB | Fast | OK | Casual use |
small | 244 MB | Medium | Good | Most videos |
medium | 769 MB | Slower | Great | Recommended default |
large | 1.5 GB | Slowest | Best | Professional use, difficult audio |
The model downloads automatically on first use.
medium — best balance of speed and accuracy for most contentsmall for quick iterations — review, fix, re-run if needed--language flag for better accuracy1
00:00:01,000 --> 00:00:04,500
This is the first subtitle line.
2
00:00:05,000 --> 00:00:08,200
And this is the second one.
SRT files work in VLC, YouTube uploads, Premiere, Final Cut, DaVinci Resolve, and most video editors.
Any format ffmpeg can read: .mp4, .mov, .avi, .mkv, .webm, .mp3, .wav, .ogg, .flac, .m4a, and more.