• 160617、使用espeak将文字转语音(TTS)


    http://www.eguidedog.net/cn/WebSpeech_cn.php

    简单使用例子:

    <html>
      <head>
        <meta http-equiv="Content-Type"
          content="text/html; charset=utf-8" /> 
        <script type='text/javascript'
          src='/WebSpeech/WebSpeech.js'></script>
      </head>
      <body>
        听到声音了吗?
        <script type='text/javascript'>      WebSpeech.server = 'http://120.24.87.124/cgi-bin/ekho2.pl';
          WebSpeech.speak('听到声音了吗?');
        </script>
      </body>
    </html>

    API

    // 默认语音服务器是 'http://wa.eguidedog.net/cgi-bin/ekho.pl'
    // 请修改为 http://120.24.87.124/cgi-bin/ekho2.pl
    WebSpeech.server = '您的语音服务器';
    WebSpeech.speak('text to speak');
    WebSpeech.pause();
    WebSpeech.resume();
    WebSpeech.stop();
    // 朗读当前网页
    WebSpeech.speakHtml();
    WebSpeech.pauseHtml();
    WebSpeech.stopHtml();
    // 当WebSpeech初始化完成后运行
    WebSpeech.ready(function () { ... });
    // 当speak的文本完成后运行
    WebSpeech.onfinish = function () { ... };
    // 目前支持的声音有 EkhoMandarin(即普通话,缺省),EkhoCantonese(粤语)
    // 以及eSpeak中支持的声音
    WebSpeech.setVoice('voiceName'); 
    WebSpeech.getSpeedDelta();
    WebSpeech.setSpeedDelta(value); // -50 <= value <= 100
    WebSpeech.getPitchDelta();
    WebSpeech.setPitchDelta(value); // -100 <= value <= 100
    WebSpeech.getVolumeDelta();
    WebSpeech.setVolumeDelta(value); // -100 <= value <= 100
    // 会激活浏览器“另存为”的功能
    WebSpeech.saveMp3('text to save to MP3 format file');
    WebSpeech.saveOgg('text to save to OGG format file');
    // 获取汉字的音标,当数据到达时会调用参数中传入的函数,
    // symbols就是我们需要的数据,是以空格为分隔符的字符串
    WebSpeech.getPhonSymbols('text', function (success, symbols) { ... }); 

    补充:可以去下载jtts.jar(java中将文字转语音)

  • 相关阅读:
    数组中只出现一次的数字
    平衡二叉树
    二叉树的深度
    数字在排序数组中出现的次数
    数组中的逆序对
    第一个只出现一次的字符位置
    丑数
    把数组排成最小的数/1038. Recover the Smallest Number
    python系统编程(十一)
    python系统编程(十)
  • 原文地址:https://www.cnblogs.com/zrbfree/p/5626815.html
Copyright © 2020-2023  润新知