polly_wrapper
Purpose
Shows how to use the AWS SDK for Python (Boto3) with Amazon Polly to synthesize speech and manage custom lexicons.
PollyWrapper
Encapsulates Amazon Polly functions.
Source code in backend/app/utils/tts/backends/resources/aws_example_code/polly_wrapper.py
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 | |
__init__(polly_client, s3_resource)
:param polly_client: A Boto3 Amazon Polly client. :param s3_resource: A Boto3 Amazon Simple Storage Service (Amazon S3) resource.
Source code in backend/app/utils/tts/backends/resources/aws_example_code/polly_wrapper.py
create_lexicon(name, content)
Creates a lexicon with the specified content. A lexicon contains custom pronunciations.
:param name: The name of the lexicon. :param content: The content of the lexicon.
Source code in backend/app/utils/tts/backends/resources/aws_example_code/polly_wrapper.py
describe_voices()
Gets metadata about available voices.
:return: The list of voice metadata.
Source code in backend/app/utils/tts/backends/resources/aws_example_code/polly_wrapper.py
do_synthesis_task(text, engine, voice, audio_format, s3_bucket, lang_code=None, include_visemes=False, wait_callback=None)
Start an asynchronous task to synthesize speech or speech marks, wait for the task to complete, retrieve the output from Amazon S3, and return the data.
An asynchronous task is required when the text is too long for near-real time synthesis.
:param text: The text to synthesize. :param engine: The kind of engine used. Can be standard or neural. :param voice: The ID of the voice to use. :param audio_format: The audio format to return for synthesized speech. When speech marks are synthesized, the output format is JSON. :param s3_bucket: The name of an existing Amazon S3 bucket that you have write access to. Synthesis output is written to this bucket. :param lang_code: The language code of the voice to use. This has an effect only when a bilingual voice is selected. :param include_visemes: When True, a second request is made to Amazon Polly to synthesize a list of visemes, using the specified text and voice. A viseme represents the visual position of the face and mouth when saying part of a word. :param wait_callback: A callback function that is called periodically during task processing, to give the caller an opportunity to take action, such as to display status. :return: The audio stream that contains the synthesized speech and a list of visemes that are associated with the speech audio.
Source code in backend/app/utils/tts/backends/resources/aws_example_code/polly_wrapper.py
get_languages(engine)
Extracts the set of available languages for the specified engine from the full list of voice metadata.
:param engine: The engine type to filter on. :return: The set of languages available for the specified engine type.
Source code in backend/app/utils/tts/backends/resources/aws_example_code/polly_wrapper.py
get_lexicon(name)
Gets metadata and contents of an existing lexicon.
:param name: The name of the lexicon to retrieve. :return: The retrieved lexicon.
Source code in backend/app/utils/tts/backends/resources/aws_example_code/polly_wrapper.py
get_speech_synthesis_task(task_id)
Gets metadata about an asynchronous speech synthesis task, such as its status.
:param task_id: The ID of the task to retrieve. :return: Metadata about the task.
Source code in backend/app/utils/tts/backends/resources/aws_example_code/polly_wrapper.py
get_voice_engines()
Extracts the set of available voice engine types from the full list of voice metadata.
:return: The set of voice engine types.
Source code in backend/app/utils/tts/backends/resources/aws_example_code/polly_wrapper.py
get_voices(engine, language_code)
Extracts the set of voices that are available for the specified engine type and language from the full list of voice metadata.
:param engine: The engine type to filter on. :param language_code: The language to filter on. :return: The set of voices available for the specified engine type and language.
Source code in backend/app/utils/tts/backends/resources/aws_example_code/polly_wrapper.py
list_lexicons()
Lists lexicons in the current account.
:return: The list of lexicons.
Source code in backend/app/utils/tts/backends/resources/aws_example_code/polly_wrapper.py
synthesize(text, engine, voice, audio_format, lang_code=None, include_visemes=False)
Synthesizes speech or speech marks from text, using the specified voice.
:param text: The text to synthesize. :param engine: The kind of engine used. Can be standard or neural. :param voice: The ID of the voice to use. :param audio_format: The audio format to return for synthesized speech. When speech marks are synthesized, the output format is JSON. :param lang_code: The language code of the voice to use. This has an effect only when a bilingual voice is selected. :param include_visemes: When True, a second request is made to Amazon Polly to synthesize a list of visemes, using the specified text and voice. A viseme represents the visual position of the face and mouth when saying part of a word. :return: The audio stream that contains the synthesized speech and a list of visemes that are associated with the speech audio.