Microsoft Speech Platform - Runtime Languages [OFFICIAL]
Because this is a specific (and somewhat legacy) developer component, there isn't a single famous academic paper with this title. Instead, the "paper" you are likely looking for is the provided by Microsoft.
// Create a recognizer for the "en-US" Runtime Language using (SpeechRecognitionEngine recognizer = new SpeechRecognitionEngine(new System.Globalization.CultureInfo("en-US")))
If you’re still maintaining a Speech Platform-based system: microsoft speech platform - runtime languages
⚠️ : TTS and SR language packs are separate. You can mix (e.g., SR in en-US , TTS in de-DE ), but both must be installed.
The underlying engine (e.g., version 11.0) that manages speech requests. Because this is a specific (and somewhat legacy)
Via PowerShell (registry check):
| Locale | Language | TTS Voices (Examples) | SR Model | |--------|----------|----------------------|-----------| | en-US | English (US) | Microsoft Zira, David | MSSpeech_SR_en-US_TELE.msi | | zh-CN | Chinese (Simplified) | Microsoft Hui, Kangkang | MSSpeech_SR_zh-CN_TELE.msi | | de-DE | German | Microsoft Hedda, Stefan | MSSpeech_SR_de-DE_TELE.msi | | fr-FR | French | Microsoft Hortense | MSSpeech_SR_fr-FR_TELE.msi | You can mix (e
For a developer, the "paper" usually implies how to use the library. Here is how the Runtime Language is loaded in C#: