InnerAudioContext.seek收藏我的收藏
收藏
我的收藏基础库 1.0.0 开始支持本方法,这是一个同步方法。
跳转到指定位置播放。
前提条件 | 无 |
业务背景 | 无 |
使用限制 | 无 |
注意事项 | 无 |
相关教程 | 无 |
语法
InnerAudioContext.seek(options)
参数说明
options
类型 | 默认值 | 必填 | 说明 | 最低支持版本 |
---|---|---|---|---|
number | 是 | 跳转的时间(单位:s) | 1.0.0 |
返回值
无
扫码体验
请使用字节宿主APP扫码
代码示例
播放 1s 后跳转到音频 3s 的位置继续播放。
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); }); setTimeout(() => innerAudioContext.seek(3), 1000);
点击纠错