-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Description
This works:
import play from "audio-play";
import load from "audio-loader";
load("./sounds/coin.mp3").then(audioBuffer => {
play(audioBuffer);
});But I want to encode the AudioBuffer to a string (so it can be stored in localStorage next time) and back again.
This does NOT work:
// Copied from audio-loader/test/support/utils.js
function arrToBase64Audio(arr) {
var data = new Buffer(arr).toString("base64");
return "data:audio/mp3;base64," + data;
}
load("./sounds/coin.mp3").then(audioBuffer => {
console.log(audioBuffer);
const asString = arrToBase64Audio(audioBuffer);
console.log(asString);
console.log(asString.length);
load(asString).then(ab => {
//console.log(ab);
play(ab);
});
});It says:
The buffer passed to decodeAudioData contains an unknown content type.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels

