GPT-4o Mini Transcribe vs GPT-4o Transcribe
Which one, when — curated verdict, not a benchmark table
The mini tier roughly halves the bill — $1.25 per million text input, $5 output and $3 per million audio input against $2.5, $10 and $6 — for the same 25MB file cap, the same 57-language list, the same 16000-token context and the same json/text-only output with no timestamps or diarization on either. Nothing else in the published spec separates them, so pick gpt-4o-mini-transcribe unless you have measured a difference on your own audio.
Pricing
| GPT-4o Mini Transcribe | GPT-4o Transcribe | Δ | |
|---|---|---|---|
| Audio input / 1M tokens | $3 | $6 | 0.5× |
| Text output / 1M tokens | $5 | $10 | 0.5× |
Rates from the live catalog at build time; each model page carries the current card.
Capabilities
| GPT-4o Mini Transcribe | GPT-4o Transcribe | |
|---|---|---|
| Speaker diarization | no | no |
| Streaming | yes | yes |
| Timestamps | no | no |
Specs
| GPT-4o Mini Transcribe | GPT-4o Transcribe | |
|---|---|---|
| Input modalities | text audio | text audio |
| Output modalities | text | text |
| Released | 2025-03-20 | 2025-03-20 |
| Knowledge cutoff | 2024-06 | 2024-06 |
| Limits | mp3/mp4/mpeg/mpga/m4a/wav/webm, up to 25MB streaming transcription supported json/text output only no word timestamps or diarization | mp3/mp4/mpeg/mpga/m4a/wav/webm, up to 25MB streaming transcription supported (incl. Realtime transcription sessions) json/text output only no word timestamps or diarization |
| Languages | 57 languages listed for the transcriptions endpoint (one shared list for all transcription models) ISO 639-1 / 639-3 codes accepted for GPT-4o-based models | 57 languages listed for the transcriptions endpoint (one shared list for all transcription models) ISO 639-1 / 639-3 codes accepted for GPT-4o-based models |
| Max output | 2K | 2K |
Specs are transcribed from each vendor’s documentation; a row a vendor does not publish is left out rather than inferred. Full sources: GPT-4o Mini Transcribe · GPT-4o Transcribe
Switch between them with one line
Both ids are in every tab below — the highlighted pair of lines is the only edit. Same endpoint, same key, same request shape.
from openai import OpenAI
client = OpenAI(
base_url="https://synthorai.io/v1",
api_key="sk-syn-...",
)
resp = client.audio.transcriptions.create(
model="gpt-4o-mini-transcribe",
# model="gpt-4o-transcribe", # uncomment this line, comment the one above
file=open("meeting.mp3", "rb"),
language="en",
)
print(resp.text)import OpenAI from "openai";
import fs from "node:fs";
const client = new OpenAI({
baseURL: "https://synthorai.io/v1",
apiKey: "sk-syn-...",
});
const resp = await client.audio.transcriptions.create({
model: "gpt-4o-mini-transcribe",
// model: "gpt-4o-transcribe", // uncomment this line, comment the one above
file: fs.createReadStream("meeting.mp3"),
});
console.log(resp.text);curl https://synthorai.io/v1/audio/transcriptions \
-H "Authorization: Bearer sk-syn-..." \
-F model="gpt-4o-mini-transcribe" \
# -F model="gpt-4o-transcribe" \ # uncomment this line, comment the one above
-F file=@meeting.mp3package main
import (
"context"
"fmt"
"os"
"github.com/openai/openai-go/v3"
"github.com/openai/openai-go/v3/option"
)
func main() {
client := openai.NewClient(
option.WithBaseURL("https://synthorai.io/v1"),
option.WithAPIKey("sk-syn-..."),
)
f, _ := os.Open("meeting.mp3")
resp, _ := client.Audio.Transcriptions.New(context.TODO(), openai.AudioTranscriptionNewParams{
Model: "gpt-4o-mini-transcribe",
// Model: "gpt-4o-transcribe", // uncomment this line, comment the one above
File: f,
})
fmt.Println(resp.Text)
}import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.audio.transcriptions.*;
import java.nio.file.Paths;
OpenAIClient client = OpenAIOkHttpClient.builder()
.baseUrl("https://synthorai.io/v1")
.apiKey("sk-syn-...")
.build();
Transcription resp = client.audio().transcriptions().create(
TranscriptionCreateParams.builder()
.model("gpt-4o-mini-transcribe")
// .model("gpt-4o-transcribe") // uncomment this line, comment the one above
.file(Paths.get("meeting.mp3"))
.build()).asTranscription();
System.out.println(resp.text());FAQ
Which is cheaper, GPT-4o Mini Transcribe or GPT-4o Transcribe?
GPT-4o Mini Transcribe is cheaper on audio input / 1m tokens ($3 vs $6, 2.0× apart). Other rows may point the other way — the table above carries the full card, and real cost depends on your mix.
Can I A/B test GPT-4o Mini Transcribe against GPT-4o Transcribe without two integrations?
Yes. Both are served through the same OpenAI-compatible endpoint with one API key — switching is a one-line model-string change, so you can route a fraction of traffic to each and compare bills directly.
Do GPT-4o Mini Transcribe and GPT-4o Transcribe support speaker diarization?
The capability table above answers this per model, straight from each vendor’s documentation — diarization, streaming and timestamps are listed separately because models differ on all three.