Video upload date:  · Duration: PT1H46M27S  · Language: EN

You have an Azure AI Speech service resource azure video

ai-102-ai-engineer-assoc video for you have an Azure AI Speech service resource named Resource1. You call Resource1 by running the following C# code. static

This is a dedicated watch page for a single video.

Full Certification Question

You have an Azure AI Speech service resource named Resource1. You call Resource1 by running the following C# code. static async Task SynthesizeAudioAsync ( dynamic input ) { var speechConfig = SpeechConfig . FromSubscription ( "YourSpeechKey" , "YourSpeechRegion" ); using var audioConfig = AudioConfig . FromWavFileOutput ( "path/to/file.wav" ); using var speechSynthesizer = new SpeechSynthesizer ( speechConfig , audioConfig ); await speechSynthesizer . SpeakTextAsync ( input ); } For the following statement, select Yes if the statement is true. Otherwise, select No. “The function will sample File.wav to use as a synthesized voice.”