91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

微信公眾平臺開發中如何使用.Net代碼實現語音識別功能

發布時間:2021-09-16 16:52:31 來源:億速云 閱讀:111 作者:小新 欄目:開發技術

小編給大家分享一下微信公眾平臺開發中如何使用.Net代碼實現語音識別功能,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

語音識別這個功能屬于高級功能,必須微信實名認證后才能實現,認證費用300元/年,如果你作為開發者可以申請測試帳號,也是可以的。首先建立一個微信消息類,這個類比之前多了一個屬性。

 class wxmessage 
  { 
    public string FromUserName { get; set; } 
    public string ToUserName { get; set; } 
    public string MsgType { get; set; } 
    public string EventName { get; set; } 
    public string Content { get; set; }
    public string Recognition { get; set; }
    public string EventKey { get; set; } 
  }

語音識別是微信自帶的功能,非常強大無需我們做過多的操作:

protected void Page_Load(object sender, EventArgs e)
   {
     wxmessage wx = GetWxMessage();
     string res = "";

     if (!string.IsNullOrEmpty(wx.EventName) && wx.EventName.Trim() == "subscribe")
     {//剛關注時的時間,用于歡迎詞
       string content = "";
       content = "/:rose歡迎北京永杰友信科技有限公司/:rose\n直接回復“你好”";
       res = sendTextMessage(wx, content);
     }
     else
     {
       if (wx.MsgType == "text" && wx.Content == "你好")
       {
         res = sendTextMessage(wx, "你好,歡迎使用北京永杰友信科技有限公司公共微信平臺!");
       }
       else if (wx.MsgType == "voice")//識別消息類型為語音
       {
         res = sendTextMessage(wx, wx.Recognition);//wx.Recognition就是語音識別的結果了,我們直接引用,以文本形式反饋就OK了

       }
       else
       {
         res = sendTextMessage(wx, "你好,未能識別消息!");
       }
     }

     Response.Write(res);
   }

 private wxmessage GetWxMessage()
   {
     wxmessage wx = new wxmessage();
     StreamReader str = new StreamReader(Request.InputStream, System.Text.Encoding.UTF8);
     XmlDocument xml = new XmlDocument();
     xml.Load(str);
     wx.ToUserName = xml.SelectSingleNode("xml").SelectSingleNode("ToUserName").InnerText;
     wx.FromUserName = xml.SelectSingleNode("xml").SelectSingleNode("FromUserName").InnerText;
     wx.MsgType = xml.SelectSingleNode("xml").SelectSingleNode("MsgType").InnerText;
     if (wx.MsgType.Trim() == "text")
     {
       wx.Content = xml.SelectSingleNode("xml").SelectSingleNode("Content").InnerText;
     }
     if (wx.MsgType.Trim() == "event")
     {
       wx.EventName = xml.SelectSingleNode("xml").SelectSingleNode("Event").InnerText;
     }
     if (wx.MsgType.Trim() == "voice")//如果是語音消息的話就把識別結果賦值給實體類的相應屬性Recognition 
     {
       wx.Recognition = xml.SelectSingleNode("xml").SelectSingleNode("Recognition").InnerText;
     }
     
     return wx;
   }


   ///  
   /// 發送文字消息 
   ///  
   /// 獲取的收發者信息 
   /// 內容 
   ///  
   private string sendTextMessage(wxmessage wx, string content)
   {
     string res = string.Format(@" ",
       wx.FromUserName, wx.ToUserName, DateTime.Now, content);
     return res;
   }

看完了這篇文章,相信你對“微信公眾平臺開發中如何使用.Net代碼實現語音識別功能”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

海淀区| 桦甸市| 普陀区| 肥乡县| 甘谷县| 屏东市| 辽宁省| 望江县| 庆安县| 徐汇区| 乐东| 禄丰县| 永城市| 兰考县| 灌南县| 灵武市| 贵州省| 庄河市| 贞丰县| 崇文区| 旌德县| 玛曲县| 启东市| 内江市| 买车| 大丰市| 黄石市| 米脂县| 石景山区| 青神县| 凯里市| 永靖县| 呼图壁县| 西盟| 马边| 秀山| 奎屯市| 丰都县| 三门县| 石楼县| 静宁县|