System.Speech 9.0.3

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package System.Speech --version 9.0.3
                    
NuGet\Install-Package System.Speech -Version 9.0.3
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="System.Speech" Version="9.0.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="System.Speech" Version="9.0.3" />
                    
Directory.Packages.props
<PackageReference Include="System.Speech" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add System.Speech --version 9.0.3
                    
#r "nuget: System.Speech, 9.0.3"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=System.Speech&version=9.0.3
                    
Install System.Speech as a Cake Addin
#tool nuget:?package=System.Speech&version=9.0.3
                    
Install System.Speech as a Cake Tool

About

Provides APIs for speech recognition and synthesis built on the Microsoft Speech API in Windows. Not supported on other platforms.

This package is provided primarily for compatibility with code being ported from .NET Framework and is not accepting new features.

Key Features

How to Use

Synthesis example

using System.Speech.Synthesis;

// Initialize a new instance of the SpeechSynthesizer.
SpeechSynthesizer synth = new SpeechSynthesizer();

// Configure the audio output.
synth.SetOutputToDefaultAudioDevice();

// Speak a string, synchronously
synth.Speak("Hello World!");

// Speak a string asynchronously
var prompt = synth.SpeakAsync("Goodnight Moon!");

while (!prompt.IsCompleted)
{
    Console.WriteLine("speaking...");
    Thread.Sleep(500);
}

Recognition example

// Create a new SpeechRecognitionEngine instance.
using SpeechRecognizer recognizer = new SpeechRecognizer();
using ManualResetEvent exit = new ManualResetEvent(false);

// Create a simple grammar that recognizes "red", "green", "blue", or "exit".
Choices choices = new Choices();
choices.Add(new string[] { "red", "green", "blue", "exit" });

// Create a GrammarBuilder object and append the Choices object.
GrammarBuilder gb = new GrammarBuilder();
gb.Append(choices);

// Create the Grammar instance and load it into the speech recognition engine.
Grammar g = new Grammar(gb);
recognizer.LoadGrammar(g);

// Register a handler for the SpeechRecognized event.
recognizer.SpeechRecognized += (s, e) =>
{
    Console.WriteLine($"Recognized: {e.Result.Text}, Confidence: {e.Result.Confidence}");
    if (e.Result.Text == "exit")
    {
        exit.Set();
    }
};

// Emulate
Console.WriteLine("Emulating \"red\".");
recognizer.EmulateRecognize("red");

Console.WriteLine("Speak red, green, blue, or exit please...");

exit.WaitOne();

Main Types

The main types provided by this library are:

  • System.Speech.Recognition.SpeechRecognizer
  • System.Speech.Synthesis.SpeechSynthesizer

Additional Documentation

Feedback & Contributing

System.Speech is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.
  • net8.0

    • No dependencies.
  • net9.0

    • No dependencies.

NuGet packages (45)

Showing the top 5 NuGet packages that depend on System.Speech:

Package Downloads
Microsoft.Windows.Compatibility

This Windows Compatibility Pack provides access to APIs that were previously available only for .NET Framework. It can be used from both .NET as well as .NET Standard.

CommunityToolkit.Maui.Core

Core library for community toolkits using .NET MAUI

Krypton.Toolkit.Suite.Extended.Dialogs

An extension to the Standard Toolkit, which supports .NET Framework 4.6.2 - 4.8.1, .NET 6, 8 and 9. This package implements additional extensions to standard dialogs. This package supports all .NET Framework versions starting .NET Framework 4.6.2 - 4.8.1, .NET 6, 8 and 9. Also, all libraries are included targeting each specific framework version for performance purposes. To view all of the extended toolkit package latest version information, please visit: https://github.com/Krypton-Suite/Krypton-Toolkit-Suite-Version-Dashboard/blob/main/Documents/Modules/Extended/Krypton-Toolkit-Suite-Extended-Modules.md

Krypton.Toolkit.Suite.Extended.Dialogs.Nightly

An extension to the Standard Toolkit, which supports .NET Framework 4.6.2 - 4.8.1, .NET 8 - 10. This package implements additional extensions to standard dialogs. This package supports all .NET Framework versions starting .NET Framework 4.6.2 - 4.8.1, .NET 8 - 10. Also, all libraries are included targeting each specific framework version for performance purposes. To view all of the extended toolkit package latest version information, please visit: https://github.com/Krypton-Suite/Krypton-Toolkit-Suite-Version-Dashboard/blob/main/Documents/Modules/Extended/Krypton-Toolkit-Suite-Extended-Modules.md

Jon.Wpf.CustomControls

Jon.WPF.CustomControls is a collection of custom, reusable WPF controls. It is built with .NET 7.0 and intended to provide developers with controls that are commonly used but not included in the standard WPF toolkit.

GitHub repositories (19)

Showing the top 19 popular GitHub repositories that depend on System.Speech:

