如何在客户端javascript中将.wav文件从url转换为base64?

问题描述 投票:2回答:1

我有.wav文件,放在“http://yy.zz/1.wav”。如何在客户端javascript上使用base64编码获取它?

getFile('http://yy.zz/1.wav', (file) => {
  console.log(getBase64File(file)); // profit
});
javascript base64 blob wav
1个回答
1
投票

如果文件位于同一域中,或者您在外部站点上启用了CORS,则可以执行以下操作:

$.get("http://localhost/content/sound/hello.wav", function(file){
   let fileInBase64Format = btoa(unescape(encodeURIComponent(file)));
   console.log(fileInBase64Format);
});
© www.soinside.com 2019 - 2024. All rights reserved.