transcribe

Transcribe audio and video files into text using a configured speech-to-text provider.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/CerisonAutomation/clud --skill transcribe-cerisonautomation
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: transcribe
Source: https://github.com/CerisonAutomation/clud/tree/main/assistant/src/config/bundled-skills/transcribe
Command: npx skills add https://github.com/CerisonAutomation/clud --skill transcribe-cerisonautomation

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill removes the manual effort of listening to recordings by converting audio and video files into readable transcripts.

Core Features & Use Cases

  • Transcribe media files to text: Converts supported audio (mp3, wav, m4a, etc.) and video (mp4, mov, etc.) into transcription output.
  • Uses your configured STT provider: Routes requests through the selected Speech-to-Text service in settings (services.stt), such as OpenAI Whisper, Deepgram, or Google Gemini.
  • Handles large files safely: Automatically normalizes media to 16kHz mono WAV, splits large inputs into chunks, transcribes each chunk, and combines results.
  • Real-world use case: Turn a meeting recording into a draft transcript you can paste into notes, summarize, and turn into action items.

Quick Start

Ask your assistant to transcribe the file at the absolute path /tmp/meeting.mp4 using the configured speech-to-text service.

Frequently Asked Questions about transcribe

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I transcribe a meeting recording from an mp4 video file?

To transcribe a meeting recording, provide the absolute file path of your mp4 video. The system validates the extension, optionally uses ffmpeg to extract and normalize audio to 16kHz mono WAV, and routes it through your configured speech-to-text provider.

Can I use OpenAI Whisper to transcribe large audio files automatically?

Yes, large audio files are handled safely by automatically normalizing media to 16kHz mono WAV, splitting large inputs into smaller chunks, transcribing each chunk via your configured STT provider like OpenAI Whisper, and combining the results.

What audio and video formats are supported for speech-to-text transcription?

Speech-to-text transcription supports common audio formats like mp3, wav, and m4a, alongside video formats such as mp4 and mov. The system validates file extensions before processing the media into text output.

Do I need ffmpeg installed to transcribe podcasts or voice memos?

FFmpeg is used for optional audio extraction and conversion to 16kHz mono WAV. It processes media files for transcription, but the core requirement is configuring a speech-to-text provider in your settings services.

How does speech-to-text transcription handle long audio recordings?

Speech-to-text transcription of long recordings uses automatic chunking to split large inputs. It transcribes each chunk individually using the configured STT provider and then combines the text results.

What is the best way to convert recorded video into text notes?

The best way to convert recorded video into text is providing the absolute file path. The system validates the media, extracts audio using ffmpeg, and routes it through your selected speech-to-text provider to return a readable transcript.