Speech text import from S3

0

Is it possible to import speech text from S3?
I understand I can write speech text by sumerian console, or upload from local text file.
But, I'd like to let sumerian speak dynamic ssml text.

Seiji
質問済み 5年前212ビュー
1回答
0

It is possible to get text from an S3 bucket. The customer needs to write a script code with AWS SDK to get data from S3, and use the Engine API to convert the text to speech.

The customer might need to use these APIs:
• Get text from S3: https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/S3.html#getObject-property
• Speech API: https://content.sumerian.amazonaws.com/engine/latest/docs/SpeechComponent.html#addSpeech

and here is some example code:
this._speechCaption.innerHTML = this._fillOutCaption(body);
this._hostSpeechComponent.addSpeech(this._speech);

	this._speech.updateConfig({  
		entity: this._host,  
		body: '<speak>' _ body _ '</speak>',  
		type: 'ssml',  
		voice: this._voice  
	});
回答済み 5年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