-
Notifications
You must be signed in to change notification settings - Fork 12
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
Error: read ECONNRESET #1
Comments
Facing a similar issue. Did you manage to figure anything out? |
Yes, well the solution is different from what you might expect! Nodejs can only pass one stream to ffmpeg through piping through stdin. Although I figured how to pass a stream as an input (you make is a readableStream), I could only do so for one input. So after some research, I came up with the idea to pass signed s3 URLs as the inputs to ffmpeg and it will itself create system level streams not affecting node! I hope that helps, let me know if you have any other question! |
@numman Can you please share your solution too as I'm having the same issue as well and could not understand what is the exact issue here |
Hi! Firstly thank you so much for making this module!
I was looking everywhere for a way to accomplish this but found nothing.
I'm trying to pass an S3 object Buffer through the StreamInput Method.
Before passing the Buffer I convert it to a readable stream by the following:
Here is my fluent-ffmpeg command:
The text was updated successfully, but these errors were encountered: