to top
Android APIs
public final class

SynthesisRequest

extends Object
java.lang.Object
   ↳ android.speech.tts.SynthesisRequest

Class Overview

Contains data required by engines to synthesize speech. This data is :

  • The text to synthesize
  • The synthesis locale, represented as a language, country and a variant. The language is an ISO 639-3 letter language code, and the country is an ISO 3166 alpha 3 code. The variant is not specified.
  • The synthesis speech rate, with 100 being the normal, and higher values representing higher speech rates.
  • The voice pitch, with 100 being the default pitch.
Any additional parameters sent to the text to speech service are passed in uninterpreted, see the @code{params} argument in speak(String, int, HashMap) and synthesizeToFile(String, HashMap, String).

Summary

Public Constructors
SynthesisRequest(String text, Bundle params)
Public Methods
String getCountry()
Gets the ISO 3-letter country code for the language to use.
String getLanguage()
Gets the ISO 3-letter language code for the language to use.
Bundle getParams()
Gets the additional params, if any.
int getPitch()
Gets the pitch to use.
int getSpeechRate()
Gets the speech rate to use.
String getText()
Gets the text which should be synthesized.
String getVariant()
Gets the language variant to use.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public SynthesisRequest (String text, Bundle params)

Since: API Level 14

Public Methods

public String getCountry ()

Since: API Level 14

Gets the ISO 3-letter country code for the language to use.

public String getLanguage ()

Since: API Level 14

Gets the ISO 3-letter language code for the language to use.

public Bundle getParams ()

Since: API Level 14

Gets the additional params, if any.

public int getPitch ()

Since: API Level 14

Gets the pitch to use. The normal pitch is 100.

public int getSpeechRate ()

Since: API Level 14

Gets the speech rate to use. The normal rate is 100.

public String getText ()

Since: API Level 14

Gets the text which should be synthesized.

public String getVariant ()

Since: API Level 14

Gets the language variant to use.