GPT 4o Mini Transcribe
OpenAI
openai/gpt-4o-mini-transcribe
Fast and affordable transcription
Context Window
β
Max Output
β
About this model
GPT-4o Mini Transcribe is the lightweight version of GPT-4o Transcribe β faster and more affordable for high-volume transcription.
Also supports structured output and common audio formats. Processing speed is roughly 2x GPT-4o Transcribe.
Highlights
Best value
2x faster
Structured output
Batch-friendly
Best For
Batch transcriptionReal-time captionsPodcast processingCall center recordings
2025-03-20
Capabilities
STT
Aliases
gpt-4o-mini-transcribePricing (per 1M tokens)
| Pricing (per 1M tokens) | / 1M tokens |
|---|---|
| Input / 1M | $3.15 |
| Output / 1M | $5.25 |
Final prices shown
Quick Start
main.py
from openai import OpenAI client = OpenAI( base_url="https://api.chuizi.ai/v1", api_key="ck-your-key-here", ) with open("audio.mp3", "rb") as f: transcript = client.audio.transcriptions.create( model="openai/gpt-4o-mini-transcribe", file=f, ) print(transcript.text)