background_stt 1.0.6 copy "background_stt: ^1.0.6" to clipboard
background_stt: ^1.0.6 copied to clipboard

A flutter plugin for Speech-to-Text & Text-To-Speech service always active in background mode.

background_stt #

Speech-to-Text, Text-to-speech, Interactive Voice commands

[Android Support Only]

pub package

An flutter plugin that runs Speech-to-Text continously in background. This plugin operates in 2 modes:

1. STT Mode

Voice commands will be recognized in background and sent to Flutter app.

2. Confirmation Mode

Voice commands will be recognized and if confirmation was requested for the command, confirmation flow will begin. Once user has provided with "Positive" or "Negative" reply, confirmation mode will end delivering voice input results to flutter app.

Speech results will be delivered in real-time to the flutter app.

Demo

Install #

In your pubspec.yaml

dependencies:
  background_stt: [LATEST_VERSION]
copied to clipboard
import 'package:background_stt/background_stt.dart';
copied to clipboard

How to use it? #

Start Speech-to-Text Service


Note: Service will keep on running once it is started and can only be stopped by calling stop service method.

 var _service = BackgroundStt();

 _service.startSpeechListenService;
    _service.getSpeechResults().onData((data) {
      print("getSpeechResults: ${data.result} , ${data.isPartial}");
    });
copied to clipboard

Setup Intent for Simple Confirmation


This can be useful for simple decisions.

    _service.getSpeechResults().onData((data) {
          if (command == "start") {
          _service.confirmIntent(
              confirmationText: "Do you want to start?",
              positiveCommand: "yes",
              negativeCommand: "no");
        }
    });

  _service.getConfirmationResults().onData((data) {
      print(
          "getConfirmationResults: Confirmation Text: ${data.confirmationIntent} , "
          "User Replied: ${data.confirmedResult} , "
          "Is Confirmation Success?: ${data.isSuccess}");
    });
copied to clipboard

Setup Intent for Voice-Input Confirmation


This can be useful for taking voice input from user and then confirming that input from user by voice command verification.

    _service.getSpeechResults().onData((data) {
          if (command == "address") {
            _service.confirmIntent(
                confirmationText: "What is the address?",
                positiveCommand: "yes",
                negativeCommand: "no",
                voiceInputMessage: "Is the address correct?",
                voiceInput: true);
          }
    });

  _service.getConfirmationResults().onData((data) {
      print(
          "getConfirmationResults: Confirmation Text: ${data.confirmationIntent} , "
          "User Replied: ${data.confirmedResult} , "
          "Voice Input Message: ${data.voiceInput} , "
          "Is Confirmation Success?: ${data.isSuccess}");
    });
copied to clipboard

Cancel Confirmation in progress


  await _service.cancelConfirmation;
copied to clipboard

Stop Speech-to-Text Service


  _service.stopSpeechListenService;
copied to clipboard

Pause Speech-to-Text Listener


  await _service.pauseListening();
copied to clipboard

Resume Speech-to-Text Listener


  await _service.resumeListening();
copied to clipboard

Speak Text and Interupt Listener


If you want to queue voice messages, send queue value 'true':

  await _service.speak("Hello",true)
copied to clipboard

To interupt and speak current playing message, send queue value 'false':

  await _service.speak("Hello",false)
copied to clipboard

Set speaker pitch and speech rate:

  _service.setSpeaker(0.2, 0.5)
copied to clipboard

Author #

background_stt plugin is developed by Umair Adil. You can email me at m.umair.adil@gmail.com for any queries.

40
likes
140
points
75
downloads

Publisher

verified publisherumairadil.com

Weekly Downloads

2024.09.17 - 2025.04.01

A flutter plugin for Speech-to-Text & Text-To-Speech service always active in background mode.

Repository (GitHub)

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

flutter

More

Packages that depend on background_stt