RecordRTC
RecordRTC copied to clipboard
Saving video directly to disk
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
I do this by flushing the recorder using
var internal = recorder.getInternalRecorder();
if (internal && internal.resetArrayOfBlobs)
internal.resetArrayOfBlobs();