Toolbelt.Blazor.SpeechSynthesis
7.0.0
See the version list below for details.
dotnet add package Toolbelt.Blazor.SpeechSynthesis --version 7.0.0
NuGet\Install-Package Toolbelt.Blazor.SpeechSynthesis -Version 7.0.0
<PackageReference Include="Toolbelt.Blazor.SpeechSynthesis" Version="7.0.0" />
paket add Toolbelt.Blazor.SpeechSynthesis --version 7.0.0
#r "nuget: Toolbelt.Blazor.SpeechSynthesis, 7.0.0"
// Install Toolbelt.Blazor.SpeechSynthesis as a Cake Addin #addin nuget:?package=Toolbelt.Blazor.SpeechSynthesis&version=7.0.0 // Install Toolbelt.Blazor.SpeechSynthesis as a Cake Tool #tool nuget:?package=Toolbelt.Blazor.SpeechSynthesis&version=7.0.0
Blazor SpeechSynthesis
Summary
This is a class library for Blazor app to provide Speech Synthesis API access.
How to install and use?
1. Installation and Registration
Step.1-1 Install the library via NuGet package, like this.
> dotnet add package Toolbelt.Blazor.SpeechSynthesis
Step.1-2 Register "SpeechSynthesis" service into the DI container, at ConfigureService
method in the Startup
class of your Blazor application.
// Startup.cs
using Toolbelt.Blazor.Extensions.DependencyInjection; // <- Add this, and...
...
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddSpeechSynthesis(); // <- Add this line.
...
2. Usage in your Blazor component (.razor)
Step.2-1 Open the Toolbelt.Blazor.SpeechSynthesis
namespace, and inject the SpeechSynthesis
service into the component.
@{/* This is your component .razor */}
@using Toolbelt.Blazor.SpeechSynthesis @{/* Add these two lines. */}
@inject SpeechSynthesis SpeechSynthesis
...
Step.2-2 Invoke Speak()
method of the SpeechSynthesis
service instance to speak!
@using Toolbelt.Blazor.SpeechSynthesis
@inject SpeechSynthesis SpeechSynthesis
<div> <textarea @bind="Text"></textarea> </div>
<div> <button @onclick="onClickSpeak">Speak</button> </div>
@code {
string Text;
void onClickSpeak() {
this.SpeechSynthesis.Speak(this.Text); // <-- Speak!
}
}
You can also speak with detail parameters, such as picth, rate, volume, by using SpeechSynthesisUtterance
object.
void onClickSpeak() {
var utterancet = new SpeechSynthesisUtterance {
Text = this.Text,
Lang = "en-US", // BCP 47 language tag
Pitch = 1.0, // 0.0 ~ 2.0 (Default 1.0)
Rate = 1.0, // 0.1 ~ 10.0 (Default 1.0)
Volume = 1.0 // 0.0 ~ 1.0 (Default 1.0)
}
this.SpeechSynthesis.Speak(utterancet); // <-- Speak!
}
If you want to chose type of voices, you can do it with GetVoicesAsync()
method of SpeechSynthesis
service instance.
IEnumerable<SpeechSynthesisVoice> Voices;
protected async override Task OnInitializedAsync()
{
this.Voices = await this.SpeechSynthesis.GetVoicesAsync();
}
void onClickSpeak() {
var utterancet = new SpeechSynthesisUtterance {
Text = this.Text,
Voice = this.Voices.FirstOrDefault(v => v.Name.Contains("Haruka"));
}
this.SpeechSynthesis.Speak(utterancet); // <-- Speak with "Haruka"'s voice!
}
Release Note
- v.7.0.0 - BREAKING CHANGE: Support Blazor v.3.0.0 Preview 9 (not compatible with v.3.0.0 Preview 8 or before.)
- v.6.0.0 - BREAKING CHANGE: Support Blazor v.3.0.0 Preview 8 (not compatible with v.3.0.0 Preview 7 or before.)
- v.5.0.0 - BREAKING CHANGE: Support Blazor v.3.0.0 Preview 6 (not compatible with v.3.0.0 Preview 5 or before.)
- v.4.0.0 - BREAKING CHANGE: Support Blazor v.3.0.0 Preview 4 (not compatible with v.0.9.0 or before.)
- v.3.0.0 - BREAKING CHANGE: Support Blazor v.0.9.0 (not compatible with v.0.8.0 or before.)
- v.2.0.0 - BREAKING CHANGE: Support Blazor v.0.8.0 (not compatible with v.0.7.0 or before.)
- v.1.0.0 - 1st release.
License
Product | Versions 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 was computed. 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. |
.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 was computed. 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. |
-
.NETStandard 2.0
- Microsoft.AspNetCore.Components (>= 3.0.0-preview9.19424.4)
- Microsoft.AspNetCore.Components.Web (>= 3.0.0-preview9.19424.4)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Toolbelt.Blazor.SpeechSynthesis:
Repository | Stars |
---|---|
ArduPilot/MissionPlanner
Mission Planner Ground Control Station for ArduPilot (c# .net)
|
Version | Downloads | Last updated |
---|---|---|
10.3.1 | 6,061 | 11/26/2023 |
10.3.0 | 239 | 11/16/2023 |
10.2.0 | 1,043 | 9/10/2023 |
10.1.0 | 211 | 9/5/2023 |
10.0.0 | 7,727 | 7/2/2022 |
9.0.4 | 1,167 | 5/29/2022 |
9.0.3 | 554 | 5/18/2022 |
9.0.2 | 572 | 5/10/2022 |
9.0.1 | 4,022 | 1/3/2022 |
9.0.0 | 1,629 | 9/5/2021 |
8.1.1 | 1,205 | 5/8/2021 |
8.1.0 | 6,428 | 12/6/2020 |
8.0.0 | 14,395 | 1/8/2020 |
7.0.0.1 | 1,604 | 9/6/2019 |
7.0.0 | 305 | 9/6/2019 |
6.0.0 | 331 | 8/19/2019 |
5.0.0 | 349 | 6/16/2019 |
4.0.0 | 564 | 5/2/2019 |
3.0.0 | 597 | 3/9/2019 |
2.0.0 | 644 | 2/10/2019 |
1.0.0 | 762 | 10/19/2018 |
v.6.0.0
- BREAKING CHANGE: Support Blazor v.3.0.0 Preview 8 (not compatible with v.3.0.0 Preview 7 or before.)
v.5.0.0
- BREAKING CHANGE: Support Blazor v.3.0.0 Preview 6 (not compatible with v.3.0.0 Preview 5 or before.)
v.4.0.0
- BREAKING CHANGE: Support Blazor v.3.0.0 Preview 4 (not compatible with v.0.9.0 or before.)
v.3.0.0
- BREAKING CHANGE: Support Blazor v.0.9.0 (not compatible with v.0.8.0 or before.)
v.2.0.0
- BREAKING CHANGE: Support Blazor v.0.8.0 (not compatible with v.0.7.0 or before.)
v.1.0.0
- 1st release.