这篇文章主要介绍了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中文网其他相关文章!