Skip to content

A simple wrapper for Google's Text-To-Spech API for Dart and Flutter projects.

License

Notifications You must be signed in to change notification settings

LucaDe/text_to_speech_api

Repository files navigation

text_to_speech_api

pub package A simple wrapper for Google's Text-To-Spech API. Simply list the available voices and convert your text to a mp3 by providing your API key, language code and voicename.

Usage

  • add the package as a dependency to your pubspec.yaml file:
dependencies:
  flutter:
    sdk: flutter
  text_to_speech_api: ^0.0.1
  • Initialize the TextToSpeechService (optional: provide your api key)
TextToSpeechService service = TextToSpeechService('sample api key');
  • List the available voices (no api key required)
await service.availableVoices();
  • Convert your text to a File object (api key required)
File mp3 = await service.textToSpeech(
  text: 'Hello World',
  voiceName: 'de-DE-Wavenet-D',
  audioEncoding: 'MP3',
  languageCode: 'de-DE'
);

About

A simple wrapper for Google's Text-To-Spech API for Dart and Flutter projects.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages