Brian Benjamin Maranville

Results 130 comments of Brian Benjamin Maranville

Thanks for looking into it! I was more interested in the latter: providing the same outputs, but in a format compatible with the spec. In my use case I would...

Note that for local files, the emscripten WORKERFS interface could be used to get random access to huge local files from a worker without copying the whole file into memory,...

Here is a demo with debouncing turned off: https://github.com/silx-kit/h5web/assets/686570/4d791ea8-c83f-49c7-a1e5-a16caccbb209

The debouncing algorithm is designed only to prevent an event from being fired too frequently - there is no affordance in the algorithm for trying to make it as reponsive...

If you don't want to use requestAnimationFrame in a loop (which might not be a good fit for the architecture of h5web), what about this alternative? 1. When the slider...

I agree with you! Sorry if that isn't clear from my earlier comments. I don't think you should fetch every slice as you move the slider. The algorithm I'm suggesting...

Ok, how about one more addition to the algorithm: The stop event (`onAfterChange`?) on the slider cancels any previous (fetch+display) and starts a new one at the stop value. This...

Trying it out now... thanks for the detailed directions for getting files from the ESRF portal!

I pasted in a simple ```else``` block to the SchemaExplorerDetails function that generates the second version, but I don't know if it's a reasonable solution: ```diff diff --git a/src/SchemaExplorer.tsx b/src/SchemaExplorer.tsx...

This is a derivative product from h5wasm - @axelboc what do you think about making it a separate (but dependent) package (e.g. https://github.com/h5wasm/h5wasm-worker-proxy or something like that?) It would make...