AI-102 · Question #235
Drag and Drop Question You develop an app in C# named App1 that performs speech-to-speech translation. You need to configure App1 to translate English to German. How should you complete the…
To configure speech-to-speech translation in the Azure Cognitive Services Speech SDK, you use 'speechRecognitionLanguage' to set the source language (English, e.g., 'en-US') so the SDK knows what language to listen for and transcribe, and 'addTargetLanguage' to specify the…
Question
Exhibit
Explanation
To configure speech-to-speech translation in the Azure Cognitive Services Speech SDK, you use 'speechRecognitionLanguage' to set the source language (English, e.g., 'en-US') so the SDK knows what language to listen for and transcribe, and 'addTargetLanguage' to specify the destination language (German, e.g., 'de') for translation output. The 'voiceName' property is used optionally to specify a synthesis voice for audio output, but is not required for basic translation configuration - the two mandatory properties are speechRecognitionLanguage (input) and addTargetLanguage (output).
Topics
Community Discussion
No community discussion yet for this question.
