High-quality transcription, formatting, and analysis of videos and podcasts
Project description
deep-transcribe
High-quality transcription, formatting, and analysis of videos and podcasts.
It currently uses Deepgram for transcription and diarization and Claude Sonnet 4 or OpenAI o3 for analysis and summarization.
Take a video or audio URL (such as YouTube), download it, and perform a “deep transcription” of it, including full transcription, identifying speakers, adding sections, timestamps, inserting frame captures, and researching or footnoting key topics.
What kind of detail and annotations it includes depends on the options you specify.
By default this needs API keys for Deepgram and Anthropic (Claude).
This is built on kash and its kash-media kit of tools for handling videos.
Usage
Key Setup
See the env.template to set up DEEPGRAM_API_KEY and ANTHROPIC_API_KEY.
Basic Usage
# Annotated transcription (sections, summaries, descriptions, frame captures)
# (This is the default behavior and the same as --annotated)
deep-transcribe https://www.youtube.com/watch?v=VIDEO_ID
# Basic transcription (just text)
deep-transcribe https://www.youtube.com/watch?v=VIDEO_ID --basic
# Formatted transcription (with speakers, paragraphs, timestamps)
deep-transcribe https://www.youtube.com/watch?v=VIDEO_ID --formatted
# Deep processing (everything including research annotations)
deep-transcribe https://www.youtube.com/watch?v=VIDEO_ID --deep
# Custom transcription options
deep-transcribe https://www.youtube.com/watch?v=VIDEO_ID --with format,insert_section_headings,research_paras
Available Options
Use --help to see all current options.
The --with flag accepts these processing options:
-
format: Apply formatting pipeline (speakers, paragraphs, timestamps) -
identify_speakers: Identify different speakers in the audio -
insert_section_headings: Add section headings to break up content -
add_summary_bullets: Add a bulleted summary -
add_description: Add a description at the top -
insert_frame_captures: Insert frame captures from video -
research_paras: Add research annotations to paragraphs
Presets
-
--basic: Just transcription (equivalent to no additional options) -
--formatted: Transcription + formatting (equivalent to--with identify_speakers,format) -
--annotated: Full processing except research (equivalent to--with identify_speakers,format,insert_section_headings,add_summary_bullets,add_description,insert_frame_captures) - default when no preset specified -
--deep: Complete processing including research (equivalent to--with identify_speakers,format,insert_section_headings,research_paras,add_summary_bullets,add_description,insert_frame_captures)
Output
The tool generates:
-
Markdown file: Clean, formatted transcript with HTML tags for citations
-
HTML file: Browser-ready version with rich formatting and navigation
-
Cached files: Original video/audio files and intermediate processing results
All files are stored in the workspace directory (default: ./transcriptions/).
MCP Server
Run as an MCP server for integration with other tools. The MCP server exposes four transcription actions:
-
transcribe_annotated: Annotated transcription (recommended default) -
transcribe_formatted: Formatted transcription -
transcribe_basic: Basic transcription only -
transcribe_deep: Complete processing including research
# Run as stdio MCP server
deep-transcribe --mcp
# Run as SSE MCP server at 127.0.0.1:4440
deep-transcribe --sse
# View MCP server logs
deep-transcribe --logs
Note: Both --sse and --logs automatically enable MCP mode, so you don’t need to
specify --mcp explicitly.
Claude Desktop Configuration
For Claude Desktop, a config like this should work (adjusted to use your appropriate home folder):
{
"mcpServers": {
"deep_transcribe": {
"command": "/Users/levy/.local/bin/deep-transcribe",
"args": ["--mcp"]
}
}
}
Project Docs
For how to install uv and Python, see installation.md.
For development workflows, see development.md.
For instructions on publishing to PyPI, see publishing.md.
This project was built from simple-modern-uv.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file deep_transcribe-0.1.5.tar.gz.
File metadata
- Download URL: deep_transcribe-0.1.5.tar.gz
- Upload date:
- Size: 234.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.8.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29f970539bc99dffe9b943bce996975694a837826255f155ffb5af5503e08da3
|
|
| MD5 |
70f599efad5be4d7a39946543299351a
|
|
| BLAKE2b-256 |
9d066cf25c55a1b93fe29e14c8755c5659627d55b71a93c829349d73dab60529
|
File details
Details for the file deep_transcribe-0.1.5-py3-none-any.whl.
File metadata
- Download URL: deep_transcribe-0.1.5-py3-none-any.whl
- Upload date:
- Size: 22.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.8.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c59fca9a0f0c01f5dfaf2228c52aaccd227c7fdb6a37f0a8c3c445e6e2da805f
|
|
| MD5 |
a063afb9fb6a915938c0e8153f4e48b9
|
|
| BLAKE2b-256 |
69c99a2f59e8d0a1784cef71fd26fcd320b029f72dcba2b5ea56bcf283f47f34
|