這篇文章主要介紹了PHP生成語音,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下
<?php /** * 测试语音 */ require '../common.inc.php'; require DT_ROOT.'/api/speech/AipSpeech.php'; $client = new AipSpeech(APP_ID, API_KEY, SECRET_KEY); $result = $client->synthesis('您有一条财务审批,请注意查收!', 'zh', 1, array( 'vol' => 5,)); // 识别正确返回语音二进制 错误则返回json 参照下面错误码 if(!is_array($result)){ file_put_contents('audio.mp3', $result); } echo ' <embed src="audio.mp3" hidden="false" autostart="true" loop="true" width="0" height="0">'; ?>
相關推薦:
以上是PHP生成語音的詳細內容。更多資訊請關注PHP中文網其他相關文章!