Skip to content

Commit a3aa080

Browse files
committed
Add README description for UseSwitchConfigKey
1 parent 2aa14db commit a3aa080

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

README.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,11 @@ Note: If your current input language is set to Chinese, you can select character
4545
- ✔️ Send additional trailing characters (`SendTrailingEnter`, `SendTrailingSpace`)
4646
- ✔️ Change comma to whitespace and remove period (`ChineseChatMode`)
4747
- ✔️ Show a semi-transparent GUI overlay when recognizing (`ShowListeningOverlay`)
48-
- ✔️ [Arcane options for debugging](https://docs.microsoft.com/en-us/dotnet/api/microsoft.cognitiveservices.speech.detailedspeechrecognitionresult?view=azure-dotnet), [[sample1]](https://github.com/Azure-Samples/cognitive-services-speech-sdk/issues/667), [[sample2]](https://stackoverflow.com/a/51190072) (`PrioritizeLatencyOrAccuracy`, `SoundEffect`, `OutputForm`, `DetailedLog`, `ForceCapitalizeFirstAlphabet`)
49-
More debugging features and Azure SDK options that doesn't interest normal users.
5048
- ✔️ Hot reload config file
49+
- ✔️ Switch between config files (`UseSwitchConfigKey`)
5150
- ✔️ Forbid multiple program instances
51+
- ✔️ [Arcane options for debugging](https://docs.microsoft.com/en-us/dotnet/api/microsoft.cognitiveservices.speech.detailedspeechrecognitionresult?view=azure-dotnet), [[sample1]](https://github.com/Azure-Samples/cognitive-services-speech-sdk/issues/667), [[sample2]](https://stackoverflow.com/a/51190072) (`PrioritizeLatencyOrAccuracy`, `SoundEffect`, `OutputForm`, `DetailedLog`, `ForceCapitalizeFirstAlphabet`)
52+
More debugging features and Azure SDK options that doesn't interest normal users.
5253
- ❌ Mixed language speech recognition
5354
It's much better to skip the language detection phase and perform mixed language speech recognition directly to avoid initial delay. Unfortunately Azure SDK doesn't support this yet.
5455
- ❌ Add a GUI menu window to start/stop recognition instead of solely rely on hotkeys.
@@ -84,7 +85,8 @@ Note: If your current input language is set to Chinese, you can select character
8485
"SendTrailingSpace": false,
8586
"ChineseChatMode": false,
8687
"ForceCapitalizeFirstAlphabet": true,
87-
"ShowListeningOverlay": true
88+
"ShowListeningOverlay": true,
89+
"UseSwitchConfigKey": false
8890
}
8991
```
9092

@@ -110,6 +112,7 @@ Make sure to replace `<paste-your-subscription-key>` and `<paste-your-region>` t
110112
- `ChineseChatMode`: Replaces Chinese comma (``) into English whitespace (` `), and removes Chinese period (``).
111113
- `ForceCapitalizeFirstAlphabet`: Force capitalization of the first English alphabet in a sentence. This allows better user experience when `InputIncrementally` is enabled.
112114
- `ShowListeningOverlay`: Determines whether to show an indicator microphone overlay window when the program is listening.
115+
- `UseSwitchConfigKey`: Determines whether to enable switching between configs with `Alt+0`, `Alt+1`, and so on.
113116

114117
## Program Hint
115118

0 commit comments

Comments
 (0)