Whisper

Active
GitHub Python MIT

Description

OpenAI Whisper is a multilingual speech recognition foundation model that performs high-quality English and multilingual transcription, translation and language identification locally.

Key Features

  • Multilingual — transcription across 99 languages plus translation to English
  • Multiple sizes — from tiny to large, pick the trade-off between accuracy and speed
  • Robust — handles accents, background noise and other real-world audio conditions
  • Timestamps — emits word- and sentence-level timestamps for subtitles and search
  • Translation — automatically translates non-English speech into English text
  • Easy integration — CLI and Python API with batched processing for long audio

Use Cases

💡 Auto-generating transcripts and subtitles for meetings, podcasts and interviews
💡 Adding voice input to AI agents for spoken conversation
💡 Transcribing and translating multilingual customer support or teaching videos
💡 Deploying end-to-end speech-to-text pipelines in offline environments
💡 Enabling content search and structured analysis over long-form audio

Strengths & Limitations

Strengths

  • Actively maintained, recent updates
  • High community interest (107.4k stars)
  • Permissive open-source license (MIT)
  • Established track record (3 years in production)

Quick Start

# Install dependencies
pip install -U openai-whisper

# CLI transcription
whisper audio.wav --language English --model small

# Python API
import whisper
model = whisper.load_model('base')
result = model.transcribe('audio.wav', language='en')
print(result['text'])

Related Projects

Screenshot to Code

74.0k · Python
Active A+

Turn screenshots, mockups, and Figma designs into clean code using AI models. Supports HTML/Tailwind, React, Vue, and other frontend frameworks.

screenshot-to-codemultimodalcode-generation +2
  • · Multi-format input - converts screenshots, UI mockups, Figma designs and screen recordings into runnable code
  • · Multi-stack output - generates code for HTML+Tailwind, React+Tailwind, Vue+Tailwind, Bootstrap, Ionic and more
  • · Multi-model AI integration - built-in Gemini, GPT-5 series, Claude Opus models with side-by-side comparison

Gemini Cookbook

17.7k · Jupyter Notebook
Active A+

Google Gemini official Cookbook with examples and tutorials for building agents, function calling, and multimodal applications.

geminicookbookexamples +2
  • · Official Google Gemini API tutorials and code examples in Jupyter notebooks
  • · Agents API with Antigravity agent for building custom managed agents
  • · Multimodal capabilities: image generation (Nano-Banana 2), video (Veo 3.1), music (Lyria 3)