Repository Stars
hanmin0822/MisakaTranslator
御坂翻译器—Galgame/文字游戏/漫画多语种实时机翻工具
Danily07/Translumo
Advanced real-time screen translator for games, hardcoded subtitles in videos, static text and etc.
ZGGSONG/STranslate
A ready-to-go translation ocr tool developed with WPF/WPF 开发的一款即用即走的翻译、OCR工具
CommunityToolkit/Maui
The .NET MAUI Community Toolkit is a community-created library that contains .NET MAUI Extensions, Advanced UI/UX Controls, and Behaviors to help make your life as a .NET MAUI developer easier
microsoft/AdaptiveCards
A new way for developers to exchange card content in a common and consistent way.
NewLifeX/X
Core basic components: log (file / network), configuration (XML / JSON / HTTP), cache (memory / redis), network (TCP / UDP / HTTP), RPC framework, serialization (binary / XML / JSON), APM performance tracking. 核心基础组件,日志(文件/网络)、配置(XML/Json/Http)、缓存(内存/Redis)、网络(Tcp/Udp/Http)、RPC框架、序列化(Binary/XML/Json)、APM性能追踪。
ClassIsland/ClassIsland
一款适用于班级多媒体屏幕的课表信息显示工具,可以一目了然地显示各种信息。
VRCWizard/TTS-Voice-Wizard
Speech to Text to Speech. Song now playing. Sends text as OSC messages to VRChat to display on avatar. (STTTS) (Speech to TTS) (VRC STT System) (VTuber TTS)
dotnet/dotnet
Home of .NET's Virtual Monolithic Repository which includes all the code needed to build the .NET SDK.
ciribob/DCS-SimpleRadioStandalone
An open source Stand alone Radio for DCS integrating with all clickable cockpits and FC3 Aircraft
Esri/arcgis-maps-sdk-dotnet-samples
Sample code for ArcGIS Maps SDK for .NET – WPF, WinUI, .NET MAUI
NewLifeX/XCoder
新生命码神工具,代码生成、网络工具、API工具、串口工具、正则工具、图标工具、加解密工具、地图接口。
SamsidParty/TopNotify
The Ultimate Notification Customization Tool For Windows
rampaa/JL
JL is a program for looking up Japanese words and expressions.
Krypton-Suite/Extended-Toolkit
A companion toolkit for the standard toolkit.
SaviorXTanren/mixer-mixitup
Streaming bot application for handling chat, events, moderation, and other streamer assistance features
marzent/IINACT
A Dalamud plugin to run the FFXIV_ACT_Plugin in an ACT-like enviroment with a heavily modified port of Overlay Plugin
maker-community/ElectronBot.DotNet
一个为ElectronBot机器人和瀚文键盘(HelloWorldKeyboard)开发的上位机软件(包含机器人USB操作SDK和瀚文键盘HID操作SDK),采用Windows App SDK框架编写界面。 A host computer software developed for ElectronBot robots (including robot USB operation SDK), using the Windows App SDK framework to write UI.
FutureAIGuru/BrainSimII
Neural Simulator for AGI research and development
Version Downloads Last updated
10.0.0-preview.5.25277.114 257 6/6/2025
10.0.0-preview.4.25258.110 1,185 5/12/2025
10.0.0-preview.3.25171.5 3,624 4/10/2025
10.0.0-preview.2.25163.2 3,257 3/18/2025
10.0.0-preview.1.25080.5 1,598 2/25/2025
9.0.6 3,282 6/10/2025
9.0.5 40,731 5/13/2025
9.0.4 156,356 4/8/2025
9.0.3 59,128 3/11/2025
9.0.2 93,923 2/11/2025
9.0.1 261,290 1/14/2025
9.0.0 361,468 11/12/2024
9.0.0-rc.2.24473.5 25,194 10/8/2024
9.0.0-rc.1.24431.7 8,423 9/10/2024
9.0.0-preview.7.24405.7 6,119 8/13/2024
9.0.0-preview.6.24327.7 12,168 7/9/2024
9.0.0-preview.5.24306.7 5,369 6/11/2024
9.0.0-preview.4.24266.19 3,031 5/21/2024
9.0.0-preview.3.24172.9 7,787 4/11/2024
9.0.0-preview.2.24128.5 1,137 3/12/2024
9.0.0-preview.1.24080.9 24,082 2/13/2024
8.0.0 6,450,424 11/14/2023
8.0.0-rc.2.23479.6 262,888 10/10/2023
8.0.0-rc.1.23419.4 9,445 9/12/2023
8.0.0-preview.7.23375.6 9,794 8/8/2023
8.0.0-preview.6.23329.7 1,380 7/11/2023
8.0.0-preview.5.23280.8 1,252 6/13/2023
8.0.0-preview.4.23259.5 10,271 5/16/2023
8.0.0-preview.3.23174.8 20,679 4/11/2023
8.0.0-preview.2.23128.3 6,253 3/14/2023
8.0.0-preview.1.23110.8 8,300 2/21/2023
7.0.0 4,538,929 11/7/2022
7.0.0-rc.2.22472.3 9,427 10/11/2022
7.0.0-rc.1.22426.10 62,728 9/14/2022
7.0.0-preview.7.22375.6 10,672 8/9/2022
7.0.0-preview.6.22324.4 1,336 7/12/2022
7.0.0-preview.5.22301.12 1,441 6/14/2022
7.0.0-preview.4.22229.4 11,058 5/10/2022
7.0.0-preview.3.22175.4 3,453 4/13/2022
7.0.0-preview.2.22152.2 12,514 3/14/2022
7.0.0-preview.1.22076.8 2,586 2/17/2022
6.0.0 10,095,038 11/8/2021
6.0.0-rc.2.21480.5 4,423 10/12/2021
6.0.0-rc.1.21451.13 8,402 9/14/2021
6.0.0-preview.7.21377.19 2,813 8/10/2021
6.0.0-preview.6.21352.12 1,962 7/14/2021
6.0.0-preview.5.21301.5 5,628 6/15/2021
6.0.0-preview.4.21253.7 20,653 5/24/2021
6.0.0-preview.3.21201.4 7,897 4/8/2021
6.0.0-preview.2.21154.6 8,021 3/11/2021
6.0.0-preview.1.21102.12 3,675 2/12/2021
5.0.0 4,344,091 2/9/2021 5.0.0 is deprecated because it is no longer maintained.