WeChat applet implements the Record function

WeChat applet implements the Record function

This article shares the specific code for the WeChat applet to implement the Record function for your reference. The specific content is as follows

layout

<!--pages/record/record.wxml-->
<view>
 <button 
  class="tui-menu-list"
  bindtap="startRecordAac" 
  type="primary">Start recording (aac)</button>
 <button 
  class="tui-menu-list"
  bindtap="startRecordMp3" 
  type="primary">Start recording (mp3)</button>
 <button 
  class="tui-menu-list" 
  bindtap="stopRecord" 
  type="primary">Recording End</button>
 <button 
  class="tui-menu-list"
  bindtap="playRecord" 
  type="primary">Play recording</button>
</view>

style:

/* pages/record/record.wxss */
 
.tui-menu-list{
  flex-direction: row;
  margin: 20rpx;
  padding: 20rpx;
}

Start and stop recording

// pages/record/record.js
Page({
 
  /**
   * Initial data of the page */
  data: {
 
  },
 
  onLoad:function (options) {
    var that = this
    this.recorderManager = wx.getRecorderManager();
    this.recorderManager.onError(function () {
      that.tip("Recording failed!");
    })
    this.recorderManager.onStop(function (res) {
      that.setData({
        src:res.tempFilePath
      })
      console.log(res.tempFilePath)
      that.tip("Recording completed!")
    })
    this.innerAudioContext = wx.createInnerAudioContext()
    this.innerAudioContext.onError((res) => {
      that.tip("Playing recording failed!")
    })
  },
 
  //tip:function (msg) {
    wx.showModal({
      cancelColor: 'cancelColor',
      title:'Tips',
      content:msg,
      showCancel:false
    })
  },
 
  //Record aac
  startRecordAac:function () {
    this.recorderManager.start({
      format:'aac'
    })
  },
 
  //Record mp3
  startRecordMp3:function () {
    this.recorderManager.start({
      format:'mp3'
    })
  },
 
  //Stop recording stopRecord:function () {
    this.recorderManager.stop()
  },
 
  //Play the recordingplayRecord:function () {
    var that = this
    var src = this.data.src
    if (src='') {
      this.tip('Please record first')
      return
    }
    this.innerAudioContext.src = this.data.src
    this.innerAudioContext.play()
  }
 
  
})

Effect picture:

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • WeChat applet recording function and upload (using node to parse and receive)
  • WeChat applet realizes recording function
  • WeChat applet to achieve microphone animation effect when recording
  • Problems and solutions encountered by WeChat applet recording file format silk
  • WeChat applet recording and playback recording function
  • WeChat applet development recorder audio playback animation example (real machine available)
  • WeChat applet - pictures, recordings, audio playback, music playback, videos, files code examples

<<:  Interpretation of syslogd and syslog.conf files under Linux

>>:  Simple writing of MYSQL stored procedures and functions

Recommend

Linux kernel device driver system call notes

/**************************** * System call******...

Vue global filter concepts, precautions and basic usage methods

Table of contents 1. The concept of filter 1. Cus...

Install redis and MySQL on CentOS

1|0MySQL (MariaDB) 1|11. Description MariaDB data...

Understanding JSON (JavaScript Object Notation) in one article

Table of contents JSON appears Json structure Jso...

Use xshell to connect to the Linux server

Benefits of using xshell to connect to Linux We c...

MySql quick insert tens of millions of large data examples

In the field of data analysis, database is our go...

The scroll bar position is retained when scrolling the vant list component

The scroll bar position is retained when scrollin...

How to run the springboot project in docker

1. Click Terminal below in IDEA and enter mvn cle...

A brief talk about React Router's history

If you want to understand React Router, you shoul...

JavaScript to achieve a simple magnifying glass effect

There is a picture in a big box. When you put the...

CentOS 6.5 installation mysql5.7 tutorial

1. New Features MySQL 5.7 is an exciting mileston...

Summary of several MySQL installation methods and configuration issues

1. MySQL rpm package installation # Download the ...

Summary of 28 common JavaScript string methods and usage tips

Table of contents Preface 1. Get the length of a ...