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

2020-09-05 14:18 更新

swan.setInnerAudioOption

基礎(chǔ)庫 3.10.4 版本開始支持。

解釋: 對innerAudioContext進行小程序內(nèi)部的全局設(shè)置。Web 態(tài)說明: 受瀏覽器限制,Web 態(tài)不支持該功能,調(diào)用該方法會執(zhí)行失敗回調(diào)函數(shù)。

方法參數(shù)

Object object

object參數(shù)說明

屬性名類型必填默認值說明

mixWithOther

Boolean

false

設(shè)置是否與其他音頻混播。 11.3
低版本請做兼容性處理

success

Function

接口調(diào)用成功的回調(diào)函數(shù)

fail

Function

接口調(diào)用失敗的回調(diào)函數(shù)

complete

Function

接口調(diào)用結(jié)束的回調(diào)函數(shù)(調(diào)用成功、失敗都會執(zhí)行)

示例 

在開發(fā)者工具中打開



圖片示例

代碼示例

<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: '設(shè)置與其他音頻混播成功'
                    });
                    console.log('setInnerAudioOption success');
                },
                fail: err => {
                    swan.showModal({
                        title: '設(shè)置與其他音頻混播失敗',
                        content: JSON.stringify(err)
                    });
                    console.log('setInnerAudioOption fail', err);
                }
            });
        }
    });

    錯誤碼

    Android

    錯誤碼說明

    1001

    執(zhí)行失敗

    iOS

    錯誤碼說明

    202

    解析失敗,請檢查參數(shù)是否正確


    以上內(nèi)容是否對您有幫助:
    在線筆記
    App下載
    App下載

    掃描二維碼

    下載編程獅App

    公眾號
    微信公眾號

    編程獅公眾號