AWSDocAWS SDKGitHub サンプルリポジトリには、さらに多くの SDK サンプルがあります
翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。
AWSSDK を使用して Amazon Polly の音声合成タスクを開始する
次のコード例は、Amazon Polly 音声合成タスクを開始する方法を示しています。
- Python
-
- SDK for Python (Boto3)
-
注記
他にもありますGitHub。用例一覧を検索し、AWS コード例リポジトリ
での設定と実行の方法を確認してください。 class PollyWrapper: """Encapsulates Amazon Polly functions.""" def __init__(self, polly_client, s3_resource): """ :param polly_client: A Boto3 Amazon Polly client. :param s3_resource: A Boto3 Amazon Simple Storage Service (Amazon S3) resource. """ self.polly_client = polly_client self.s3_resource = s3_resource self.voice_metadata = None def do_synthesis_task( self, 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. """ try: kwargs = { 'Engine': engine, 'OutputFormat': audio_format, 'OutputS3BucketName': s3_bucket, 'Text': text, 'VoiceId': voice} if lang_code is not None: kwargs['LanguageCode'] = lang_code response = self.polly_client.start_speech_synthesis_task(**kwargs) speech_task = response['SynthesisTask'] logger.info("Started speech synthesis task %s.", speech_task['TaskId']) viseme_task = None if include_visemes: kwargs['OutputFormat'] = 'json' kwargs['SpeechMarkTypes'] = ['viseme'] response = self.polly_client.start_speech_synthesis_task(**kwargs) viseme_task = response['SynthesisTask'] logger.info("Started viseme synthesis task %s.", viseme_task['TaskId']) except ClientError: logger.exception("Couldn't start synthesis task.") raise else: bucket = self.s3_resource.Bucket(s3_bucket) audio_stream = self._wait_for_task( 10, speech_task['TaskId'], 'speech', wait_callback, bucket) visemes = None if include_visemes: viseme_data = self._wait_for_task( 10, viseme_task['TaskId'], 'viseme', wait_callback, bucket) visemes = [json.loads(v) for v in viseme_data.read().decode().split() if v] return audio_stream, visemes
-
API の詳細については、「AWSSDK for Python (Boto3) API リファレンス」のを参照してくださいStartSpeechSynthesisTask。
-
発音レキシクスを一覧表示する
発音レキシコンを保存