Livestream

Watch our services live on YouTube, most Sundays at 10:00 am (unless we happen to be holding our service outside!).

Click on the play button ( ) below, or here to open our YouTube livestream.
View live and past streams are also available on YouTube via https://www.youtube.com/@ToltUCC/

const iframe = document.getElementById(‘youtube-iframe’); const streamStatusUrl = ‘https://www.googleapis.com/youtube/v3/liveStreamingDetails’; fetch(streamStatusUrl) .then(response => response.json()) .then(data => { if (data.items[0].liveStreamingDetails.liveBroadcastContent === ‘live’) { iframe.src = ‘https://www.youtube.com/embed/UC4JuVtrB5px6ECvnIpztx8w/live’; } else { iframe.src = ”; document.getElementById(‘fallback-message’).style.display = ‘block’; } });