将xhr转换为.wav

时间:2018-06-11 21:10:56

标签: javascript xmlhttprequest polymer-1.0

这是我的代码

fd.append('type', 'audio');
fd.append('file', audioBlob);
fd.append('name', 'example.wav');
let xhr = new XMLHttpRequest();
xhr.open('post', url, true);
xhr.send(fd);

有没有办法使用Polymer 1.x将其转换为.wav文件?

0 个答案:

没有答案