Word-level timestamps
Word-level timestamps are per-word start and end times produced by forced alignment (for example, WhisperX), pinpointing exactly when each word is spoken rather than just when a segment begins and ends.
Word-level timestamps are per-word start and end times attached to a transcript, generated by a forced-alignment step that maps each transcribed word back to its precise moment in the audio. They are finer-grained than segment-level timestamps, which only mark the boundaries of a phrase or sentence and leave the timing of individual words inside that span unknown. Tools such as WhisperX add this alignment pass on top of a base transcription model, so each word carries its own start and end time.
This precision unlocks several practical wins. Word-level timing produces tight, readable subtitles (SRT or VTT) where captions appear and disappear in sync with speech, and it enables click-to-moment search so a user can jump straight to the instant a phrase was said. It also sharpens speaker boundaries by letting diarization snap to exact word edges, and it yields cleaner chunking boundaries when preparing transcripts for retrieval, since chunks can split on real word breaks instead of approximate guesses. Most cloud and open-source transcription tools expose segment-level timing by default; word-level timing is a stronger, if more compute-heavy, option worth checking for in any tool you evaluate.