├── AipSpeech.php //语音识别 └── lib ├── AipHttpClient.php //内部http请求类 ├── AipBCEUtil.php //内部工具类 └── AipBase //Aip基类
require_once 'AipSpeech.php'; // 你的 APPID AK SK const APP_ID = '你的 App ID'; const API_KEY = '你的 Api Key'; const SECRET_KEY = '你的 Secret Key'; $client = new AipSpeech(APP_ID, API_KEY, SECRET_KEY);在上面代码中,常量APP_ID在百度智能云控制台中创建,常量API_KEY与SECRET_KEY是在创建完毕应用后,系统分配给用户的,均为字符串,用于标识用户,为访问做签名验证,可在AI服务控制台中的应用列表中查看。准备一段语音,要对段保存的这段语音的语音文件进行识别:代码如下
// 识别本地文件 $client->asr(file_get_contents('audio.pcm'), 'pcm', 16000, array( 'dev_pid' => 1536, ));
// 成功返回 { "err_no": 0, "err_msg": "success.", "corpus_no": "15984125203285346378", "sn": "481D633F-73BA-726F-49EF-8659ACCC2F3D", "result": ["北京天气"] } // 失败返回 { "err_no": 2000, "err_msg": "data empty.", "sn": null }
<?php require_once 'AipSpeech.php'; // 你的 APPID AK SK const APP_ID = '10533442'; const API_KEY = 'eb8vDMwPyec1DGxecYQRzEjz'; const SECRET_KEY = '56ac673eafc3a65f49dd37d8dd8f27e8';
$client = new AipSpeech(APP_ID, API_KEY, SECRET_KEY); // 识别本地文件 $li = $client->asr(file_get_contents('./test.wav'), 'wav', 16000, array(
'lan' => 'zh',
)); interface Msg{
function getMsg();
} class Result implements Msg{
protected $res = null;
protected function __construct($re){
$this->res = $re;
}
public function getMsg(){}
} class Success extends Result{
public function __construct($re){
parent::__construct($re);
}
public function getMsg(){
if ($this->res['err_msg'] == 'success.') {
// var_dump($this->res);exit; echo $this->res['result'][0];
}
}
}
$tmp = new Success($li);
$tmp->getMsg();
扫码二维码 获取免费视频学习资料
- 本文固定链接: http://phpxs.com/post/6420/
- 转载请注明:转载必须在正文中标注并保留原文链接
- 扫码: 扫上方二维码获取免费视频资料
查 看2022高级编程视频教程免费获取