GitLab
Sign in
zooble
/
video-recorder
Back to Group
Project
Activity
Files
Commits
Network
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Download as
Email Patches
Plain Diff
Browse Code ยป
Commit
e8e8d10b10679f0d7a6218b2e7fa8a28daad8223
Authored by
xingwenliang
2022-09-06 13:54:54 +0800
1 parent
0bdcc938
fix: blob data needs to be array
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
content/audio_download.js
content/audio_download.js
View file @
e8e8d10
...
...
@@ -18,7 +18,7 @@ recorder.onstop = function(e){
18
18
recorder.start(1000);
19
19
20
20
function saveBlobData(data){
21
- const blob = new Blob(
data
, {
21
+ const blob = new Blob(
[data]
, {
22
22
type: mimeType
23
23
});
24
24
const url = URL.createObjectURL(blob);
...
...