Meta player, new embed code, new LSP style

This commit is contained in:
cat 2016-09-22 16:40:13 +02:00
parent 5501c67b49
commit d4be01474d
50 changed files with 6288 additions and 970 deletions

813
embed/core.js Normal file
View file

@ -0,0 +1,813 @@
/////////////////////////////////////
// DECLARE MISTPLAYER BASE CLASS //
/////////////////////////////////////
var mistplayers = {};
function MistPlayer() {};
MistPlayer.prototype.sendEvent = function(type,message,target) {
try {
var event = new Event(type,{
bubbles: true,
cancelable: true
});
event.message = message;
target.dispatchEvent(event);
}
catch (e) {
try {
var event = document.createEvent('Event');
event.initEvent(type,true,true);
event.message = message;
target.dispatchEvent(event);
}
catch (e) { return false; }
}
return true;
}
MistPlayer.prototype.addlog = function(msg) {
this.sendEvent('log',msg,this.target);
}
MistPlayer.prototype.adderror = function(msg) {
this.sendEvent('error',msg,this.target);
}
MistPlayer.prototype.build = function () {
this.addlog('Error in player implementation');
var err = document.createElement('div');
var msgnode = document.createTextNode(msg);
err.appendChild(msgnode);
err.className = 'error';
return err;
}
//creates the player element, including custom functions
MistPlayer.prototype.element = function(tag){
var ele = document.createElement(tag);
ele.className = 'mistplayer';
this.element = ele;
return ele;
};
MistPlayer.prototype.play = false;
MistPlayer.prototype.pause = false;
MistPlayer.prototype.volume = false;
MistPlayer.prototype.loop = false;
MistPlayer.prototype.fullscreen = false;
MistPlayer.prototype.setTracks = false;
MistPlayer.prototype.resize = false;
MistPlayer.prototype.buildMistControls = function(){
if (!('flex' in document.head.style) || (['iPad','iPod','iPhone'].indexOf(navigator.platform) != -1)) {
//this browser does not support MistControls
this.addlog('Mist controls are not supported');
return false;
}
this.addlog('Building Mist controls..');
var ele = this.element;
var options = this.options;
var me = this; //to allow nested functions to access the player class itself
function formatTime(secs) {
var hours = Math.floor(secs / 3600);
secs = secs - hours * 3600;
var mins = Math.floor(secs / 60);
secs = Math.floor(secs - mins * 60);
var str = [];
if (hours) {
var h = '0'+hours;
if (hours < 100) {
h.slice(-2);
}
str.push(h);
}
str.push(('0'+mins).slice(-2));
str.push(('0'+secs).slice(-2));
return str.join(':');
}
function whilePlaying() {
timestampValue.nodeValue = formatTime(ele.currentTime);
bar.style.width = ((ele.currentTime-ele.startTime)/ele.duration*100)+'%';
setTimeout(function(){
if (!ele.paused) {
whilePlaying();
}
},0.1e3);
};
function whileLivePlaying(track) {
var playtime = (new Date()) - options.initTime;
timestampValue.nodeValue = formatTime((playtime + track.lastms)/1e3);
setTimeout(function(){
if (!ele.paused) {
whileLivePlaying(track);
}
},0.1e3);
};
var controls = document.createElement('div');
ele.parentNode.appendChild(controls);
controls.className = 'controls';
controls.onclick = function(e){ e.stopPropagation(); };
//if the video is very small, zoom the controls
var zoom = options.width/480;
if (zoom < 1) {
zoom = Math.max(zoom,0.5);
controls.style.zoom = zoom;
}
else { zoom = 1; }
ele.style['min-width'] = zoom*400+'px';
ele.style['min-height'] = zoom*160+'px';
var play = document.createElement('div');
controls.appendChild(play);
play.className = 'button play';
play.title = 'Play / Pause';
play.setAttribute('data-state','paused');
play.onclick = function(){
if (ele.paused) {
me.play();
}
else {
me.pause();
}
};
var progressCont = document.createElement('div');
controls.appendChild(progressCont);
progressCont.className = 'progress_container';
if (!options.live) {
var progress = document.createElement('div');
progressCont.appendChild(progress);
progress.className = 'button progress';
progress.getPos = function(e){
if (!isFinite(ele.duration)) { return 0; }
var style = e.target.currentStyle || window.getComputedStyle(e.target, null);
return Math.max(0,e.clientX - progress.getBoundingClientRect().left - parseInt(style.borderLeftWidth,10)) / progress.offsetWidth * ele.duration;
}
progress.onmousemove = function(e) {
if (ele.duration) {
var pos = this.getPos(e);
hintValue.nodeValue = formatTime(pos);
hint.style.display = 'block';
hint.style.left = (pos / ele.duration)*100+'%';
}
};
progress.onmouseout = function() {
hint.style.display = 'none';
};
progress.onmouseup = function(e) {
ele.currentTime = this.getPos(e);
ele.startTime = ele.currentTime;
bar.style.left = (ele.startTime/ele.duration*100)+'%';
};
progress.ondragstart = function() { return false; };
var bar = document.createElement('div');
progress.appendChild(bar);
bar.className = 'bar';
var buffers = [];
var hint = document.createElement('div');
progressCont.appendChild(hint);
hint.className = 'hint';
var hintValue = document.createTextNode('-:--');
hint.appendChild(hintValue);
ele.addEventListener('seeking',function(){
me.target.setAttribute('data-loading','');
});
ele.addEventListener('canplay',function(){
me.target.removeAttribute('data-loading');
});
ele.addEventListener('playing',function(){
me.target.removeAttribute('data-loading');
});
ele.addEventListener('progress',function(){
me.target.removeAttribute('data-loading');
});
}
var timestamp = document.createElement('div');
controls.appendChild(timestamp);
timestamp.className = 'button timestamp';
var timestampValue = document.createTextNode('-:--');
timestamp.title = 'Time';
timestamp.appendChild(timestampValue);
var sound = document.createElement('div');
controls.appendChild(sound);
sound.className = 'button sound';
var volume = document.createElement('div');
sound.appendChild(volume);
sound.getPos = function(ypos){
var style = this.currentStyle || window.getComputedStyle(this, null);
return 1 - Math.min(1,Math.max(0,(ypos - sound.getBoundingClientRect().top - parseInt(style.borderTopWidth,10)) / sound.offsetHeight));
}
volume.className = 'volume';
sound.title = 'Volume';
if ('mistVolume' in localStorage) {
ele.volume = localStorage['mistVolume'];
volume.style.height = ele.volume*100+'%';
}
var mousedown = function(e){
var mousemove = function(e){
ele.volume = sound.getPos(e.clientY);
};
var mouseup = function(e){
document.removeEventListener('mousemove',mousemove);
document.removeEventListener('touchmove',mousemove);
document.removeEventListener('mouseup',mouseup);
document.removeEventListener('touchend',mouseup);
try {
localStorage['mistVolume'] = ele.volume;
}
catch (e) {}
};
document.addEventListener('mousemove',mousemove);
document.addEventListener('touchmove',mousemove);
document.addEventListener('mouseup',mouseup);
document.addEventListener('touchend',mouseup);
ele.volume = sound.getPos(e.clientY);
};
sound.onmousedown = mousedown;
sound.ontouchstart = mousedown;
sound.ondragstart = function() { return false; };
sound.onclick = function(e){
ele.volume = sound.getPos(e.clientY);
try {
localStorage['mistVolume'] = ele.volume;
}
catch (e) {}
};
var speaker = document.createElement('div');
speaker.title = 'Mute / Unmute';
sound.appendChild(speaker);
speaker.className = 'button speaker';
speaker.onclick = function(e) {
if (ele.volume) {
lastvolume = ele.volume;
ele.volume = 0;
}
else {
ele.volume = lastvolume;
}
e.stopPropagation();
};
speaker.onmousedown = function(e){
e.stopPropagation();
};
var buttons = document.createElement('div');
buttons.className = 'column';
controls.appendChild(buttons);
if ((this.setTracks) && ((this.tracks.audio.length) || (this.tracks.video.length) || (this.tracks.subtitle.length)) && (this.source.type != 'application/vnd.apple.mpegurl')) {
/*
- the player supports setting tracks;
- there is something to choose
- it's not HLS, which would have to use a different way of switching tracks than this script currently uses
*/
var tracks = this.tracks;
var tracksc = document.createElement('div');
tracksc.innerHTML = 'Tracks';
tracksc.className = 'button tracks';
buttons.appendChild(tracksc);
var settings = document.createElement('div');
tracksc.appendChild(settings);
settings.className = 'settings';
me.trackselects = {};
for (var i in tracks) {
if (tracks[i].length) {
var l = document.createElement('label');
settings.appendChild(l);
var p = document.createElement('span');
l.appendChild(p);
var t = document.createTextNode(i+':');
p.appendChild(t);
var s = document.createElement('select');
l.appendChild(s);
me.trackselects[i] = s;
s.setAttribute('data-type',i);
for (var j in tracks[i]) {
var o = document.createElement('option');
s.appendChild(o);
o.value = tracks[i][j].trackid;
var name;
if ('name' in tracks[i][j]) {
name = tracks[i][j].name;
}
else if ('lang' in tracks[i][j]) {
name = tracks[i][j].lang;
o.setAttribute('data-lang',tracks[i][j].lang);
}
else {
name = 'Track '+(Number(j)+1);
}
o.appendChild(document.createTextNode(name));
}
var o = document.createElement('option');
s.appendChild(o);
o.value = 0;
var t = document.createTextNode('No '+i);
o.appendChild(t);
s.onchange = function(){
var usetracks = {};
if (this.getAttribute('data-type') == 'subtitle') {
usetracks.subtitle = this.value;
try {
localStorage['mistSubtitle'] = this.querySelector('[value="'+this.value+'"]').getAttribute('data-lang');
}
catch (e) {}
}
else {
for (var i in me.trackselects) {
usetracks[me.trackselects[i].getAttribute('data-type')] = me.trackselects[i].value
}
}
me.setTracks(usetracks);
}
if (i == 'subtitle') {
s.value = 0;
if ('mistSubtitle' in localStorage) {
var option = s.querySelector('[data-lang="'+localStorage['mistSubtitle']+'"]');
if (option) {
s.value = option.value;
s.onchange();
}
}
}
}
}
var l = document
}
var buttons2 = document.createElement('div');
buttons2.className = 'row';
buttons.appendChild(buttons2);
if ((me.loop) && (!options.live)) {
var loop = document.createElement('div');
buttons2.appendChild(loop);
loop.className = 'button loop';
loop.title = 'Loop';
if (me.loop()) { loop.setAttribute('data-on',''); }
loop.onclick = function(){
if (me.loop()) {
this.removeAttribute('data-on');
me.loop(false);
}
else {
this.setAttribute('data-on','');
me.loop(true);
if ((me.element.paused) && (me.element.currentTime == me.element.duration)) {
me.play();
}
}
};
}
if (me.fullscreen) {
var fullscreen = document.createElement('div');
buttons2.appendChild(fullscreen);
fullscreen.className = 'button fullscreen';
fullscreen.title = 'Fullscreen'
fullscreen.onclick = function(){
me.fullscreen();
};
}
ele.addEventListener('play',function(){
play.setAttribute('data-state','playing');
});
ele.addEventListener('pause',function(){
play.setAttribute('data-state','paused');
});
ele.addEventListener('ended',function(){
play.setAttribute('data-state','paused');
});
ele.addEventListener('volumechange',function(){
volume.style.height = ele.volume*100+'%';
if (ele.volume == 0) {
speaker.setAttribute('data-muted','');
}
else {
speaker.removeAttribute('data-muted','');
}
});
if (options.live) {
ele.addEventListener('playing',function(){
var track = {
firstms: 0,
lastms: 0
};
for (var i in options.meta.tracks) {
track = options.meta.tracks[i];
break;
}
whileLivePlaying(track);
});
}
else {
ele.addEventListener('playing',function(){
whilePlaying();
});
ele.addEventListener('durationchange',function(){
timestampValue.nodeValue = formatTime(ele.duration);
});
ele.addEventListener('progress',function(){
for (var i in buffers) {
progress.removeChild(buffers[i]);
}
buffers = [];
var start,end;
for (var i = 0; i < ele.buffered.length; i++) {
var b = document.createElement('div');
b.className = 'buffer';
progress.appendChild(b);
buffers.push(b);
start = ele.buffered.start(i);
end = ele.buffered.end(i);
b.setAttribute('style','left:'+(start/ele.duration*100)+'%; width:'+((end-start)/ele.duration*100 )+'%');
}
});
}
//hide the cursor and controls if it is over the video (not the controls) and hasn't moved for 5 secs
var position = {
x: 0,
y: 0,
lastpos: { x: 0, y: 0 },
counter: 0,
element: false,
interval: setInterval(function(){
if (position.element == 'video') {
if ((position.x == position.lastpos.x) && (position.y == position.lastpos.y)) {
position.counter++;
if (position.counter >= 5) {
position.element = false;
ele.parentNode.setAttribute('data-hide','');
return;
}
}
position.lastpos.x = position.x;
position.lastpos.y = position.y;
return;
}
position.counter = 0;
},1e3)
};
ele.addEventListener('mousemove',function(e){
position.x = e.pageX;
position.y = e.pageY;
position.element = 'video';
ele.parentNode.removeAttribute('data-hide');
});
controls.addEventListener('mousemove',function(e){
position.element = 'controls';
e.stopPropagation();
});
ele.addEventListener('mouseout',function(e){
position.element = false;
});
return true;
}
/////////////////////////////////////////////////
// SELECT AND ADD A VIDEO PLAYER TO THE TARGET //
/////////////////////////////////////////////////
function mistPlay(streamName,options) {
var protoplay = new MistPlayer();
function embedLog(msg) {
protoplay.sendEvent('log',msg,options.target);
}
function mistError(msg) {
var info = mistvideo[streamName];
var displaymsg = msg;
if ('on_error' in info) { displaymsg = info.on_error; }
var err = document.createElement('div');
err.innerHTML = displaymsg.replace(new RegExp("\n",'g'),'<br>')+'<br>';
err.className = 'error';
var button = document.createElement('button');
var t = document.createTextNode('Reload');
button.appendChild(t);
err.appendChild(button);
button.onclick = function(){
options.target.removeChild(err);
mistPlay(streamName,options);
}
options.target.appendChild(err);
protoplay.sendEvent('error',msg,options.target);
return err;
}
//merge local and global options
var local = options;
var global = (typeof mistoptions == 'undefined' ? {} : mistoptions);
var options = {
host: null,
autoplay: true,
controls: true,
loop: false,
poster: null
};
for (var i in global) {
options[i] = global[i];
}
for (var i in local) {
options[i] = local[i];
}
if (!options.host) {
mistError('MistServer host undefined.');
return;
}
options.target.setAttribute('data-loading','');
//check if the css is loaded
if (!document.getElementById('mist_player_css')) {
var css = document.createElement('link');
css.rel = 'stylesheet';
css.href = options.host+'/player.css';
css.id = 'mist_player_css';
//prepend it to the head: don't use append, because the customer might want to override our default css
if (document.head.children.length) {
document.head.insertBefore(css,document.head.firstChild);
}
else {
document.head.appendChild(css);
}
}
//get info js
var info = document.createElement('script');
info.src = options.host+'/info_'+encodeURIComponent(streamName)+'.js';
embedLog('Retrieving stream info from '+info.src);
document.head.appendChild(info);
info.onerror = function(){
options.target.removeAttribute('data-loading');
mistError('Error while loading stream info.');
}
info.onload = function(){
options.target.removeAttribute('data-loading');
embedLog('Stream info was loaded succesfully');
//clean up info script
document.head.removeChild(info);
//get streaminfo data
var streaminfo = mistvideo[streamName];
//embedLog('Stream info contents: '+JSON.stringify(streaminfo));
streaminfo.initTime = new Date();
var mistPlayer = false;
var source;
var forceType = false;
if (('forceType' in options) && (options.forceType)) {
embedLog('Forcing '+options.forceType);
forceType = options.forceType;
}
var forceSupportCheck = false;
if (('forceSupportCheck' in options) && (options.forceSupportCheck)) {
embedLog('Forcing a full support check');
forceSupportCheck = true;
}
var forcePlayer = false;
if (('forcePlayer' in options) && (options.forcePlayer) && (options.forcePlayer in mistplayers)) {
embedLog('Forcing '+mistplayers[options.forcePlayer].name);
forcePlayer = options.forcePlayer;
}
embedLog('Checking available players..');
var source = false;
var mistPlayer = false;
function checkPlayer(p_shortname) {
embedLog('Checking '+mistplayers[p_shortname].name+' (priority: '+mistplayers[p_shortname].priority+') ..');
streaminfo.working[p_shortname] = [];
if (forceType) {
if ((mistplayers[p_shortname].mimes.indexOf(forceType) > -1) && (checkMime(p_shortname,forceType))) {
return p_shortname;
}
}
else {
for (var m in mistplayers[p_shortname].mimes) {
if ((checkMime(p_shortname,mistplayers[p_shortname].mimes[m])) && (!forceSupportCheck)) {
return p_shortname;
}
}
}
return false;
}
function checkMime(p_shortname,mime) {
embedLog('Checking if Mist broadcasts '+mime+'..');
for (var s in streaminfo.source) {
if (streaminfo.source[s].type == mime) {
embedLog('Yup! Checking browser support..');
if (mistplayers[p_shortname].isBrowserSupported(mime)) {
embedLog('Yup! This is a working player/source combo.');
streaminfo.working[p_shortname].push(mime);
if (!source) {
mistPlayer = p_shortname;
source = streaminfo.source[s];
}
if (!forceSupportCheck) {
return source;
}
}
}
}
return false;
}
streaminfo.working = {};
if (forcePlayer) {
checkPlayer(forcePlayer);
}
else {
//sort the players
var sorted = Object.keys(mistplayers);
sorted.sort(function(a,b){
return mistplayers[a].priority - mistplayers[b].priority;
});
for (var n in sorted) {
var p_shortname = sorted[n];
if (checkPlayer(p_shortname)) { break; }
}
}
if (mistPlayer) {
embedLog('Preparing to build '+mistplayers[mistPlayer].name);
//create the options to send to the player
var playerOpts = {
src: source.url+(('urlappend' in options) && (options.urlappend) ? options.urlappend : '' ),
live: (streaminfo.type == 'live' ? true : false),
initTime: streaminfo.initTime,
meta: streaminfo.meta,
source: source
};
//pass player options and handle defaults
playerOpts.autoplay = options.autoplay;
playerOpts.controls = options.controls;
playerOpts.loop = options.loop;
playerOpts.poster = options.poster;
function calcSize() {
//calculate desired width and height
var fw = ('width' in options && options.width ? options.width : false ); //force this width
var fh = ('height' in options && options.height ? options.height : false ); //force this height
if (!(fw && fh)) {
var ratio = streaminfo.width / streaminfo.height;
if (fw || fh) {
if (fw) {
fh = fw/ratio;
}
else {
fw = fh*ratio;
}
}
else {
//neither width or height are being forced. Set them to the minimum of video and target size
var cw = ('maxwidth' in options && options.maxwidth ? options.maxwidth : options.target.clientWidth || window.innerWidth);
var ch = ('maxheight' in options && options.maxheight ? options.maxheight : options.target.clientHeight || window.innerHeight);
var fw = streaminfo.width;
var fh = streaminfo.height;
var factor; //resize factor
if ((cw) && (fw > cw)) { //rescale if video width is larger than the target
factor = fw / cw;
fw /= factor;
fh /= factor;
}
if ((ch) && (fh > ch)) { //rescale if video height is (still?) larger than the target
factor = fh / ch;
fw /= factor;
fh /= factor;
}
}
}
return {
width: fw,
height: fh
};
}
var lastsize = calcSize();
playerOpts.width = lastsize.width;
playerOpts.height = lastsize.height;
//save the objects for future reference
var player = new mistplayers[mistPlayer].player();
player.target = options.target;
if (!('embedded' in streaminfo)) { streaminfo.embedded = []; }
streaminfo.embedded.push({
options: options,
selectedPlayer: mistPlayer,
player: player,
playerOptions: playerOpts
});
if (player.setTracks) {
//gather track info
//tracks
var tracks = {
video: [],
audio: [],
subtitle: []
};
for (var i in streaminfo.meta.tracks) {
var t = streaminfo.meta.tracks[i];
switch (t.type) {
case 'video':
t.desc = ['['+t.codec+']',t.width+'x'+t.height,Math.round(t.bps/1024)+'kbps',t.fpks/1e3+'fps',t.lang];
break;
case 'audio':
t.desc = ['['+t.codec+']',t.channels+' channels',Math.round(t.bps/1024)+'kbps',t.rate+'Hz',t.lang];
break;
case 'subtitle':
t.desc = ['['+t.codec+']',t.lang];
break;
}
t.desc = t.desc.join(', ');
tracks[t.type].push(t);
}
player.tracks = tracks;
if (tracks.subtitle.length) {
var vttsrc = false;
player.subtitle = false;
for (var i in streaminfo.source) {
if (streaminfo.source[i].type == 'html5/text/vtt') {
vttsrc = streaminfo.source[i].url;
break;
}
}
if (vttsrc) {
player.subtitle = vttsrc.replace(/.srt$/,'.vtt');
}
}
var usetracks = {};
for (var i in tracks) {
if (i == 'subtitle') { continue; }
if (tracks[i].length) {
tracks[i].sort(function(a,b){
return a.trackid - b.trackid;
});
usetracks[i] = tracks[i][0].trackid;
}
}
}
//build the player
player.options = playerOpts;
var element = player.build(playerOpts);
options.target.appendChild(element);
element.setAttribute('data-player',mistPlayer);
element.setAttribute('data-mime',source.type);
if (player.setTracks) {
player.setTracks(usetracks);
if ('setTracks' in options) { player.setTracks(options.setTracks); }
}
if (player.resize) {
//monitor for resizes and fire if needed
window.addEventListener('resize',function(){
player.resize(calcSize());
});
}
protoplay.sendEvent('initialized','',options.target);
}
else {
if (streaminfo.error) {
var str = streaminfo.error;
}
else if (('source' in streaminfo) && (streaminfo.source.length)) {
var str = 'Could not find a compatible player and protocol combination for this stream and browser. ';
if (forceType) { str += "\n"+'The mimetype '+forceType+' was enforced. '; }
if (forcePlayer) { str += "\n"+'The player '+mistplayers[forcePlayer].name+' was enforced. '; }
}
else {
var str = 'Stream not found.';
}
mistError(str);
}
}
}

