Compare commits

..

No commits in common. "6a284b89a984972f834e713c3a9ce025e44cda1e" and "3c5e90d83effa2b0cb62b5213f419dff51c8b7ba" have entirely different histories.

2 changed files with 2 additions and 23 deletions

View File

@ -140,7 +140,7 @@
text = text + k + ":" + (Math.floor(100 * Statistics[k].sum / Statistics[k].count) / 100) + ","
}
stats.innerText = text*/
stats.innerHTML = (VideoQueue.length ? (VideoQueue[VideoQueue.length - 1].t - VideoQueue[0].t) : "0") + "v" + (AudioQueue.reduce(function(acc, obj) {return acc + obj.left.length * 1000 / AudHz}, 0)|0) + "a"
stats.innerHTML = (VideoQueue.length ? (VideoQueue[VideoQueue.length - 1].t - VideoQueue[0].t) : "0") + "v" + (AudioQueue.reduce(function(acc, obj) {return acc + obj.left.length * AudHz / 1000}, 0)|0) + "a"
}
}

View File

@ -71,26 +71,6 @@
display: block;
line-height: initial;
}
@media(max-aspect-ratio: 1) {
div.everything {
top: 0;
left: 0;
transform: translate(0, 0);
}
div.stream {
flex-direction: column;
}
div.stream > div.chat {
min-height: 20vh;
}
converse-root {
position: absolute !important;
width: 100%;
height: 100%;
display: inline-block;
}
}
</style>
<link rel="stylesheet" type="text/css" media="screen" href="https://cdn.conversejs.org/10.1.4/dist/converse.min.css">
<meta charset="UTF-8" />
@ -134,8 +114,7 @@
singleton: true,
discover_connection_methods: false,
keepalive: false,
auto_reconnect: true,
hide_muc_participants: true
auto_reconnect: true
})
</script>
</body>