NAME

Speech::Google::TTS - Module that uses Google Translate for text to speech synthesis.!

VERSION

Version 0.74

SYNOPSIS

This Module uses Googles Translate Service for text to multilingual text to speech synthesis.

This Module allows to use the Google TTS service behind the Google Translation service from Perl and is the core of the following Speech::Google Text to Speech Module set.

Perhaps a little code snippet.

	use Speech::Google::TTS;

	my $a = Speech::Google::TTS->new();

    $a = new Speech::Google::TTS();

    $a->say_text("speak this text!");
    $a->as_filename();

    $a->{'lang'} = 'de';
    $a->say_text("sprich diesen Text");
    $a->as_filename();
	...

FUNCTIONS

new

Create a new Speech::Google::TTS object and initialize configuration.

say_text

Generates a WAV or MP3 from text, stored in the temp directory.

as_filename

Gives back the filename of the last generated WAV or MP3 from i.e. "say_text".

languages

The list of currently supported languages.

AUTHOR

Niels Dettenbach, <nd@syndicat.com> http://www.syndicat.com

BUGS

Please report any bugs or feature requests to bug-speech-google-tts at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Speech::Google::TTS. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

Feel free to visit the project website http://www.syndicat.com/open_source/google/perl/googletts/

or write to googletts@syndicat.com

SUPPORT

You can find documentation for this module with the perldoc command.

perldoc Speech::Google::TTS

Feel free to visit the project website http://www.syndicat.com/open_source/google/perl/googletts/

You can also look for information at:

ACKNOWLEDGEMENTS

COPYRIGHT & LICENSE

Copyright 2012/2013 Niels Dettenbach <nd@syndicat.com>, with contributes of Lefteris Zafiris <zaf.000@gmail.com> all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.