85
embed/imgs/edit.svg Normal file
View file

@ -0,0 +1,85 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="64"
height="64"
viewBox="0 0 64 64"
id="svg3405"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="edit.svg">
<defs
id="defs3407" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="-33.836577"
inkscape:cy="68.407425"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1918"
inkscape:window-height="1040"
inkscape:window-x="0"
inkscape:window-y="19"
inkscape:window-maximized="1" />
<metadata
id="metadata3410">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-188.74231,-507.66538)">
<g
id="g3377"
transform="translate(-359.77798,-59.246938)">
<path
id="path4207"
d="m 552.98827,579.64923 c 2.53906,2.49023 4.93163,4.85352 7.33887,7.20215 1.54785,1.50391 3.16894,1.50879 4.71191,0.0293 0.98144,-0.94727 1.96778,-1.89941 2.93457,-2.86621 1.36231,-1.36719 1.36231,-3.00782 -0.0244,-4.37012 -2.54394,-2.5 -5.1123,-4.98535 -7.73437,-7.53906 5.39551,-1.92384 10.26367,-1.17676 14.32617,2.51953 3.19824,2.90527 4.86327,6.63086 3.96972,11.06445 -0.16601,0.84473 0.41017,1.21093 0.88379,1.67481 9.03809,8.81836 18.07129,17.63671 27.11914,26.44531 2.22168,2.16309 2.96387,4.80469 1.93848,7.60743 -1.00098,2.71972 -2.95898,4.64355 -6.15235,5.18553 -2.80273,0.47364 -5.05858,-0.34667 -6.97753,-2.21191 -8.90625,-8.64746 -17.80761,-17.30956 -26.65039,-26.0205 -1.05468,-1.03516 -2.0752,-1.5088 -3.57422,-1.44044 -5.60546,0.26368 -10.77636,-3.90625 -12.2998,-8.69629 -0.89844,-2.81738 -0.97169,-5.61523 0.19042,-8.58398"
style="fill:#8cb3d1;fill-opacity:1;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path4209"
d="m 588.90624,592.90606 c -2.39259,-2.34375 -2.39259,-2.34375 -0.0489,-4.6289 4.10645,-4.00391 8.21778,-8.00293 12.30958,-12.01659 0.4834,-0.47853 1.50391,-0.94728 0.63476,-1.78712 -0.91309,-0.88867 -1.44531,0.11713 -1.97754,0.62988 -4.57031,4.4336 -9.1748,8.8379 -13.64746,13.35937 -1.05469,1.06934 -1.38671,0.32228 -2.07031,-0.20995 -0.86425,-0.67871 -0.8496,-1.11817 -0.0293,-1.89942 4.67772,-4.47265 9.27245,-9.02832 13.92577,-13.53026 2.13379,-2.06544 4.68261,-2.13868 7.04101,-1.23048 2.3584,0.91309 3.87697,3.39844 3.87697,5.71778 0.005,2.05566 -0.74708,3.66698 -2.1875,5.06836 -4.40919,4.29198 -8.8086,8.59375 -13.22755,12.88573 -0.38085,0.37111 -0.74706,1.10841 -1.38671,0.68848 -0.6836,-0.4541 -1.28907,-1.09862 -1.73829,-1.77734 -0.20019,-0.30762 0.43946,-0.63477 0.72755,-0.91309 4.55077,-4.45312 9.11132,-8.89648 13.66698,-13.33984 0.30274,-0.29786 0.67872,-0.56153 0.84962,-0.91797 0.13671,-0.30274 0.24902,-0.72266 -0.19532,-1.04981 -0.38086,-0.27831 -0.70312,-0.25879 -1.0254,-0.0244 -0.37597,0.27343 -0.73241,0.58106 -1.06445,0.90332 -4.79003,4.66309 -9.57031,9.33105 -14.43358,14.07226"
style="fill:#8cb3d1;fill-opacity:1;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path4211"
d="m 571.15233,604.91779 c 1.09375,0.97656 2.15332,1.91894 3.21288,2.86621 -0.96191,0.91308 -2.0166,1.75782 -2.8662,2.75879 -1.09374,1.29394 -2.19727,2.54883 -3.62793,3.49609 -1.90918,1.26953 -2.48046,3.21288 -2.75879,5.27832 -0.0489,0.38574 -0.0928,0.72754 -0.41504,0.93261 -3.35937,2.14357 -6.73828,4.2627 -10.07812,6.43556 -0.39551,0.25389 -0.4248,-0.0341 -0.57618,-0.15137 -2.40233,-1.78224 -2.38281,-2.06055 -0.72753,-4.56055 1.49413,-2.25586 3.25195,-4.35058 4.44823,-6.78711 0.66407,-1.34765 1.9336,-1.61133 3.24708,-1.68945 1.1084,-0.0684 1.91895,-0.52735 2.67579,-1.2793 2.49511,-2.48046 5.03417,-4.92676 7.46581,-7.2998"
style="fill:#8cb3d1;fill-opacity:1;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path4213"
d="m 605.3662,619.50275 c -0.28321,2.36328 -1.81641,3.82324 -4.05762,3.92089 -2.07519,0.0879 -4.40918,-2.16796 -4.22363,-4.0625 0.23925,-2.37793 1.64063,-4.02344 4.28223,-3.9746 2.31933,0.039 3.95507,1.87988 3.99902,4.11621"
style="fill:#8cb3d1;fill-opacity:1;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View file

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" id="svg3405" viewBox="0 0 64 64" height="64" width="64"> <defs id="defs3407" /> <metadata id="metadata3410"> <rdf:RDF> <cc:Work rdf:about=""> <dc:format>image/svg+xml</dc:format> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> <dc:title></dc:title> </cc:Work> </rdf:RDF> </metadata> <g transform="translate(-188.74231,-507.66538)" id="layer1"> <g transform="translate(-359.77798,-59.246938)" id="g3377"> <path style="fill:#8cb3d1;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 552.98827,579.64923 c 2.53906,2.49023 4.93163,4.85352 7.33887,7.20215 1.54785,1.50391 3.16894,1.50879 4.71191,0.0293 0.98144,-0.94727 1.96778,-1.89941 2.93457,-2.86621 1.36231,-1.36719 1.36231,-3.00782 -0.0244,-4.37012 -2.54394,-2.5 -5.1123,-4.98535 -7.73437,-7.53906 5.39551,-1.92384 10.26367,-1.17676 14.32617,2.51953 3.19824,2.90527 4.86327,6.63086 3.96972,11.06445 -0.16601,0.84473 0.41017,1.21093 0.88379,1.67481 9.03809,8.81836 18.07129,17.63671 27.11914,26.44531 2.22168,2.16309 2.96387,4.80469 1.93848,7.60743 -1.00098,2.71972 -2.95898,4.64355 -6.15235,5.18553 -2.80273,0.47364 -5.05858,-0.34667 -6.97753,-2.21191 -8.90625,-8.64746 -17.80761,-17.30956 -26.65039,-26.0205 -1.05468,-1.03516 -2.0752,-1.5088 -3.57422,-1.44044 -5.60546,0.26368 -10.77636,-3.90625 -12.2998,-8.69629 -0.89844,-2.81738 -0.97169,-5.61523 0.19042,-8.58398" id="path4207" /> <path style="fill:#8cb3d1;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 588.90624,592.90606 c -2.39259,-2.34375 -2.39259,-2.34375 -0.0489,-4.6289 4.10645,-4.00391 8.21778,-8.00293 12.30958,-12.01659 0.4834,-0.47853 1.50391,-0.94728 0.63476,-1.78712 -0.91309,-0.88867 -1.44531,0.11713 -1.97754,0.62988 -4.57031,4.4336 -9.1748,8.8379 -13.64746,13.35937 -1.05469,1.06934 -1.38671,0.32228 -2.07031,-0.20995 -0.86425,-0.67871 -0.8496,-1.11817 -0.0293,-1.89942 4.67772,-4.47265 9.27245,-9.02832 13.92577,-13.53026 2.13379,-2.06544 4.68261,-2.13868 7.04101,-1.23048 2.3584,0.91309 3.87697,3.39844 3.87697,5.71778 0.005,2.05566 -0.74708,3.66698 -2.1875,5.06836 -4.40919,4.29198 -8.8086,8.59375 -13.22755,12.88573 -0.38085,0.37111 -0.74706,1.10841 -1.38671,0.68848 -0.6836,-0.4541 -1.28907,-1.09862 -1.73829,-1.77734 -0.20019,-0.30762 0.43946,-0.63477 0.72755,-0.91309 4.55077,-4.45312 9.11132,-8.89648 13.66698,-13.33984 0.30274,-0.29786 0.67872,-0.56153 0.84962,-0.91797 0.13671,-0.30274 0.24902,-0.72266 -0.19532,-1.04981 -0.38086,-0.27831 -0.70312,-0.25879 -1.0254,-0.0244 -0.37597,0.27343 -0.73241,0.58106 -1.06445,0.90332 -4.79003,4.66309 -9.57031,9.33105 -14.43358,14.07226" id="path4209" /> <path style="fill:#8cb3d1;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 571.15233,604.91779 c 1.09375,0.97656 2.15332,1.91894 3.21288,2.86621 -0.96191,0.91308 -2.0166,1.75782 -2.8662,2.75879 -1.09374,1.29394 -2.19727,2.54883 -3.62793,3.49609 -1.90918,1.26953 -2.48046,3.21288 -2.75879,5.27832 -0.0489,0.38574 -0.0928,0.72754 -0.41504,0.93261 -3.35937,2.14357 -6.73828,4.2627 -10.07812,6.43556 -0.39551,0.25389 -0.4248,-0.0341 -0.57618,-0.15137 -2.40233,-1.78224 -2.38281,-2.06055 -0.72753,-4.56055 1.49413,-2.25586 3.25195,-4.35058 4.44823,-6.78711 0.66407,-1.34765 1.9336,-1.61133 3.24708,-1.68945 1.1084,-0.0684 1.91895,-0.52735 2.67579,-1.2793 2.49511,-2.48046 5.03417,-4.92676 7.46581,-7.2998" id="path4211" /> <path style="fill:#8cb3d1;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 605.3662,619.50275 c -0.28321,2.36328 -1.81641,3.82324 -4.05762,3.92089 -2.07519,0.0879 -4.40918,-2.16796 -4.22363,-4.0625 0.23925,-2.37793 1.64063,-4.02344 4.28223,-3.9746 2.31933,0.039 3.95507,1.87988 3.99902,4.11621" id="path4213" /> </g> </g></svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

69
embed/imgs/embed.svg Normal file
View file

@ -0,0 +1,69 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="svg3937"
height="64"
width="64"
inkscape:version="0.91 r13725"
sodipodi:docname="embed.svg">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1232"
inkscape:window-height="1040"
id="namedview8"
showgrid="false"
inkscape:zoom="3.6875"
inkscape:cx="34.169492"
inkscape:cy="33.627119"
inkscape:window-x="0"
inkscape:window-y="19"
inkscape:window-maximized="0"
inkscape:current-layer="svg3937" />
<defs
id="defs3939" />
<metadata
id="metadata3942">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="g4136"
transform="matrix(1.1499985,0,0,1.1499985,-4.7999525,-4.7999514)">
<path
d="m 26.443358,46.804687 8.300781,-29.609375 2.8125,0 -8.28125,29.609375 -2.832031,0 z"
style="fill:#8db3d1;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="path4159"
inkscape:connector-curvature="0" />
<path
d="m 59.826123,34.387695 -18.964844,12.158204 0,-5.244141 15.019531,-9.345704 -15.019531,-9.257812 0,-5.244141 18.964844,12.011719 0,4.921875 z"
style="fill:#5490ba;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="path4161"
inkscape:connector-curvature="0" />
<path
d="m 4.1738772,34.387695 18.9648438,12.158204 0,-5.244141 -15.0195307,-9.345704 15.0195307,-9.257812 0,-5.244141 -18.9648437,12.011719 0,4.921875 z"
style="fill:#5490ba;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="path4161-2"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View file

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" width="64" height="64" id="svg3937" version="1.1"> <defs id="defs3939" /> <metadata id="metadata3942"> <rdf:RDF> <cc:Work rdf:about=""> <dc:format>image/svg+xml</dc:format> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> <dc:title></dc:title> </cc:Work> </rdf:RDF> </metadata> <g transform="matrix(1.1499985,0,0,1.1499985,-4.7999525,-4.7999514)" id="g4136"> <path id="path4159" style="fill:#8db3d1;fill-opacity:1;" d="m 26.443358,46.804687 8.300781,-29.609375 2.8125,0 -8.28125,29.609375 -2.832031,0 z" /> <path id="path4161" style="fill:#5490ba;fill-opacity:1;" d="m 59.826123,34.387695 -18.964844,12.158204 0,-5.244141 15.019531,-9.345704 -15.019531,-9.257812 0,-5.244141 18.964844,12.011719 0,4.921875 z" /> <path id="path4161-2" style="fill:#5490ba;fill-opacity:1;" d="m 4.1738772,34.387695 18.9648438,12.158204 0,-5.244141 -15.0195307,-9.345704 15.0195307,-9.257812 0,-5.244141 -18.9648437,12.011719 0,4.921875 z" /> </g></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

96
embed/imgs/folder.svg Normal file
View file

@ -0,0 +1,96 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="45"
height="45"
viewBox="0 0 45 45"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="folder.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#3ddd72"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="7.919596"
inkscape:cx="23.09878"
inkscape:cy="13.633711"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
units="px"
showguides="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-intersection-paths="true"
inkscape:object-paths="true"
inkscape:object-nodes="true"
inkscape:window-width="1059"
inkscape:window-height="723"
inkscape:window-x="233"
inkscape:window-y="206"
inkscape:window-maximized="0">
<sodipodi:guide
position="0,0"
orientation="0,16"
id="guide4149" />
<sodipodi:guide
position="0,16"
orientation="16,0"
id="guide4155" />
<sodipodi:guide
position="0,0"
orientation="0,45"
id="guide4138" />
<sodipodi:guide
position="45,0"
orientation="-45,0"
id="guide4140" />
<sodipodi:guide
position="45,45"
orientation="0,-45"
id="guide4142" />
<sodipodi:guide
position="0,45"
orientation="45,0"
id="guide4144" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1007.3622)">
<path
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 26.500001,1014.2997 -5.333334,5.9271 -18.666667,0 0,29.6354 24,0 16,0 c 0,-11.8542 0,-23.7083 0,-35.5625 z"
id="rect4147"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" id="svg2" viewBox="0 0 45 45" height="45" width="45"> <defs id="defs4" /> <metadata id="metadata7"> <rdf:RDF> <cc:Work rdf:about=""> <dc:format>image/svg+xml</dc:format> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> <dc:title></dc:title> </cc:Work> </rdf:RDF> </metadata> <g transform="translate(0,-1007.3622)" id="layer1"> <path id="rect4147" d="m 26.500001,1014.2997 -5.333334,5.9271 -18.666667,0 0,29.6354 24,0 16,0 c 0,-11.8542 0,-23.7083 0,-35.5625 z" style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> </g></svg>

After

Width:  |  Height:  |  Size: 1,005 B

110
embed/imgs/fullscreen.svg Normal file
View file

@ -0,0 +1,110 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="45"
height="45"
id="svg3937"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="New document 8">
<defs
id="defs3939" />
<sodipodi:namedview
id="base"
pagecolor="#000000"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="7.9195959"
inkscape:cx="28.131736"
inkscape:cy="23.298993"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:window-width="1185"
inkscape:window-height="659"
inkscape:window-x="426"
inkscape:window-y="164"
inkscape:window-maximized="0" />
<metadata
id="metadata3942">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1007.3622)">
<g
id="g4563"
transform="translate(0,-1.109375)">
<g
id="g4558">
<path
style="fill:#ffffff;fill-opacity:1;stroke:none"
d="M 5.15625,10 C 3.6913461,10 2.5,11.191346 2.5,12.65625 l 0,19.6875 C 2.5,33.808654 3.6913461,35 5.15625,35 l 34.6875,0 C 41.308654,35 42.5,33.808654 42.5,32.34375 l 0,-19.6875 C 42.5,11.191346 41.308654,10 39.84375,10 L 5.15625,10 z M 5,12.53125 l 35,0 0,20 -35,0 0,-20 z"
transform="translate(0,1007.3622)"
id="rect3945"
inkscape:connector-curvature="0" />
<rect
style="fill:#ffffff;fill-opacity:0.39215686;stroke:none"
id="rect3947"
width="35"
height="20"
x="5"
y="1019.8622"
ry="0" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none"
d="m 18.78125,35.40625 c -1.53661,0.379809 -2.971465,0.991557 -4.28125,1.8125 l 15.65625,0 c -1.313005,-0.822961 -2.762825,-1.432953 -4.3125,-1.8125 l -7.0625,0 z"
transform="translate(0,1007.3622)"
id="path3949"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#000000"
transform="matrix(2.0353985,0,0,1.1630828,-99.321734,-141.54581)"
id="g4007">
<path
style="fill:#ffffff;fill-opacity:1;stroke:none"
d="m 65.533646,1001.4758 -2.032932,0 0.662913,0.6629 -2.253903,2.2539 0.707107,0.7071 2.253903,-2.2539 0.662912,0.6629 0,-2.0329 z"
id="rect3958"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none"
d="m 65.533646,1012.84 0,-2.033 -0.662836,0.6629 -2.253901,-2.2539 -0.707104,0.7071 2.253902,2.2539 -0.662906,0.6629 2.032845,1e-4 z"
id="rect3958-5"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none"
d="m 54.16943,1001.4758 2.032932,0 -0.662913,0.6629 2.253903,2.2539 -0.707107,0.7071 -2.253903,-2.2539 -0.662912,0.6629 0,-2.0329 z"
id="rect3958-51"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none"
d="m 54.16943,1012.84 0,-2.033 0.662836,0.6629 2.253901,-2.2539 0.707104,0.7071 -2.253902,2.2539 0.662906,0.6629 -2.032845,1e-4 z"
id="rect3958-5-7"
inkscape:connector-curvature="0" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

