---
title: "Radio"
canonical: "https://www.omroepbergendal.nl/page/liveradio/"
format: markdown
---
# 📻 Live radio

Jouw browser ondersteunt geen HTML5 audio.

const isMobile = /iPhone|iPad|iPod|Android/i.test(navigator.userAgent); const streamUrl = "https://onlineradio.omroepbergendal.nl:5679/stream"; if (isMobile) { const mobileDiv = document.getElementById('mobilePlayer'); mobileDiv.style.display = 'flex'; mobileDiv.style.maxWidth = '500px'; mobileDiv.style.margin = '20px auto'; mobileDiv.style.padding = '16px'; mobileDiv.style.borderRadius = '12px'; mobileDiv.style.background = '#fff'; mobileDiv.style.boxShadow = '0 4px 12px rgba(0,0,0,0.1)'; mobileDiv.style.alignItems = 'center'; mobileDiv.style.gap = '12px'; // Mobiele player content mobileDiv.innerHTML = \` <img src="https://omroepbergendal.atlassian.net/wiki/download/attachments/59801708/logo-bnd.png" alt="Omroep Berg en Dal" style="width:50px; height:50px; border-radius:10px; object-fit:contain;"> <div style="flex:1;"> <div style="font-weight:600; font-size:16px; color:#222;">Omroep Berg en Dal – Live</div> <div id="status" style="font-size:13px; color:#666; margin-top:2px;">Klaar om af te spelen</div> </div> <button id="playBtn" style="width:50px; height:50px; border-radius:50%; border:none; background:#e63946; color:#fff; font-size:20px; cursor:pointer;">▶</button> <audio id="mobileAudio" preload="none" style="display:none;"></audio> \`; // Functionaliteit const audio = document.getElementById('mobileAudio'); const playBtn = document.getElementById('playBtn'); const status = document.getElementById('status'); let playing = false; playBtn.addEventListener('click', async () => { try { if (!playing) { audio.src = streamUrl + "?nocache=" + Date.now(); await audio.play(); playing = true; playBtn.textContent = '⏸'; status.textContent = 'Live'; } else { audio.pause(); playing = false; playBtn.textContent = '▶'; status.textContent = 'Gepauzeerd'; } } catch (err) { console.error(err); status.textContent = 'Kan niet afspelen'; } }); } else { // Desktop: toon native audio player document.getElementById('desktopAudio').style.display = 'block'; }

[📻 Uitzending Gemist](https://www.omroepbergendal.nl/page/radio-gemist) [📅 Radio Gids](https://www.omroepbergendal.nl/page/radiogids)
