AI-102 Exam QuestionsBrowse all questions from this exam

AI-102 Exam - Question 163


HOTSPOT

-

You are developing a streaming Speech to Text solution that will use the Speech SDK and MP3 encoding.

You need to develop a method to convert speech to text for streaming MP3 data.

How should you complete the code? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Show Answer
Correct Answer:

Discussion

9 comments
Sign in to comment
evangelist
Feb 4, 2024

first one has to configure the format as MP3, so "AudioStreamFormat" option is chosen. Second, since it is speech to text, the SpeechRecognition option is needed. The answer is CORRECT

SCyrus
Oct 5, 2023

Answer correct https://github.com/Azure-Samples/cognitive-services-speech-sdk/blob/master/samples/python/console/speech_sample.py

rdemontis
Nov 5, 2023

correct

takaimomoGcup
May 22, 2024

audio_format = speechsdk.audio.AudioStreamFormat(compressed_stream_format=speechsdk.AudioStreamContainerFormat.MP3) recognizer = speechsdk.SpeechRecognizer(speech_config, audio_config)

NagaoShingo
Jun 6, 2024

1. AudioStreamFormat 2. SpeechRecognizer

hkbnjos
Jan 9, 2024

this question is same as Topic 1 Q18 but with different answer, which is correct?

Mehe323
Mar 11, 2024

The answers are the same. Both chosen are AudioStreamFormat and SpeechRecognizer, but in question 18 there is an additional method for AudioStreamFormat (GetCompressedFormat).

omankoman
May 29, 2024

AudioStreamFormat SpeechRecognizer

JacobZ
Jun 23, 2024

Same as question 18 in topic 1

krzkrzkra
Jul 14, 2024

1. AudioStreamFormat 2. SpeechRecognizer