const-me/whisper

High-performance GPGPU inference of OpenAI's Whisper automatic speech recognition (ASR) model

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 15 minutes ago
Added to GitGenius on September 5th, 2026
Created on January 7th, 2023
Open Issues & Pull Requests: 172 (+0)
GitHub issues: Enabled
Number of forks: 969
Total Stargazers: 10,659 (-1)
Total Subscribers: 111 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 21.6 hours
Mean response time: 39.4 days
90th percentile: 61.7 days
Tracked items: 30

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 100% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Only 8% of issues opened in the past year have been closed.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 40
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 485 days
Stale 30+ days: 38
Stale 90+ days: 34

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

Whisper is a high-performance GPGPU inference engine for OpenAI's Whisper automatic speech recognition model, optimized for Windows.

The project solves the problem of slow speech-to-text transcription by implementing Whisper as a native Windows application with GPU acceleration. It uses DirectCompute, a vendor-agnostic compute shader technology in Direct3D 11, to offload inference to the GPU. The implementation achieves significantly faster transcription than OpenAI's original PyTorch-based approach while maintaining minimal runtime dependencies—the core DLL is 431 kilobytes compared to over 9 gigabytes for the Python implementation. The tool supports mixed F16 and F32 precision arithmetic and includes a built-in performance profiler for measuring individual compute shader execution times.

Developers should choose this tool if they need fast, local speech recognition on Windows without heavy dependencies. It suits projects requiring batch transcription of audio files or real-time microphone input, with built-in voice activity detection for the latter. The desktop application provides a straightforward interface for downloading models and transcribing audio or video files. A C# wrapper is available on NuGet for programmatic integration, and PowerShell scripting support is included for automation tasks. The project is a Windows port of whisper.cpp, which itself ported OpenAI's original implementation to C++.

Development activity shows consistent maintenance with regular updates addressing user needs. The maintainer actively manages security concerns, including public warnings about impersonation attempts. The project includes comprehensive features such as Media Foundation audio handling supporting most formats, low memory usage optimization, and easy-to-use COM-style APIs. Documentation covers both the GUI application and programmatic interfaces, with examples for different integration scenarios.