-
-
Notifications
You must be signed in to change notification settings - Fork 335
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Streaming #68
Comments
Hi there! Thanks! |
If you want to get an input from a remote source just feed ffmpeg.js with a Blob that you've retrieved using XHR. If you want to push it to a remote server in one request you need to be able to create a big blob which depends on #54 as your browser crashes randomly due to the very limited amount of blob elements (sometimes crashes with files < 70MB using ffmpeg.js). If you don't need to push it to a remote server in one request, you can write a server application that does the handling of the file chunks and create a new Emscripten FS using the synchronous XHR API to handle the chunks. With that the input/output file size should be unlimited and you could even create/consume streams. |
Thanks @CodeFetch, I think that's correct. |
would it be possible to get input from a remote source and push output to a remote destination? The use case would be with nodejs publishing services (e.g. through express), not a webapp shown in a browser
Thanks and BR
The text was updated successfully, but these errors were encountered: