HomeDocs
跳到主要内容

setForegroundAudioOption

简介

设置参数

入参

属性类型必填描述
audioPlayerIDString播放该音频任务的唯一标识
optionObject需要设置的 audio 参数数据
successFunction接口调用成功的回调函数
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

option 内容数据格式

属性类型描述
srcString播放源地址;
本地文件路径仅支持绝对路径,不支持相对路径
loopBoolean是否循环播放
autoPlayBoolean是否开启自动播放
volumeNumber音量;取值范围(0 ~ 1)

使用示例

// pages/index/index.js
Page({
setForegroundAudioOption() {
dlt.setForegroundAudioOption({
audioPlayerID: "bgmId",
option: {
src: "xxx",
loop: true,
autoPlay: true,
volume: 0.4,
},
success: function () {
console.log("success");
},
fail: function () {
console.log("fail");
},
complete: function () {
console.log("complete");
},
});
},
});
Privacy agreementDeveloper agreementcontact us: developer_service.mi@transsion.com © 2024 MiniApp. All Rights Reserved.