VoiceRecordingStopped
Plays a sound / audio cue when the voice recording has stopped.
{
"accessibility.signals.voiceRecordingStopped": {
"sound": "auto"
} // default
}
Type
object
Default
{
"sound": "auto"
}
Object Properties
| Key | Type | Default | Range | Description |
|---|---|---|---|---|
"sound" | string | "auto" BUG 1 | "auto", "off", "on" | Plays a sound when the voice recording has stopped. |
Description
Controls if sound signals are played when stopping a voice recording. Typically through the VS Code Speech extension.
When "sound" is set to "auto", the sound signal will play when stopping a voice recording and a screen reader is detected or "editor.accessibilitySettings": "on". When set to "off", the sound signal will never play even when a screen reader is detected or "editor.accessibiltySupport": "on". When set to "on", the sound signal will always play even when a screen reader is not detected or "editor.accessibilitySupport": "off".
BUGS
- Intellisense says default is
"off"but is actually"auto".