InnerAudioContext.offSeeking
基础库 1.0.0 开始支持本方法。
取消监听音频开始进行 seek 操作的事件。
语法
InnerAudioContext.offSeeking(callback)
参数说明
Function callback
扫码体验
请使用字节宿主APP扫码
代码示例
const dataUrl = "https://someaudiourl"; // 合法的音频资源地址
const innerAudioContext = tt.createInnerAudioContext();
innerAudioContext.autoplay = true;
innerAudioContext.src = dataUrl;
innerAudioContext.onError((error) => {
tt.showModal({
title: "播放出错",
content: `详细错误信息:${error.errMsg}`,
});
console.log("播放出错", error);
});
function onseeking() {
tt.showToast({ title: "跳转播放位置" });
}
innerAudioContext.onSeeking(onseeking);
innerAudioContext.offSeeking(onseeking);
setTimeout(() => innerAudioContext.seek(3), 1000);
Bug & Tip
暂无。
点击纠错
该文档是否对你的开发有所帮助?
有帮助
没帮助
该文档是否对你的开发有所帮助?
有帮助
没帮助