View file

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" id="svg3937" height="45" width="45"><defs id="defs3939" /><metadata id="metadata3942"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><g transform="translate(0,-1007.3622)" id="layer1"><g transform="translate(0,-1.109375)" id="g4563"><g id="g4558"><path id="rect3945" transform="translate(0,1007.3622)" d="M 5.15625,10 C 3.6913461,10 2.5,11.191346 2.5,12.65625 l 0,19.6875 C 2.5,33.808654 3.6913461,35 5.15625,35 l 34.6875,0 C 41.308654,35 42.5,33.808654 42.5,32.34375 l 0,-19.6875 C 42.5,11.191346 41.308654,10 39.84375,10 L 5.15625,10 z M 5,12.53125 l 35,0 0,20 -35,0 0,-20 z" style="fill:#fff;fill-opacity:1;stroke:none" /><rect ry="0" y="1019.8622" x="5" height="20" width="35" id="rect3947" style="fill:#fff;fill-opacity:0.39215686;stroke:none" /><path id="path3949" transform="translate(0,1007.3622)" d="m 18.78125,35.40625 c -1.53661,0.379809 -2.971465,0.991557 -4.28125,1.8125 l 15.65625,0 c -1.313005,-0.822961 -2.762825,-1.432953 -4.3125,-1.8125 l -7.0625,0 z" style="fill:#fff;fill-opacity:1;stroke:none" /></g><g id="g4007" transform="matrix(2.0353985,0,0,1.1630828,-99.321734,-141.54581)" style="fill:#000"><path id="rect3958" d="m 65.533646,1001.4758 -2.032932,0 0.662913,0.6629 -2.253903,2.2539 0.707107,0.7071 2.253903,-2.2539 0.662912,0.6629 0,-2.0329 z" style="fill:#fff;fill-opacity:1;stroke:none" /><path id="rect3958-5" d="m 65.533646,1012.84 0,-2.033 -0.662836,0.6629 -2.253901,-2.2539 -0.707104,0.7071 2.253902,2.2539 -0.662906,0.6629 2.032845,1e-4 z" style="fill:#fff;fill-opacity:1;stroke:none" /><path id="rect3958-51" d="m 54.16943,1001.4758 2.032932,0 -0.662913,0.6629 2.253903,2.2539 -0.707107,0.7071 -2.253903,-2.2539 -0.662912,0.6629 0,-2.0329 z" style="fill:#fff;fill-opacity:1;stroke:none" /><path id="rect3958-5-7" d="m 54.16943,1012.84 0,-2.033 0.662836,0.6629 2.253901,-2.2539 0.707104,0.7071 -2.253902,2.2539 0.662906,0.6629 -2.032845,1e-4 z" style="fill:#fff;fill-opacity:1;stroke:none" /></g></g></g></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

96
embed/imgs/loop.svg Normal file
View file

@ -0,0 +1,96 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="svg3937"
height="45"
width="45"
inkscape:version="0.91 r13725"
sodipodi:docname="loop.svg">
<sodipodi:namedview
pagecolor="#8bff39"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="1"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1055"
id="namedview3591"
showgrid="false"
showguides="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="false"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:snap-bbox-midpoints="true"
inkscape:guide-bbox="true"
inkscape:snap-object-midpoints="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:object-nodes="true"
inkscape:snap-smooth-nodes="true"
inkscape:snap-midpoints="true"
inkscape:zoom="14.833529"
inkscape:cx="30.216329"
inkscape:cy="21.135445"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg3937">
<sodipodi:guide
position="0,0"
orientation="0,45"
id="guide3615" />
<sodipodi:guide
position="45,0"
orientation="-45,0"
id="guide3617" />
<sodipodi:guide
position="45,45"
orientation="0,-45"
id="guide3619" />
<sodipodi:guide
position="0,45"
orientation="45,0"
id="guide3621" />
<sodipodi:guide
position="0,0"
orientation="-0.70710678,0.70710678"
id="guide3624" />
<sodipodi:guide
position="0,45"
orientation="0.70710678,0.70710678"
id="guide4491" />
</sodipodi:namedview>
<defs
id="defs3939" />
<metadata
id="metadata3942">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<path
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 0 0 L 0 45 L 45 45 L 45 0 L 0 0 z M 22.5 11.25 A 11.25 11.25 0 0 1 33.75 22.5 A 11.25 11.25 0 0 1 22.5 33.75 A 11.25 11.25 0 0 1 14.550781 30.449219 L 12.714844 32.285156 L 12.714844 25.785156 L 19.214844 25.785156 L 17.376953 27.623047 A 7.25 7.25 0 0 0 22.5 29.75 A 7.25 7.25 0 0 0 29.75 22.5 A 7.25 7.25 0 0 0 22.5 15.25 A 7.25 7.25 0 0 0 17.376953 17.376953 L 14.550781 14.550781 A 11.25 11.25 0 0 1 22.5 11.25 z "
id="rect4511" />
<path
style="opacity:1;fill:none;fill-opacity:0.8584475;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 22.5 11.25 A 11.25 11.25 0 0 0 14.550781 14.550781 L 17.376953 17.376953 A 7.25 7.25 0 0 1 22.5 15.25 A 7.25 7.25 0 0 1 29.75 22.5 A 7.25 7.25 0 0 1 22.5 29.75 A 7.25 7.25 0 0 1 17.376953 27.623047 L 19.214844 25.785156 L 12.714844 25.785156 L 12.714844 32.285156 L 14.550781 30.449219 A 11.25 11.25 0 0 0 22.5 33.75 A 11.25 11.25 0 0 0 33.75 22.5 A 11.25 11.25 0 0 0 22.5 11.25 z "
id="path4495" />
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View file

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" width="45" height="45" id="svg3937" version="1.1"> <defs id="defs3939" /> <metadata id="metadata3942"> <rdf:RDF> <cc:Work rdf:about=""> <dc:format>image/svg+xml</dc:format> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> <dc:title></dc:title> </cc:Work> </rdf:RDF> </metadata> <path id="rect4511" d="M 0 0 L 0 45 L 45 45 L 45 0 L 0 0 z M 22.5 11.25 A 11.25 11.25 0 0 1 33.75 22.5 A 11.25 11.25 0 0 1 22.5 33.75 A 11.25 11.25 0 0 1 14.550781 30.449219 L 12.714844 32.285156 L 12.714844 25.785156 L 19.214844 25.785156 L 17.376953 27.623047 A 7.25 7.25 0 0 0 22.5 29.75 A 7.25 7.25 0 0 0 29.75 22.5 A 7.25 7.25 0 0 0 22.5 15.25 A 7.25 7.25 0 0 0 17.376953 17.376953 L 14.550781 14.550781 A 11.25 11.25 0 0 1 22.5 11.25 z " style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> <path id="path4495" d="M 22.5 11.25 A 11.25 11.25 0 0 0 14.550781 14.550781 L 17.376953 17.376953 A 7.25 7.25 0 0 1 22.5 15.25 A 7.25 7.25 0 0 1 29.75 22.5 A 7.25 7.25 0 0 1 22.5 29.75 A 7.25 7.25 0 0 1 17.376953 27.623047 L 19.214844 25.785156 L 12.714844 25.785156 L 12.714844 32.285156 L 14.550781 30.449219 A 11.25 11.25 0 0 0 22.5 33.75 A 11.25 11.25 0 0 0 33.75 22.5 A 11.25 11.25 0 0 0 22.5 11.25 z " style="opacity:1;fill:none;fill-opacity:0.8584475;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

141
embed/imgs/mist.svg Normal file
View file

@ -0,0 +1,141 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
width="202.52017"
height="150"
id="svg5280"
inkscape:version="0.48.5 r10040"
sodipodi:docname="MistServer_logo.svg">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1025"
id="namedview24"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="1.4374431"
inkscape:cx="422.85672"
inkscape:cy="28.852269"
inkscape:window-x="-2"
inkscape:window-y="-3"
inkscape:window-maximized="1"
inkscape:current-layer="layer1"
units="pt" />
<defs
id="defs5282" />
<metadata
id="metadata5285">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(-48.726234,-449.75204)"
id="layer1">
<path
d="m 69.082153,534.25314 81.028637,43.26488 81.02605,-43.26488 -30.50707,-69.00894 -101.039068,0 -30.508549,69.00894 0,0 z m 81.028637,50.11732 -88.826486,-47.43088 34.369418,-77.74079 108.913568,0 34.36905,77.74079 -88.82555,47.43088 0,0"
id="path46"
style="fill:#8cb3cf;fill-opacity:1;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
d="m 234.87352,538.03959 -166.751519,0 0,-6.04541 166.751519,0 0,6.04541"
id="path48"
style="fill:#b5d3e2;fill-opacity:1;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
d="m 83.487009,535.52082 c 0,9.59968 -7.78108,17.38075 -17.379651,17.38075 -9.599122,0 -17.381124,-7.78106 -17.381124,-17.38075 0,-9.59784 7.782002,-17.38076 17.381124,-17.38076 9.598571,0 17.379651,7.78292 17.379651,17.38076"
id="path50"
style="fill:#8cb3cf;fill-opacity:1;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
d="m 251.2464,535.52082 c 0,9.59968 -7.78107,17.38075 -17.38074,17.38075 -9.59968,0 -17.37892,-7.78106 -17.37892,-17.38075 0,-9.59784 7.77924,-17.38076 17.37892,-17.38076 9.59967,0 17.38074,7.78292 17.38074,17.38076"
id="path52"
style="fill:#8cb3cf;fill-opacity:1;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
d="m 155.78768,537.1828 -5.05228,-3.32212 49.37108,-75.06356 5.05043,3.32211 -49.36923,75.06357 0,0"
id="path54"
style="fill:#b5d3e2;fill-opacity:1;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
d="m 148.786,537.78162 -52.896977,-74.05569 4.919417,-3.51558 52.89533,74.05754 -4.91777,3.51373 0,0"
id="path56"
style="fill:#b5d3e2;fill-opacity:1;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
d="m 214.59628,462.59829 c 0,7.0975 -5.75242,12.8481 -12.84624,12.8481 -7.09565,0 -12.84625,-5.7506 -12.84625,-12.8481 0,-7.09381 5.7506,-12.84625 12.84625,-12.84625 7.09382,0 12.84624,5.75244 12.84624,12.84625"
id="path58"
style="fill:#8cb3cf;fill-opacity:1;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
d="m 111.82484,462.59829 c 0,7.0975 -5.75133,12.8481 -12.845873,12.8481 -7.095285,0 -12.847532,-5.7506 -12.847532,-12.8481 0,-7.09381 5.752247,-12.84625 12.847532,-12.84625 7.094543,0 12.845873,5.75244 12.845873,12.84625"
id="path60"
style="fill:#8cb3cf;fill-opacity:1;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
d="m 168.87714,487.53535 c 0,9.39145 -7.61157,17.00487 -17.00119,17.00487 -9.38963,0 -17.00304,-7.61342 -17.00304,-17.00487 0,-9.38962 7.61341,-17.0012 17.00304,-17.0012 9.38962,0 17.00119,7.61158 17.00119,17.0012"
id="path62"
style="fill:#8cb3cf;fill-opacity:1;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
d="m 165.85536,536.40156 c 0,7.72396 -6.25913,13.98126 -13.97941,13.98126 -7.72029,0 -13.98126,-6.2573 -13.98126,-13.98126 0,-7.72029 6.26097,-13.97941 13.98126,-13.97941 7.72028,0 13.97941,6.25912 13.97941,13.97941"
id="path64"
style="fill:#b5d3e2;fill-opacity:1;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
d="m 68.335736,537.40574 -2.945866,-5.28074 83.87888,-47.98547 4.45712,6.79162 -85.390134,46.47459 0,0"
id="path66"
style="fill:#8cb3cf;fill-opacity:1;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
d="m 149.46958,490.65477 -52.141724,-25.31476 2.545669,-5.48159 53.653355,23.80204 -3.30185,6.23887 -0.75545,0.75544"
id="path68"
style="fill:#8cb3cf;fill-opacity:1;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
d="m 149.4143,484.06397 51.00726,-23.80203 2.6551,5.42999 -49.49635,25.31477"
id="path70"
style="fill:#8cb3cf;fill-opacity:1;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
d="m 233.09362,538.50758 -83.88016,-47.98547 4.56768,-6.72714 82.36743,49.49637 -3.05495,5.21624 0,0"
id="path72"
style="fill:#8cb3cf;fill-opacity:1;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
d="m 154.52001,580.48452 -6.80084,0 -2.26634,-93.70278 11.33536,0 -2.26818,93.70278 0,0"
id="path74"
style="fill:#8cb3cf;fill-opacity:1;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
d="m 168.12169,582.37313 c 0,9.59968 -7.78107,17.37891 -17.38075,17.37891 -9.59784,0 -17.37891,-7.77923 -17.37891,-17.37891 0,-9.59968 7.78107,-17.38076 17.37891,-17.38076 9.59968,0 17.38075,7.78108 17.38075,17.38076"
id="path76"
style="fill:#8cb3cf;fill-opacity:1;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.5 KiB

View file

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" id="svg5280" height="150" width="202.52017" version="1.1"><defs id="defs5282" /><metadata id="metadata5285"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><g id="layer1" transform="translate(-48.726234,-449.75204)"><path style="fill:#8cb3cf;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path46" d="m 69.082153,534.25314 81.028637,43.26488 81.02605,-43.26488 -30.50707,-69.00894 -101.039068,0 -30.508549,69.00894 0,0 z m 81.028637,50.11732 -88.826486,-47.43088 34.369418,-77.74079 108.913568,0 34.36905,77.74079 -88.82555,47.43088 0,0" /><path style="fill:#b5d3e2;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path48" d="m 234.87352,538.03959 -166.751519,0 0,-6.04541 166.751519,0 0,6.04541" /><path style="fill:#8cb3cf;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path50" d="m 83.487009,535.52082 c 0,9.59968 -7.78108,17.38075 -17.379651,17.38075 -9.599122,0 -17.381124,-7.78106 -17.381124,-17.38075 0,-9.59784 7.782002,-17.38076 17.381124,-17.38076 9.598571,0 17.379651,7.78292 17.379651,17.38076" /><path style="fill:#8cb3cf;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path52" d="m 251.2464,535.52082 c 0,9.59968 -7.78107,17.38075 -17.38074,17.38075 -9.59968,0 -17.37892,-7.78106 -17.37892,-17.38075 0,-9.59784 7.77924,-17.38076 17.37892,-17.38076 9.59967,0 17.38074,7.78292 17.38074,17.38076" /><path style="fill:#b5d3e2;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path54" d="m 155.78768,537.1828 -5.05228,-3.32212 49.37108,-75.06356 5.05043,3.32211 -49.36923,75.06357 0,0" /><path style="fill:#b5d3e2;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path56" d="m 148.786,537.78162 -52.896977,-74.05569 4.919417,-3.51558 52.89533,74.05754 -4.91777,3.51373 0,0" /><path style="fill:#8cb3cf;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path58" d="m 214.59628,462.59829 c 0,7.0975 -5.75242,12.8481 -12.84624,12.8481 -7.09565,0 -12.84625,-5.7506 -12.84625,-12.8481 0,-7.09381 5.7506,-12.84625 12.84625,-12.84625 7.09382,0 12.84624,5.75244 12.84624,12.84625" /><path style="fill:#8cb3cf;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path60" d="m 111.82484,462.59829 c 0,7.0975 -5.75133,12.8481 -12.845873,12.8481 -7.095285,0 -12.847532,-5.7506 -12.847532,-12.8481 0,-7.09381 5.752247,-12.84625 12.847532,-12.84625 7.094543,0 12.845873,5.75244 12.845873,12.84625" /><path style="fill:#8cb3cf;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path62" d="m 168.87714,487.53535 c 0,9.39145 -7.61157,17.00487 -17.00119,17.00487 -9.38963,0 -17.00304,-7.61342 -17.00304,-17.00487 0,-9.38962 7.61341,-17.0012 17.00304,-17.0012 9.38962,0 17.00119,7.61158 17.00119,17.0012" /><path style="fill:#b5d3e2;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path64" d="m 165.85536,536.40156 c 0,7.72396 -6.25913,13.98126 -13.97941,13.98126 -7.72029,0 -13.98126,-6.2573 -13.98126,-13.98126 0,-7.72029 6.26097,-13.97941 13.98126,-13.97941 7.72028,0 13.97941,6.25912 13.97941,13.97941" /><path style="fill:#8cb3cf;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path66" d="m 68.335736,537.40574 -2.945866,-5.28074 83.87888,-47.98547 4.45712,6.79162 -85.390134,46.47459 0,0" /><path style="fill:#8cb3cf;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path68" d="m 149.46958,490.65477 -52.141724,-25.31476 2.545669,-5.48159 53.653355,23.80204 -3.30185,6.23887 -0.75545,0.75544" /><path style="fill:#8cb3cf;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path70" d="m 149.4143,484.06397 51.00726,-23.80203 2.6551,5.42999 -49.49635,25.31477" /><path style="fill:#8cb3cf;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path72" d="m 233.09362,538.50758 -83.88016,-47.98547 4.56768,-6.72714 82.36743,49.49637 -3.05495,5.21624 0,0" /><path style="fill:#8cb3cf;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path74" d="m 154.52001,580.48452 -6.80084,0 -2.26634,-93.70278 11.33536,0 -2.26818,93.70278 0,0" /><path style="fill:#8cb3cf;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path76" d="m 168.12169,582.37313 c 0,9.59968 -7.78107,17.37891 -17.38075,17.37891 -9.59784,0 -17.37891,-7.77923 -17.37891,-17.37891 0,-9.59968 7.78107,-17.38076 17.37891,-17.38076 9.59968,0 17.38075,7.78108 17.38075,17.38076" /></g></svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

97
embed/imgs/pause.svg Normal file
View file

@ -0,0 +1,97 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="45"
height="45"
id="svg2"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="1.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#000000"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="5.3283681"
inkscape:cx="36.324499"
inkscape:cy="19.316553"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:snap-global="true"
showguides="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="false"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-page="true"
inkscape:object-nodes="true"
inkscape:snap-nodes="false"
inkscape:window-width="981"
inkscape:window-height="709"
inkscape:window-x="856"
inkscape:window-y="240"
inkscape:window-maximized="0">
<sodipodi:guide
position="0,0"
orientation="0,45"
id="guide3785" />
<sodipodi:guide
position="45,0"
orientation="-45,0"
id="guide3787" />
<sodipodi:guide
position="45,45"
orientation="0,-45"
id="guide3789" />
<sodipodi:guide
position="0,45"
orientation="45,0"
id="guide3791" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1007.3622)">
<g
id="g3779"
transform="translate(3.0304575,47.729705)"
style="fill:#ffffff">
<path
style="fill:#ffffff;fill-opacity:1;stroke:none"
d="m 4.4695429,998.16377 a 4.0011916,4.0011916 0 0 0 3.749999,3.96873 l 2.2812501,0 a 4.0011916,4.0011916 0 0 0 3.96875,-3.75003 l 0,-32.28123 a 4.0011916,4.0011916 0 0 0 -3.75,-3.96875 l -2.2812501,0 a 4.0011916,4.0011916 0 0 0 -3.968749,3.75 l 0,32.28128 z"
id="path3823-7"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none"
d="m 24.469542,998.1638 a 4.0011916,4.0011916 0 0 0 3.75,3.9687 l 2.28125,0 a 4.0011916,4.0011916 0 0 0 3.96875,-3.75 l 0,-32.28126 a 4.0011916,4.0011916 0 0 0 -3.75,-3.96875 l -2.28125,0 a 4.0011916,4.0011916 0 0 0 -3.96875,3.75 l 0,32.28131 z"
id="path3823-7-4"
inkscape:connector-curvature="0" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" id="svg2" height="45" width="45"><defs id="defs4" /><metadata id="metadata7"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><g transform="translate(0,-1007.3622)" id="layer1"><g style="fill:#fff" transform="translate(3.0304575,47.729705)" id="g3779"><path id="path3823-7" d="m 4.4695429,998.16377 a 4.0011916,4.0011916 0 0 0 3.749999,3.96873 l 2.2812501,0 a 4.0011916,4.0011916 0 0 0 3.96875,-3.75003 l 0,-32.28123 a 4.0011916,4.0011916 0 0 0 -3.75,-3.96875 l -2.2812501,0 a 4.0011916,4.0011916 0 0 0 -3.968749,3.75 l 0,32.28128 z" style="fill:#fff;fill-opacity:1;stroke:none" /><path id="path3823-7-4" d="m 24.469542,998.1638 a 4.0011916,4.0011916 0 0 0 3.75,3.9687 l 2.28125,0 a 4.0011916,4.0011916 0 0 0 3.96875,-3.75 l 0,-32.28126 a 4.0011916,4.0011916 0 0 0 -3.75,-3.96875 l -2.28125,0 a 4.0011916,4.0011916 0 0 0 -3.96875,3.75 l 0,32.28131 z" style="fill:#fff;fill-opacity:1;stroke:none" /></g></g></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

90
embed/imgs/play.svg Normal file
View file

