Yanshof
Yanshof

Reputation: 9926

how to create node server that receiving video stream and save the stream as video file?

I try to look for some examples that doing something like it - but all i found is example of receiving picture and not receiving static stream of video.

I need to receive a video - and save it on the server disk until the client send some flag that the video stream is done.

How to do it ?

Upvotes: 3

Views: 3271

Answers (1)

Ivan Minakov
Ivan Minakov

Reputation: 1442

For example: you can convert stream to Binary Data and send this: Sending_and_Receiving_Binary_Data

Also you can use MediaStream Recording API, if you want to process video\audio stream: docs

Upvotes: 1

Related Questions