зеркало из https://github.com/mozilla/gecko-dev.git
16 строки
325 B
HTML
16 строки
325 B
HTML
|
<!DOCTYPE html>
|
||
|
<script>
|
||
|
var ac = new AudioContext();
|
||
|
fetch("audio.ogg").then(response => {
|
||
|
return response.arrayBuffer();
|
||
|
}).then(ab => {
|
||
|
return ac.decodeAudioData(ab);
|
||
|
}).then(ab => {
|
||
|
var src = ac.createBufferSource();
|
||
|
src.buffer = ab;
|
||
|
src.loop = true;
|
||
|
src.start();
|
||
|
src.connect(ac.destination);
|
||
|
});
|
||
|
</script>
|