Varia's website https://varia.zone
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
2.9 KiB

title: stream
category: meta
slug: stream
lang: en
date: 2017-04-09
<span class="stream">
<audio id="player" preload="none" src="http://w-i-t-m.net:8001/meander"> </audio><br>
Press play (best listened in FireFox). It might take a minute to load.
<div>
<button class="stream-button" onclick="document.getElementById('player').play()">Play</button>
<button class="stream-button" onclick="document.getElementById('player').pause();document.getElementById('player').src=document.getElementById('player').src;">Stop</button>
<button class="stream-button" onclick="document.getElementById('player').volume += 0.1">Vol +</button>
<button class="stream-button" onclick="document.getElementById('player').volume -= 0.1">Vol -</button>
</div>
</span>
<iframe id="irc-chat" src="https://webchat.freenode.net/?#varia" style="border:0;width:100%;height:400;"></iframe>
<h2> Archive of streams</h2>
<ul>
<li><a href="https://varia.zone/en/corporeal-whispers.html">RE#SISTER: Corporeal Whispers - Stream</a></li>
<li><a href="https://varia.zone/en/Groeten_Charlois.html">Niek Hilkmann - Groeten uit Charlois (Stream) </a><br>
</li>
<li><a href="https://varia.zone/en/we-hope-this-email.html">We hope this email finds you well - a radio drama series </a><br>
<audio
controls
src="https://vvvvvvaria.org/archive/2020-04-18-we-hope-this-email-finds-you-well/we-hope-this-email-finds-you-well.wav">
Your browser does not support the
<code>audio</code> element.
</audio></li>
<li><a href="https://varia.zone/en/radio-on-radio.html">Radio on the radio - Online Stream </a><br>
</li>
</ul>
<script>
(function(){
function waitForIt(selector, time) {
if(document.querySelector(selector)!=null) {
var chat_title = document.getElementsByClassName("chatbox-title__text")[0];
var element = document.createElement("span");
element.innerHTML = '<audio id="player" preload="none" src="http://w-i-t-m.net:8001/radiodrama"></audio><div><button onclick="document.getElementById(\'player\').play()">Play</button><button onclick="document.getElementById(\'player\').pause();document.getElementById(\'player\').src=document.getElementById(\'player\').src;">Stop</button><button onclick="document.getElementById(\'player\').volume += 0.1">Vol +</button><button onclick="document.getElementById(\'player\').volume -= 0.1">Vol -</button></div>';
chat_title.insertAdjacentElement('afterend', element);
return;
}
else {
setTimeout(function() {
waitForIt(selector, time);
}, time);
}
}
waitForIt(".toggle-smiley", 1000);
})();
$(function() {
console.log("PARENT READY");
$("iframe").on("load", function(){
console.log("LOADED");
$(this).contents().find('.kiwi-startup-common').hide();
});
});
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>