WhisperX

Replicate
Speech-to-Text

WhisperX (Large v3) with forced alignment for accurate word-level timestamps plus optional speaker diarization. Uses VAD to cut long files into segments and a wav2vec2 aligner to pin each word to its exact time. Useful for subtitles and per-speaker transcripts.

Transcribe with WhisperX
Upload an audio file and get a written transcript.
Sign in to try this model with €5 free credits.
Sign in
Transcript appears here.
TL;DRΒ·Last updated June 24, 2026

WhisperX is speech-to-text AI model from Replicate, priced at €0.000 per 1M input tokens with a unknown context window.

Try WhisperX

Drop audio file here

MP3, WAV, M4A, FLAC (max 25MB)

Sign in to generate β€” 50 free credits on sign-up

Pricing

Price per Generation
Per generation€2.00

API Integration

Use our OpenAI-compatible API to integrate WhisperX into your application.

Install
npm install railwail
JavaScript / TypeScript
import railwail from "railwail";

const rw = railwail("YOUR_API_KEY");

// Simple β€” just pass a string
const reply = await rw.run("whisperx", "Hello! What can you do?");
console.log(reply);

// With message history
const reply2 = await rw.run("whisperx", [
  { role: "system", content: "You are a helpful assistant." },
  { role: "user", content: "Explain quantum computing simply." },
]);
console.log(reply2);

// Full response with usage info
const res = await rw.chat("whisperx", [
  { role: "user", content: "Hello!" },
], { temperature: 0.7, max_tokens: 500 });
console.log(res.choices[0].message.content);
console.log(res.usage);
Specifications
Price
€2.00
Developer
Replicate
Category
Speech-to-Text
Supported Formats
audio
Tags
replicate
whisperx
stt
transcription
diarization
word-timestamps
multilingual

Frequently asked questions

Start using WhisperX today

Get started with free credits. No credit card required. Access WhisperX and 100+ other models through a single API.