This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<configuration name="conference.conf" description="Audio Conference"> | |
<!-- Other conference config... --> | |
<profiles> | |
<profile name="video-mcu-stereo"> | |
<!-- Other profile config... --> | |
<!-- Mux the inbound video streams into one outbound stream. --> | |
<param name="video-mode" value="mux"/> | |
<!-- Enable the live array, minimize outbound video encoding. --> | |
<param name="conference-flags" value="livearray-sync|livearray-json-status|minimize-video-encoding"/> | |
<!-- Use this video layout by default if no other is specified. --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
<h1>Create an image/png blob, then fetch it with XHR</h1> | |
<pre id="display"></pre> | |
<script src="index.js"></script> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/ruby | |
# vim: fileencoding=utf-8 | |
require 'rubygems' | |
require 'zipruby' | |
require 'openssl' | |
require 'digest/sha1' | |
require 'optparse' | |
require 'fileutils' | |
require 'find' |