vaibhavs10/insanely-fast-whisper

Insanely Fast Whisper is a command-line tool for transcribing audio files with OpenAI's Whisper model on local hardware.

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 32 minutes ago
Added to GitGenius on September 4th, 2026
Created on October 10th, 2023
Open Issues & Pull Requests: 116 (+0)
GitHub issues: Enabled
Number of forks: 960
Total Stargazers: 13,058 (+0)
Total Subscribers: 87 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 10.1 days
Mean response time: 50.9 days
90th percentile: 196.1 days
Tracked items: 41

How this project is maintained

97% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Three people close 63% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 34
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 689 days
Stale 30+ days: 34
Stale 90+ days: 33

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

No label distribution available yet.

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

Insanely Fast Whisper is a command-line tool for transcribing audio files with OpenAI's Whisper model on local hardware.

The tool addresses the slowness of standard Whisper inference by combining several optimization techniques: half-precision floating point arithmetic, batch processing, and Flash Attention 2. These optimizations work together to dramatically reduce transcription time while maintaining accuracy. The tool wraps Whisper models from Hugging Face Transformers and applies these performance enhancements automatically through the CLI.

Developers should choose this tool if they need fast local audio transcription on NVIDIA GPUs or Mac hardware and want to avoid cloud API costs or latency. It suits projects that process substantial audio volumes where speed matters. The README indicates the tool is opinionated about its defaults and recommends reviewing available CLI options to maximize throughput for your specific hardware. The project explicitly notes it works only on NVIDIA GPUs and Mac devices, so Windows users or those with other accelerators should verify compatibility before adoption.

The project evolved from a benchmarking showcase into a community-driven CLI tool. Development is responsive to community demand, with features added based on what users request. The tool maintains active support across different Whisper model variants, including the large-v3 and distil-whisper models, and provides installation flexibility through both standard package managers and pipx for isolated environments.