16 lines
200 B
HTML
Raw Normal View History

2017-04-19 00:56:45 -07:00
<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
document.getElementById("a").mozCaptureStream();
}
</script>
</head>
<body onload="boom();">
<audio id="a" src="sound.ogg">
</body>
</html>