Penn’s remix of “Finally Ready” by The Shapeshifters on Defected Records further exemplifies his ability to reimagine and breathe new life into dancefloor favorites.
Hailing from the vibrant musical landscape of Italy, NiCe7 is a formidable DJ/producer partnership consisting of Nicola Daniele and Cesare Marocco feature on Soulgood episode
Known for his innovative bootleg remixes that ignited the dance music scene, Chris Lake has continuously pushed the boundaries of electronic music throughout his career.
jQuery(document).ready(function($) {
var playerContainer = $('#auscast-player-container');
var player = $('#auscast-player');
// Show player and store session
$('#play-auscast').click(function() {
playerContainer.slideDown();
sessionStorage.setItem('auscastPlaying', 'true');
sessionStorage.setItem('auscastSrc', player.attr('src'));
});
// Keep the player open and playing across page reloads
if (sessionStorage.getItem('auscastPlaying') === 'true') {
playerContainer.show();
player.attr('src', sessionStorage.getItem('auscastSrc'));
}
// Close player
$('#close-auscast-player').click(function() {
playerContainer.slideUp();
sessionStorage.removeItem('auscastPlaying');
sessionStorage.removeItem('auscastSrc');
player.attr('src', ''); // Stop playback
});
// Stop stream when another audio plays
$('audio, video').on('play', function() {
player.attr('src', '');
sessionStorage.removeItem('auscastPlaying');
sessionStorage.removeItem('auscastSrc');
});
});