Auscast Medical

Auscast Medical Channel is a podcast network that provides a wide range of medical-related content.

The podcasts feature interviews with experts in various medical fields, including doctors, nurses, and other healthcare professionals, as well as discussions on the latest medical research and treatment options. The channel covers a wide range of topics, including general health, mental health, and specific medical conditions. The podcasts are aimed at both healthcare professionals and the general public, and provide listeners with the latest information and insights on healthcare topics. Auscast Medical Channel is a great resource for staying informed about medical issues and trends, and for learning more about how to care for yourself and your loved ones.

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'); }); });