Skip to content

Instantly share code, notes, and snippets.

View theleon's full-sized avatar

Leonid Mosenkov theleon

View GitHub Profile
@theleon
theleon / flussonic-webrtc-publish.html
Created November 28, 2016 08:04
Flussonic WebRTC Publishing
<!doctype html>
<html>
<head>
<!-- https://github.com/webrtc/adapter is used for cross-browser interop -->
<script type="text/javascript" src="https://unpkg.com/webrtc-adapter@2.0.8/out/adapter.js"></script>
</head>
<body>
<video id="container" controls autoplay></video>
<script>
window.onload = function() {
@theleon
theleon / flussonic-webrtc-playback.html
Created November 28, 2016 07:59
Flussonic WebRTC Playback
<!doctype html>
<html>
<head>
<!-- https://github.com/webrtc/adapter is used for cross-browser interop -->
<script type="text/javascript" src="https://unpkg.com/webrtc-adapter@2.0.8/out/adapter.js"></script>
</head>
<body>
<video id="container" controls autoplay></video>
<script>
window.onload = function() {