wavenet 2.0.5 copy "wavenet: ^2.0.5" to clipboard
wavenet: ^2.0.5 copied to clipboard

discontinued

A simple wrapper for accessing Google's Text-To-Spech API and converting the results to MP3 files.

wavenet #

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
  wavenet: ^2.0.5
  • Initialize the TextToSpeechService:
TextToSpeechService service = TextToSpeechService('sample api key');
  • List the available voices:
await service.availableVoices();

They can also be found here: https://cloud.google.com/text-to-speech/docs/voices

  • Convert your text to a File object (api key required):
File mp3 = await service.textToSpeech(
  text: 'Hello World',
  voiceName: 'en-GB-Wavenet-F',
  audioEncoding: 'MP3',
  languageCode: 'en-GB'
  pitch: 0.0,
  speakingRate: 1.0,
);

Credits #

This is a fork of https://pub.dartlang.org/packages/text_to_speech_api.

5
likes
120
pub points
55%
popularity

Publisher

unverified uploader

A simple wrapper for accessing Google's Text-To-Spech API and converting the results to MP3 files.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, http, path_provider

More

Packages that depend on wavenet