Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.html « www « webrtc « net - github.com/sdroege/gst-plugin-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e533c4ffbebab49d64efbf6a994b4f62579e4f34 (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
<!DOCTYPE html>
<!--
  vim: set sts=2 sw=2 et :


  Demo Javascript app for negotiating and streaming a sendrecv webrtc stream
  with a GStreamer app. Runs only in passive mode, i.e., responds to offers
  with answers, exchanges ICE candidates, and streams.

  Author: Nirbheek Chauhan <nirbheek@centricular.com>
-->
<html>
  <head>
    <style>
      .error { color: red; }
    </style>
    <link rel="stylesheet" type="text/css" href="theme.css">
    <script src="https://webrtc.github.io/adapter/adapter-latest.js"></script>
    <script src="keyboard.js"></script>
    <script src="input.js"></script>
    <script src="webrtc.js"></script>
    <script>window.onload = setup;</script>
  </head>

  <body>
    <div class="holygrail-body">
      <div class="content">
        <div id="sessions">
        </div>
        <div id="image-holder">
          <img id="image"></img>
        </div>
      </div>
      <ul class="nav" id="camera-list">
      </ul>
    </div>
  </body>
</html>