How to call recording and play recording in WeChat applet

php中世界最好的语言
Release: 2018-04-13 15:46:00
Original
4622 people have browsed it

This time I will show you how to call recording and playback of recording by WeChat applet. What are theprecautionsfor WeChat applet to call recording and playback of recording. The following is a practical case, let’s take a look.

The mini program provides two recording APIs

Old version recording function

First start recording, then stop recording to pull to the temporary address ofaudio

Start recording:

var that = this; wx.startRecord({ success: function (res) { // 调用了停止录音接口就会触发这个函数,res.tempFilePath为录音文件临时路径 var tempFilePath = res.tempFilePath that.setData({ src: tempFilePath }) }, fail: function (res) { //录音失败的处理函数 } })
Copy after login

Stop recording:

wx.stopRecord()
Copy after login

Play recording:

wx.playVoice({ filePath: src // src可以是录音文件临时路径 })
Copy after login

New version recording

Get the globally unique recording manager, and then all recordings depend on it, and playing the recording requires the internal audio context innerAudioContextObject.

Get the globally unique recording manager:

var that = this; this.recorderManager = wx.getRecorderManager(); this.recorderManager.onError(function(){ // 录音失败的回调处理 }); this.recorderManager.onStop(function(res){ // 停止录音之后,把录取到的音频放在res.tempFilePath that.setData({ src: res.tempFilePath }) console.log(res.tempFilePath ) });
Copy after login

Start recording:

this.recorderManager.start({ format: 'mp3' // 如果录制acc类型音频则改成aac });
Copy after login

End recording:

this.recorderManager.stop()
Copy after login

Play audio:

this.innerAudioContext = wx.createInnerAudioContext(); this.innerAudioContext.onError((res) => { // 播放音频失败的回调 }) this.innerAudioContext.src = this.data.src; // 这里可以是录音的临时路径 this.innerAudioContext.play()
Copy after login

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the PHP Chinese website!

Recommended reading:



The above is the detailed content of How to call recording and play recording in WeChat applet. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!