Kagami
Kagami
Yes, it's a problem with NODEFS, I haven't find the reason yet. Use `-y` option as a workaround.
That's interesting question. There were discussions regarding live streams in #11 and #12 but using stdin for that haven't been considered. Theoretically it might work. [post-worker.js](https://github.com/Kagami/ffmpeg.js/blob/v2.8.9001/build/post-worker.js#L35) code need to be...
Related: https://github.com/kripken/emscripten/issues/4124 https://github.com/kripken/emscripten/issues/23#issuecomment-1399857 Seems like `Module.stdin` is synchronous and we can't wait for `onmessage` call. Maybe if it's possible to periodically interrupt Emscripten and get opportunity to process events to...
What exactly did you try with Asyncify and Emterpreter? Maybe if you add `emscripten_sleep` to ffmpeg's stdin handler (need to patch it for that) then worker process will have a...
I can only suggest you to try to build ffmpeg.js in Ubuntu VM. You need to have emsdk installed (see [here](https://kripken.github.io/emscripten-site/docs/getting_started/downloads.html)) and some basic dev packages. Then clone this project,...
I haven't encountered issues with lame build. I'm using 64bit distro/compilers though, so yes, that might be the case. You can also try without lame, it's not required for your...
You're still building lame, see my previous comment how to disable it. Also, I realized what's wrong with lame. Its configure script checks for xmmintr (SSE intrinsics) and on your...
Thanks @Kukunin, cool stuff! I'm not sure if I want to integrate this into ffmpeg.js right now... I will experiment with it later.
Asynchronous stdin support by @PaulKinlan using `SharedArrayBuffer`: https://github.com/PaulKinlan/ffmpeg.js/pull/1/files
Thanks @CodeFetch, I think that's correct. See also https://github.com/Kagami/ffmpeg.js/issues/11#issuecomment-564360336