Detecting User Questions in Video Streams
You are building an internet-based training solution. The solution requires that a user's camera and microphone remain enabled. You need to monitor a video stream of the user and detect when the user asks an instructor a question. The solution must minimize development effort. What should you include in the solution?
Community Votes
100% of anonymous learners picked answer A. Votes are pick records left by other test-takers — they are not the verified answer.
Community Insight
The trap is focusing on video (Vision) when the trigger is a spoken question, which requires Audio processing (Speech).
This question tests the integration of Azure AI services for real-time monitoring. The correct solution leverages speech-to-text to convert audio input into text for question detection.
Candidates often choose Face service or Object Detection because the scenario mentions a 'video stream', ignoring that the specific event to detect is verbal.
Community Discussion (16 comments)
Comments & Corrections
No comments yet — spotted an error or have a note? Share it below.
Expert Analysis
Why the Answer Is Correct
Correct answer: A — Speech-to-text in the Azure AI Speech service. The core requirement is to detect when a user asks a question. Since asking a question is a verbal act, the most direct and minimally developed solution is to transcribe the audio from the microphone into text using Azure AI Speech. This allows simple NLP rules or intent recognition to identify questions without complex vision models.Why the Other Options Are Wrong
Option B (Language Detection) only identifies the language, not the content or intent. Option C (Face Service) analyzes facial attributes like emotion or gender, not verbal queries. Option D (Custom Vision) is for image classification or object detection, which cannot process the semantic content of a spoken question. While the input is a video stream, the critical data point is the audio track.Community Comment Notes
Community consensus strongly favors A, with votes at 100%. Commenters note that since the camera and microphone are enabled, speech-to-text is the logical choice for detecting verbal questions. One commenter correctly points out that Face service does not make sense for identifying questions as it lacks audio processing capabilities.Official Reference
Exam Strategy
Always map the 'action' or 'event' you need to detect to the specific modality (Audio, Visual, Text). If the trigger is spoken, use Speech services; if it is visual behavior, use Vision services.
Frequently Asked Questions
Why not use Face Service to detect mouth movement?
Face Service detects facial landmarks and attributes, not semantic intent like 'asking a question'. It cannot distinguish between talking and asking.
Does the video stream require Azure AI Vision?
No. While the input is video, the task is audio-based. Using Speech-to-text minimizes development effort by leveraging existing transcription APIs.