百度智能小程序 innerAudioContext全局配置

2020-09-05 14:18 更新

swan.setInnerAudioOption

基础库 3.10.4 版本开始支持。

解释: 对innerAudioContext进行小程序内部的全局设置。Web 态说明: 受浏览器限制,Web 态不支持该功能,调用该方法会执行失败回调函数。

方法参数

Object object

object参数说明

属性名类型必填默认值说明

mixWithOther

Boolean

false

设置是否与其他音频混播。 11.3
低版本请做兼容性处理

success

Function

接口调用成功的回调函数

fail

Function

接口调用失败的回调函数

complete

Function

接口调用结束的回调函数(调用成功、失败都会执行)

示例 

在开发者工具中打开



图片示例

代码示例

<view class="wrap">
    <button type="primary" bindtap="play">play</button>
    <button type="primary" bindtap="stop">stop</button>
    <button type="primary" bindtap="setInnerAudioOption">setInnerAudioOption</button>
</view>
    Page({
        onLoad() {
            const innerAudioContext = swan.createInnerAudioContext();
            innerAudioContext.src = 'https://b.bdstatic.com/miniapp/images/yanyuan.mp3';
            innerAudioContext.autoplay = false;
            innerAudioContext.onPlay(res => {
                swan.showModal({
                    title: 'onPlay',
                    content: JSON.stringify(res)
                });
                console.log('onPlay', res);
            });
            this.innerAudioContext = innerAudioContext;
        },
        play() {
            this.innerAudioContext.play();
        },
        stop() {
            this.innerAudioContext.stop();
        },
        setInnerAudioOption() {
            swan.setInnerAudioOption({
                mixWithOther: true,
                success: res => {
                    swan.showModal({
                        title: 'success',
                        content: '设置与其他音频混播成功'
                    });
                    console.log('setInnerAudioOption success');
                },
                fail: err => {
                    swan.showModal({
                        title: '设置与其他音频混播失败',
                        content: JSON.stringify(err)
                    });
                    console.log('setInnerAudioOption fail', err);
                }
            });
        }
    });

    错误码

    Android

    错误码说明

    1001

    执行失败

    iOS

    错误码说明

    202

    解析失败,请检查参数是否正确


    以上内容是否对您有帮助:
    在线笔记
    App下载
    App下载

    扫描二维码

    下载编程狮App

    公众号
    微信公众号

    编程狮公众号