微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

RecorderJS通过AJAX上传记录的blob

我正在使用Matt Diamond的recorder.js来浏览 HTML5音频API,感觉这个问题可能有一个明显的答案,但我找不到任何具体的文档.

问题:录制wav文件后,如何通过ajax将该wav发送到服务器?有什么建议???

解决方法

如果你有blob,你需要把它变成一个url并通过ajax调用运行url.

// might be nice to set up a boolean somewhere if you have a handler object
object = new Object();
object.sendToServer = true;

// You can create a callback and set it in the config object.
var config = {
   callback : myCallback
}

// in the callback,send the blob to the server if you set the property to true
function myCallback(blob){
   if( object.sendToServer ){

     // create an object url
     // Matt actually uses this line when he creates Recorder.forceDownload()
     var url = (window.URL || window.webkitURL).createObjectURL(blob);

     // create a new request and send it via the objectUrl
     var request = new XMLHttpRequest();
     request.open("GET",url,true);
     request.responseType = "blob";
     request.onload = function(){
       // send the blob somewhere else or handle it here
       // use request.response
     }
     request.send();
   }
}

// very important! run the following exportWAV method to trigger the callback
rec.exportWAV();

让我知道这是否有效..没有测试它但它应该工作.干杯!

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