Im trying to upload videos to cloudflare stream. The problem is that Im running out of memory.
What I'm currently doing is:
1 - I receive the file through the request using multer
2 - I send the file using tus-js (streaming the file with 8MB chunk size).
The problem is that, If I upload a 200mb video, it will eat 200mb of the memory. I think I need to use busboy but I don't find any tutorial on that.
What can I do ?