What Is the Whisper Model?
Whisper is an automatic speech recognition system released by OpenAI. The original research describes training on 680,000 hours of multilingual and multitask weak supervision. Konthora uses only the English-focused small.en variant for its current transcription product.
OpenAI releases Whisper's code and model weights under the MIT License. This upstream license does not make Konthora affiliated with OpenAI, and it does not expand the capabilities exposed by Konthora's product.
How Whisper Processes Audio
Whisper employs an encoder-decoder Transformer architecture. When an audio file is provided, it is first converted into a log-Mel spectrogram, which is a visual representation of the audio frequencies over time.
The Transformer encoder processes this spectrogram to understand the acoustic features, while the decoder generates the corresponding text transcript. During this process, the model can also predict timestamps, allowing the text to be aligned with the precise moment it was spoken.
Whisper Implementation in Konthora
Konthora utilizes the Whisper model to power its free, browser-based transcription tool. Specifically, Konthora implements the small.en variant of the Whisper model for English-language audio.
The Konthora implementation introduces specific guardrails and processing features to support practical user workflows:
Supported Formats
- Audio: MP3, WAV, M4A, AAC
- Video: MP4, WebM, MOV
- Export: TXT, SRT, VTT, JSON
Processing Constraints
- 10-minute maximum duration
- 100 MB maximum file size
- English language only
Privacy and Data Lifecycle
Because the Whisper model is open-source, Konthora hosts the inference engine independently. Audio files are not transmitted to OpenAI for processing.
Within the Konthora infrastructure, all uploaded media and generated transcripts are subject to a strict 60-minute automatic deletion policy. The tool does not require user accounts, ensuring that transcriptions remain untethered to persistent user identities.
Using Whisper for Captions
Konthora groups timing data into word, sentence, or paragraph modes and can export timed SRT or VTT transcripts. These exports are a starting point for captions; review and add speaker labels or non-speech cues when fully authored closed captions are required.
Sources
- Official OpenAI Whisper repository — model overview, architecture summary, and MIT license.
- Original Whisper research paper — training method and the 680,000-hour supervision description.