How to play audio with the base64-string
in Internet Explorer?
Code
audio = $("#sound1")[0];
audio.src = "data:audio/wav;base64," + reader.result;
// reader.result - строка UklGRhIqBQBXQVZFZm10IBIAAAAHA...
//audio.src = "somerecord.wav";
audio.load();
Works correctly in Chrome, but not in IE. Another way is create file and play it in IE. But how to do that without store file on disk?