Daniel Barta

Results 8 comments of Daniel Barta

Is there any development on this one? I'm running into this error quite a lot. https://drive.google.com/file/d/1aJi8g2IHNabJKC0LnvgaQj6gI2z0iBC5/view?usp=sharing

+1, I'm a new mac user and it drives me crazy. Would be so amazing!

I'm having the same issue after compiling including FFmpeg for debug. If I exclude the decoders, it works, but that is far from optimal. ``` emcc ./lib/web-demuxer/*.c ./lib/web-demuxer/*.cpp \ -lembind...

I can compile with `-O2` or `-O3` but that makes run-time source-level debugging using the DWARF info wonky. I assume this is the expected behavior with all the heavy optimizations...

> considered is to hack the [WORKERFS.stream_ops.read](https://github.com/emscripten-core/emscripten/blob/main/src/library_workerfs.js#L127-L133). Sounds interesting. I couldn't piece together though, where would be the entry-point for that piece? What I tried is that the `Webdemuxer.load` either...

> WORKERFS does not support writing files chunk by chunk I had to learn that the hard way. Also `EMSCRIPTEN_FETCH_PERSIST_FILE` sounds great to have the file in the IndexedDB straight...

@ForeverSc this is really smart! For the videos I tried, even though partial fetch was possible, they did not return the `content-range` header, hence it failed to get the file...

> I prefer using OPFS for storing and reusing files. However, I don’t think the storage logic should be mixed into the package I 100% agree both; That's why I...