天天看點

百度語音合成(js版)

<!DOCTYPE html>
<html >
<head>
    <meta charset="UTF-8">
    <title>百度語音合成</title>
</head>
<body>
<form action="" method="post">
    <table align="center">
        <tr>
            <td><input type="text" id='val'></td>
            <td><input type="button" value="送出" "fun()"></td>
        </tr>
    </table>
</form>
</body>
</html>
<!--還有一個免費的語音合成接口,在浏覽器上直接打開,即可聽到文字轉換後的語音。
  http://tts.baidu.com/text2audio?lan=zh&ie=UTF-8&spd=2&text=你要轉換的文字   
-->
<!--lan=zh:語言是中文,如果改為lan=en,則語言是英文。

ie=UTF-8:文字格式。

spd=2:語速,可以是1-9的數字,數字越大,語速越快。

text=**:這個就是你要轉換的文字。-->
<script type="text/javascript">
    function fun()
    {
        var val=document.getElementById("val").value;
        var zhText = val;
        zhText = encodeURI(zhText);
        document.write("<audio autoplay=\"autoplay\">");
        document.write("<source src=\"http://tts.baidu.com/text2audio?lan=zh&ie=UTF-8&spd=7&text="+ zhText +"\" type=\"audio/mpeg\">");
       // document.write("<embed height=\"0\" width=\"0\" src=\"http://tts.baidu.com/text2audio?lan=zh&ie=UTF-8&spd=2&text="+ zhText +"\">");
        document.write("</audio>");
    }
</script>