@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="45"
height="45"
id="svg2"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="New document 1">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#000000"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="5.3283681"
inkscape:cx="36.324499"
inkscape:cy="19.316553"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:snap-global="true"
showguides="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="false"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-page="true"
inkscape:object-nodes="true"
inkscape:snap-nodes="false"
inkscape:window-width="981"
inkscape:window-height="709"
inkscape:window-x="856"
inkscape:window-y="240"
inkscape:window-maximized="0">
<sodipodi:guide
position="0,0"
orientation="0,45"
id="guide3785" />
<sodipodi:guide
position="45,0"
orientation="-45,0"
id="guide3787" />
<sodipodi:guide
position="45,45"
orientation="0,-45"
id="guide3789" />
<sodipodi:guide
position="0,45"
orientation="45,0"
id="guide3791" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1007.3622)">
<path
sodipodi:type="inkscape:offset"
inkscape:radius="0"
inkscape:original="M 10.3125 -6.34375 A 2.9416186 2.9416186 0 0 0 7.90625 -4.875 L -6.21875 19.625 A 2.9416186 2.9416186 0 0 0 -3.65625 24.03125 L 24.625 24.03125 A 2.9416186 2.9416186 0 0 0 27.15625 19.625 L 13 -4.875 A 2.9416186 2.9416186 0 0 0 10.3125 -6.34375 z "
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3809"
d="M 10.3125,-6.34375 A 2.9416186,2.9416186 0 0 0 7.90625,-4.875 l -14.125,24.5 a 2.9416186,2.9416186 0 0 0 2.5625,4.40625 l 28.28125,0 A 2.9416186,2.9416186 0 0 0 27.15625,19.625 L 13,-4.875 a 2.9416186,2.9416186 0 0 0 -2.6875,-1.46875 z"
transform="matrix(1.0141827,-0.58553867,0.58553867,1.0141827,-0.48419831,1022.8893)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3 KiB

View file

@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="45"
height="45"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="play_outline.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#20bb3c"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="1"
inkscape:cx="7.985616"
inkscape:cy="19.316553"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:snap-global="true"
showguides="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="false"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-page="true"
inkscape:object-nodes="true"
inkscape:snap-nodes="false"
inkscape:window-width="981"
inkscape:window-height="709"
inkscape:window-x="856"
inkscape:window-y="240"
inkscape:window-maximized="0">
<sodipodi:guide
position="0,0"
orientation="0,45"
id="guide3785" />
<sodipodi:guide
position="45,0"
orientation="-45,0"
id="guide3787" />
<sodipodi:guide
position="45,45"
orientation="0,-45"
id="guide3789" />
<sodipodi:guide
position="0,45"
orientation="45,0"
id="guide3791" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1007.3622)">
<path
sodipodi:type="inkscape:offset"
inkscape:radius="0"
inkscape:original="M 10.3125 -6.34375 A 2.9416186 2.9416186 0 0 0 7.90625 -4.875 L -6.21875 19.625 A 2.9416186 2.9416186 0 0 0 -3.65625 24.03125 L 24.625 24.03125 A 2.9416186 2.9416186 0 0 0 27.15625 19.625 L 13 -4.875 A 2.9416186 2.9416186 0 0 0 10.3125 -6.34375 z "
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-opacity:1"
id="path3809"
d="M 10.3125,-6.34375 A 2.9416186,2.9416186 0 0 0 7.90625,-4.875 l -14.125,24.5 a 2.9416186,2.9416186 0 0 0 2.5625,4.40625 l 28.28125,0 A 2.9416186,2.9416186 0 0 0 27.15625,19.625 L 13,-4.875 a 2.9416186,2.9416186 0 0 0 -2.6875,-1.46875 z"
transform="matrix(1.0141827,-0.58553867,0.58553867,1.0141827,-0.48419831,1022.8893)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3 KiB

View file

@ -0,0 +1,35 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
id="svg2"
height="45"
width="45">
<defs
id="defs4" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-1007.3622)"
id="layer1">
<path
transform="matrix(1.0141827,-0.58553867,0.58553867,1.0141827,-0.48419831,1022.8893)"
d="M 10.3125,-6.34375 A 2.9416186,2.9416186 0 0 0 7.90625,-4.875 l -14.125,24.5 a 2.9416186,2.9416186 0 0 0 2.5625,4.40625 l 28.28125,0 A 2.9416186,2.9416186 0 0 0 27.15625,19.625 L 13,-4.875 a 2.9416186,2.9416186 0 0 0 -2.6875,-1.46875 z"
id="path3809"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" id="svg2" height="45" width="45"><defs id="defs4" /><metadata id="metadata7"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><g transform="translate(0,-1007.3622)" id="layer1"><path transform="matrix(1.0141827,-0.58553867,0.58553867,1.0141827,-0.48419831,1022.8893)" d="M 10.3125,-6.34375 A 2.9416186,2.9416186 0 0 0 7.90625,-4.875 l -14.125,24.5 a 2.9416186,2.9416186 0 0 0 2.5625,4.40625 l 28.28125,0 A 2.9416186,2.9416186 0 0 0 27.15625,19.625 L 13,-4.875 a 2.9416186,2.9416186 0 0 0 -2.6875,-1.46875 z" id="path3809" style="fill:#fff;fill-opacity:1;fill-rule:evenodd;stroke:none" /></g></svg>

After

Width:  |  Height:  |  Size: 1,022 B

89
embed/imgs/player.svg Normal file
View file

@ -0,0 +1,89 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="svg4429"
viewBox="0 0 64.000002 64.000002"
height="64"
width="64"
inkscape:version="0.91 r13725"
sodipodi:docname="player.svg">
<sodipodi:namedview
pagecolor="#dbe64a"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0.63529412"
inkscape:pageshadow="2"
inkscape:window-width="1918"
inkscape:window-height="1040"
id="namedview24"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
units="px"
inkscape:zoom="6.0250756"
inkscape:cx="8.9812567"
inkscape:cy="43.244086"
inkscape:window-x="0"
inkscape:window-y="19"
inkscape:window-maximized="0"
inkscape:current-layer="g3383" />
<defs
id="defs4431" />
<metadata
id="metadata4434">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(-617.80121,-674.1592)"
id="layer1">
<g
id="g3383"
transform="translate(-85.69681,111.42941)">
<g
id="g4143"
transform="matrix(1.3405403,0,0,1.3405403,-250.53223,-201.71523)">
<path
id="path5535"
transform="translate(703.49802,562.72979)"
d="m 12.708984,13.941406 c -2.50489,0 -4.5312496,1.874993 -4.5312496,4.189453 l 0,26.523438 c 0,2.30958 2.0263596,4.189453 4.5312496,4.189453 l 38.679688,0 c 2.50489,0 4.53125,-1.879873 4.53125,-4.189453 l 0,-26.523438 c 0,-2.31446 -2.02636,-4.189453 -4.53125,-4.189453 l -38.679688,0 z m -1.203125,7.064453 41.314453,0 0,18.19336 -41.314453,0 0,-18.19336 z m 0,20.386719 41.314453,0 0,5.009766 -41.314453,0 0,-5.009766 z"
style="fill:#8cb3d1;fill-opacity:1;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
style="fill:#8cb3d1;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 730.84958,587.51544 9.95606,5.31739 -9.95606,5.31737 z m 0,0"
id="path5541" />
<path
inkscape:connector-curvature="0"
style="fill:#8cb3d1;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 718.88669,606.93439 33.56934,0 0,-0.61524 -33.56934,0 z m 0,0"
id="path5543" />
<path
inkscape:connector-curvature="0"
style="fill:#8cb3d1;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 727.99801,606.62676 c 0,0.88868 -0.78125,1.61622 -1.74803,1.61622 -0.9668,0 -1.74805,-0.72754 -1.74805,-1.61622 0,-0.89355 0.78125,-1.61619 1.74805,-1.61619 0.96678,0 1.74803,0.72264 1.74803,1.61619"
id="path5545" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View file

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64.000002 64.000002" id="svg4429" version="1.1"> <defs id="defs4431" /> <metadata id="metadata4434"> <rdf:RDF> <cc:Work rdf:about=""> <dc:format>image/svg+xml</dc:format> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> <dc:title></dc:title> </cc:Work> </rdf:RDF> </metadata> <g id="layer1" transform="translate(-617.80121,-674.1592)"> <g transform="translate(-85.69681,111.42941)" id="g3383"> <g transform="matrix(1.3405403,0,0,1.3405403,-250.53223,-201.71523)" id="g4143"> <path style="fill:#8cb3d1;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 12.708984,13.941406 c -2.50489,0 -4.5312496,1.874993 -4.5312496,4.189453 l 0,26.523438 c 0,2.30958 2.0263596,4.189453 4.5312496,4.189453 l 38.679688,0 c 2.50489,0 4.53125,-1.879873 4.53125,-4.189453 l 0,-26.523438 c 0,-2.31446 -2.02636,-4.189453 -4.53125,-4.189453 l -38.679688,0 z m -1.203125,7.064453 41.314453,0 0,18.19336 -41.314453,0 0,-18.19336 z m 0,20.386719 41.314453,0 0,5.009766 -41.314453,0 0,-5.009766 z" transform="translate(703.49802,562.72979)" id="path5535" /> <path id="path5541" d="m 730.84958,587.51544 9.95606,5.31739 -9.95606,5.31737 z m 0,0" style="fill:#8cb3d1;fill-opacity:1;fill-rule:nonzero;stroke:none" /> <path id="path5543" d="m 718.88669,606.93439 33.56934,0 0,-0.61524 -33.56934,0 z m 0,0" style="fill:#8cb3d1;fill-opacity:1;fill-rule:nonzero;stroke:none" /> <path id="path5545" d="m 727.99801,606.62676 c 0,0.88868 -0.78125,1.61622 -1.74803,1.61622 -0.9668,0 -1.74805,-0.72754 -1.74805,-1.61622 0,-0.89355 0.78125,-1.61619 1.74805,-1.61619 0.96678,0 1.74803,0.72264 1.74803,1.61619" style="fill:#8cb3d1;fill-opacity:1;fill-rule:nonzero;stroke:none" /> </g> </g> </g></svg>

After

Width:  |  Height:  |  Size: 2 KiB

84
embed/imgs/preview.svg Normal file
View file

@ -0,0 +1,84 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="svg4429"
viewBox="0 0 64.000008 64.000006"
height="64"
width="64"
inkscape:version="0.91 r13725"
sodipodi:docname="preview.svg">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="958"
inkscape:window-height="1040"
id="namedview17"
showgrid="false"
units="px"
inkscape:zoom="2.2585352"
inkscape:cx="59.600694"
inkscape:cy="49.739631"
inkscape:window-x="960"
inkscape:window-y="19"
inkscape:window-maximized="0"
inkscape:current-layer="layer1" />
<defs
id="defs4431" />
<metadata
id="metadata4434">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(-582.95054,-557.8903)"
id="layer1">
<path
inkscape:connector-curvature="0"
style="fill:#8cb3d1;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 592.82603,621.89028 c -0.4815,0.009 -1.04972,-0.29907 -1.57906,-0.65496 -1.25609,-0.84635 -2.49422,-1.71963 -3.73235,-2.5929 -1.51327,-1.06767 -1.77047,-2.46131 -0.68785,-3.89683 2.4972,-3.31665 5.0273,-6.60936 7.51254,-9.93199 0.74168,-0.9929 1.49533,-1.93495 2.67065,-2.50019 0.48151,-0.23029 0.81347,-0.19141 1.22917,0.16747 1.73159,1.51029 3.59178,2.86505 5.68524,3.89384 0.53234,0.26318 0.68487,0.62206 0.60412,1.14244 -0.1286,0.79552 -0.39178,1.54617 -0.89122,2.20113 -2.73944,3.62169 -5.48187,7.23739 -8.23328,10.85011 -0.58318,0.76861 -1.31291,1.32188 -2.57796,1.32188"
id="path4265" />
<path
inkscape:connector-curvature="0"
style="fill:#f3f3f3;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 597.85932,608.22595 c 0.006,0.46953 -0.15253,0.75365 -0.3529,1.01981 -1.46244,1.93197 -2.90394,3.87291 -4.39328,5.78693 -0.81646,1.04374 -1.42356,1.01982 -2.80823,0.0119 -1.00187,-0.72972 -1.10057,-1.33683 -0.36188,-2.31478 1.41758,-1.8871 2.83515,-3.77421 4.26768,-5.65234 0.40374,-0.52935 0.96898,-0.96599 1.65084,-0.61309 0.8344,0.43066 1.85122,0.76561 1.99777,1.7615"
id="path4267" />
<path
inkscape:connector-curvature="0"
style="fill:#f3f3f3;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 591.35164,617.09027 c -0.0359,1.01084 -1.19926,1.67477 -2.18617,1.15738 -0.42767,-0.22729 -0.84039,-0.50244 -1.20225,-0.81346 -0.66991,-0.57719 -0.7058,-1.19626 -0.17047,-1.87216 0.48748,-0.61906 1.23813,-0.76261 1.95589,-0.32 0.71178,0.43964 1.55814,0.79253 1.603,1.84824"
id="path4269" />
<path
inkscape:connector-curvature="0"
style="fill:#8cb3d1;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 617.27468,608.4353 c -14.58843,0 -26.46137,-11.33761 -26.46137,-25.27409 0,-13.93349 11.87294,-25.27108 26.46137,-25.27108 14.59144,0 26.46137,11.33759 26.46137,25.27108 0,13.93648 -11.86993,25.27409 -26.46137,25.27409 m 0,-46.83376 c -12.44712,0 -22.5735,9.6718 -22.5735,21.55967 0,11.89088 10.12638,21.56267 22.5735,21.56267 12.44714,0 22.5765,-9.67179 22.5765,-21.56267 0,-11.88787 -10.12936,-21.55967 -22.5765,-21.55967"
id="path4271" />
<path
sodipodi:type="inkscape:offset"
inkscape:radius="0"
inkscape:original="M 10.3125 -6.34375 A 2.9416186 2.9416186 0 0 0 7.90625 -4.875 L -6.21875 19.625 A 2.9416186 2.9416186 0 0 0 -3.65625 24.03125 L 24.625 24.03125 A 2.9416186 2.9416186 0 0 0 27.15625 19.625 L 13 -4.875 A 2.9416186 2.9416186 0 0 0 10.3125 -6.34375 z "
style="fill:#5490ba;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3809"
d="M 10.3125,-6.34375 A 2.9416186,2.9416186 0 0 0 7.90625,-4.875 l -14.125,24.5 a 2.9416186,2.9416186 0 0 0 2.5625,4.40625 l 28.28125,0 A 2.9416186,2.9416186 0 0 0 27.15625,19.625 L 13,-4.875 a 2.9416186,2.9416186 0 0 0 -2.6875,-1.46875 z"
transform="matrix(0.76064273,-0.43915731,0.43915731,0.76064273,604.05764,577.92667)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

68
embed/imgs/return.svg Normal file
View file

@ -0,0 +1,68 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="svg3937"
height="64"
width="64"
inkscape:version="0.91 r13725"
sodipodi:docname="blue_loop.svg">
<sodipodi:namedview
pagecolor="#8bff39"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="1"
inkscape:pageshadow="2"
inkscape:window-width="958"
inkscape:window-height="1040"
id="namedview3591"
showgrid="false"
showguides="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="false"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:snap-bbox-midpoints="true"
inkscape:guide-bbox="true"
inkscape:snap-object-midpoints="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:object-nodes="true"
inkscape:snap-smooth-nodes="true"
inkscape:snap-midpoints="true"
inkscape:zoom="3.7083823"
inkscape:cx="27.868935"
inkscape:cy="45.77058"
inkscape:window-x="960"
inkscape:window-y="19"
inkscape:window-maximized="0"
inkscape:current-layer="svg3937" />
<defs
id="defs3939" />
<metadata
id="metadata3942">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<path
style="opacity:1;fill:#8db3d1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 30.437499,8 a 24,24 0 0 0 -16.958333,7.041667 l 6.029167,6.029167 A 15.466666,15.466666 0 0 1 30.437499,16.533334 15.466666,15.466666 0 0 1 45.904165,32 15.466666,15.466666 0 0 1 30.437499,47.466666 15.466666,15.466666 0 0 1 19.508333,42.929166 l 3.920833,-3.920833 -13.866665,0 0,13.866665 3.916665,-3.916665 A 24,24 0 0 0 30.437499,56 a 24,24 0 0 0 24,-24 24,24 0 0 0 -24,-24 z"
id="path4495"
inkscape:connector-curvature="0" />
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View file

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" width="64" height="64" id="svg3937" version="1.1"> <defs id="defs3939" /> <metadata id="metadata3942"> <rdf:RDF> <cc:Work rdf:about=""> <dc:format>image/svg+xml</dc:format> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> <dc:title></dc:title> </cc:Work> </rdf:RDF> </metadata> <path id="path4495" d="m 30.437499,8 a 24,24 0 0 0 -16.958333,7.041667 l 6.029167,6.029167 A 15.466666,15.466666 0 0 1 30.437499,16.533334 15.466666,15.466666 0 0 1 45.904165,32 15.466666,15.466666 0 0 1 30.437499,47.466666 15.466666,15.466666 0 0 1 19.508333,42.929166 l 3.920833,-3.920833 -13.866665,0 0,13.866665 3.916665,-3.916665 A 24,24 0 0 0 30.437499,56 a 24,24 0 0 0 24,-24 24,24 0 0 0 -24,-24 z" style="opacity:1;fill:#8db3d1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

83
embed/imgs/speaker.svg Normal file
View file

@ -0,0 +1,83 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="25"
height="25"
id="svg4659"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="speaker.svg">
<defs
id="defs4661" />
<sodipodi:namedview
id="base"
pagecolor="#de43da"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="19.289873"
inkscape:cx="7.9448655"
inkscape:cy="14.079113"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1181"
inkscape:window-height="865"
inkscape:window-x="64"
inkscape:window-y="102"
inkscape:window-maximized="0">
<sodipodi:guide
position="0,0"
orientation="0,25"
id="guide4151" />
<sodipodi:guide
position="25,0"
orientation="-25,0"
id="guide4153" />
<sodipodi:guide
position="25,25"
orientation="0,-25"
id="guide4155" />
<sodipodi:guide
position="0,25"
orientation="25,0"
id="guide4157" />
</sodipodi:namedview>
<metadata
id="metadata4664">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1027.3622)">
<path
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 0 0 L 0 25 L 25 25 L 25 0 L 0 0 z M 17.789062 0.74609375 C 18.295139 0.76779043 18.796936 0.91543438 19.25 1.1855469 L 19.25 23.8125 C 18.041512 24.5346 16.481832 24.377494 15.445312 23.308594 L 10.341797 18.046875 L 8.0878906 18.046875 C 6.7997976 18.046875 5.75 16.963266 5.75 15.634766 L 5.75 9.3632812 C 5.75 8.0348812 6.7997976 6.9511719 8.0878906 6.9511719 L 10.341797 6.9511719 L 15.445312 1.6894531 C 16.092759 1.0217031 16.945602 0.70993262 17.789062 0.74609375 z "
transform="translate(0,1027.3622)"
id="rect4159" />
<path
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 19.25,1028.5473 c -1.20817,-0.7203 -2.769599,-0.564 -3.805513,0.5044 l -5.102362,5.2622 -2.2535418,0 c -1.288093,0 -2.3385832,1.0834 -2.3385832,2.4118 l 0,6.2709 c 0,1.3285 1.0504902,2.4119 2.3385832,2.4119 l 2.2535418,0 5.102362,5.2623 c 1.03652,1.0689 2.597025,1.2263 3.805513,0.5042 l 0,-22.6277 z"
id="rect4574"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View file

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" id="svg4659" height="25" width="25"><defs id="defs4661" /><metadata id="metadata4664"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><g transform="translate(0,-1027.3622)" id="layer1"><path id="rect4159" transform="translate(0,1027.3622)" d="M 0 0 L 0 25 L 25 25 L 25 0 L 0 0 z M 17.789062 0.74609375 C 18.295139 0.76779043 18.796936 0.91543438 19.25 1.1855469 L 19.25 23.8125 C 18.041512 24.5346 16.481832 24.377494 15.445312 23.308594 L 10.341797 18.046875 L 8.0878906 18.046875 C 6.7997976 18.046875 5.75 16.963266 5.75 15.634766 L 5.75 9.3632812 C 5.75 8.0348812 6.7997976 6.9511719 8.0878906 6.9511719 L 10.341797 6.9511719 L 15.445312 1.6894531 C 16.092759 1.0217031 16.945602 0.70993262 17.789062 0.74609375 z " style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /><path id="rect4574" d="m 19.25,1028.5473 c -1.20817,-0.7203 -2.769599,-0.564 -3.805513,0.5044 l -5.102362,5.2622 -2.2535418,0 c -1.288093,0 -2.3385832,1.0834 -2.3385832,2.4118 l 0,6.2709 c 0,1.3285 1.0504902,2.4119 2.3385832,2.4119 l 2.2535418,0 5.102362,5.2623 c 1.03652,1.0689 2.597025,1.2263 3.805513,0.5042 l 0,-22.6277 z" style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></g></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

