3
I have an application that is being written in Node.js and using Electron, I need to send a video in mp4 format via POST to the server. How can I do that?
EDIT 1:
In the app, I use Ffmpeg to create a five-minute webcam video. I need to send this video to the server using a POST request, what I want to know is if there is a way to send this file using this request. Be it directly, coding it somehow, turning it into binary or otherwise.
Send a video via
POST
? explain this better– Rafael Augusto
I edited the question trying to explain better.
– lys
You will not send the video, you will upload the video and in case (if you want) to save in the bank, you will take the name and extension and save. That’s it
– Rafael Augusto