In a world increasingly disconnected from nature, The Tree Collectors by Amy Stewart offers a powerful reminder of the importance of our natural environment.
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
The Maker & The Drinker is a journey of people and wine. John Retsas, The Maker from award winning South Australian First Drop Wines and Jarrod Walsh, The
Welcome to The Writers Read podcast – getting THAT book in children’s hands. Tracey Grice features established authors who talk about their reading life. Each
Award winning Melbourne author Hannah Kent talks about her new book Devotion – a love story that traverses oceans, reality and magic. And we revisit the Virginia Woolfe classic, Mrs Dalloway,
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');
});
});