openwechat icon indicating copy to clipboard operation
openwechat copied to clipboard

如何解析语音消息?

Open lihongcheng opened this issue 1 year ago • 4 comments

哪位大佬能告诉我怎么解析语音消息吗? 怎么将收到的语音消息解析为文本?

lihongcheng avatar Mar 08 '23 06:03 lihongcheng

msg.GetVoice()

解析response body

eatmoreapple avatar Mar 10 '23 09:03 eatmoreapple

您好!邮件已收到,谢谢您!祝您生活愉快,工作顺利!

lihongcheng avatar Mar 10 '23 09:03 lihongcheng

msg.GetVoice()

解析response body

您好 相同疑问 如何解析vioce和video 的消息体 谢谢

douguohai avatar Mar 11 '23 04:03 douguohai

res, err := ctx.GetVoice() mp3, err := io.ReadAll(res.Body) if err == nil { err = ioutil.WriteFile("/Users/tianwen/Downloads/output.mp3", mp3, 0644) fmt.Println("yes") }

douguohai avatar Apr 10 '23 12:04 douguohai