Back to Content

SpeechRecognitionAlternative: transcript property

files/en-us/web/api/speechrecognitionalternative/transcript/index.md

latest939 B
Original Source

{{APIRef("Web Speech API")}}

The transcript read-only property of the {{domxref("SpeechRecognitionResult")}} interface returns a string containing the transcript of the recognized word(s).

For continuous recognition, leading or trailing whitespace will be included where necessary so that concatenation of consecutive {{domxref("SpeechRecognitionResult")}}s produces a proper transcript of the session.

Value

A string.

Examples

This code is excerpted from our Speech color changer example.

js
recognition.onresult = (event) => {
  const color = event.results[0][0].transcript;
  diagnostic.textContent = `Result received: ${color}.`;
  bg.style.backgroundColor = color;
};

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also