summaryrefslogtreecommitdiffstats
path: root/dom/media/webaudio/test/test_mediaElementAudioSourceNodeVideo.html
blob: dcb85f12cbe2c1a1cf43cb30dbc4b1c153ce6fa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE HTML>
<html>
<meta charset="utf-8">
<head>
  <title>Test MediaElementAudioSourceNode before "loadedmetadata"</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<pre id="test">
<script class="testbody" type="text/javascript">
SimpleTest.waitForExplicitFinish();

var video = document.createElement("video");
function test() {
  video.src = "audiovideo.mp4";

  var context = new AudioContext();
  var complete = false;

  video.onended = () => {
    if (complete) {
      return;
    }

    complete = true;
    ok(false, "Video ended without any samples seen");
    SimpleTest.finish();
  };

  video.ontimeupdate = () => {
    info("Timeupdate: " + video.currentTime);
  };

  var node = context.createMediaElementSource(video);
  var sp = context.createScriptProcessor(2048, 1);
  node.connect(sp);

  // This test ensures we receive some nonzero samples when we capture to
  // WebAudio before "loadedmetadata".
  sp.onaudioprocess = e => {
    if (complete) {
      return;
    }

    var buf = e.inputBuffer.getChannelData(0);
    for (var i = 0; i < buf.length; ++i) {
      if (buf[i] != 0) {
        complete = true;
        ok(true, "Got non-zero samples");
        SimpleTest.finish();
        return;
      }
    }
  };

  video.play();
}

if (video.canPlayType("video/mp4")) {
  test();
} else {
  ok(true, "MP4 not supported. Skipping.");
  SimpleTest.finish();
}

</script>
</pre>
</body>
</html>