Denis Walter’s shares his love for vintage automobiles, including his prized 1984 John Player Special and an old XJ6 Jaguar. Classic cars, the perfect chat
Is Australia losing its identity? On The Court of Public Opinion, radio veterans Paul Makin, Leon Byner, and Jeremy Cordeaux tackle this hot-button issue.
Jeremy Cordeaux hosts the legendary broadcaster Leon Byner for a deep dive into a myriad of topics that span health, broadcasting, and the fascinating world
George Donikian, chats to Jeremy Cordeaux about his latest venture, Disrupt Radio, which was launched with the intention of challenging conventional radio formats.
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');
});
});