This repository has been archived by the owner on May 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
/
index.html
91 lines (63 loc) · 3.11 KB
/
index.html
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<!--
* Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree.
-->
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="WebRTC Javascript test pages">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
<meta itemprop="description" content="Client-side WebRTC test pages">
<meta itemprop="image" content="/images/webrtc-icon-192x192.png">
<meta itemprop="name" content="WebRTC Javascript test pages">
<meta name="mobile-web-app-capable" content="yes">
<meta id="theme-color" name="theme-color" content="#ffffff">
<base target="_blank">
<title>WebRTC test pages</title>
<link rel="icon" sizes="192x192" href="images/favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/landing_page.css" />
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-48530561-3', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div id="container">
<h1>WebRTC test pages</h1>
<section>
<p>This is a collection of WebRTC test pages.</p>
<p>Patches and issues welcome! See
<a href="https://github.com/webrtc/test-pages/blob/gh-pages/CONTRIBUTING.md">CONTRIBUTING.md</a>
for instructions. The <a href="https://bit.ly/webrtcdevguide">Developer's Guide</a>
for this repo has more information about code style, structure and validation.
</p>
</section>
<section>
<p><a href="src/audio-and-video/">Audio and Video streams</a></p>
<p><a href="src/canvas-capture/">Peer connection from canvas capture stream</a></p>
<p><a href="src/iframe-apprtc/">Iframe apprtc</a></p>
<p><a href="src/iframe-video/">Iframe video</a></p>
<p><a href="src/multiple-audio/">Multiple audio streams</a></p>
<p><a href="src/multiple-peerconnections/">Multiple peer connections</a></p>
<p><a href="src/multiple-video/">Multiple video streams</a></p>
<p><a href="src/multiple-video-devices/">Multiple video devices</a></p>
<p><a href="src/pause-play/">Randomly pause and play</a></p>
<p><a href="src/peer2peer/">Peer2peer</a></p>
<p><a href="src/peer2peer-iframe/">Peer2peer iframe</a></p>
<p><a href="src/peer2peer-video/">Peer2peer from video</a></p>
<p><a href="src/single-audio/">Single audio stream</a></p>
<p><a href="src/single-video/">Single video stream</a></p>
</section>
<a href="//github.com/webrtc/test-pages/tree/gh-pages" title="View the repository" id="viewSource">github.com/webrtc/test-pages/tree/gh-pages</a>
</div>
</body>
</html>