/usr/share/janus/demos/index.html is in janus-demos 0.2.6-1build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | <!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Janus WebRTC Gateway: About Janus</title>
<script type="text/javascript" src="javascript/jquery/jquery.min.js" ></script>
<script type="text/javascript" src="javascript/bootstrap/js/bootstrap.min.js"></script>
<script>
$(function() {
$(".navbar-static-top").load("navbar.html", function() {
$(".navbar-static-top a[href='index.html']").parent().addClass("active");
});
$(".footer").load("footer.html");
});
</script>
<link rel="stylesheet" href="javascript/bootswatch/cerulean/bootstrap.min.css" type="text/css"/>
<link rel="stylesheet" href="css/demo.css" type="text/css"/>
</head>
<body>
<a href="https://github.com/meetecho/janus-gateway"><img style="position: absolute; top: 0; left: 0; border: 0; z-index: 1001;" src="https://s3.amazonaws.com/github/ribbons/forkme_left_darkblue_121621.png" alt="Fork me on GitHub"></a>
<nav class="navbar navbar-default navbar-static-top">
</nav>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="page-header">
<h1>About</h1>
</div>
<h3>Janus: the general purpose WebRTC Gateway</h3>
<div class="row">
<div class="col-md-7">
<p>Janus is a WebRTC Gateway developed by <a href="http://www.meetecho.com">Meetecho</a>
conceived to be a general purpose one. As such, it doesn't provide any functionality per
se other than implementing the means to set up a WebRTC media communication with a browser,
exchanging JSON messages with it, and relaying RTP/RTCP and messages between browsers and
the server-side application logic they're attached to. Any specific feature/application is provided by server side
plugins, that browsers can then contact via the gateway to take advantage of the
functionality they provide. Example of such plugins can be implementations of applications
like echo tests, conference bridges, media recorders, SIP gateways and the like.</p>
</div>
<div class="col-md-5">
<img src="janus-logo.png"></img>
</div>
</div>
<div class="row">
<div class="col-md-12">
<p>The reason for this is simple: we wanted something that would have a
<code>small footprint</code> (hence a C implementation) and that we could only
equip with what was <code>really needed</code> (hence pluggable modules). That is,
something that would allow us to deploy either a full-fledged WebRTC
gateway on the cloud, or a small nettop/box to handle a specific use case.</p>
</div>
</div>
<div class="row">
<div class="alert alert-info">Check the <a class="alert-link" href="docs">Documentation</a>
for more details about Janus, or check out the <a class="alert-link" href="demos.html">Demos</a>
to see it in action.</div>
</div>
</div>
</div>
<hr>
<div class="footer">
</div>
</div>
</body>
</html>
|