The <Say>
verb allows your application to programmatically speak dynamic text over a call or conference using Text To Speech (TTS) capabilities. <Say>
offers different options for voices, each of which has its own supported set of languages, accents, and genders, so you can configure your TwiML according to your needs and preferences.
When Twilio executes <Say>
, it synthesizes speech for the text between <Say>
's opening and closing tags.
The TwiML sample below causes Twilio to play audio of a synthesized voice saying "Hello!" on a call or conference.
The <Say> verb supports the following attributes that modify its behavior:
Attribute | Accepted Values | Default Value |
---|---|---|
language | Any supported language/locale combination, e.g. en-UK | en-US (English with United States locale) |
loop | Any positive integer or zero, e.g. 4 | 1 |
voice | - man - woman - Any of the Twilio-supported Amazon Polly Voices, e.g. Polly.Amy - Any of the Twilio-supported Google Voices, e.g. Google.en-GB-Standard-A | man |
Note: Using an invalid combination of voice
and language
may result in error and <Say>
instruction failure. Please review the Text To Speech page to ensure correct configuration and use of accepted values for voice and language attributes.
<Say>
's language
attribute allows you to specify the language and locale for the synthesized voice, e.g. en-US
for English spoken in a United States accent.
Most of Twilio's supported language
values are comprised of a lowercase language abbreviation and an uppercase locale abbreviation, e.g. fr-CA
where fr
is the language, French, and CA
is the locale, Canada.
See the list of available voices on the Text to Speech page to find the list of available languages and locales. Use the value from the ID column as the value of your language
attribute, e.g. language="en-UK"
.
Note: If you are using both the language
and voice
attributes, ensure that the voice
value you use is available for the language
. Invalid combinations of voice and language (i.e. those that aren't shown on the available voices and languages list) may result in error and <Say>
instruction failure.
1const VoiceResponse = require('twilio').twiml.VoiceResponse;23const response = new VoiceResponse();4response.say({5language: 'fr-FR'6}, 'Bonjour!');78console.log(response.toString());
1<?xml version="1.0" encoding="UTF-8"?>2<Response>3<Say language="fr-FR">Bonjour!</Say>4</Response>
<Say>
's loop
attribute specifies how many times you'd like the text to be repeated. The default is once (1
).
Specifying 0
will cause the <Say>
verb to loop until either the call is hung up or 1,000 iterations are performed.
1const VoiceResponse = require('twilio').twiml.VoiceResponse;23const response = new VoiceResponse();4response.say({5loop: 26}, 'Hello!');78console.log(response.toString());
1<?xml version="1.0" encoding="UTF-8"?>2<Response>3<Say loop="2">Hello!</Say>4</Response>
Effective June 26, 2023, Alice voices are no longer supported for Text-To-Speech and any request will be redirected to an alternate voice. It is recommended to update configuration in your Console, Studio Flows, and backend application to remove any references to alice
voices. For more information, visit the Changelog.
<Say>
's voice
attribute allows you to specify the synthesized voice to use when speaking the text, e.g. man
or Polly.Amy
.
Twilio offers three levels of synthesized voices: Basic, Standard, and Premium.
voice
attribute values for Basic voices are man
or woman
All possible voice
values can be found in the "Available voices and languages" section of the Text To Speech page under the Voice name column.
The default value for voice
depends on your Account-level Text To Speech settings, which can be found in your Console under Develop > Voice > Settings > Text-to-speech. Visit the Text To Speech page for more information.
If you configured default settings in your Console, you can use the voice
attribute to override the default voice for a specific <Say>
instruction.
Note: If you are using both the language
and voice
attributes, ensure that the voice
value you use is available for the language
. Invalid combinations of voice and language (i.e. those that aren't shown on the available voices and languages list) may result in error and <Say>
instruction failure.
1const VoiceResponse = require('twilio').twiml.VoiceResponse;23const response = new VoiceResponse();4response.say({5voice: 'Polly.Mathieu',6language: 'fr-FR'7}, 'Bonjour! Je m\'appelle Mathieu.');89console.log(response.toString());
1<?xml version="1.0" encoding="UTF-8"?>2<Response>3<Say voice="Polly.Mathieu" language="fr-FR">Bonjour! Je m'appelle Mathieu.</Say>4</Response>
<Say>12345</Say>
is spoken as "twelve thousand, three hundred forty-five".<Say>1 2 3 4 5</Say>
is spoken as "one two three four five."<Pause>
should be placed outside <Say>
tags, not nested inside them.There is a character limit on the text that <Say>
can process, which varies depending on the Text To Speech option used. See the "Limits" section of the Text To Speech page for more information.