73
embed/imgs/volume.svg Normal file
View file

@ -0,0 +1,73 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="30"
height="65"
id="svg3937"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="volume.svg">
<defs
id="defs3939" />
<sodipodi:namedview
id="base"
pagecolor="#dc39f7"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="4"
inkscape:cx="-36.653402"
inkscape:cy="38.029112"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:snap-bbox="true"
inkscape:bbox-paths="false"
inkscape:window-width="1920"
inkscape:window-height="1055"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:bbox-nodes="true"
inkscape:object-paths="true"
inkscape:snap-page="true"
inkscape:snap-global="true"
borderlayer="true" />
<metadata
id="metadata3942">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-987.3622)">
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate"
d="m 0,1052.3622 0,-65 5,0 c -0.172588,0 -0.337256,0.0295 -0.5,0.0625 -0.489111,0.1 -0.942345,0.31725 -1.28125,0.65625 -0.226206,0.2262 -0.404743,0.5135 -0.53125,0.8125 -0.126507,0.2991 -0.1875,0.62365 -0.1875,0.96875 0,0 0.075978,0.44705 0.1875,0.78125 l 19.84375,59.49995 c 0.142777,1.2451 1.185414,2.2188 2.46875,2.2188 l -25,0 z m 25,0 c 0.877549,0 1.647663,-0.441 2.09375,-1.125 0.06381,-0.098 0.1062,-0.2046 0.15625,-0.3125 0.02962,-0.062 0.06926,-0.1225 0.09375,-0.1875 0.04501,-0.1212 0.06741,-0.2459 0.09375,-0.375 0.009,-0.044 0.02457,-0.08 0.03125,-0.125 0.01878,-0.1235 0.03125,-0.2462 0.03125,-0.375 l 0,-60 c 0,-1.385 -1.114999,-2.5 -2.5,-2.5 l 5,0 0,65 -5,0 z"
id="rect4674"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none"
d="m 25,1052.3617 c -1.283336,0 -2.325973,-0.9737 -2.46875,-2.2187 L 2.6875,990.6429 C 2.575978,990.3087 2.5,989.8617 2.5,989.8617 c 0,-0.3451 0.060993,-0.6697 0.1875,-0.9688 0.126507,-0.299 0.305044,-0.5863 0.53125,-0.8125 0.338905,-0.339 0.792139,-0.5562 1.28125,-0.6562 0.162744,-0.033 0.327412,-0.062 0.5,-0.062 l 20,0 c 1.385001,0 2.5,1.115 2.5,2.5 l 0,60 c 0,0.1288 -0.01247,0.2515 -0.03125,0.375 -0.0067,0.045 -0.02225,0.081 -0.03125,0.125 -0.02634,0.1292 -0.04874,0.2538 -0.09375,0.375 -0.02449,0.065 -0.06413,0.1252 -0.09375,0.1875 -0.05005,0.1079 -0.09244,0.2145 -0.15625,0.3125 -0.446087,0.684 -1.216201,1.125 -2.09375,1.125 z m 0,-1.2187 c 0.474106,0 0.864734,-0.2114 1.09375,-0.5625 -0.02112,0.032 -0.0059,-0.01 0.0625,-0.1563 a 1.204452,1.204452 0 0 1 0,-0.031 c 0.0235,-0.049 0.05198,-0.052 0.0625,-0.062 0.0055,-0.016 0.0094,-0.035 0,-0.031 0.0017,-0.01 0.0055,-0.061 0.03125,-0.1875 0.008,-0.039 0.02555,-0.039 0.03125,-0.062 0.0098,-0.066 0.0055,-0.1027 0,-0.094 -0.0016,-0.03 0,-0.068 0,-0.094 l 0,-60 c 0,-0.7386 -0.542617,-1.2813 -1.28125,-1.2813 l -20,0 c -0.035353,0 -0.105322,0 -0.25,0.031 -0.296863,0.061 -0.546343,0.1713 -0.6875,0.3125 -0.089394,0.089 -0.205263,0.258 -0.28125,0.4375 -0.055315,0.1308 -0.058661,0.2832 -0.0625,0.4687 -2.52e-4,0.012 0,0.019 0,0.031 0.027982,0.1353 0.082499,0.2789 0.125,0.4062 l 19.84375,59.5005 a 1.204452,1.204452 0 0 1 0.03125,0.25 c 0.07527,0.6564 0.607054,1.125 1.28125,1.125 z"
id="path4697-6"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

View file

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
id="svg3937"
height="65"
width="30">
<defs
id="defs3939" />
<metadata
id="metadata3942">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-987.3622)"
id="layer1">
<path
id="rect4674"
d="m 0,1052.3622 0,-65 5,0 c -0.172588,0 -0.337256,0.0295 -0.5,0.0625 -0.489111,0.1 -0.942345,0.31725 -1.28125,0.65625 -0.226206,0.2262 -0.404743,0.5135 -0.53125,0.8125 -0.126507,0.2991 -0.1875,0.62365 -0.1875,0.96875 0,0 0.075978,0.44705 0.1875,0.78125 l 19.84375,59.49995 c 0.142777,1.2451 1.185414,2.2188 2.46875,2.2188 l -25,0 z m 25,0 c 0.877549,0 1.647663,-0.441 2.09375,-1.125 0.06381,-0.098 0.1062,-0.2046 0.15625,-0.3125 0.02962,-0.062 0.06926,-0.1225 0.09375,-0.1875 0.04501,-0.1212 0.06741,-0.2459 0.09375,-0.375 0.009,-0.044 0.02457,-0.08 0.03125,-0.125 0.01878,-0.1235 0.03125,-0.2462 0.03125,-0.375 l 0,-60 c 0,-1.385 -1.114999,-2.5 -2.5,-2.5 l 5,0 0,65 -5,0 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate" />
<path
id="path4697-6"
d="m 25,1052.3617 c -1.283336,0 -2.325973,-0.9737 -2.46875,-2.2187 L 2.6875,990.6429 C 2.575978,990.3087 2.5,989.8617 2.5,989.8617 c 0,-0.3451 0.060993,-0.6697 0.1875,-0.9688 0.126507,-0.299 0.305044,-0.5863 0.53125,-0.8125 0.338905,-0.339 0.792139,-0.5562 1.28125,-0.6562 0.162744,-0.033 0.327412,-0.062 0.5,-0.062 l 20,0 c 1.385001,0 2.5,1.115 2.5,2.5 l 0,60 c 0,0.1288 -0.01247,0.2515 -0.03125,0.375 -0.0067,0.045 -0.02225,0.081 -0.03125,0.125 -0.02634,0.1292 -0.04874,0.2538 -0.09375,0.375 -0.02449,0.065 -0.06413,0.1252 -0.09375,0.1875 -0.05005,0.1079 -0.09244,0.2145 -0.15625,0.3125 -0.446087,0.684 -1.216201,1.125 -2.09375,1.125 z m 0,-1.2187 c 0.474106,0 0.864734,-0.2114 1.09375,-0.5625 -0.02112,0.032 -0.0059,-0.01 0.0625,-0.1563 a 1.204452,1.204452 0 0 1 0,-0.031 c 0.0235,-0.049 0.05198,-0.052 0.0625,-0.062 0.0055,-0.016 0.0094,-0.035 0,-0.031 0.0017,-0.01 0.0055,-0.061 0.03125,-0.1875 0.008,-0.039 0.02555,-0.039 0.03125,-0.062 0.0098,-0.066 0.0055,-0.1027 0,-0.094 -0.0016,-0.03 0,-0.068 0,-0.094 l 0,-60 c 0,-0.7386 -0.542617,-1.2813 -1.28125,-1.2813 l -20,0 c -0.035353,0 -0.105322,0 -0.25,0.031 -0.296863,0.061 -0.546343,0.1713 -0.6875,0.3125 -0.089394,0.089 -0.205263,0.258 -0.28125,0.4375 -0.055315,0.1308 -0.058661,0.2832 -0.0625,0.4687 -2.52e-4,0.012 0,0.019 0,0.031 0.027982,0.1353 0.082499,0.2789 0.125,0.4062 l 19.84375,59.5005 a 1.204452,1.204452 0 0 1 0.03125,0.25 c 0.07527,0.6564 0.607054,1.125 1.28125,1.125 z"
style="fill:#ffffff;fill-opacity:1;stroke:none" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

269
embed/mist.css Normal file

File diff suppressed because one or more lines are too long

