blob: 4644eeb89ab41e937faa173c4f6f9d8ce0ded4ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
document.getElementById("a").mozCaptureStream();
}
</script>
</head>
<body onload="boom();">
<audio id="a" src="sound.ogg">
</body>
</html>
|