问题 I want to save a video that is captured from webcam to a local file. So far I have been able to: Create a stream with getUserMedia Encapsulate the stream with RecordRTC Get blob from RecordRTC I cannot figure out how to save the video to a file though. Calling save() on RecordRTC allows me to download the video file, but I want everything to happen in nodejs for further processing. The file is playable, regardless. I tried to write the blob and dataURL to file, but that file is not playable.