抖音开放平台Logo
控制台

InnerAudioContext.offSeeking
收藏
我的收藏

基础库 1.0.0 开始支持本方法。

取消监听音频开始进行 seek 操作的事件。

语法

InnerAudioContext.offSeeking(callback)

参数说明

Function callback

代码示例

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

暂无。

文档评论

登录后可参与评论