jsakamoto / Toolbelt.Blazor.SpeechRecognition

SpeechRecognition API access for your Blazor apps.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Blazor Speech Recognition NuGet Package

Summary

This is a class library for Blazor app to provide Speech Recognition API access.

Requirements

Blazor v.6.0, 7.0, 8.0 or later.

Both "Blazor WebAssembly" and "Blazor Server" are supoorted.

Quick Start

1. Installation and Registration

Step.1-1 Install the library via NuGet package, like this.

> dotnet add package Toolbelt.Blazor.SpeechRecognition

Step.1-2 Register SpeechRecognition service into the DI container.

If the project is a Blazor Server App or a Blazor WebAssembly App ver.3.1 Preview 4 or earlyer, add the code into the ConfigureService method in the Startup class of your Blazor application.

// Program.cs

using Toolbelt.Blazor.Extensions.DependencyInjection; // <- Add this, and...
...
var builder = ...
...
builder.Services.AddSpeechRecognition(); // <- Add this line.
...

2. Usage in your Blazor component (.razor)

Step.2-1 Open the Toolbelt.Blazor.SpeechRecognition namespace, and inject the SpeechRecognition service into the component.

@{/* This is your component .razor */}
@using Toolbelt.Blazor.SpeechRecognition @{/* Add these two lines. */}
@inject SpeechRecognition SpeechRecognition
...

Step.2-2 Subscribe Result event of the SpeechRecognition service to receive the results of speech recognition.

protected override void OnInitialized()
{
  this.SpeechRecognition.Result += OnSpeechRecognized;
}

private void OnSpeechRecognized(object sender, SpeechRecognitionEventArgs args)
{
  // DO SOMETHING...
}

Step.2-3 Invoke StartAsync() method of the SpeechRecognition service when you want to start speech recognition.

private async Task OnClickStart()
{
  await this.SpeechRecognition.StartAsync();
}

Step.2-4 Implement IDisposable interface on the component, and unsubscribe Result event when the component is disposing.

...
@implements IDisposable
...
@code {
  ...
  public void Dispose()
  {
    this.SpeechRecognition.Result -= OnSpeechRecognized;
  }
}

See also sample code on the GitHub repository.

Configuration

The calling of services.AddSpeechRecognition() injects the references of JavaScript file (.js) - which is bundled with this package - into your page automatically.

If you don't want this behavior, you can disable these automatic injection, please call services.AddSpeechRecognition() with configuration action like this:

services.AddSpeechRecognition(options =>
{
  // If you don't want automatic injection of js file, add bellow;
  options.DisableClientScriptAutoInjection = true;
});

You can inject the helper JavaScript file manually. The URLs is bellow:

  • _content/Toolbelt.Blazor.SpeechRecognition/script.min.js

Release Note

Release notes is here.

License

Mozilla Public License Version 2.0

About

SpeechRecognition API access for your Blazor apps.

License:Mozilla Public License 2.0


Languages

Language:CSS 32.3%Language:HTML 31.4%Language:C# 27.0%Language:TypeScript 5.1%Language:JavaScript 4.2%