详细问题描述
使用 uniApp 的uni.createInnerAudioContext,给它设置seek值为40,但是音频还是从0开始播放;
重现步骤
const innerAudioContext = uni.createInnerAudioContext();
innerAudioContext.autoplay = true;
innerAudioContext.src= 'https://oss.momself.club/audio/RwlGIyDDLIRvIPIx2Acsmp8Pq6f3rpoUV3HP95Te.mp3';
innerAudioContext.seek(40);
innerAudioContext.onPlay(function(){
console.log("音频已切入后台播放");
});
结果
innerAudioContext.seek(40); 方法不报错,但是音频没有跳转指定的位置开始播放
期望
音频可以正常跳转到指定的秒数并正常播放。
运行设备
[Android]
MINU 12.0.4
[IOS]
iphone 6s
1 个回复
1***@qq.com
我3.0.7 版本也遇到同样的问题,设置seek值后,音频还是从0开始播放,你解决这个问题了吗