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
gefragt vor 5 Jahren224 Aufrufe
1 Antwort
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  
	});
beantwortet vor 5 Jahren

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen