Nodejs 微信开发之语音识别

1、Nodejs wechat库git://github.com/node-webot/wechat.git
2、微信语音识别功能: http://mp.weixin.qq.com/wiki/2/f2bef3230362d18851ee22953abfadde.html
3、进行开发

Nodejs 微信开发之语音识别_第1张图片

 

processVoice = function(message, req, res) {
  var recognition = message.Recognition;
  if (recognition) {
    message.Content = recognition;
    this.processText(message, req, res);
  } else {
    res.reply(config.text.notDetectVoice)
  }
};

 

Nodejs 微信开发之语音识别_第2张图片

 

Nodejs 微信开发之语音识别_第3张图片

你可能感兴趣的:(每天进步一点点,微信开发,语音识别,乔乐共享,颜值大师)