Peter Manuel, a cattle farmer from Strathalbyn, Australia, as he sheds light on the hidden truth about Australia’s energy crisis with Jeremy Cordeaux LIVE.
We explore two services that will help you manage your small acreage farm or property more efficiently and effectively; cow and sheep scanning, and integrating
Welcome to this month’s Adelaide Hills Farmcast or should I say Adelaide Hills and Fleurieu Farmcast! In this episode of the Adelaide Hills and Fleurieu
A monthly farming podcast featuring Patrick O’Driscoll (Pods) and Belle Baker sharing a short list of timely jobs that lifestyle farmers could consider each month
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');
});
});