31
embed/players/dash.js Normal file

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,902 @@
<!DOCTYPE html>
<html lang="en" class=" is-copy-enabled is-u2f-enabled">
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# object: http://ogp.me/ns/object# article: http://ogp.me/ns/article# profile: http://ogp.me/ns/profile#">
<meta charset='utf-8'>
<link crossorigin="anonymous" href="https://assets-cdn.github.com/assets/frameworks-a56791f00ea569012c620526e115f9be8d519034262393f82c045116a52b0817.css" integrity="sha256-pWeR8A6laQEsYgUm4RX5vo1RkDQmI5P4LARRFqUrCBc=" media="all" rel="stylesheet" />
<link crossorigin="anonymous" href="https://assets-cdn.github.com/assets/github-5deed352941c0958fa4fa1d6f62607987d97095b986d6994657867ea4d843cbd.css" integrity="sha256-Xe7TUpQcCVj6T6HW9iYHmH2XCVuYbWmUZXhn6k2EPL0=" media="all" rel="stylesheet" />
<link as="script" href="https://assets-cdn.github.com/assets/frameworks-149d9338c2665172870825c78fa48fdcca4d431d067cbf5fda7120d9e39cc738.js" rel="preload" />
<link as="script" href="https://assets-cdn.github.com/assets/github-109daf4a404ee43b316c94cbb025dd5c390990eacc3b1d807ec6e1150039af02.js" rel="preload" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="Content-Language" content="en">
<meta name="viewport" content="width=device-width">
<title>dash.js/LICENSE.md at development · Dash-Industry-Forum/dash.js</title>
<link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub">
<link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-180x180.png">
<meta property="fb:app_id" content="1401488693436528">
<meta content="https://avatars3.githubusercontent.com/u/2762280?v=3&amp;s=400" name="twitter:image:src" /><meta content="@github" name="twitter:site" /><meta content="summary" name="twitter:card" /><meta content="Dash-Industry-Forum/dash.js" name="twitter:title" /><meta content="dash.js - A reference client implementation for the playback of MPEG DASH via Javascript and compliant browsers." name="twitter:description" />
<meta content="https://avatars3.githubusercontent.com/u/2762280?v=3&amp;s=400" property="og:image" /><meta content="GitHub" property="og:site_name" /><meta content="object" property="og:type" /><meta content="Dash-Industry-Forum/dash.js" property="og:title" /><meta content="https://github.com/Dash-Industry-Forum/dash.js" property="og:url" /><meta content="dash.js - A reference client implementation for the playback of MPEG DASH via Javascript and compliant browsers." property="og:description" />
<meta name="browser-stats-url" content="https://api.github.com/_private/browser/stats">
<meta name="browser-errors-url" content="https://api.github.com/_private/browser/errors">
<link rel="assets" href="https://assets-cdn.github.com/">
<link rel="web-socket" href="wss://live.github.com/_sockets/Mjk4MDcwNTphZTZkYTAwNTEzNGY3MDQ0NjZiNzcwOTYwMzlmM2JmNjo3YmM0Y2RkNTYzOTVjOWZlOTUxOTM0NDU5MzNkZjM0MmIxYzhjOTk5OGY1MWZkZThjNTk3ZTg2ODljMDE3MmFl--dfbe7e220e7abcec65b5a48721918ce1ab85a3c6">
<meta name="pjax-timeout" content="1000">
<link rel="sudo-modal" href="/sessions/sudo_modal">
<meta name="msapplication-TileImage" content="/windows-tile.png">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="selected-link" value="repo_source" data-pjax-transient>
<meta name="google-site-verification" content="KT5gs8h0wvaagLKAVWq8bbeNwnZZK1r1XQysX3xurLU">
<meta name="google-site-verification" content="ZzhVyEFwb7w3e0-uOTltm8Jsck2F5StVihD0exw2fsA">
<meta name="google-analytics" content="UA-3769691-2">
<meta content="collector.githubapp.com" name="octolytics-host" /><meta content="github" name="octolytics-app-id" /><meta content="5C44947A:2B25:14702F7A:578354FD" name="octolytics-dimension-request_id" /><meta content="2980705" name="octolytics-actor-id" /><meta content="thoronwen" name="octolytics-actor-login" /><meta content="9dae7495ad90123d0cea295f73d352139e0239dc9ba7463110880f318df82c83" name="octolytics-actor-hash" />
<meta content="/&lt;user-name&gt;/&lt;repo-name&gt;/blob/show" data-pjax-transient="true" name="analytics-location" />
<meta class="js-ga-set" name="dimension1" content="Logged In">
<meta name="hostname" content="github.com">
<meta name="user-login" content="thoronwen">
<meta name="expected-hostname" content="github.com">
<meta name="js-proxy-site-detection-payload" content="YWMzZjEyOWU1ZjQxNTA3ZTU0ODFjZjQ3N2Y1N2IxNTBiYzYyYTA5YjBjZjg3OGViYjlkZWZjN2NiZDBjZmE0OHx7InJlbW90ZV9hZGRyZXNzIjoiOTIuNjguMTQ4LjEyMiIsInJlcXVlc3RfaWQiOiI1QzQ0OTQ3QToyQjI1OjE0NzAyRjdBOjU3ODM1NEZEIiwidGltZXN0YW1wIjoxNDY4MjI0NzY2fQ==">
<link rel="mask-icon" href="https://assets-cdn.github.com/pinned-octocat.svg" color="#4078c0">
<link rel="icon" type="image/x-icon" href="https://assets-cdn.github.com/favicon.ico">
<meta name="html-safe-nonce" content="9d724374e791efca9d9e0daa13addd3144fb9062">
<meta content="e31b8b36558bb93709d07c04a8282c2434e31128" name="form-nonce" />
<meta http-equiv="x-pjax-version" content="6b9c431dbe5856e2eed898e3470e5eb3">
<meta name="description" content="dash.js - A reference client implementation for the playback of MPEG DASH via Javascript and compliant browsers.">
<meta name="go-import" content="github.com/Dash-Industry-Forum/dash.js git https://github.com/Dash-Industry-Forum/dash.js.git">
<meta content="2762280" name="octolytics-dimension-user_id" /><meta content="Dash-Industry-Forum" name="octolytics-dimension-user_login" /><meta content="6621471" name="octolytics-dimension-repository_id" /><meta content="Dash-Industry-Forum/dash.js" name="octolytics-dimension-repository_nwo" /><meta content="true" name="octolytics-dimension-repository_public" /><meta content="false" name="octolytics-dimension-repository_is_fork" /><meta content="6621471" name="octolytics-dimension-repository_network_root_id" /><meta content="Dash-Industry-Forum/dash.js" name="octolytics-dimension-repository_network_root_nwo" />
<link href="https://github.com/Dash-Industry-Forum/dash.js/commits/development.atom" rel="alternate" title="Recent Commits to dash.js:development" type="application/atom+xml">
<link rel="canonical" href="https://github.com/Dash-Industry-Forum/dash.js/blob/development/LICENSE.md" data-pjax-transient>
</head>
<body class="logged-in env-production linux vis-public page-blob">
<div id="js-pjax-loader-bar" class="pjax-loader-bar"></div>
<a href="#start-of-content" tabindex="1" class="accessibility-aid js-skip-to-content">Skip to content</a>
<div class="header header-logged-in true" role="banner">
<div class="container clearfix">
<a class="header-logo-invertocat" href="https://github.com/" data-hotkey="g d" aria-label="Homepage" data-ga-click="Header, go to dashboard, icon:logo">
<svg aria-hidden="true" class="octicon octicon-mark-github" height="28" version="1.1" viewBox="0 0 16 16" width="28"><path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0 0 16 8c0-4.42-3.58-8-8-8z"></path></svg>
</a>
<div class="header-search scoped-search site-scoped-search js-site-search" role="search">
<!-- </textarea> --><!-- '"` --><form accept-charset="UTF-8" action="/Dash-Industry-Forum/dash.js/search" class="js-site-search-form" data-scoped-search-url="/Dash-Industry-Forum/dash.js/search" data-unscoped-search-url="/search" method="get"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /></div>
<label class="form-control header-search-wrapper js-chromeless-input-container">
<div class="header-search-scope">This repository</div>
<input type="text"
class="form-control header-search-input js-site-search-focus js-site-search-field is-clearable"
data-hotkey="s"
name="q"
placeholder="Search"
aria-label="Search this repository"
data-unscoped-placeholder="Search GitHub"
data-scoped-placeholder="Search"
tabindex="1"
autocapitalize="off">
</label>
</form></div>
<ul class="header-nav left" role="navigation">
<li class="header-nav-item">
<a href="/pulls" class="js-selected-navigation-item header-nav-link" data-ga-click="Header, click, Nav menu - item:pulls context:user" data-hotkey="g p" data-selected-links="/pulls /pulls/assigned /pulls/mentioned /pulls">
Pull requests
</a> </li>
<li class="header-nav-item">
<a href="/issues" class="js-selected-navigation-item header-nav-link" data-ga-click="Header, click, Nav menu - item:issues context:user" data-hotkey="g i" data-selected-links="/issues /issues/assigned /issues/mentioned /issues">
Issues
</a> </li>
<li class="header-nav-item">
<a class="header-nav-link" href="https://gist.github.com/" data-ga-click="Header, go to gist, text:gist">Gist</a>
</li>
</ul>
<ul class="header-nav user-nav right" id="user-links">
<li class="header-nav-item">
<a href="/notifications" aria-label="You have unread notifications" class="header-nav-link notification-indicator tooltipped tooltipped-s js-socket-channel js-notification-indicator" data-channel="tenant:1:notification-changed:2980705" data-ga-click="Header, go to notifications, icon:unread" data-hotkey="g n">
<span class="mail-status unread"></span>
<svg aria-hidden="true" class="octicon octicon-bell" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path d="M14 12v1H0v-1l.73-.58c.77-.77.81-2.55 1.19-4.42C2.69 3.23 6 2 6 2c0-.55.45-1 1-1s1 .45 1 1c0 0 3.39 1.23 4.16 5 .38 1.88.42 3.66 1.19 4.42l.66.58H14zm-7 4c1.11 0 2-.89 2-2H5c0 1.11.89 2 2 2z"></path></svg>
</a>
</li>
<li class="header-nav-item dropdown js-menu-container">
<a class="header-nav-link tooltipped tooltipped-s js-menu-target" href="/new"
aria-label="Create new…"
data-ga-click="Header, create new, icon:add">
<svg aria-hidden="true" class="octicon octicon-plus left" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 9H7v5H5V9H0V7h5V2h2v5h5z"></path></svg>
<span class="dropdown-caret"></span>
</a>
<div class="dropdown-menu-content js-menu-content">
<ul class="dropdown-menu dropdown-menu-sw">
<a class="dropdown-item" href="/new" data-ga-click="Header, create new repository">
New repository
</a>
<a class="dropdown-item" href="/new/import" data-ga-click="Header, import a repository">
Import repository
</a>
<a class="dropdown-item" href="/organizations/new" data-ga-click="Header, create new organization">
New organization
</a>
<div class="dropdown-divider"></div>
<div class="dropdown-header">
<span title="Dash-Industry-Forum/dash.js">This repository</span>
</div>
<a class="dropdown-item" href="/Dash-Industry-Forum/dash.js/issues/new" data-ga-click="Header, create new issue">
New issue
</a>
</ul>
</div>
</li>
<li class="header-nav-item dropdown js-menu-container">
<a class="header-nav-link name tooltipped tooltipped-sw js-menu-target" href="/thoronwen"
aria-label="View profile and more"
data-ga-click="Header, show menu, icon:avatar">
<img alt="@thoronwen" class="avatar" height="20" src="https://avatars2.githubusercontent.com/u/2980705?v=3&amp;s=40" width="20" />
<span class="dropdown-caret"></span>
</a>
<div class="dropdown-menu-content js-menu-content">
<div class="dropdown-menu dropdown-menu-sw">
<div class="dropdown-header header-nav-current-user css-truncate">
Signed in as <strong class="css-truncate-target">thoronwen</strong>
</div>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="/thoronwen" data-ga-click="Header, go to profile, text:your profile">
Your profile
</a>
<a class="dropdown-item" href="/stars" data-ga-click="Header, go to starred repos, text:your stars">
Your stars
</a>
<a class="dropdown-item" href="/explore" data-ga-click="Header, go to explore, text:explore">
Explore
</a>
<a class="dropdown-item" href="/integrations" data-ga-click="Header, go to integrations, text:integrations">
Integrations
</a>
<a class="dropdown-item" href="https://help.github.com" data-ga-click="Header, go to help, text:help">
Help
</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="/settings/profile" data-ga-click="Header, go to settings, icon:settings">
Settings
</a>
<!-- </textarea> --><!-- '"` --><form accept-charset="UTF-8" action="/logout" class="logout-form" data-form-nonce="e31b8b36558bb93709d07c04a8282c2434e31128" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /><input name="authenticity_token" type="hidden" value="HnZks7yM48r7+We6aFWR9F8uqBnEZDm3239GCmMBDhcgJcKQjTfjY4EynwssOH/JX19SG5CDKQN/UkpbkNpwgw==" /></div>
<button class="dropdown-item dropdown-signout" data-ga-click="Header, sign out, icon:logout">
Sign out
</button>
</form> </div>
</div>
</li>
</ul>
</div>
</div>
<div id="start-of-content" class="accessibility-aid"></div>
<div id="js-flash-container">
</div>
<div role="main" class="main-content">
<div itemscope itemtype="http://schema.org/SoftwareSourceCode">
<div id="js-repo-pjax-container" data-pjax-container>
<div class="pagehead repohead instapaper_ignore readability-menu experiment-repo-nav">
<div class="container repohead-details-container">
<ul class="pagehead-actions">
<li>
<!-- </textarea> --><!-- '"` --><form accept-charset="UTF-8" action="/notifications/subscribe" class="js-social-container" data-autosubmit="true" data-form-nonce="e31b8b36558bb93709d07c04a8282c2434e31128" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /><input name="authenticity_token" type="hidden" value="dyaT7hDPcpgNqbi0PGF35WwGx6Yrti4is82pVLEuH8kHuMSxLn+Q/C4PUT4i2/1V5VOOiQsPC0Qv64zDYBMwEQ==" /></div> <input class="form-control" id="repository_id" name="repository_id" type="hidden" value="6621471" />
<div class="select-menu js-menu-container js-select-menu">
<a href="/Dash-Industry-Forum/dash.js/subscription"
class="btn btn-sm btn-with-count select-menu-button js-menu-target" role="button" tabindex="0" aria-haspopup="true"
data-ga-click="Repository, click Watch settings, action:blob#show">
<span class="js-select-button">
<svg aria-hidden="true" class="octicon octicon-eye" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path d="M8.06 2C3 2 0 8 0 8s3 6 8.06 6C13 14 16 8 16 8s-3-6-7.94-6zM8 12c-2.2 0-4-1.78-4-4 0-2.2 1.8-4 4-4 2.22 0 4 1.8 4 4 0 2.22-1.78 4-4 4zm2-4c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2 0-1.11.89-2 2-2 1.11 0 2 .89 2 2z"></path></svg>
Watch
</span>
</a>
<a class="social-count js-social-count" href="/Dash-Industry-Forum/dash.js/watchers">
206
</a>
<div class="select-menu-modal-holder">
<div class="select-menu-modal subscription-menu-modal js-menu-content" aria-hidden="true">
<div class="select-menu-header js-navigation-enable" tabindex="-1">
<svg aria-label="Close" class="octicon octicon-x js-menu-close" height="16" role="img" version="1.1" viewBox="0 0 12 16" width="12"><path d="M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48z"></path></svg>
<span class="select-menu-title">Notifications</span>
</div>
<div class="select-menu-list js-navigation-container" role="menu">
<div class="select-menu-item js-navigation-item selected" role="menuitem" tabindex="0">
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"></path></svg>
<div class="select-menu-item-text">
<input checked="checked" id="do_included" name="do" type="radio" value="included" />
<span class="select-menu-item-heading">Not watching</span>
<span class="description">Be notified when participating or @mentioned.</span>
<span class="js-select-button-text hidden-select-button-text">
<svg aria-hidden="true" class="octicon octicon-eye" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path d="M8.06 2C3 2 0 8 0 8s3 6 8.06 6C13 14 16 8 16 8s-3-6-7.94-6zM8 12c-2.2 0-4-1.78-4-4 0-2.2 1.8-4 4-4 2.22 0 4 1.8 4 4 0 2.22-1.78 4-4 4zm2-4c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2 0-1.11.89-2 2-2 1.11 0 2 .89 2 2z"></path></svg>
Watch
</span>
</div>
</div>
<div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"></path></svg>
<div class="select-menu-item-text">
<input id="do_subscribed" name="do" type="radio" value="subscribed" />
<span class="select-menu-item-heading">Watching</span>
<span class="description">Be notified of all conversations.</span>
<span class="js-select-button-text hidden-select-button-text">
<svg aria-hidden="true" class="octicon octicon-eye" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path d="M8.06 2C3 2 0 8 0 8s3 6 8.06 6C13 14 16 8 16 8s-3-6-7.94-6zM8 12c-2.2 0-4-1.78-4-4 0-2.2 1.8-4 4-4 2.22 0 4 1.8 4 4 0 2.22-1.78 4-4 4zm2-4c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2 0-1.11.89-2 2-2 1.11 0 2 .89 2 2z"></path></svg>
Unwatch
</span>
</div>
</div>
<div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"></path></svg>
<div class="select-menu-item-text">
<input id="do_ignore" name="do" type="radio" value="ignore" />
<span class="select-menu-item-heading">Ignoring</span>
<span class="description">Never be notified.</span>
<span class="js-select-button-text hidden-select-button-text">
<svg aria-hidden="true" class="octicon octicon-mute" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path d="M8 2.81v10.38c0 .67-.81 1-1.28.53L3 10H1c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h2l3.72-3.72C7.19 1.81 8 2.14 8 2.81zm7.53 3.22l-1.06-1.06-1.97 1.97-1.97-1.97-1.06 1.06L11.44 8 9.47 9.97l1.06 1.06 1.97-1.97 1.97 1.97 1.06-1.06L13.56 8l1.97-1.97z"></path></svg>
Stop ignoring
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</form>
</li>
<li>
<div class="js-toggler-container js-social-container starring-container ">
<!-- </textarea> --><!-- '"` --><form accept-charset="UTF-8" action="/Dash-Industry-Forum/dash.js/unstar" class="starred" data-form-nonce="e31b8b36558bb93709d07c04a8282c2434e31128" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /><input name="authenticity_token" type="hidden" value="b6D5S9lSA12ygF/oSCL24/lYMn/Q84qaiAIBEaufxBoCI1j8EdPKP25z+NWHRY7lhEmg8+R6kcj+X07nayVX3A==" /></div>
<button
class="btn btn-sm btn-with-count js-toggler-target"
aria-label="Unstar this repository" title="Unstar Dash-Industry-Forum/dash.js"
data-ga-click="Repository, click unstar button, action:blob#show; text:Unstar">
<svg aria-hidden="true" class="octicon octicon-star" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74z"></path></svg>
Unstar
</button>
<a class="social-count js-social-count" href="/Dash-Industry-Forum/dash.js/stargazers">
1,253
</a>
</form>
<!-- </textarea> --><!-- '"` --><form accept-charset="UTF-8" action="/Dash-Industry-Forum/dash.js/star" class="unstarred" data-form-nonce="e31b8b36558bb93709d07c04a8282c2434e31128" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /><input name="authenticity_token" type="hidden" value="Y7mapw0zGwQxg3i6cCOK5gmYQnzvckuzkx935P6UWnb9R/BCrVuk+Uf9BkvXj+lz5ksTA4y88uKm+lwMtRGl9A==" /></div>
<button
class="btn btn-sm btn-with-count js-toggler-target"
aria-label="Star this repository" title="Star Dash-Industry-Forum/dash.js"
data-ga-click="Repository, click star button, action:blob#show; text:Star">
<svg aria-hidden="true" class="octicon octicon-star" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74z"></path></svg>
Star
</button>
<a class="social-count js-social-count" href="/Dash-Industry-Forum/dash.js/stargazers">
1,253
</a>
</form> </div>
</li>
<li>
<a href="#fork-destination-box" class="btn btn-sm btn-with-count"
title="Fork your own copy of Dash-Industry-Forum/dash.js to your account"
aria-label="Fork your own copy of Dash-Industry-Forum/dash.js to your account"
rel="facebox"
data-ga-click="Repository, show fork modal, action:blob#show; text:Fork">
<svg aria-hidden="true" class="octicon octicon-repo-forked" height="16" version="1.1" viewBox="0 0 10 16" width="10"><path d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z"></path></svg>
Fork
</a>
<div id="fork-destination-box" style="display: none;">
<h2 class="facebox-header" data-facebox-id="facebox-header">Where should we fork this repository?</h2>
<include-fragment src=""
class="js-fork-select-fragment fork-select-fragment"
data-url="/Dash-Industry-Forum/dash.js/fork?fragment=1">
<img alt="Loading" height="64" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-128.gif" width="64" />
</include-fragment>
</div>
<a href="/Dash-Industry-Forum/dash.js/network" class="social-count">
589
</a>
</li>
</ul>
<h1 class="public ">
<svg aria-hidden="true" class="octicon octicon-repo" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M4 9H3V8h1v1zm0-3H3v1h1V6zm0-2H3v1h1V4zm0-2H3v1h1V2zm8-1v12c0 .55-.45 1-1 1H6v2l-1.5-1.5L3 16v-2H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1h10c.55 0 1 .45 1 1zm-1 10H1v2h2v-1h3v1h5v-2zm0-10H2v9h9V1z"></path></svg>
<span class="author" itemprop="author"><a href="/Dash-Industry-Forum" class="url fn" rel="author">Dash-Industry-Forum</a></span><!--
--><span class="path-divider">/</span><!--
--><strong itemprop="name"><a href="/Dash-Industry-Forum/dash.js" data-pjax="#js-repo-pjax-container">dash.js</a></strong>
</h1>
</div>
<div class="container">
<nav class="reponav js-repo-nav js-sidenav-container-pjax"
itemscope
itemtype="http://schema.org/BreadcrumbList"
role="navigation"
data-pjax="#js-repo-pjax-container">
<span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
<a href="/Dash-Industry-Forum/dash.js" aria-selected="true" class="js-selected-navigation-item selected reponav-item" data-hotkey="g c" data-selected-links="repo_source repo_downloads repo_commits repo_releases repo_tags repo_branches /Dash-Industry-Forum/dash.js" itemprop="url">
<svg aria-hidden="true" class="octicon octicon-code" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path d="M9.5 3L8 4.5 11.5 8 8 11.5 9.5 13 14 8 9.5 3zm-5 0L0 8l4.5 5L6 11.5 2.5 8 6 4.5 4.5 3z"></path></svg>
<span itemprop="name">Code</span>
<meta itemprop="position" content="1">
</a> </span>
<span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
<a href="/Dash-Industry-Forum/dash.js/issues" class="js-selected-navigation-item reponav-item" data-hotkey="g i" data-selected-links="repo_issues repo_labels repo_milestones /Dash-Industry-Forum/dash.js/issues" itemprop="url">
<svg aria-hidden="true" class="octicon octicon-issue-opened" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path d="M7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 0 1 1.3 8c0-3.14 2.56-5.7 5.7-5.7zM7 1C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm1 3H6v5h2V4zm0 6H6v2h2v-2z"></path></svg>
<span itemprop="name">Issues</span>
<span class="counter">122</span>
<meta itemprop="position" content="2">
</a> </span>
<span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
<a href="/Dash-Industry-Forum/dash.js/pulls" class="js-selected-navigation-item reponav-item" data-hotkey="g p" data-selected-links="repo_pulls /Dash-Industry-Forum/dash.js/pulls" itemprop="url">
<svg aria-hidden="true" class="octicon octicon-git-pull-request" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M11 11.28V5c-.03-.78-.34-1.47-.94-2.06C9.46 2.35 8.78 2.03 8 2H7V0L4 3l3 3V4h1c.27.02.48.11.69.31.21.2.3.42.31.69v6.28A1.993 1.993 0 0 0 10 15a1.993 1.993 0 0 0 1-3.72zm-1 2.92c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zM4 3c0-1.11-.89-2-2-2a1.993 1.993 0 0 0-1 3.72v6.56A1.993 1.993 0 0 0 2 15a1.993 1.993 0 0 0 1-3.72V4.72c.59-.34 1-.98 1-1.72zm-.8 10c0 .66-.55 1.2-1.2 1.2-.65 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z"></path></svg>
<span itemprop="name">Pull requests</span>
<span class="counter">3</span>
<meta itemprop="position" content="3">
</a> </span>
<a href="/Dash-Industry-Forum/dash.js/wiki" class="js-selected-navigation-item reponav-item" data-hotkey="g w" data-selected-links="repo_wiki /Dash-Industry-Forum/dash.js/wiki">
<svg aria-hidden="true" class="octicon octicon-book" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path d="M3 5h4v1H3V5zm0 3h4V7H3v1zm0 2h4V9H3v1zm11-5h-4v1h4V5zm0 2h-4v1h4V7zm0 2h-4v1h4V9zm2-6v9c0 .55-.45 1-1 1H9.5l-1 1-1-1H2c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h5.5l1 1 1-1H15c.55 0 1 .45 1 1zm-8 .5L7.5 3H2v9h6V3.5zm7-.5H9.5l-.5.5V12h6V3z"></path></svg>
Wiki
</a>
<a href="/Dash-Industry-Forum/dash.js/pulse" class="js-selected-navigation-item reponav-item" data-selected-links="pulse /Dash-Industry-Forum/dash.js/pulse">
<svg aria-hidden="true" class="octicon octicon-pulse" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path d="M11.5 8L8.8 5.4 6.6 8.5 5.5 1.6 2.38 8H0v2h3.6l.9-1.8.9 5.4L9 8.5l1.6 1.5H14V8z"></path></svg>
Pulse
</a>
<a href="/Dash-Industry-Forum/dash.js/graphs" class="js-selected-navigation-item reponav-item" data-selected-links="repo_graphs repo_contributors /Dash-Industry-Forum/dash.js/graphs">
<svg aria-hidden="true" class="octicon octicon-graph" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path d="M16 14v1H0V0h1v14h15zM5 13H3V8h2v5zm4 0H7V3h2v10zm4 0h-2V6h2v7z"></path></svg>
Graphs
</a>
</nav>
</div>
</div>
<div class="container new-discussion-timeline experiment-repo-nav">
<div class="repository-content">
<a href="/Dash-Industry-Forum/dash.js/blob/7a65bce3dc97c003dbe64012a7f567bb57c2f4b7/LICENSE.md" class="hidden js-permalink-shortcut" data-hotkey="y">Permalink</a>
<!-- blob contrib key: blob_contributors:v21:764190169e735619c08db6ec1167107a -->
<div class="file-navigation js-zeroclipboard-container">
<div class="select-menu branch-select-menu js-menu-container js-select-menu left">
<button class="btn btn-sm select-menu-button js-menu-target css-truncate" data-hotkey="w"
title="development"
type="button" aria-label="Switch branches or tags" tabindex="0" aria-haspopup="true">
<i>Branch:</i>
<span class="js-select-button css-truncate-target">development</span>
</button>
<div class="select-menu-modal-holder js-menu-content js-navigation-container" data-pjax aria-hidden="true">
<div class="select-menu-modal">
<div class="select-menu-header">
<svg aria-label="Close" class="octicon octicon-x js-menu-close" height="16" role="img" version="1.1" viewBox="0 0 12 16" width="12"><path d="M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48z"></path></svg>
<span class="select-menu-title">Switch branches/tags</span>
</div>
<div class="select-menu-filters">
<div class="select-menu-text-filter">
<input type="text" aria-label="Filter branches/tags" id="context-commitish-filter-field" class="form-control js-filterable-field js-navigation-enable" placeholder="Filter branches/tags">
</div>
<div class="select-menu-tabs">
<ul>
<li class="select-menu-tab">
<a href="#" data-tab-filter="branches" data-filter-placeholder="Filter branches/tags" class="js-select-menu-tab" role="tab">Branches</a>
</li>
<li class="select-menu-tab">
<a href="#" data-tab-filter="tags" data-filter-placeholder="Find a tag…" class="js-select-menu-tab" role="tab">Tags</a>
</li>
</ul>
</div>
</div>
<div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="branches" role="menu">
<div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">
<a class="select-menu-item js-navigation-item js-navigation-open "
href="/Dash-Industry-Forum/dash.js/blob/Public_Release_v1.6.0/LICENSE.md"
data-name="Public_Release_v1.6.0"
data-skip-pjax="true"
rel="nofollow">
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"></path></svg>
<span class="select-menu-item-text css-truncate-target js-select-menu-filter-text" title="Public_Release_v1.6.0">
Public_Release_v1.6.0
</span>
</a>
<a class="select-menu-item js-navigation-item js-navigation-open selected"
href="/Dash-Industry-Forum/dash.js/blob/development/LICENSE.md"
data-name="development"
data-skip-pjax="true"
rel="nofollow">
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"></path></svg>
<span class="select-menu-item-text css-truncate-target js-select-menu-filter-text" title="development">
development
</span>
</a>
<a class="select-menu-item js-navigation-item js-navigation-open "
href="/Dash-Industry-Forum/dash.js/blob/gh-pages/LICENSE.md"
data-name="gh-pages"
data-skip-pjax="true"
rel="nofollow">
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"></path></svg>
<span class="select-menu-item-text css-truncate-target js-select-menu-filter-text" title="gh-pages">
gh-pages
</span>
</a>
<a class="select-menu-item js-navigation-item js-navigation-open "
href="/Dash-Industry-Forum/dash.js/blob/master/LICENSE.md"
data-name="master"
data-skip-pjax="true"
rel="nofollow">
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"></path></svg>
<span class="select-menu-item-text css-truncate-target js-select-menu-filter-text" title="master">
master
</span>
</a>
<a class="select-menu-item js-navigation-item js-navigation-open "
href="/Dash-Industry-Forum/dash.js/blob/revert-1387-fix-1362/LICENSE.md"
data-name="revert-1387-fix-1362"
data-skip-pjax="true"
rel="nofollow">
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"></path></svg>
<span class="select-menu-item-text css-truncate-target js-select-menu-filter-text" title="revert-1387-fix-1362">
revert-1387-fix-1362
</span>
</a>
</div>
<div class="select-menu-no-results">Nothing to show</div>
</div>
<div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="tags">
<div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">
<a class="select-menu-item js-navigation-item js-navigation-open "
href="/Dash-Industry-Forum/dash.js/tree/v2.2.0/LICENSE.md"
data-name="v2.2.0"
data-skip-pjax="true"
rel="nofollow">
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"></path></svg>
<span class="select-menu-item-text css-truncate-target" title="v2.2.0">
v2.2.0
</span>
</a>
<a class="select-menu-item js-navigation-item js-navigation-open "
href="/Dash-Industry-Forum/dash.js/tree/v2.1.1/LICENSE.md"
data-name="v2.1.1"
data-skip-pjax="true"
rel="nofollow">
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"></path></svg>
<span class="select-menu-item-text css-truncate-target" title="v2.1.1">
v2.1.1
</span>
</a>
<a class="select-menu-item js-navigation-item js-navigation-open "
href="/Dash-Industry-Forum/dash.js/tree/v2.1.0/LICENSE.md"
data-name="v2.1.0"
data-skip-pjax="true"
rel="nofollow">
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"></path></svg>
<span class="select-menu-item-text css-truncate-target" title="v2.1.0">
v2.1.0
</span>
</a>
<a class="select-menu-item js-navigation-item js-navigation-open "
href="/Dash-Industry-Forum/dash.js/tree/v2.0.0/LICENSE.md"
data-name="v2.0.0"
data-skip-pjax="true"
rel="nofollow">
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"></path></svg>
<span class="select-menu-item-text css-truncate-target" title="v2.0.0">
v2.0.0
</span>
</a>
<a class="select-menu-item js-navigation-item js-navigation-open "
href="/Dash-Industry-Forum/dash.js/tree/v1.6.0/LICENSE.md"
data-name="v1.6.0"
data-skip-pjax="true"
rel="nofollow">
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"></path></svg>
<span class="select-menu-item-text css-truncate-target" title="v1.6.0">
v1.6.0
</span>
</a>
<a class="select-menu-item js-navigation-item js-navigation-open "
href="/Dash-Industry-Forum/dash.js/tree/v1.5.1/LICENSE.md"
data-name="v1.5.1"
data-skip-pjax="true"
rel="nofollow">
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"></path></svg>
<span class="select-menu-item-text css-truncate-target" title="v1.5.1">
v1.5.1
</span>
</a>
<a class="select-menu-item js-navigation-item js-navigation-open "
href="/Dash-Industry-Forum/dash.js/tree/v1.5.0/LICENSE.md"
data-name="v1.5.0"
data-skip-pjax="true"
rel="nofollow">
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"></path></svg>
<span class="select-menu-item-text css-truncate-target" title="v1.5.0">
v1.5.0
</span>
</a>
<a class="select-menu-item js-navigation-item js-navigation-open "
href="/Dash-Industry-Forum/dash.js/tree/v1.4/LICENSE.md"
data-name="v1.4"
data-skip-pjax="true"
rel="nofollow">
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"></path></svg>
<span class="select-menu-item-text css-truncate-target" title="v1.4">
v1.4
</span>
</a>
<a class="select-menu-item js-navigation-item js-navigation-open "
href="/Dash-Industry-Forum/dash.js/tree/v1.3.0/LICENSE.md"
data-name="v1.3.0"
data-skip-pjax="true"
rel="nofollow">
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"></path></svg>
<span class="select-menu-item-text css-truncate-target" title="v1.3.0">
v1.3.0
</span>
</a>
<a class="select-menu-item js-navigation-item js-navigation-open "
href="/Dash-Industry-Forum/dash.js/tree/v1.2.0/LICENSE.md"
data-name="v1.2.0"
data-skip-pjax="true"
rel="nofollow">
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"></path></svg>
<span class="select-menu-item-text css-truncate-target" title="v1.2.0">
v1.2.0
</span>
</a>
<a class="select-menu-item js-navigation-item js-navigation-open "
href="/Dash-Industry-Forum/dash.js/tree/v1.1.2/LICENSE.md"
data-name="v1.1.2"
data-skip-pjax="true"
rel="nofollow">
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"></path></svg>
<span class="select-menu-item-text css-truncate-target" title="v1.1.2">
v1.1.2
</span>
</a>
<a class="select-menu-item js-navigation-item js-navigation-open "
href="/Dash-Industry-Forum/dash.js/tree/v0.2.4/LICENSE.md"
data-name="v0.2.4"
data-skip-pjax="true"
rel="nofollow">
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"></path></svg>
<span class="select-menu-item-text css-truncate-target" title="v0.2.4">
v0.2.4
</span>
</a>
<a class="select-menu-item js-navigation-item js-navigation-open "
href="/Dash-Industry-Forum/dash.js/tree/V0.1/LICENSE.md"
data-name="V0.1"
data-skip-pjax="true"
rel="nofollow">
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"></path></svg>
<span class="select-menu-item-text css-truncate-target" title="V0.1">
V0.1
</span>
</a>
<a class="select-menu-item js-navigation-item js-navigation-open "
href="/Dash-Industry-Forum/dash.js/tree/1.0.0/LICENSE.md"
data-name="1.0.0"
data-skip-pjax="true"
rel="nofollow">
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"></path></svg>
<span class="select-menu-item-text css-truncate-target" title="1.0.0">
1.0.0
</span>
</a>
<a class="select-menu-item js-navigation-item js-navigation-open "
href="/Dash-Industry-Forum/dash.js/tree/0.2.5/LICENSE.md"
data-name="0.2.5"
data-skip-pjax="true"
rel="nofollow">
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"></path></svg>
<span class="select-menu-item-text css-truncate-target" title="0.2.5">
0.2.5
</span>
</a>
</div>
<div class="select-menu-no-results">Nothing to show</div>
</div>
</div>
</div>
</div>
<div class="btn-group right">
<a href="/Dash-Industry-Forum/dash.js/find/development"
class="js-pjax-capture-input btn btn-sm"
data-pjax
data-hotkey="t">
Find file
</a>
<button aria-label="Copy file path to clipboard" class="js-zeroclipboard btn btn-sm zeroclipboard-button tooltipped tooltipped-s" data-copied-hint="Copied!" type="button">Copy path</button>
</div>
<div class="breadcrumb js-zeroclipboard-target">
<span class="repo-root js-repo-root"><span class="js-path-segment"><a href="/Dash-Industry-Forum/dash.js"><span>dash.js</span></a></span></span><span class="separator">/</span><strong class="final-path">LICENSE.md</strong>
</div>
</div>
<div class="commit-tease">
<span class="right">
<a class="commit-tease-sha" href="/Dash-Industry-Forum/dash.js/commit/e01ae7f9363253c2d29d8d636c92c338bd1c450b" data-pjax>
e01ae7f
</a>
<relative-time datetime="2015-01-20T19:38:53Z">Jan 20, 2015</relative-time>
</span>
<div>
<img alt="@AkamaiDASH" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/7864462?v=3&amp;s=40" width="20" />
<a href="/AkamaiDASH" class="user-mention" rel="contributor">AkamaiDASH</a>
<a href="/Dash-Industry-Forum/dash.js/commit/e01ae7f9363253c2d29d8d636c92c338bd1c450b" class="message" data-pjax="true" title="modified license.md">modified license.md</a>
</div>
<div class="commit-tease-contributors">
<button type="button" class="btn-link muted-link contributors-toggle" data-facebox="#blob_contributors_box">
<strong>1</strong>
contributor
</button>
</div>
<div id="blob_contributors_box" style="display:none">
<h2 class="facebox-header" data-facebox-id="facebox-header">Users who have contributed to this file</h2>
<ul class="facebox-user-list" data-facebox-id="facebox-description">
<li class="facebox-user-list-item">
<img alt="@AkamaiDASH" height="24" src="https://avatars2.githubusercontent.com/u/7864462?v=3&amp;s=48" width="24" />
<a href="/AkamaiDASH">AkamaiDASH</a>
</li>
</ul>
</div>
</div>
<div class="file">
<div class="file-header">
<div class="file-actions">
<div class="btn-group">
<a href="/Dash-Industry-Forum/dash.js/raw/development/LICENSE.md" class="btn btn-sm " id="raw-url">Raw</a>
<a href="/Dash-Industry-Forum/dash.js/blame/development/LICENSE.md" class="btn btn-sm js-update-url-with-hash">Blame</a>
<a href="/Dash-Industry-Forum/dash.js/commits/development/LICENSE.md" class="btn btn-sm " rel="nofollow">History</a>
</div>
<!-- </textarea> --><!-- '"` --><form accept-charset="UTF-8" action="/Dash-Industry-Forum/dash.js/edit/development/LICENSE.md" class="inline-form js-update-url-with-hash" data-form-nonce="e31b8b36558bb93709d07c04a8282c2434e31128" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /><input name="authenticity_token" type="hidden" value="rQy0aX/nhsMc/AQdK4Yc2vaT+cM+NWUCjNBPQkgI/D9N30aZ8bC02XdjhGWmRtcbGYw21KgsASThCoRWvhYdPg==" /></div>
<button class="btn-octicon tooltipped tooltipped-nw" type="submit"
aria-label="Fork this project and edit the file" data-hotkey="e" data-disable-with>
<svg aria-hidden="true" class="octicon octicon-pencil" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path d="M0 12v3h3l8-8-3-3-8 8zm3 2H1v-2h1v1h1v1zm10.3-9.3L12 6 9 3l1.3-1.3a.996.996 0 0 1 1.41 0l1.59 1.59c.39.39.39 1.02 0 1.41z"></path></svg>
</button>
</form> <!-- </textarea> --><!-- '"` --><form accept-charset="UTF-8" action="/Dash-Industry-Forum/dash.js/delete/development/LICENSE.md" class="inline-form" data-form-nonce="e31b8b36558bb93709d07c04a8282c2434e31128" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /><input name="authenticity_token" type="hidden" value="pxfnBgN4PKYQqT0ZX3hy9FUxDAvLC4d4dNerfRk0zPIdAb0beNMQpFuhdlLBqhrdHMSy9IYnQmg02N0MSVigtg==" /></div>
<button class="btn-octicon btn-octicon-danger tooltipped tooltipped-nw" type="submit"
aria-label="Fork this project and delete the file" data-disable-with>
<svg aria-hidden="true" class="octicon octicon-trashcan" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M11 2H9c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1H2c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1v9c0 .55.45 1 1 1h7c.55 0 1-.45 1-1V5c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm-1 12H3V5h1v8h1V5h1v8h1V5h1v8h1V5h1v9zm1-10H2V3h9v1z"></path></svg>
</button>
</form> </div>
<div class="file-info">
14 lines (9 sloc)
<span class="file-info-divider"></span>
1.74 KB
</div>
</div>
<div id="readme" class="readme blob instapaper_body">
<article class="markdown-body entry-content" itemprop="text"><h1><a id="user-content-dashjs-bsd-license-agreement" class="anchor" href="#dashjs-bsd-license-agreement" aria-hidden="true"><svg aria-hidden="true" class="octicon octicon-link" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"></path></svg></a>dash.js BSD License Agreement</h1>
<p>The copyright in this software is being made available under the BSD License, included below. This software may be subject to other third party and contributor rights, including patent rights, and no such rights are granted under this license.</p>
<p><strong>Copyright (c) 2015, Dash Industry Forum.
**All rights reserved.</strong></p>
<ul>
<li>Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:</li>
<li>Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.</li>
<li>Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.</li>
<li>Neither the name of the Dash Industry Forum nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.</li>
</ul>
<p><strong>THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</strong></p>
</article>
</div>
</div>
<button type="button" data-facebox="#jump-to-line" data-facebox-class="linejump" data-hotkey="l" class="hidden">Jump to Line</button>
<div id="jump-to-line" style="display:none">
<!-- </textarea> --><!-- '"` --><form accept-charset="UTF-8" action="" class="js-jump-to-line-form" method="get"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /></div>
<input class="form-control linejump-input js-jump-to-line-field" type="text" placeholder="Jump to line&hellip;" aria-label="Jump to line" autofocus>
<button type="submit" class="btn">Go</button>
</form></div>
</div>
<div class="modal-backdrop js-touch-events"></div>
</div>
</div>
</div>
</div>
<div class="container site-footer-container">
<div class="site-footer" role="contentinfo">
<ul class="site-footer-links right">
<li><a href="https://status.github.com/" data-ga-click="Footer, go to status, text:status">Status</a></li>
<li><a href="https://developer.github.com" data-ga-click="Footer, go to api, text:api">API</a></li>
<li><a href="https://training.github.com" data-ga-click="Footer, go to training, text:training">Training</a></li>
<li><a href="https://shop.github.com" data-ga-click="Footer, go to shop, text:shop">Shop</a></li>
<li><a href="https://github.com/blog" data-ga-click="Footer, go to blog, text:blog">Blog</a></li>
<li><a href="https://github.com/about" data-ga-click="Footer, go to about, text:about">About</a></li>
</ul>
<a href="https://github.com" aria-label="Homepage" class="site-footer-mark" title="GitHub">
<svg aria-hidden="true" class="octicon octicon-mark-github" height="24" version="1.1" viewBox="0 0 16 16" width="24"><path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0 0 16 8c0-4.42-3.58-8-8-8z"></path></svg>
</a>
<ul class="site-footer-links">
<li>&copy; 2016 <span title="0.12132s from github-fe157-cp1-prd.iad.github.net">GitHub</span>, Inc.</li>
<li><a href="https://github.com/site/terms" data-ga-click="Footer, go to terms, text:terms">Terms</a></li>
<li><a href="https://github.com/site/privacy" data-ga-click="Footer, go to privacy, text:privacy">Privacy</a></li>
<li><a href="https://github.com/security" data-ga-click="Footer, go to security, text:security">Security</a></li>
<li><a href="https://github.com/contact" data-ga-click="Footer, go to contact, text:contact">Contact</a></li>
<li><a href="https://help.github.com" data-ga-click="Footer, go to help, text:help">Help</a></li>
</ul>
</div>
</div>
<div id="ajax-error-message" class="ajax-error-message flash flash-error">
<svg aria-hidden="true" class="octicon octicon-alert" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path d="M8.865 1.52c-.18-.31-.51-.5-.87-.5s-.69.19-.87.5L.275 13.5c-.18.31-.18.69 0 1 .19.31.52.5.87.5h13.7c.36 0 .69-.19.86-.5.17-.31.18-.69.01-1L8.865 1.52zM8.995 13h-2v-2h2v2zm0-3h-2V6h2v4z"></path></svg>
<button type="button" class="flash-close js-flash-close js-ajax-error-dismiss" aria-label="Dismiss error">
<svg aria-hidden="true" class="octicon octicon-x" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48z"></path></svg>
</button>
Something went wrong with that request. Please try again.
</div>
<script crossorigin="anonymous" integrity="sha256-FJ2TOMJmUXKHCCXHj6SP3MpNQx0GfL9f2nEg2eOcxzg=" src="https://assets-cdn.github.com/assets/frameworks-149d9338c2665172870825c78fa48fdcca4d431d067cbf5fda7120d9e39cc738.js"></script>
<script async="async" crossorigin="anonymous" integrity="sha256-EJ2vSkBO5DsxbJTLsCXdXDkJkOrMOx2AfsbhFQA5rwI=" src="https://assets-cdn.github.com/assets/github-109daf4a404ee43b316c94cbb025dd5c390990eacc3b1d807ec6e1150039af02.js"></script>
<div class="js-stale-session-flash stale-session-flash flash flash-warn flash-banner hidden">
<svg aria-hidden="true" class="octicon octicon-alert" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path d="M8.865 1.52c-.18-.31-.51-.5-.87-.5s-.69.19-.87.5L.275 13.5c-.18.31-.18.69 0 1 .19.31.52.5.87.5h13.7c.36 0 .69-.19.86-.5.17-.31.18-.69.01-1L8.865 1.52zM8.995 13h-2v-2h2v2zm0-3h-2V6h2v4z"></path></svg>
<span class="signed-in-tab-flash">You signed in with another tab or window. <a href="">Reload</a> to refresh your session.</span>
<span class="signed-out-tab-flash">You signed out in another tab or window. <a href="">Reload</a> to refresh your session.</span>
</div>
<div class="facebox" id="facebox" style="display:none;">
<div class="facebox-popup">
<div class="facebox-content" role="dialog" aria-labelledby="facebox-header" aria-describedby="facebox-description">
</div>
<button type="button" class="facebox-close js-facebox-close" aria-label="Close modal">
<svg aria-hidden="true" class="octicon octicon-x" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48z"></path></svg>
</button>
</div>
</div>
</body>
</html>

