xxxxxxxxxx
16
let ele;
function setup() {
createCanvas(400, 400);
// NTS radio:
// https://stream-relay-geo.ntslive.net/stream
// https://stream-mixtape-geo.ntslive.net/mixtape22
// https://stream-relay-geo.ntslive.net/stream2
// BBC radio:
ele = createAudio('https://bbcradiorelay.net:8443/radio_one/8');
ele.autoplay(true);
}
function draw() {
background(220);
}