ForeverSc

Results 41 comments of ForeverSc

Recently, I’ve been thinking about how to support loading from a URL. One possible approach I’ve considered is to hack the [`WORKERFS.stream_ops.read`](https://github.com/emscripten-core/emscripten/blob/main/src/library_workerfs.js#L127-L133). Since it reads from a stream, we might...

> written to the filesystem chunk-by-chunk Actually, the core concept is the same as I mentioned :). However, WORKERFS does not support writing files chunk by chunk; it only exposes...

I will try it later. If I make some progress, I will let you know.

@bartadaniel I just published version 2.3.0, and it now supports loading from a file URL. The only usage change is passing the file URL to the load method. This was...

At first, I used `HEAD` to get the file size, but it is much slower than `GET`. It seems necessary to perform some fallback logic when `GET` is not supported,...

You are right! Thanks for finding the mistake. `mpegi` was a typo; I actually meant to write `mpeg`. Regarding enabling decoders, for some formats such as FLV, if you only...

In fact, this has nothing to do with the file size. The previous version didn't support ts demux, but I've just added the support for it. You can use the...

新版本有考虑到这点,设计上内核部分会再做一次拆分,能让pixi的项目无感接入。等验证通过,会单独再提个包出来。

The AVI file you provided uses the Annex B bitstream format. The current implementation only supports parsing AVCC format, which leads to the parsing error you encountered. I will add...

Recently, I have been trying to solve this problem and will provide a new API for customizing the buffer size. Additionally, if the file is local, can Electron directly get...