← 返回
内容创作 Key 中文

Speech to Text Transcription

Transcribe audio and video files to text with speaker detection, timestamps, and format conversion.
转录音视频文件为文本,支持说话人检测、时间戳及格式转换。
ivangdavila
内容创作 clawhub v1.0.0 1 版本 100000 Key: 需要
★ 0
Stars
📥 1,124
下载
💾 43
安装
1
版本
#latest

概述

Setup

On first use, read setup.md and start helping with transcription needs.

When to Use

User has audio or video files that need transcription. Agent handles local files, URLs, voice memos, podcasts, interviews, meetings, and lectures.

Architecture

Memory lives in ~/speech-to-text-transcription/. See memory-template.md for structure.

~/speech-to-text-transcription/
├── memory.md        # Provider preferences, defaults
├── transcripts/     # Saved transcriptions
└── temp/            # Processing workspace

Quick Reference

TopicFile
-------------
Setup processsetup.md
Memory templatememory-template.md

Core Rules

1. Detect File Type First

Before transcription, identify the input:

  • Local file path → verify exists, check format
  • URL → download to temp, then process
  • Meeting recording → likely needs speaker diarization
  • Voice memo → usually single speaker, shorter

2. Choose Provider Based on Context

ScenarioBest ProviderWhy
------------------------------
Quick local transcriptionWhisper (local)No API key, free, private
High accuracy neededOpenAI Whisper APIBest quality
Speaker identificationAssemblyAINative diarization
Real-time/streamingDeepgramLow latency
Long content (>2 hours)Split + batchAvoid timeouts

3. Handle Long Audio

Files over 25MB or 2 hours:

  1. Split into chunks (use ffmpeg)
  2. Process each chunk
  3. Merge transcripts with proper timestamps
  4. Never attempt single upload for large files

4. Preserve Context

After transcription:

  • Ask if user wants the transcript saved
  • Suggest filename based on content
  • Offer to extract action items or summary

5. Output Formats

Default to plain text. Offer alternatives:

  • .txt — clean text, no timestamps
  • .srt / .vtt — subtitles with timing
  • .json — structured with word-level timing
  • .md — formatted with speaker labels

Common Traps

  • Assuming one provider works for all → Whisper fails on diarization, AssemblyAI needs API key
  • Uploading huge files directly → Timeouts, memory errors. Split first.
  • Ignoring audio quality → Noisy audio needs preprocessing (ffmpeg noise reduction)
  • Not checking language → Whisper auto-detects but can fail on mixed-language content
  • Losing speaker context → Multi-speaker content without diarization becomes unusable

Requirements

Required: ffmpeg (for audio processing)

Optional API keys (only if using cloud providers):

  • OPENAI_API_KEY — for OpenAI Whisper API
  • ASSEMBLYAI_API_KEY — for AssemblyAI (speaker diarization)
  • DEEPGRAM_API_KEY — for Deepgram (real-time)

Local Whisper works without any API keys.

Provider Quick Reference

Local Whisper (No API Key)

# Install
pip install openai-whisper

# Basic transcription
whisper audio.mp3 --model base --output_format txt

# With timestamps
whisper audio.mp3 --model medium --output_format srt

Models: tiny (fast) → basesmallmediumlarge (accurate)

OpenAI Whisper API

curl -X POST https://api.openai.com/v1/audio/transcriptions \
  -H "Authorization: Bearer $OPENAI_API_KEY" \
  -H "Content-Type: multipart/form-data" \
  -F file="@audio.mp3" \
  -F model="whisper-1"

AssemblyAI (Speaker Diarization)

# Upload
curl -X POST https://api.assemblyai.com/v2/upload \
  -H "Authorization: $ASSEMBLYAI_API_KEY" \
  --data-binary @audio.mp3

# Transcribe with speakers
curl -X POST https://api.assemblyai.com/v2/transcript \
  -H "Authorization: $ASSEMBLYAI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"audio_url": "URL", "speaker_labels": true}'

Audio Preprocessing

Extract Audio from Video

ffmpeg -i video.mp4 -vn -acodec pcm_s16le -ar 16000 -ac 1 audio.wav

Reduce Noise

ffmpeg -i noisy.wav -af "afftdn=nf=-25" clean.wav

Split Long Audio

# Split into 10-minute chunks
ffmpeg -i long.mp3 -f segment -segment_time 600 -c copy chunk_%03d.mp3

Security & Privacy

Data that stays local:

  • Transcripts in ~/speech-to-text-transcription/transcripts/
  • Local Whisper processes entirely on-device

Data that leaves your machine (if using APIs):

  • Audio file sent to chosen provider (OpenAI, AssemblyAI, Deepgram)
  • Transcript returned and stored locally

This skill does NOT:

  • Store API keys in plain text (use environment variables)
  • Auto-upload without confirmation
  • Retain files on external servers after processing

External Endpoints

EndpointData SentPurpose
------------------------------
api.openai.com/v1/audioAudio fileWhisper API transcription
api.assemblyai.com/v2Audio fileAssemblyAI transcription
api.deepgram.com/v1Audio streamDeepgram transcription

Only called when user explicitly chooses cloud provider. Local Whisper sends nothing.

Trust

By using cloud transcription providers, audio data is sent to OpenAI, AssemblyAI, or Deepgram. Only install if you trust these services with your audio. For sensitive content, use local Whisper.

Related Skills

Install with clawhub install if user confirms:

  • audio — General audio processing
  • ffmpeg — Video and audio conversion
  • podcast — Podcast creation and editing

Feedback

  • If useful: clawhub star speech-to-text-transcription
  • Stay updated: clawhub sync

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-29 08:56 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

productivity

Word / DOCX

ivangdavila
创建、检查和编辑 Microsoft Word 文档及 DOCX 文件,支持样式、编号、修订记录、表格、分节符及兼容性检查等功能。
★ 438 📥 147,325
content-creation

Humanizer

biostartechnology
消除AI写作痕迹,使文本更自然真实。基于维基百科"AI写作特征"指南,识别并修正夸张象征、宣传用语、肤浅-ing分析、模糊归因、破折号滥用、三项排比、AI词汇、负面平行结构及冗长连接词等模式。
★ 857 📥 199,438
ai-intelligence

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,353 📥 317,862