Dominic Szablewski

Results 173 comments of Dominic Szablewski

Well, I can confirm on my end that this issue is fixed for N26 bank, but the problem still seems to persist for other banks. The last complaint we received...

I never thought about it, but any attribution (even just mentioning the project name) is fine with me. For the sake of pointing interested parties in the right direction, a...

Are the files `wipeout/music/track01.qoa` to `wipeout/music/track11.qoa` present? Do you see an error message in the console when the music is not playing? Regarding the videos: the code here only plays...

I don't really see the use case for metatags in QOA. It's not like you have your music library in this format or exchange QOA files on Napster. So, no...

Very cool! I can't promise to merge any of your changes (if that's even desired), but I'll certainly have a look. For performance optimizations, have a look at the n64...

`lms->history[n]` is guaranteed to stay within the 16bit range, as the samples are clamped before being handed over to `qoa_lms_update()`. Sadly, this is not the case for `lms->weights[n]` which in...

That's interesting. JSMpeg just [uses](https://github.com/phoboslab/jsmpeg/blob/master/src/webaudio.js#L56) the WebAudio [createBuffer()](https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createBuffer) function for audio, which should work with allmost all sample rates: > All browsers must support sample rates in at least the...

This sound file is the worst case for QOA: high frequency, high amplitude and a waveform that is badly predicted by the LMS. Not much you can do about it...

> Are you getting the same values as me, i.e. a string of -32768 between indices 74 and 240? No. Using the encoder here produces a somewhat noisy output, but...

> How is your WebSocket connection switched? How was the last websocket closed? See here for an example on how to switch between streams: https://github.com/phoboslab/jsmpeg/issues/424#issuecomment-1962730059