let blob = new Blob(this.buffer, {
type: this.recorderOptions.mimeType
});
let ObjectURL = window.createObjectURL || window.URL || window.webkitURL;
let url = ObjectURL.createObjectURL(blob);
let a = document.createElement('a');
a.href = url;
a.style.display = 'none';
a.download = this.recorderOptions.name + '.webm';
a.click();
其他代码不复制了 播放一切正常 就是无法拖动进度条,请大佬赐教
亲测有效,解决方案:https://github.com/yusitnikov...
其他解决方案:https://www.go2live.cn/nocate...