new FileReader().readAsArrayBuffer(file) doesn't work, and will show the error: TypeError: Argument 1 of FileReader.readAsArrayBuffer does not implement interface Blob. .
A work-around is new FileReader().readAsArrayBuffer(this.recorder.file.file_.blob_) but I'm guessing this is incompatible with real filesystem implementations.
It will work if File is made to inherit from the Blob class.
new FileReader().readAsArrayBuffer(file)doesn't work, and will show the error:TypeError: Argument 1 of FileReader.readAsArrayBuffer does not implement interface Blob..A work-around is
new FileReader().readAsArrayBuffer(this.recorder.file.file_.blob_)but I'm guessing this is incompatible with real filesystem implementations.It will work if
Fileis made to inherit from theBlobclass.