Text-to-speech JQuery SDK
The Voice RSS Text-to-Speech JQuery SDK wraps Voice RSS Text-to-Speech API.
The Voice RSS Text-to-Speech JQuery SDKs will help to make integration with our Text-to-Speech API faster and easer.
If you have any questions or suggestions please feel free to contact us via e-mail.
Documentation
To integrate an application with the Voice RSS Text-to-Speech JQuery SDK it needs to add reference to the file jquery.voicerss-tts.min.js.
Convert text-to-speech
The following example demonstrates asynchronous converting text-to-speech and plays it in an internet browser:
<!DOCTYPE html>
<html>
<head>
    <title></title>
    <meta charset='utf-8' />
    <script src='https://ajax.googleapis.com/ajax/libs/jquery/2.2.3/jquery.min.js'></script>
    <script src='jquery.voicerss-tts.min.js'></script>
</head>
<body>
    <script>
        $.speech({
            key: '<API key>',
            src: 'Hello, world!',
            hl: 'en-us',
            v: 'Linda',
            r: 0, 
            c: 'mp3',
            f: '44khz_16bit_stereo',
            ssml: false
        });
    </script>
</body>
</html>
                