File diff suppressed because one or more lines are too long

BIN
embed/players/polytrope.swf Normal file

Binary file not shown.

153
embed/test.html Normal file
View file

@ -0,0 +1,153 @@
<html>
<head>
<title>Embed test</title>
<!--
include script for paid players
- jwplayer
- theoplayer
-->
<!--<script type='text/javascript' src='//cdn.theoplayer.com/latest/41718edc-cc2d-40d0-83d4-67c50c60f68f/theoplayer.loader.js'></script>-->
<!--<script src=players/jwplayer.js></script>
<script>jwplayer.key="2z0zTRsxD2HkL6m/LgDqvtUy2EThVn+gk1gN1Q==";</script>-->
<script>
// global options can be set here
var mistoptions = {
host: 'http://cattop:8080'
};
</script>
<script src=core.js></script>
<script src=wrappers/theoplayer.js></script>
<script src=wrappers/jwplayer.js></script>
<script src=wrappers/html5.js></script>
<script src=wrappers/dashjs.js></script>
<script src=wrappers/flash_strobe.js></script>
<script src=wrappers/silverlight.js></script>
<script src=wrappers/polytrope.js></script>
<script src=players/dash.js></script>
<link rel=stylesheet href=mist.css id=mist_player_css>
<style>
/* the website can override the css at will */
body {
padding: 0;
margin: 0;
max-width: 100vw;
max-height: 100vh;
}
.mistvideo {
margin: 1px;
}
</style>
<script>
function mistinit(){
document.addEventListener('error',function(e){
console.log('[Error] '+e.message,e.target);
},true);
document.addEventListener('log',function(e){
console.log('[log] '+e.message)
var msg = document.createTextNode('['+(new Date()).toTimeString().split(' ')[0]+'] '+e.message);
var div = document.createElement('div');
div.appendChild(msg);
document.body.appendChild(div);
},true);
//tryplayers = Object.keys(mistplayers);
tryplayers = [];
tryplayers.push('html5');
//tryplayers.push('dashjs');
//tryplayers.push('flash_strobe');
//tryplayers.push('silverlight');
for (var i in tryplayers) {
var c = document.createElement('div');
c.className = 'mistvideo';
c.title = tryplayers[i];
document.body.appendChild(c);
//mistPlay('live',{
//mistPlay('vids+mist.mp4',{
//mistPlay('lama',{
mistPlay('bunny',{
target: c,
forcePlayer: tryplayers[i],
loop: true
});
}
};
/*
thumbnailing :')
document.addEventListener('initialized',function(e){
var canvas = document.createElement('canvas');
canvas.width = 180;
document.body.appendChild(canvas);
var context = canvas.getContext('2d');
var embedded;
for (var i in mistvideo) {
embedded = mistvideo[i].embedded[0];
break;
}
var video = embedded.player.element;
var f = video.width / canvas.width;
canvas.height = video.height / f;
video.addEventListener('canplay',function(){
context.drawImage(video,0,0,canvas.width,canvas.height);
var img = canvas.toDataURL('image/jpeg');
document.write('<img src="'+img+'">');
});
});
*/
</script>
</head>
<body onload=mistinit()>
<h1>Sup</h1>
<!--
<div class='mistvideo' id='bunny_84yt98eh9g8ht'>
<noscript>
<video controls autoplay>
<source src='http://localhost:8080/bunny.mp4' type='video/mp4'>
<a href='http://localhost:8080/bunny.html' target='_blank'>
Click here to play video
</a>
</video>
</noscript>
<script>
(function(){
var play = function(){
mistPlay('vids+subtel.mp4',{
//mistPlay('bunny',{
target: document.getElementById('bunny_84yt98eh9g8ht'),
//forcePlayer: 'dashjs'
});
}
if (!window.mistplayers) { //import shit
var p = document.createElement('script');
p.src = 'http://localhost:8080/player.js';
document.head.appendChild(p);
p.onload = function(){
play();
}
}
else {
play();
}
})();
</script>
</div>-->
</body>
</html>

100
embed/wrappers/dashjs.js Normal file
View file

@ -0,0 +1,100 @@
mistplayers.dashjs = {
name: 'Dash.js Player',
mimes: ['dash/video/mp4'],
priority: Object.keys(mistplayers).length + 1,
isMimeSupported: function (mimetype) {
return (this.mimes.indexOf(mimetype) == -1 ? false : true);
},
isBrowserSupported: function (mimetype) {
return (('dashjs' in window) && ('MediaSource' in window) && (location.protocol != 'file:'));
},
player: function(){}
};
var p = mistplayers.dashjs.player;
p.prototype = new MistPlayer();
p.prototype.build = function (options,callback) {
var cont = document.createElement('div');
cont.className = 'mistplayer';
var me = this;
var ele = this.element('video');
ele.className = '';
cont.appendChild(ele);
ele.width = options.width;
ele.height = options.height;
if (options.autoplay) {
ele.setAttribute('autoplay','');
}
if (options.loop) {
ele.setAttribute('loop','');
}
if (options.poster) {
ele.setAttribute('poster',options.poster);
}
if (options.controls) {
if (options.controls == 'stock') {
ele.setAttribute('controls','');
}
else {
this.buildMistControls();
}
}
ele.addEventListener('error',function(e){
var n = {
0: 'NETWORK_EMPTY',
1: 'NETWORK_IDLE',
2: 'NETWORK_LOADING',
3: 'NETWORK_NO_SOURCE'
}
var r = {
0: 'HAVE_NOTHING',
1: 'HAVE_METADATA',
2: 'HAVE_CURRENT_DATA',
3: 'HAVE_FUTURE_DATA',
4: 'HAVE_ENOUGH_DATA'
};
me.adderror("Player event fired: error\nnetworkState: "+n[this.networkState]+"\nreadyState: "+r[this.readyState]);
},true);
var events = ['abort','canplay','canplaythrough','durationchange','emptied','ended','interruptbegin','interruptend','loadeddata','loadedmetadata','loadstart','pause','play','playing','ratechange','seeked','seeking','stalled','volumechange','waiting'];
for (var i in events) {
ele.addEventListener(events[i],function(e){
me.addlog('Player event fired: '+e.type);
},true);
}
var player = dashjs.MediaPlayer().create();
player.getDebug().setLogToBrowserConsole(false);
player.initialize(ele,options.src,true);
this.dash = player;
this.src = options.src;
this.addlog('Built html');
return cont;
}
p.prototype.play = function(){ return this.element.play(); };
p.prototype.pause = function(){ return this.element.pause(); };
p.prototype.volume = function(level){
if (typeof level == 'undefined' ) { return this.element.volume; }
return this.element.volume = level;
};
p.prototype.play = function(){ return this.element.play(); };
p.prototype.load = function(){ return this.element.load(); };
if (document.fullscreenEnabled || document.webkitFullscreenEnabled || document.mozFullScreenEnabled || document.msFullscreenEnabled) {
p.prototype.fullscreen = function(){
if(this.element.requestFullscreen) {
return this.element.requestFullscreen();
} else if(this.element.mozRequestFullScreen) {
return this.element.mozRequestFullScreen();
} else if(this.element.webkitRequestFullscreen) {
return this.element.webkitRequestFullscreen();
} else if(this.element.msRequestFullscreen) {
return this.element.msRequestFullscreen();
}
};
}
p.prototype.resize = function(size){
this.element.width = size.width;
this.element.height = size.height;
};

