Jim Elder provides listeners with a masterclass in the art of auctioneering. Describing auctioneering as both an art and a science, Jim explains the delicate
Rebel Penfold Russell takes listeners behind the scenes of Priscilla Queen of the Desert. From early planning to overcoming numerous production challenges.
Jim Elder shines a light on the enduring popularity of iconic Australian artist Pro Hart. Known for his distinctive style and unique artistic vision, Hart’s
Isabella Taylor hosts Ben Baker recounting his odyssey from an Australian high school to the pinnacle of global photography, capturing the essence of the most
Andrew chats with director Ingvar Kenne about his haunting film The Land, which screened in 2022 at the Sydney Underground Film Festival and Europe’s Snowdance
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');
});
});