PHP生成语音
程序员文章站
2022-03-07 14:19:12
...
这篇文章主要介绍了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生成语音 的详细内容,更多请关注其它相关文章!
上一篇: css3中text属性有哪些
下一篇: css行元素跟块元素有哪些相同点