I need to save a file of unknown size, potentially several gigabytes, in JS. A data source is a media stream captured using a mediarecorder.
In Chrome, this can be done using the file system and the apis file manager with the file system: URLs, writing the block fragments to a file when they are received, and then set the download link to the file URL.
However, I cannot find a way to do this in Firefox or Edge (whenever it receives a mediarecorder).
source share