Loading...
Loading...
Transcribe a media file or live microphone to text or subtitles with auto-editor's whisper subcommand, then edit by spoken content — cut to keep (or drop) sections whose subtitles match a word or regex. Use when someone wants a transcript, captions, live speech transcription, or to cut a video based on what is said rather than on loudness.
npx skill4agent add wyattblue/auto-editor auto-editor-transcribe--edit subtitlewordauto-editor whisperauto-editor whisper <file|:mic> <model> [options]<model>ggmlggml-small.en.binggml-medium.en.binggml-large-v3.bin--translate--promptggml-parakeet-tdt-0.6b-v3-q8_0.bin--translate--prompt--languageappleauto-editor whisper example.mp4 ggml-medium.en.bin # plain text → stdout
auto-editor whisper example.mp4 ggml-medium.en.bin --format srt -o out.srt
auto-editor whisper example.mp4 ggml-parakeet-tdt-0.6b-v3-q8_0.bin # parakeet backend
auto-editor whisper example.mp4 apple --language en_US # macOS 26+--format text|srt|json-o/--output FILE-l/--language en-tr/--translate-sw/--split-words--queue SECS--prompt TEXT--threads N-t/--threshold THRES--split-wordsapple--languageautoen_US--translate--prompt:micauto-editor whisper :mic ggml-medium.en.bin
auto-editor whisper :mic apple --language en_US # macOS 26+
auto-editor whisper :mic ggml-medium.en.bin -o transcript.srtauto-editor :mic_RECORDING.mka-o/--output.srt.json.txt.text--format--edit subtitleword.srt| Method | Active when… | Args (defaults) |
|---|---|---|
| | |
| | |
patternsubtitleregex--edit subtitlewordvalue# Keep only sections that have any subtitle (cut the silent gaps between speech)
auto-editor talk.mkv --edit subtitle
# Keep only sections where "introduction" is spoken
auto-editor lecture.mp4 --edit word:introduction
# Regex match (case-insensitive); keep matched lines
auto-editor talk.mkv --edit "subtitle:pattern=(yes|no),ignore-case=#t"
# Cut filler words instead of keeping them: invert with `not`
auto-editor video.mp4 --edit "(not word:um)"talk.mp4talk.srttalk.assauto-editor whisper talk.mp4 ggml-medium.en.bin --format srt -o talk.srt
auto-editor talk.mp4 --edit word:question # picks up talk.srt automaticallyauto-editor subdump FILE