What is speech to text in practice? The pipeline starts with a waveform: air pressure over time, sampled many thousands of times per second. Voice activity detection may drop silence so the recognizer spends compute on speech. The model then scores likely word sequences, often with a language component that prefers fluent phrases over random tokens. Decoding yields text, which downstream tools can punctuate, capitalize, or align to timestamps. Batch systems wait until a clip ends; streaming systems emit partial words while audio is still arriving.
People meet speech-to-text as captions, meeting notes, voicemail transcripts, and voice assistants. Dictation is the same conversion aimed at producing editable text in a writing workflow rather than an archive of a recording. The same model family can power both, but the product around it changes: a dictation app must place text in the focused field, handle commands such as new paragraph, and recover from noise without forcing you to replay a file. Word error rate is the usual accuracy yardstick; latency and privacy are the usual product tradeoffs.