- stop active pushes button update,
- also work with .exe on cygwin,
- new graph fix
- required settings at edit protocols are required fix
This commit is contained in:
Cat 2016-11-16 11:27:05 +01:00 committed by Thulinma
parent 59d5ee2cba
commit 8ba26b11e9
7 changed files with 64 additions and 678 deletions

View file

@ -28,6 +28,8 @@
<script src=wrappers/silverlight.js></script>
<script src=wrappers/polytrope.js></script>
<script src=http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js>
<script src=players/dash.js></script>
<link rel=stylesheet href=mist.css id=mist_player_css>
@ -65,27 +67,29 @@
//tryplayers = Object.keys(mistplayers);
tryplayers = [];
tryplayers.push('html5');
//tryplayers.push('html5');
//tryplayers.push('dashjs');
//tryplayers.push('flash_strobe');
tryplayers.push('flash_strobe');
//tryplayers.push('silverlight');
streams = ['live'];
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
});
for (var j in streams) {
for (var i in tryplayers) {
var c = document.createElement('div');
c.className = 'mistvideo';
c.title = tryplayers[i];
document.body.appendChild(c);
mistPlay(streams[j],{
//mistPlay('vids+mist.mp4',{
//mistPlay('lama',{
//mistPlay('bunny',{
target: c,
forcePlayer: tryplayers[i],
loop: true
});
}
}
};
/*