VoiceRecognizer.start

解释: 开始

方法参数

Object object

示例

VoiceRecognizer.start - 图1请使用百度APP扫码

图片示例

VoiceRecognizer.start - 图2

VoiceRecognizer.start - 图3

VoiceRecognizer.start - 图4

代码示例 1 :

短语音识别(与长语音使用方式一致) - 自动听音

在开发者工具中预览效果

  • 在 swan 文件中
  1. <view class="result">{{result}}</view>
  2. <button bindtap="voiceRecognizerStart">点击开始识别语音</button>
  • 在 js 文件中
  1. Page({
  2. data: {
  3. result: ''
  4. },
  5. voiceRecognizerStart() {
  6. // AI系列的api有宿主使用限制,只可在百度App中使用,建议使用时加一层判断防止代码报未知错误
  7. let host = swan.getSystemInfoSync().host;
  8. if (host === 'baiduboxapp') {
  9. swan.showToast({
  10. title: '开始识别',
  11. icon: 'none'
  12. });
  13. const voiceRecognizer = swan.ai.getVoiceRecognizer();
  14. voiceRecognizer.onRecognize(res => {
  15. console.log('voice recognize', res.result);
  16. this.setData('result', res.result);
  17. });
  18. const options = {
  19. mode: 'dnn',
  20. // longSpeech: true
  21. longSpeech: false
  22. };
  23. voiceRecognizer.start(options);
  24. }
  25. else {
  26. swan.showToast({
  27. title: '此api目前仅可在百度App上使用',
  28. icon: 'none'
  29. });
  30. }
  31. }
  32. })

代码示例 2 :

短语音识别 (与长语音使用方式一致)- 自动听音

在开发者工具中预览效果

  • 在 swan 文件中
  1. <view class="result">{{result}}</view>
  2. <button bindtap="voiceRecognizerStart">点击开始识别语音</button>
  • 在 js 文件中
  1. Page({
  2. data: {
  3. result: ''
  4. },
  5. voiceRecognizerStart() {
  6. // AI系列的api有宿主使用限制,只可在百度App中使用,建议使用时加一层判断防止代码报未知错误
  7. let host = swan.getSystemInfoSync().host;
  8. if (host === 'baiduboxapp') {
  9. swan.showToast({
  10. title: '开始识别',
  11. icon: 'none'
  12. });
  13. const voiceRecognizer = swan.ai.getVoiceRecognizer();
  14. voiceRecognizer.onFinish(res => {
  15. console.log('voice onFinish', res.result);
  16. this.setData('result', res.result);
  17. });
  18. const options = {
  19. mode: 'dnn',
  20. // longSpeech: true
  21. longSpeech: false
  22. };
  23. voiceRecognizer.start(options);
  24. }
  25. else {
  26. swan.showToast({
  27. title: '此api目前仅可在百度App上使用',
  28. icon: 'none'
  29. });
  30. }
  31. }
  32. })

代码示例 3 :

短语音识别 - 手动听音

在开发者工具中预览效果

  • 在 swan 文件中
  1. <view class="result">{{result}}</view>
  2. <button bindtap="voiceRecognizerStart">点击开始识别语音</button>
  • 在 js 文件中
  1. Page({
  2. data: {
  3. result: ''
  4. },
  5. voiceRecognizerStart() {
  6. // AI系列的api有宿主使用限制,只可在百度App中使用,建议使用时加一层判断防止代码报未知错误
  7. let host = swan.getSystemInfoSync().host;
  8. if (host === 'baiduboxapp') {
  9. swan.showToast({
  10. title: '开始识别',
  11. icon: 'none'
  12. });
  13. const voiceRecognizer = swan.ai.getVoiceRecognizer();
  14. voiceRecognizer.onRecognize(res => {
  15. console.log('voice recognize', res.result);
  16. this.setData('result', res.result);
  17. });
  18. const options = {
  19. mode: 'touch',
  20. longSpeech: false
  21. };
  22. voiceRecognizer.start(options);
  23. }
  24. else {
  25. swan.showToast({
  26. title: '此api目前仅可在百度App上使用',
  27. icon: 'none'
  28. });
  29. }
  30. }
  31. })