> 錄入語音后識別成文字,比如搜索頁里進行語音搜索或者聊天窗口里對好友發過來的語音進行識別
[TOC]
## 申請百度合成接口
> 地址:https://ai.baidu.com/tech/speech/asrpro
> 找到語音技術 - 應用列表,創建應用,填寫相應信息,語音包名選擇不需要

> 創建完成后,可以看到AppID、API Key、Secret Key
## manifest.json 配置語音輸入模塊
> App模塊配置 -> Speech(語音輸入,只能選一個) -> 百度語音識別

## 客戶端調用
> 參考資料:https://uniapp.dcloud.io/api/plugins/voice?id=voice
~~~
<template>
<view>
<button @tap="startRecord">開始錄音</button>
<button @tap="endRecord">停止錄音</button>
<button @tap="playVoice">播放錄音</button>
<button @tap="startRecognize">開始識別</button>
</view>
</template>
<script>
const recorderManager = uni.getRecorderManager();
const innerAudioContext = uni.createInnerAudioContext();
innerAudioContext.autoplay = true;
var _this;
export default {
data(){
return {
voicePath : ''
}
},
onLoad() {
_this = this;
recorderManager.onStop(function(res) {
console.log(res)
_this.voicePath = res.tempFilePath
// 使用uni.uploadFile上傳到服務器上,此時是mp3格式
});
},
methods: {
startRecord() {
console.log('開始錄音');
recorderManager.start({
sampleRate: 16000 // 必須設置是后臺設置的參數,不然百度語音識別不了
});
},
endRecord() {
console.log('錄音結束');
_this = this;
recorderManager.stop();
},
playVoice() {
console.log('播放錄音');
if (this.voicePath) {
innerAudioContext.src = this.voicePath;
innerAudioContext.play();
}
},
startRecognize() {
var options = {};
options.engine = 'baidu';
console.log("開始語音識別:");
plus.speech.startRecognize(options, function(s){
console.log("識別結果:"+s)
plus.speech.stopRecognize();
}, function(e){
console.log("語音識別失敗:"+e.message);
});
}
}
}
</script>
~~~
- 基礎知識
- UNI核心介紹
- flex布局
- 生命周期
- 全局方法
- 組件定義
- 自定義組件
- 全局組件
- 組件之間的數據傳輸
- 條件編譯
- 自定義頭部
- 節點信息 (SelectorQuery)
- vuejs基礎語法
- 頁面跳轉以及參數傳遞
- 事件的監聽注冊以及觸發
- css3動畫
- block的妙用
- mixin (混入)
- uniapp快捷鍵
- vuex狀態管理
- 實用功能
- 獲取服務提供商
- 啟動頁 / 啟動界面
- 引導頁
- tabbar配置
- 頭部導航欄基礎設置
- 上拉下拉(刷新/加載)
- 第三方登錄
- 第三方分享
- 推送通知 之 unipush
- scroll-view雙聯動
- 配置iOS通用鏈接(Universal Links)
- 本地緩存操作
- 升級/更新方案
- 熱更新
- 圖片上傳
- 搜索頁實現
- canvas繪圖助手
- 地圖定位
- 第三方支付————todo
- 分類輪播
- 清除應用緩存
- uniapp與webview的實時通訊
- 視頻-----todo
- 聊天----todo
- 長列表swiper左右切換
- 第三方插件
- uview
- mescroll
- uCharts (圖表)
- 無名 (更新插件)
- 第三方模版
- 自定義基座
- 打包發行
- 要封裝的方法
- 緩存 cache.js
- 請求接口 request.js
- 工具類 util.js
- 小程序登錄 xcxLogin.js
- 版本更新 update.js
- 優質插件
- 更新插件----todo
- 語音
- 語音識別 (含上傳)
- 百度語音合成播報接口
- 官方常用組建
- input 輸入框
- image 圖片
- audio 音頻
- picker 選擇器
- video 視頻
- scroll-view 滾動視圖