You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I do have this binding on audio element like this :
<script type="ts">
let player;
let buffered;
<script>
<audio
bind:buffered
bind:this={player}
...
/>
In Firefox after short moment after playback starts buffered variable stops to follow updated on player buffered data. It works for for first few updates, but then it stops updating. In Chromium it works better, but I've seen similar problem occationally.
When I later stop the code via breakpoint I see following situation in console (ogg with opus codec):
Describe the bug
I do have this binding on
audio
element like this :In Firefox after short moment after playback starts buffered variable stops to follow updated on player buffered data. It works for for first few updates, but then it stops updating. In Chromium it works better, but I've seen similar problem occationally.
When I later stop the code via breakpoint I see following situation in console (ogg with opus codec):
or (mp3)
As you can see bound buffered variable is significantly difference between player.buffered and bound buffered variable, which should be the same.
Reproduction
On firefox create audio element with binding to of buffered property to
buffered
variable, set source to opus.Check if it follows current playback position an also it should be same as
buffered
property of appropriate HTMLAudioElement.Logs
No response
System Info
Severity
annoyance
The text was updated successfully, but these errors were encountered: