swan.setInnerAudioOption

基础库 3.10.4 版本开始支持。

解释: 对innerAudioContext进行小程序内部的全局设置。

方法参数

Object object

object参数说明 :

属性名类型必填默认值说明
mixWithOtherBooleanfalse设置是否与其他音频混播。 11.3 低版本请做兼容性处理
successFunction接口调用成功的回调函数
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

示例

在开发者工具中预览效果

扫码体验

swan.setInnerAudioOption - 图1请使用百度APP扫码

图片示例

swan.setInnerAudioOption - 图2

swan.setInnerAudioOption - 图3

swan.setInnerAudioOption - 图4

代码示例

  • 在 swan 文件中
  1. <view class="wrap">
  2. <button type="primary" bindtap="play">play</button>
  3. <button type="primary" bindtap="stop">stop</button>
  4. <button type="primary" bindtap="setInnerAudioOption">setInnerAudioOption</button>
  5. </view>
  • 在 js 文件中
  1. Page({
  2. onLoad() {
  3. const innerAudioContext = swan.createInnerAudioContext();
  4. innerAudioContext.src = 'https://vd3.bdstatic.com/mda-ic7mxzt5cvz6f4y5/mda-ic7mxzt5cvz6f4y5.mp3';
  5. innerAudioContext.autoplay = false;
  6. innerAudioContext.onPlay(() => {
  7. swan.showToast({
  8. title: 'play',
  9. icon: 'none'
  10. });
  11. });
  12. this.innerAudioContext = innerAudioContext;
  13. },
  14. play() {
  15. this.innerAudioContext.play();
  16. },
  17. stop() {
  18. this.innerAudioContext.stop();
  19. },
  20. setInnerAudioOption() {
  21. swan.setInnerAudioOption({
  22. mixWithOther: true,
  23. success: res => {
  24. swan.showToast({
  25. title: 'success',
  26. icon: 'none'
  27. });
  28. console.log('setInnerAudioOption success', res);
  29. },
  30. fail: err => {
  31. swan.showToast({
  32. title: 'fail',
  33. icon: 'none'
  34. });
  35. console.log('setInnerAudioOption fail', err);
  36. }
  37. });
  38. }
  39. });
  • 在 css 文件中
  1. .wrap {
  2. padding: 50rpx 30rpx;
  3. }
  4. .wrap button {
  5. margin-bottom: 50rpx;
  6. }

错误码

Android

错误码说明
1001执行失败

iOS

错误码说明
202解析失败,请检查参数是否正确