LISTEN LIVE

If you have ears, then we have music! All of our music in our LISTEN LIVE section is live! Maybe it is recorded, but it was recorded live! Some of it may have been recorded live at different times and then pieced together later.

Everything here is kind of LIVE! If it isn’t live, then how can you tell? It was live at SOME time.

This year has been hard. Bills have been piling up. The car needs to be fixed. We have moved a couple of times. We had that pandemic thing. Give us a break will ya’? We will put live content up when it is ready. Until then, keep listening to everything else we have put up.

“If You Were Here Tonight (Live) 2021” Live at the Palladium Alexander O'Neal
Audio Player
Copyright © 2025 Masters Radio
document.addEventListener('DOMContentLoaded', function () { var shuffleBtn = document.getElementById('shuffle-playlist'); if (!shuffleBtn) return; shuffleBtn.addEventListener('click', function () { // Find the playlist container var playlist = document.querySelector('.wp-playlist-tracks'); if (!playlist) { alert('Playlist not found. Please check the selector.'); return; } // Get all tracks as an array var tracks = Array.from(playlist.querySelectorAll('.wp-playlist-item')); // Fisher-Yates shuffle for (let i = tracks.length - 1; i > 0; i--) { const j = Math.floor(Math.random() * (i + 1)); [tracks[i], tracks[j]] = [tracks[j], tracks[i]]; } // Remove all tracks and re-append in shuffled order tracks.forEach(track => playlist.appendChild(track)); // Optionally, play the first song after shuffling: // Try simulating a click on the first song's link setTimeout(function () { var firstTrack = playlist.querySelector('.wp-playlist-item a.wp-playlist-caption'); if (firstTrack) firstTrack.click(); }, 300); }); });