forked from fippo/dump-webrtc-event-log
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (28 loc) · 1.02 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
<html>
<head>
<meta charset="utf-8">
<title>Import WebRTC event log dumps, show some graphs and download a pcap</title>
<style>
</style>
<!-- highcharts is used under the terms of
http://shop.highsoft.com/faq/non-commercial
-->
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://cdn.rawgit.com/dcodeIO/protobuf.js/6.11.3/dist/protobuf.min.js"></script>
<script src="rtp.js"></script>
<script src="rtcp.js"></script>
<script src="pcap.js"></script>
<script src="bitstream.js"></script>
</head>
<body>
<form>
<label>Select a WebRTC-internals event log dump:</label>
<input type="file" onchange="doImport(event)">
</form>
<span id="download"></span>
<br>
<div id="container"></div>
<input type="checkbox" id="toggle" disabled><label>Toggle all data series</label>
</body>
<script src="import.js"></script>
</html>