audio_waveforms icon indicating copy to clipboard operation
audio_waveforms copied to clipboard

Allow seekTo to go to millisecond rather than floored second

Open mattbajorek opened this issue 7 months ago • 0 comments

Issue

Currently when seeking on iOS the seek time will go to the closest second. This is because the int is first divided by 1000 which floors it and then it is converted to a double.

Fix

First convert int then divide it by 1000 to convert it into seconds.

mattbajorek avatar Jul 15 '24 17:07 mattbajorek