RecordRTC icon indicating copy to clipboard operation
RecordRTC copied to clipboard

Saving video directly to disk

Open vctormb opened this issue 5 years ago • 1 comments

Is there a way to save the video directly to disk instead of saving in the memory to download it later?

Currently I'm using StreamSaver.js to save to the disk, but when I record a video it saves in the memory too and I don't want that.

thanks

vctormb avatar May 16 '19 23:05 vctormb

I do this by flushing the recorder using

var internal = recorder.getInternalRecorder();
if (internal && internal.resetArrayOfBlobs)
    internal.resetArrayOfBlobs();

m6t avatar Mar 26 '24 11:03 m6t