Agent skill · Media & Video

speech-to-text

Transcribe audio to text with Whisper models via inference.sh CLI. Models: Fast Whisper Large V3, Whisper V3 Large. Capabilities: transcription, translation, multi-language, timestamps. Use for: meeting transcription, subtitles, podcast transcripts, voice notes. Triggers: speech to text, transcription, whisper, audio to text, transcribe audio, voice to text, stt, automatic transcription, subtitles generation, transcribe meeting, audio transcription, whisper ai

majiayu000github.com/majiayu000GitHub ↗
claude-coderead-onlyMIT
Install
npx skills add majiayu000/claude-skill-registry --skill speech-to-text-balkonsen-ha-ai-gen-workflow --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Allowed tools: Bash(infsh*)
Path: skills/ai-llm/speech-to-text-balkonsen-ha-ai-gen-workflow/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Speech-to-Text Transcribe audio to text via [inference.sh](https://inference.sh) CLI. ![Speech-to-Text](https://cloud.inference.sh/u/4mg21r6ta37mpaz6ktzwtt8krr/01jz025e88nkvw55at1rqtj5t8.png) ## Quick Start > Requires inference.sh CLI (`infsh`). Get installation instructions: `npx skills add inference-sh/skills@agent-tools` ```bash infsh login infsh app run infsh/fast-whisper-large-v3 --input '{"audio_url": "https://audio.mp3"}' ``` ## Available Models | Model | App ID | Best For | |-------|--------|----------| | Fast Whisper V3 | `infsh/fast-whisper-large-v3` | Fast transcription | | Whisper V3 Large | `infsh/whisper-v3-large` | Highest accuracy | ## Examples ### Basic Transcription ```bash infsh app run infsh/fast-whisper-large-v3 --input '{"audio_url": "https://meeting.mp3"}' ``` ### With Timestamps ```bash infsh app sample infsh/fast-whisper-large-v3 --save input.json # { # "audio_url": "https://podcast.mp3", # "timestamps": true # } infsh app run infsh/fast-whisper-large-v3 --input input.json ``` ### Translation (to English) ```bash infsh app run infsh/whisper-v3-large --input '{ "audio_url": "https://french-audio.mp3", "task": "translate" }' ``` ### From Video ```bash # Ext

What's inside
Steps it walks through
  1. Quick Start
  2. Available Models
  3. Examples
  4. Basic Transcription
  5. With Timestamps
  6. Translation (to English)
  7. From Video
  8. Workflow: Video Subtitles
  9. Supported Languages
  10. Use Cases
  11. Output Format
  12. Related Skills
  13. Documentation
Ships with 1 file
  • metadata.json
Commands it runs
infsh login
infsh app run infsh/fast-whisper-large-v3 --input '{"audio_url": "https://audio.mp3"}'
infsh app run infsh/fast-whisper-large-v3 --input '{"audio_url": "https://meeting.mp3"}'
infsh app sample infsh/fast-whisper-large-v3 --save input.json
infsh app run infsh/fast-whisper-large-v3 --input input.json
infsh app run infsh/whisper-v3-large --input '{
Extract audio from video first
infsh app run infsh/video-audio-extractor --input '{"video_url": "https://video.mp4"}' > audio.json
Transcribe the extracted audio
infsh app run infsh/fast-whisper-large-v3 --input '{"audio_url": "<audio-url>"}'
More from claude-skill-registry
All skills →
About this skill
What does the speech-to-text skill do?

Transcribe audio to text with Whisper models via inference.sh CLI. Models: Fast Whisper Large V3, Whisper V3 Large. Capabilities: transcription, translation, multi-language, timestamps. Use for: meeting transcription, subtitles, podcast transcripts, voice notes. Triggers: speech to text, transcription, whisper, audio to text, transcribe audio, voice to text, stt, automatic transcription, subtitles generation, transcribe meeting, audio transcription, whisper ai

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill speech-to-text-balkonsen-ha-ai-gen-workflow --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going