Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

WeChat small program API audio end playback


May 18, 2021 WeChat Mini Program Development Document


Table of contents


wx.stopVoice(Object object)

Starting with base library 1.6.0, this interface is no 10th stop maintenance, please use wx.createInnerAudioContext instead

End the playback of the voice.

Parameters

Object object

Property Type The default Required Description
success function Whether The interface calls a successful callback function
fail function Whether The interface calls the failed callback function
complete function Whether Callback function at end of interface call (call succeeds, fails are executed)

The sample code

wx.startRecord({
  success (res) {
    const tempFilePath = res.tempFilePath
    wx.playVoice({
      filePath: tempFilePath,
    })

    setTimeout(() => { wx.stopVoice() }, 5000)
  }
})