This Web Speech API interface represents a speech request. It contains the content the speech service should read and information about how to read it (e.g. language, pitch and volume.)

MDN Reference

interface SpeechSynthesisUtterance {
    lang: string;
    onboundary: null | ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any);
    onend: null | ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any);
    onerror: null | ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisErrorEvent) => any);
    onmark: null | ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any);
    onpause: null | ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any);
    onresume: null | ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any);
    onstart: null | ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any);
    pitch: number;
    rate: number;
    text: string;
    voice: null | SpeechSynthesisVoice;
    volume: number;
    addEventListener<K extends keyof SpeechSynthesisUtteranceEventMap>(type: K, listener: ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisUtteranceEventMap[K]) => any), options?: boolean | AddEventListenerOptions): void;
    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
    dispatchEvent(event: Event): boolean;
    removeEventListener<K extends keyof SpeechSynthesisUtteranceEventMap>(type: K, listener: ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisUtteranceEventMap[K]) => any), options?: boolean | EventListenerOptions): void;
    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
}

Hierarchy-Diagram

UML class diagram of SpeechSynthesisUtterance
Legend
icon for an interface in the UML class diagram interface
icon for a public property in the UML class diagram public property
icon for a public method in the UML class diagram public method

Hierarchy (view full)

Properties

lang: string
onboundary: null | ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any)

Type declaration

onend: null | ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any)

Type declaration

onerror: null | ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisErrorEvent) => any)

Type declaration

onmark: null | ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any)

Type declaration

onpause: null | ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any)

Type declaration

onresume: null | ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any)

Type declaration

onstart: null | ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any)

Type declaration

pitch: number
rate: number
text: string
voice: null | SpeechSynthesisVoice
volume: number

Methods

  • Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.

    MDN Reference

    Parameters

    Returns boolean