View file

@ -0,0 +1,62 @@
mistplayers.flash_strobe = {
name: 'Strobe Flash Media Playback',
mimes: ['flash/11','flash/10','flash/7'],
priority: Object.keys(mistplayers).length + 1,
isMimeSupported: function (mimetype) {
return (this.mimes.indexOf(mimetype) == -1 ? false : true);
},
isBrowserSupported: function (mimetype) {
var version = 0;
try {
// check in the mimeTypes
version = navigator.mimeTypes['application/x-shockwave-flash'].enabledPlugin.description.replace(/([^0-9\.])/g, '').split('.')[0];
} catch(e){}
try {
// for our special friend IE
version = new ActiveXObject('ShockwaveFlash.ShockwaveFlash').GetVariable("$version").replace(/([^0-9\,])/g, '').split(',')[0];
} catch(e){}
var mimesplit = mimetype.split('/');
return Number(version) >= Number(mimesplit[mimesplit.length-1]);
},
player: function(){}
};
var p = mistplayers.flash_strobe.player;
p.prototype = new MistPlayer();
p.prototype.build = function (options) {
function createParam(name,value) {
var p = document.createElement('param');
p.setAttribute('name',name);
p.setAttribute('value',value);
return p;
}
var ele = this.element('object');
ele.setAttribute('width',options.width);
ele.setAttribute('height',options.height);
ele.appendChild(createParam('movie',options.source.player_url));
var flashvars = 'src='+encodeURIComponent(options.src)+'&controlBarMode='+(options.controls ? 'floating' : 'none')+'&initialBufferTime=0.5&expandedBufferTime=5&minContinuousPlaybackTime=3'+(options.live ? '&streamType=live' : '')+(options.autoplay ? '&autoPlay=true' : '' );
ele.appendChild(createParam('flashvars',flashvars));
ele.appendChild(createParam('allowFullScreen','true'));
ele.appendChild(createParam('wmode','direct'));
if (options.autoplay) {
ele.appendChild(createParam('autoPlay','true'));
}
var e = document.createElement('embed');
ele.appendChild(e);
e.setAttribute('src',options.source.player_url);
e.setAttribute('type','application/x-shockwave-flash');
e.setAttribute('allowfullscreen','true');
e.setAttribute('width',options.width);
e.setAttribute('height',options.height);
e.setAttribute('flashvars',flashvars);
this.addlog('Built html');
return ele;
}

240
embed/wrappers/html5.js Normal file
View file

@ -0,0 +1,240 @@
mistplayers.html5 = {
name: 'HTML5 video player',
mimes: ['html5/application/vnd.apple.mpegurl','html5/video/mp4','html5/video/ogg','html5/video/webm','html5/audio/mp3','html5/audio/webm','html5/audio/ogg','html5/audio/wav'],
priority: Object.keys(mistplayers).length + 1,
isMimeSupported: function (mimetype) {
return (this.mimes.indexOf(mimetype) == -1 ? false : true);
},
isBrowserSupported: function (mimetype) {
if ((['iPad','iPhone','iPod','MacIntel'].indexOf(navigator.platform) != -1) && (mimetype == 'html5/video/mp4')) { return false; }
var support = false;
var shortmime = mimetype.split('/');
shortmime.shift();
try {
var v = document.createElement((shortmime[0] == 'audio' ? 'audio' : 'video'));
shortmime = shortmime.join('/')
if ((v) && (v.canPlayType(shortmime) != "")) {
support = v.canPlayType(shortmime);
}
} catch(e){}
return support;
},
player: function(){},
mistControls: true
};
var p = mistplayers.html5.player;
p.prototype = new MistPlayer();
p.prototype.build = function (options,callback) {
var cont = document.createElement('div');
cont.className = 'mistplayer';
var me = this; //to allow nested functions to access the player class itself
var shortmime = options.source.type.split('/');
shortmime.shift();
var ele = this.element((shortmime[0] == 'audio' ? 'audio' : 'video'));
ele.className = '';
cont.appendChild(ele);
ele.crossOrigin = 'anonymous';
if (shortmime[0] == 'audio') {
this.setTracks = false;
this.fullscreen = false;
cont.className += ' audio';
}
this.addlog('Building HTML5 player..');
var source = document.createElement('source');
source.setAttribute('src',options.src);
this.source = source;
ele.appendChild(source);
source.type = shortmime.join('/');
this.addlog('Adding '+source.type+' source @ '+options.src);
if ((this.tracks.subtitle.length) && (this.subtitle)) {
for (var i in this.tracks.subtitle) {
var t = document.createElement('track');
ele.appendChild(t);
t.kind = 'subtitles';
t.label = this.tracks.subtitle[i].desc;
t.srclang = this.tracks.subtitle[i].lang;
t.src = this.subtitle+'?track='+this.tracks.subtitle[i].trackid;
}
}
ele.width = options.width;
ele.height = options.height;
ele.style.width = options.width+'px';
ele.style.height = options.height+'px';
ele.startTime = 0;
if (options.autoplay) {
ele.setAttribute('autoplay','');
}
if (options.loop) {
ele.setAttribute('loop','');
}
if (options.poster) {
ele.setAttribute('poster',options.poster);
}
if (options.controls) {
if ((options.controls == 'stock') || (!this.buildMistControls())) {
//MistControls have failed to build in the if condition
ele.setAttribute('controls','');
}
}
cont.onclick = function(){
if (ele.paused) { ele.play(); }
else { ele.pause(); }
};
if (options.live) {
ele.addEventListener('error',function(e){
if ((ele.error) && (ele.error.code == 3)) {
ele.load();
me.addlog('Decoding error: reloading..');
}
},true);
var errorstate = false;
function dced(e) {
if (errorstate) { return; }
errorstate = true;
me.adderror('Connection lost..');
var err = document.createElement('div');
var msgnode = document.createTextNode('Connection lost..');
err.appendChild(msgnode);
err.className = 'error';
var button = document.createElement('button');
var t = document.createTextNode('Reload');
button.appendChild(t);
err.appendChild(button);
button.onclick = function(){
errorstate = false;
ele.parentNode.removeChild(err);
ele.load();
ele.style.opacity = '';
}
err.style.position = 'absolute';
err.style.top = 0;
err.style.width = '100%';
err.style['margin-left'] = 0;
ele.parentNode.appendChild(err);
ele.style.opacity = '0.2';
function nolongerdced(){
ele.removeEventListener('progress',nolongerdced);
errorstate = false;
ele.parentNode.removeChild(err);
ele.style.opacity = '';
}
ele.addEventListener('progress',nolongerdced);
}
//ele.addEventListener('stalled',dced,true);
ele.addEventListener('ended',dced,true);
}
this.addlog('Built html');
//forward events
ele.addEventListener('error',function(e){
me.adderror(e.message);
},true);
var events = ['abort','canplay','canplaythrough','durationchange','emptied','ended','interruptbegin','interruptend','loadeddata','loadedmetadata','loadstart','pause','play','playing','ratechange','seeked','seeking','stalled','volumechange','waiting'];
for (var i in events) {
ele.addEventListener(events[i],function(e){
me.addlog('Player event fired: '+e.type);
},true);
}
return cont;
}
p.prototype.play = function(){ return this.element.play(); };
p.prototype.pause = function(){ return this.element.pause(); };
p.prototype.volume = function(level){
if (typeof level == 'undefined' ) { return this.element.volume; }
return this.element.volume = level;
};
p.prototype.loop = function(bool){
if (typeof bool == 'undefined') {
return this.element.loop;
}
return this.element.loop = bool;
};
p.prototype.load = function(){ return this.element.load(); };
if (document.fullscreenEnabled || document.webkitFullscreenEnabled || document.mozFullScreenEnabled || document.msFullscreenEnabled) {
p.prototype.fullscreen = function(){
if(this.element.requestFullscreen) {
return this.element.requestFullscreen();
} else if(this.element.mozRequestFullScreen) {
return this.element.mozRequestFullScreen();
} else if(this.element.webkitRequestFullscreen) {
return this.element.webkitRequestFullscreen();
} else if(this.element.msRequestFullscreen) {
return this.element.msRequestFullscreen();
}
};
}
p.prototype.setTracks = function(usetracks){
function urlAddParam(url,params) {
var spliturl = url.split('?');
var ret = [spliturl.shift()];
var splitparams = [];
if (spliturl.length) {
splitparams = spliturl[0].split('&');
}
for (var i in params) {
splitparams.push(i+'='+params[i]);
}
if (splitparams.length) { ret.push(splitparams.join('&')); }
return ret.join('?');
}
if ('subtitle' in usetracks) {
//remove previous subtitles
var ts = this.element.getElementsByTagName('track');
for (var i = ts.length - 1; i >= 0; i--) {
this.element.removeChild(ts[i]);
}
var tracks = this.tracks.subtitle;
for (var i in tracks) {
if (tracks[i].trackid == usetracks.subtitle) {
var t = document.createElement('track');
this.element.appendChild(t);
t.kind = 'subtitles';
t.label = tracks[i].desc;
t.srclang = tracks[i].lang;
t.src = this.subtitle+'?track='+tracks[i].trackid;
t.setAttribute('default','');
break;
}
}
delete usetracks.subtitle;
if (Object.keys(usetracks).length == 0) { return true; }
}
var time = this.element.currentTime;
this.source.setAttribute('src',urlAddParam(this.options.src,usetracks));
if (this.element.readyState) {
this.element.load();
}
this.element.currentTime = time;
if ('trackselects' in this) {
for (var i in usetracks) {
if (i in this.trackselects) { this.trackselects[i].value = usetracks[i]; }
}
}
return true;
}
p.prototype.resize = function(size){
this.element.width = size.width;
this.element.height = size.height;
};

View file

@ -0,0 +1,39 @@
mistplayers.jwplayer = {
name: 'JWPlayer',
mimes: ['html5/video/mp4','html5/video/webm','dash/video/mp4','flash/10','flash/7','html5/application/vnd.apple.mpegurl','html5/audio/mp3','html5/audio/aac'],
priority: Object.keys(mistplayers).length + 1,
isMimeSupported: function (mimetype) {
return (this.mimes.indexOf(mimetype) == -1 ? false : true);
},
isBrowserSupported: function (mimetype) {
//TODO like, actually check the browser or something?
if (typeof jwplayer == 'function') {
return true;
}
return false;
},
player: function(){}
};
var p = mistplayers.jwplayer.player;
p.prototype = new MistPlayer();
p.prototype.build = function (options) {
var ele = this.element('div');
this.jw = jwplayer(ele).setup({
file: options.src,
width: options.width,
height: options.height,
autostart: options.autoplay,
image: options.poster,
controls: options.controls
});
this.addlog('Built html');
return ele;
}
p.prototype.play = function(){ return this.jw.play(); };
p.prototype.pause = function(){ return this.jw.pause(); };
p.prototype.volume = function(level){
if (typeof level == 'undefined' ) { return this.jw.getVolume/100; }
return this.jw.setVolume(level*100);
};

100
embed/wrappers/polytrope.js Normal file
View file

@ -0,0 +1,100 @@
mistplayers.polytrope = {
name: 'Polytrope Flash Player',
mimes: ['flash/11','flash/10','flash/7'],
priority: Object.keys(mistplayers).length + 1,
isMimeSupported: function (mimetype) {
return (this.mimes.indexOf(mimetype) == -1 ? false : true);
},
isBrowserSupported: function (mimetype) {
return false;
var version = 0;
try {
// check in the mimeTypes
version = navigator.mimeTypes['application/x-shockwave-flash'].enabledPlugin.description.replace(/([^0-9\.])/g, '').split('.')[0];
} catch(e){}
try {
// for our special friend IE
version = new ActiveXObject('ShockwaveFlash.ShockwaveFlash').GetVariable("$version").replace(/([^0-9\,])/g, '').split(',')[0];
} catch(e){}
var mimesplit = mimetype.split('/');
return Number(version) >= Number(mimesplit[mimesplit.length-1]);
},
player: function(){}
};
var p = mistplayers.polytrope.player;
p.prototype = new MistPlayer();
p.prototype.build = function (options) {
function createParam(name,value) {
var p = document.createElement('param');
p.setAttribute('name',name);
p.setAttribute('value',value);
return p;
}
//TODO its not working.
/*
this.swf = this.video_instance_el.flash({
swf: "/shared/swf/videoplayer.swf?" + (new Date).getTime(),
width: "100%",
height: parseInt(this.options.element.height()),
wmode: "opaque",
menu: "false",
allowFullScreen: "true",
allowFullScreenInteractive: "true",
allowScriptAccess: "always",
id: "cucumbertv-swf-" + this.guid,
expressInstall: "/shared/swf/expressInstall.swf",
flashvars: {
rtmp_url: "rtmp://" + this.options.stream_host + "/play/",
stream_name: this.options.stream_name,
poster: this.options.poster,
autoplay: this.options.autoplay,
color_1: "0x1d1d1d",
color_2: "0xffffff",
buffer_time: .1,
is_streaming_url: "/api/user/is_streaming",
username: this.options.username,
mode: "v" == this.options.type ? "archive" : "live",
guid: this.guid
}
})
<div>
<object data="/shared/swf/videoplayer.swf?1468312898591" type="application/x-shockwave-flash" id="cucumbertv-swf-4dc64c18-59af-91a2-d0c5-ab8df4f45c65" width="100%" height="660">
<param name="wmode" value="opaque">
<param name="menu" value="false">
<param name="allowFullScreen" value="true">
<param name="allowFullScreenInteractive" value="true">
<param name="allowScriptAccess" value="always">
<param name="expressInstall" value="/shared/swf/expressInstall.swf">
<param name="flashvars" value="rtmp_url=rtmp://www.stickystage.com/play/&amp;stream_name=stickystage_archive+SrA-2016.07.08.23.54.08&amp;poster=/stickystage/users/SrA/archive/SrA-2016.07.08.23.54.08.jpg&amp;autoplay=true&amp;color_1=0x1d1d1d&amp;color_2=0xffffff&amp;buffer_time=0.1&amp;is_streaming_url=/api/user/is_streaming&amp;username=SrA&amp;mode=archive&amp;guid=4dc64c18-59af-91a2-d0c5-ab8df4f45c65">
<param name="movie" value="/shared/swf/videoplayer.swf?1468312898591">
</object>
</div>
*/
var ele = this.element('object');
ele.data = 'players/polytrope.swf';
ele.type = 'application/x-shockwave-flash';
ele.width = options.width;
ele.height = options.height;
/*
ele.appendChild(createParam('allowFullScreen','true'));
ele.appendChild(createParam('allowScriptAccess','always'));
var flashvars = 'rtmp_url=rtmp://www.stickystage.com/play/&amp;stream_name=stickystage_archive+SrA-2016.07.08.23.54.08&amp;poster=/stickystage/users/SrA/archive/SrA-2016.07.08.23.54.08.jpg&amp;autoplay=true&amp;color_1=0x1d1d1d&amp;color_2=0xffffff&amp;buffer_time=0.1&amp;is_streaming_url=/api/user/is_streaming&amp;username=SrA&amp;mode=archive&amp;guid=4dc64c18-59af-91a2-d0c5-ab8df4f45c65';
ele.appendChild(createParam('flashvars',flashvars));
ele.appendChild(createParam('movie','players/polytrope.swf'));
*/
ele.innerHTML = '<param name="wmode" value="opaque"> <param name="menu" value="false"> <param name="allowFullScreen" value="true"> <param name="allowFullScreenInteractive" value="true"> <param name="allowScriptAccess" value="always"> <param name="expressInstall" value="/shared/swf/expressInstall.swf"> <param name="flashvars" value="rtmp_url=rtmp://www.stickystage.com/play/&amp;stream_name=stickystage_archive+SrA-2016.07.08.23.54.08&amp;poster=http://stickystage.com/stickystage/users/SrA/archive/SrA-2016.07.08.23.54.08.jpg&amp;autoplay=true&amp;color_1=0x1d1d1d&amp;color_2=0xffffff&amp;buffer_time=0.1&amp;is_streaming_url=/api/user/is_streaming&amp;username=SrA&amp;mode=archive&amp;guid=4dc64c18-59af-91a2-d0c5-ab8df4f45c65"> <param name="movie" value="players/polytrope.swf">';
this.addlog('Built html');
return ele;
}

View file

@ -0,0 +1,55 @@
mistplayers.silverlight = {
name: 'Silverlight',
mimes: ['silverlight'],
priority: Object.keys(mistplayers).length + 1,
isMimeSupported: function (mimetype) {
return (this.mimes.indexOf(mimetype) == -1 ? false : true);
},
isBrowserSupported: function (mimetype) {
var plugin;
try {
// check in the mimeTypes
plugin = navigator.plugins["Silverlight Plug-In"];
return !!plugin;
} catch(e){}
try {
// for our special friend IE
plugin = new ActiveXObject('AgControl.AgControl');
return true;
} catch(e){}
return false;
},
player: function(){}
};
var p = mistplayers.silverlight.player;
p.prototype = new MistPlayer();
p.prototype.build = function (options) {
function createParam(name,value) {
var p = document.createElement('param');
p.setAttribute('name',name);
p.setAttribute('value',value);
return p;
}
var ele = this.element('object');
ele.setAttribute('data','data:application/x-silverlight,');
ele.setAttribute('type','application/x-silverlight');
ele.setAttribute('width',options.width);
ele.setAttribute('height',options.height);
ele.appendChild(createParam('source',encodeURI(options.src)+'/player.xap'));
ele.appendChild(createParam('initparams','autoload=false,'+(options.autoplay ? 'autoplay=true' : 'autoplay=false')+',displaytimecode=false,enablecaptions=true,joinLive=true,muted=false'));
var a = document.createElement('a');
ele.appendChild(a);
a.setAttribute('href','http://go.microsoft.com/fwlink/?LinkID=124807');
a.setAttribute('style','text-decoration: none;');
var img = document.createElement('img');
a.appendChild(img);
img.setAttribute('src','http://go.microsoft.com/fwlink/?LinkId=108181');
img.setAttribute('alt','Get Microsoft Silverlight');
img.setAttribute('style','border-style: none;')
this.addlog('Built html');
return ele;
}

View file

@ -0,0 +1,23 @@
mistplayers.myplayer = {
name: 'My video player',
mimes: ['my/mime/types'],
priority: Object.keys(mistplayers).length + 1,
isMimeSupported: function (mimetype) {
return (this.mimes.indexOf(mimetype) == -1 ? false : true);
},
isBrowserSupported: function (mimetype) {
//TODO your code here
return false;
},
player: function(){}
};
var p = mistplayers.myplayer.player;
p.prototype = new MistPlayer();
p.prototype.build = function (options) {
var ele = this.element('object');
//TODO your code here
this.addlog('Built html');
return ele;
}

View file

@ -0,0 +1,52 @@
mistplayers.theoplayer = {
name: 'TheoPlayer',
mimes: ['html5/application/vnd.apple.mpegurl','dash/video/mp4'],
priority: Object.keys(mistplayers).length + 1,
isMimeSupported: function (mimetype) {
return (this.mimes.indexOf(mimetype) == -1 ? false : true);
},
isBrowserSupported: function (mimetype) {
//TODO like, actually check the browser or something?
if (typeof theoplayer == 'function') {
return true;
}
return false;
},
player: function(){}
};
var p = mistplayers.theoplayer.player;
p.prototype = new MistPlayer();
p.prototype.build = function (options) {
var ele = this.element('video');
ele.src = options.src;
ele.width = options.width;
ele.height = options.height;
if (options.controls) {
ele.setAttribute('controls','');
}
if (options.autoplay) {
ele.setAttribute('autoplay','');
}
if (options.loop) {
ele.setAttribute('loop','');
}
if (options.poster) {
ele.setAttribute('poster',options.poster);
}
this.theoplayer = theoplayer(ele);
this.addlog('Built html');
return ele;
}
p.prototype.play = function(){ return this.theoplayer.play(); };
p.prototype.pause = function(){ return this.theoplayer.pause(); };
p.prototype.volume = function(level){
if (typeof level == 'undefined' ) { return this.theoplayer.volume; }
return this.theoplayer.volume = level;
};
p.prototype.fullscreen = function(){
return this.theoplayer.requestFullscreen();
};