Month: January 2022

Book A Studio

Auscast Studios (Adelaide) We are a podcast & recording studio located in the heart of the Adelaide CBD in the prestigious Epworth Building in Pirie Street. Our

Read More »

Auscast Business Extra

Welcome to the Auscast Business channel – your go-to destination for all things business-related. Our podcast channel features a variety of topics, including marketing, brand

Read More »

Auscast Comedy

Welcome to Auscast comedy channel! If you’re a fan of stand-up comedy, then you’ll love what we have to offer. Our channel features a variety

Read More »

Auscast Business

Welcome to the Auscast Business channel, your go-to source for all things business! Our podcast channel features a variety of business-related topics, including marketing, brand

Read More »
gif video of different types of people listening
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'); }); });