Rego Sen

Results 62 comments of Rego Sen

I just tried reproducing this behavior by creating a track with the following metadata: Title: Jamie Artist: Eddie Holland Album Artist: Various Artists Album: Hitsville USA - The Motown Singles...

Why not use debounce on the client side? Something like: ``` import debounce from 'lodash/debounce'; ... [trackPosition, setTrackPosition] = React.useState(0); const debouncedPositionUpdate = debounce((trackPos) => setTrackPosition(trackPos), CALLBACK_FREQUENCY); // const debouncedPositionUpdate...

1. That sounds like your mousedown is triggering in a different scope from your gapless5 player, which is odd. Can you try this branch instead? https://github.com/regosen/Gapless-5/tree/rego/check-for-global-variable 2. The only "plug-n-play"...

1. It sounds like those events are being triggered off a different script from the one that created the Gapless5 object, I just pushed a commit to my branch that...

Hi, I've merged my branch to main and published a new version (1.5.4) closing this issue

I'm glad you like it! Regarding encoding, the Gapless5 library doesn't read the audio itself to determine the format details (bitrate, etc.), so it's not able to make changes accordingly....

Ah, if you're looping a single track, Gapless5 lets the native WebAudio or HTML5 Audio handle looping internally (which does a perfect job of seamless looping from what I can...

Thanks for sharing! Do you plan to fork my repo and apply your changes? That way you will more easily benefit from fixes or features I add in the future.

That is by design, and I believe running with `--force` should retrieve art regardless of the presence of embedded art. (If that works for you, I will also edit the...

By "processed" do you mean the file is actually modified? There are modes where you would still want the file read and artwork downloaded (but not embedded). And `--clear` is...