'+pages+'');
$('.stream > div:odd').addClass('bgr_color');
updateHeight('#history');
});
window.activateTabArea = ensure(function(tab, areas){
var parsed = false;
var parts = (areas || '').split('/');
window.fsonload = $.inArray('fs', parts) >= 0;
if(fsonload){
parts.splice(parts.indexOf('fs'), 1);
}
var replayMode = false;
if($.inArray('replay', parts)>=0){
replayMode = 'replay';
}
var noSoundMode = false;
if($.inArray('nosound', parts)>=0){
noSoundMode = 'nosound';
}
if($.inArray('ns', parts)>=0){
noSoundMode = 'ns';
}
var previewMode = null;
if($.inArray('p', parts)>=0){
previewMode = 'p';
}
if($.inArray('preview', parts)>=0){
previewMode = 'preview';
}
if($.inArray('repeat', parts)>=0){
replayMode = 'repeat';
}
if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){
replayMode = 'r';
}
if(replayMode){
parts.splice(parts.indexOf(replayMode), 1);
}
if(noSoundMode){
parts.splice(parts.indexOf(noSoundMode), 1);
}
if(previewMode){
parts.splice(parts.indexOf(previewMode), 1);
}
if(previewMode){
if(!parts.length){
parts = ['1-14', '999:59'];
}
}
var area = parts[0];
if(tab == 'history' && false){
var page = parseInt(area || '1') || 1;
$.ajax({
url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1),
dataType: 'jsonp',
success: function(response){
$ensure(function(){
renderHistory(response, page);
});
}
});
return true;
}
if(tab == 'global_history' && false){
var page = parseInt(area || '1') || 1;
globalHistory.fetchStream(page, '', function(){
updateHeight('#global_history');
});
return true;
}
if(tab == 'my_playlists' && false){
var page = parseInt(area || '1') || 1;
myPlaylists.fetchStream(page, '', function(){
updateHeight('#my_playlists');
});
return true;
}
if(tab == 'my_videos' && false){
var page = parseInt(area || '1') || 1;
myVideos.fetchStream(page, '', function(){
updateHeight('#my_videos');
});
return true;
}
if(tab == 'related_sites' && areas && matchPosition(areas)){
var seconds = parsePosition(areas);
scrollRelated(seconds);
return false;
}
if(matchPosition(area) || matchAction(area)){
parts.unshift('1');
area = parts[0];
}
if(tab == 'expand' && area && area.match(/\d+/)) {
var num = parseInt(area);
if(num < 100){
//FIX ME. Load news page with ajax here
}
else if(num > 1900){
//FIX ME. Load timeline page with ajax here
}
}
else if(tab.match(/^playlist\d+$/)){
var playerId = parseInt(tab.substring(8));
var vp = videoplayers[playerId];
window.descriptionsholder = $('.descriptionsplace');
if(!vp) return; // why? no player?
if(replayMode){
$('.replaycurrent'+playerId).attr('checked', true);
vp.setReplayCurrent(true);
}
var playQueue = [];
window.playQueue = playQueue;
var playQueuePosition = 0;
var playShouldStart = null;
var playShouldStop = null;
var parseList = function(x){
var items = x.split(/;|,/g);
var results = [];
for (i in items){
try{
var action = parseAction(vp, items[i]);
if(!action.video){
if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]);
}else{
results.push(action);
}
}catch(e){
if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]);
}
}
return results;
};
var scrollToPlaylistPosition = function(vp){
var ppos = vp.getPlaylistPosition();
var el = vp.playlistContainer.find('>li').eq(ppos);
var par = el.closest('.playlist_scrollarea');
par.scrollTop(el.offset().top-par.height()/2);
}
var updateVolumeState = function(){
if(noSoundMode){
if(noSoundMode == 'turn-on'){
clog("Sound is on, vsid="+vp.vsid);
vp.setVolumeUnMute();
noSoundMode = false;
}else{
clog("Sound is off, vsid="+vp.vsid);
vp.setVolumeMute();
noSoundMode = 'turn-on';
}
}
}
var playQueueUpdate = function(){
var playPosition = playQueue[playQueuePosition];
vp.playFromPlaylist(playPosition.video);
scrollToPlaylistPosition(vp);
playShouldStart = playPosition.start;
playShouldStop = playPosition.stop;
};
var playQueueAdvancePosition = function(){
clog("Advancing play position...");
playQueuePosition ++;
while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){
playQueuePosition ++;
}
if(playQueuePosition < playQueue.length){
playQueueUpdate();
}else if(vp.getReplayCurrent()){
playQueuePosition = 0;
playQueueUpdate();
vp.seekTo(playShouldStart);
vp.playVideo();
}else{
vp.pauseVideo();
playShouldStop = null;
playShouldStart = null;
}
};
function loadMoreVideos(playerId, vp, start, finish, callback){
var playlistInfo = playlists[playerId-1];
if(playlistInfo.loading >= finish) return;
playlistInfo.loading = finish;
$.ajax({
url: '/api/upge/cheetah-photo-search/query_videos2',
dataType: 'json',
data: {
query: playlistInfo.query,
orderby: playlistInfo.orderby,
start: start,
count: finish-start
},
success: function(response){
var pl = vp.getPlaylist().slice(0);
pl.push.apply(pl, response);
vp.setPlaylist(pl);
callback();
}
});
}
if(parts.length == 1 && matchDash(parts[0])){
var pl = vp.getActualPlaylist();
var vids = parseDash(parts[0]);
parts = [];
for(var i = 0; i < vids.length; i++){
playQueue.push({
'video': pl[vids[i]-1],
'start': 0,
'stop': null
})
}
if(vids.length){
if(vids[vids.length-1]-1>=pl.length){
loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){
if(fsonload){
activateTabArea(tab, parts[0]+'/fs');
}else{
activateTabArea(tab, parts[0]);
}
var pls = vp.getPlaylist();
vp.playFromPlaylist(pls[pls.length-1]);
vp.playVideo();
scrollToPlaylistPosition(vp);
});
return true;
}
}
if(playQueue){
playQueueUpdate();
vp.playVideo();
parsed = true;
playShouldStart = 0;
}
}
if(previewMode){
var vids = [];
var dur = 0;
var pl = vp.getActualPlaylist();
area = parts[0];
if(parts.length == 1 && matchPosition(parts[0])){
vids = parseDash('1-'+pl.length);
dur = parsePosition(parts[0]);
parts = [];
}else
if(parts.length == 1 && matchDash(parts[0])){
vids = parseDash(parts[0]);
dur = parsePosition("999:59");
parts = [];
}
if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){
vids = parseDash(parts[0]);
dur = parsePosition(parts[1]);
parts = [];
}
for(var i = 0; i < vids.length; i++){
playQueue.push({
'video': pl[vids[i]-1],
'start': 0,
'stop': dur
})
}
if(playQueue){
playQueueUpdate();
vp.playVideo();
parsed = true;
}
}
if(parts.length>1){
for(var i = 0; i < parts.length; i++){
var sel = findMatchingVideo(vp, parts[i]);
if(sel){
playQueue.push({
'video': sel,
'start': 0,
'stop': null
})
}
}
if(playQueue){
playQueueUpdate();
vp.playVideo();
parsed = true;
}
}else if(area){
var sel = findMatchingVideo(vp, area);
if(sel){
vp.playFromPlaylist(sel);
playShouldStart = 0;
parsed = true;
}
}
if(fsonload || replayMode){
playShouldStart = 0;
}
if(document.location.search.match('at=|queue=')){
var opts = document.location.search.replace(/^\?/,'').split(/&/g);
for(var o in opts){
if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){
playShouldStart = parsePosition(opts[o].substr(3))
}
if(opts[o].match(/^queue=/)){
playQueue = parseList(opts[o].substr(6));
if(playQueue){
playQueuePosition = 0;
playQueueUpdate();
}
}
}
}
if(matchPosition(parts[1])){
playShouldStart = parsePosition(parts[1]);
parsed = true;
}
if(matchAction(parts[1])){
var action = parseAction(vp, area+'/'+parts[1]);
playShouldStart = action.start;
playShouldStop = action.stop;
parsed = true;
}
if(playShouldStart !== null && !playQueue.length){
playQueue.push({
video: vp.getCurrentVideo(),
start: playShouldStart,
stop: playShouldStop
});
}
if(playShouldStart != null){
setInterval(function(){
if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){
playShouldStop = null;
if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){
playQueueAdvancePosition();
}else{
playShouldStart = null;
}
}
}, 500);
vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){
if(state == 'ended'){ // advance to the next video
playQueueAdvancePosition();
}
});
vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){
if(state){
updateVolumeState();
if(playShouldStart !== null){
vp.seekTo(playShouldStart);
playShouldStart = null;
}else{
playShouldStop = null; // someone started other video, stop playing from playQueue
}
}
if(fsonload) {
triggerFullscreen(playerId); fsonload = false;
}
});
}
}
else if(tab.match(/^wiki\d+$/)){
if(firstTimeActivate){
load_wiki($('#'+tab), function(){
if(area){
var areaNode = $('#'+area);
if(areaNode.length>0){
$('html, body').scrollTop(areaNode.offset().top + 10);
return true;
}
}
});
}
}
return parsed;
})
window.activateTab = ensure(function(tab, area){
window.activeArea = null;
if(tab == 'import_videos'){
if(area){
import_videos(area);
}else{
start_import();
}
return true;
}
if(tab == 'chat'){
update_chat_position($('.chat').eq(0));
window.activeArea = 'chat';
jQuery('.tabtrigger').offscreentabs('activateTab', 'chat');
return true;
}
if(tab in rev_names){
tab = rev_names[tab];
}
if(tab.match(':')){ return false; }
var sup = $('ul li a[id=#'+tab+']');
if(sup && sup.length>0){
window.activeArea = area;
sup.first().click();
if(!window.activateTabArea(tab, area)){
window.activeArea = null;
}
window.activeArea = null;
return true;
}else{
var have_tabs = $('#playlist_menu li').length;
if(tab.match(/^playlists?\d+$/)){
var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs;
if(to_add>0 && have_tabs){
add_more_videos(to_add);
return true;
}
}
}
return false;
});
window.currentPath = ensure(function(){
return window.lastHistory.replace(basepath, '').split('?')[0];
});
window.main_tab = window.main_tab || 'videos';
window.addHistory = ensure(function(path){
if(window.console && console.log) console.log("Adding to history: "+path);
if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){
if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') {
path = basepath;
} else if( path.match('^'+main_tab+'/') ){
path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/');
} else {
path = basepath + '/' + path.replace('--','/');
}
if(document.location.search){
path += document.location.search;
}
if(window.lastHistory) {
history.pushState(null, null, path);
}
else if(window.lastHistory != path){
history.replaceState(null, null, path);
window.lastHistory = path;
}
}
else{
path = path.replace('--','/');
if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') {
path = '';
}
if(window.lastHistory != '/'+path){
window.location.hash = path? '/'+path : '';
window.lastHistory = '/'+path;
}
}
});
$('.tabtrigger li a').live('click', ensure(function() {
var tab = $(this).attr('id');
if(tab.substring(0,1) == '#'){
var name = tab.substring(1);
if(name in menu_names){
name = menu_names[name][0];
}
realTab = rev_names[name];
$('#'+realTab).show();
if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:''));
var path = name;
if(window.activeArea){
path = path + '/' + window.activeArea;
}
if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){
$('.multiple-playlists').show();
$('.related_playlist').show();
$('.longest_videos_playlist').show();
}else {
$('.multiple-playlists').hide();
$('.related_playlist').hide();
$('.longest_videos_playlist').hide();
}
// start the related script only when the tab is on screen showing
if (tab.match(/related_sites/)) {
if (mc) {
mc.startCredits();
}
}
window.activeTab = realTab;
addHistory(path);
setTimeout(ensure(function(){
if(tab.match(/language--/)){
$('.tabtrigger').offscreentabs('activateTab', 'language');
}
if(tab.match(/weather/)) {
$('.tabtrigger').offscreentabs('activateTab', 'weather');
loadContinent();
}
updateMenus(tab);
updateHeight();
}), 10);
}
return false;
}));
});
-->
Help me to help wildlife | Become a channel member | Robert E Fuller
*JOIN MY MISSION*
Support my wildlife rehabilitation and conservation work and join my channel https://www.youtube.com/c/robertefuller/join
Your contribution will help me buy food for the wildlife I support, build new nest boxes and habitats, and rehabilitate and release animals back into the wild. It will also help to keep the livestreams up and running and support my channel so I can keep sharing awareness about wildlife.
I'm offering three tiers of support so that you can decide how much you would like to donate.
Find out more here: https://www.youtube.com/c/robertefuller/join
Depending on the tier you choose, you can also expect something back, including exclusive photos and updates, special members only videos, early access to videos and special discounts and priority replies to ...
published: 14 Nov 2024
🔴 LIVE Barn Owls 🦉🐥, Stoats 🐾, Kestrels 🦅🥚, Tawny Owls 🦉 | From Fotherdale, Yorkshire, UK
Welcome to 'Live from Fotherdale', a selection of bird cams streamed from inside barn owl and kestrel nests, a buzzard feeding post and a stoat habitat. This livestream also picks up passing foxes, hares, weasels and even badgers - offering the very best of British wildlife for you to enjoy.
There is a friendly live chat, offering a supportive and informative community of wildlife lovers to interact with as you watch the bird cams. You can also see more British wildlife visit my other livestream 'Live From Ashwood':
https://www.youtube.com/live/UcyLalFO4yk?si=1KvwQIabbRn9GkEB
To support my channel and the wildlife rehabilitation and conservation work I do, please donate here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4
What to expect on this livestream...
published: 16 Aug 2023
Barn Owls' Go For Second Brood | Gylfie & Dryer | Robert E Fuller
With chicks ready to fledge, barn owls Gylfie and Dryer go for another brood. But a double brood means double the work for male barn owl Dryer.
Date filmed: July-Aug 2024
Watch barn owls Gylfie & Dryer interact live on my nest cam: https://youtube.com/playlist?list=PLx09JDaWUEFM-u8Q8V11cI1Ghk_-byaPM&si=IiuGt5h53H2k4qUx & follow their story in this playlist:
*JOIN MY MISSION*
____________________
You can support my wildlife rehabilitation and conservation work by donating here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4 or joining one of my supporter communities: https://www.robertefuller.com/support_and_donate/
*ABOUT THIS FILM*
____________________
Barn owls Gylfie & Dryer
This barn owl pair have already raised two chicks this year: their own, ...
published: 26 Sep 2024
Barn Owl Tries to Feed Cheeping Egg | Gylfie & Dryer | Robert E Fuller
Male barn owl Dryer hears a cheep from one of the eggs and tries to feed it.
Date filmed: August 2024
Watch Gylfie & Finn interact live on my nest cam: https://youtube.com/playlist?list=PLx09JDaWUEFM-u8Q8V11cI1Ghk_-byaPM&si=IiuGt5h53H2k4qUx and follow their story in this playlist: https://www.youtube.com/playlist?list=PLx09JDaWUEFPGeo0NropB21-UI0PIagx3
*JOIN MY MISSION*
____________________
You can support my wildlife rehabilitation and conservation work by donating here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4 or joining one of my supporter communities: https://www.robertefuller.com/support_and_donate/
*ABOUT THIS FILM*
____________________
While female barn owl Gylfie is out of the nest, Dryer, her partner enters with a freshly caught vole.
...
published: 23 Aug 2024
Transforming Derelict Farmhouse To Wildlife Haven | My Wildlife Gallery | Robert E Fuller
Watch as I create a haven for wildlife here in Yorkshire.
Follow the process as I create a garden from scratch - digging ponds and planting native shrubs and wildflowers to provide food and shelter for a wealth of species.
See too how I add cameras so that I can enjoy direct views into the secret lives of the animals that come - including kestrels, owls, stoats and weasels!
You can see more of my wildlife art gallery in this series: https://youtube.com/playlist?list=PLx09JDaWUEFNd2JcMklbn8kwFElhMJ1D4 and learn more about my gallery on my website: https://www.robertefuller.com/visit-us/
Or, of course, you may like to purchase my artwork which you can find on my website: https://www.robertefuller.com. Many of my paintings are portraits of the wonderful characters you watch here!
*JOI...
published: 16 Jul 2024
Wild Tawny Owls Adopt 6 Orphaned Owlets | Full Story | Luna & Bomber | Robert E Fuller
Tawny owls Luna and Bomber warmed hearts around the world after adopting 6 orphaned owlets.
Watch Luna & Bomber interact live on my nest cam: https://youtube.com/playlist?list=PLx09JDaWUEFM-u8Q8V11cI1Ghk_-byaPM and follow their story in this playlist: https://youtube.com/playlist?list=PLx09JDaWUEFPQ1TFNBr_6PbrcPk5GWcWv
*JOIN MY MISSION*
____________________
You can support my wildlife rehabilitation and conservation work by donating here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4 or joining one of my supporter communities: https://www.robertefuller.com/support_and_donate/
*ABOUT THIS FILM*
____________________
Securing a nest
The story begins as this tawny owl pair search for a suitable site to start a family. When they return to last yea...
published: 19 Jan 2023
Tawny Owl Luna's Tragic Loss Has a Happy Ending🦉| Luna & Bomber | Robert E Fuller
This is the story of a wild tawny owl named Luna who's eggs fail to hatch and it has a very happy ending.
Watch Luna & Bomber interact live on my nest cam: https://youtube.com/playlist?list=PLx09JDaWUEFM-u8Q8V11cI1Ghk_-byaPM and follow their story in this playlist: https://youtube.com/playlist?list=PLx09JDaWUEFPQ1TFNBr_6PbrcPk5GWcWv
*JOIN MY MISSION*
____________________
You can support my wildlife rehabilitation and conservation work by donating here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4 or joining one of my supporter communities: https://www.robertefuller.com/support_and_donate/
*ABOUT THIS FILM*
____________________
Luna's story
The story begins in January as Luna and her mate Bomber look for somewhere to nest. This owl couple are a...
published: 27 May 2022
At 90, This is Sadly What Happened to Robert Fuller
At 90, This is Sadly What Happened to Robert Fuller
#robertfuller
Robert Fuller is an American horse rancher and retired actor. He began his career on television, guest-starring primarily on Western programs, while appearing in several movies, including: The Brain from Planet Arous, Teenage Thunder, Return of the Seven, Incident at Phantom Hill, and The Hard Ride
Subscribe now for more Interesting videos.
Like share and comments.
⭐ YouTube : https://www.youtube.com/channel/UCwjZAp3_mlfUc7aZmptuivA
published: 05 Jul 2024
First Barn Owl Chick Hatches Out | Gylfie & Dryer | Robert E Fuller
Watch as the first chick from barn owls Gylfie & Dryer's late egg clutch hatches out.
Date filmed: August 2024
Watch barn owls Gylfie & Dryer interact live on my nest cam: https://youtube.com/playlist?list=PLx09JDaWUEFM-u8Q8V11cI1Ghk_-byaPM&si=IiuGt5h53H2k4qUx and follow their story in this playlist: https://youtube.com/playlist?list=PLx09JDaWUEFPGeo0NropB21-UI0PIagx3&si=7RCPFpt5OrwDY7YJ
*JOIN MY MISSION*
____________________
You can support my wildlife rehabilitation and conservation work by donating here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4 or joining one of my supporter communities: https://www.robertefuller.com/support_and_donate/
*ABOUT THIS FILM*
____________________
It's August and barn owls Gylfie & Dryer have a late clutch of fiv...
published: 27 Aug 2024
The Sad life of Robert Fuller
The Sad life of Robert Fuller
Robert Fuller was born on July 29, 1933, was born as Leonard Leroy Lee on July 29, 1933, in Troy, New York, the only child of Elizabeth Lee, a dance instructor. Prior to his birth, Betty married Robert Simpson, Sr., a Naval Academy officer.In 1939, at the age of 6, his family moved to Key West, Florida, where, already known by the nickname of "Buddy," he took the name Robert Simpson Jr. The early highlights of his life were acting and dancing.
#RobertFuller
published: 16 Dec 2020
3:34
Help me to help wildlife | Become a channel member | Robert E Fuller
*JOIN MY MISSION*
Support my wildlife rehabilitation and conservation work and join my channel https://www.youtube.com/c/robertefuller/join
Your contribution w...
*JOIN MY MISSION*
Support my wildlife rehabilitation and conservation work and join my channel https://www.youtube.com/c/robertefuller/join
Your contribution will help me buy food for the wildlife I support, build new nest boxes and habitats, and rehabilitate and release animals back into the wild. It will also help to keep the livestreams up and running and support my channel so I can keep sharing awareness about wildlife.
I'm offering three tiers of support so that you can decide how much you would like to donate.
Find out more here: https://www.youtube.com/c/robertefuller/join
Depending on the tier you choose, you can also expect something back, including exclusive photos and updates, special members only videos, early access to videos and special discounts and priority replies to comments.
*ABOUT ME*
____________
I am a British wildlife artist and filmmaker on a mission to share my love for wildlife with the world. As well as creating detailed animal film and art portraits, I promote wildlife tours around the world and do all I can to help conserve and protect wildlife here at my home in Yorkshire. I hope that by putting nature in the frame I can foster a deep love for wildlife amongst my followers.
You can also follow me on these platforms:
Website: https://www.robertefuller.com
Facebook: https://www.facebook.com/RobertEFullerArt/
Twitter: https://twitter.com/RobertEFuller
Instagram: https://www.instagram.com/RobertEFuller/
Or sign up to my newsletter: https://mailchi.mp/robertefuller/newslettersignup
#robertefuller #members #wildliferescue
___________________
© Robert E Fuller
Copyright Disclaimer: Please feel free to share my videos but do not download any content without permission with the intent to re-upload. If you would like to license any content, please get in touch:
[email protected]
https://wn.com/Help_Me_To_Help_Wildlife_|_Become_A_Channel_Member_|_Robert_E_Fuller
*JOIN MY MISSION*
Support my wildlife rehabilitation and conservation work and join my channel https://www.youtube.com/c/robertefuller/join
Your contribution will help me buy food for the wildlife I support, build new nest boxes and habitats, and rehabilitate and release animals back into the wild. It will also help to keep the livestreams up and running and support my channel so I can keep sharing awareness about wildlife.
I'm offering three tiers of support so that you can decide how much you would like to donate.
Find out more here: https://www.youtube.com/c/robertefuller/join
Depending on the tier you choose, you can also expect something back, including exclusive photos and updates, special members only videos, early access to videos and special discounts and priority replies to comments.
*ABOUT ME*
____________
I am a British wildlife artist and filmmaker on a mission to share my love for wildlife with the world. As well as creating detailed animal film and art portraits, I promote wildlife tours around the world and do all I can to help conserve and protect wildlife here at my home in Yorkshire. I hope that by putting nature in the frame I can foster a deep love for wildlife amongst my followers.
You can also follow me on these platforms:
Website: https://www.robertefuller.com
Facebook: https://www.facebook.com/RobertEFullerArt/
Twitter: https://twitter.com/RobertEFuller
Instagram: https://www.instagram.com/RobertEFuller/
Or sign up to my newsletter: https://mailchi.mp/robertefuller/newslettersignup
#robertefuller #members #wildliferescue
___________________
© Robert E Fuller
Copyright Disclaimer: Please feel free to share my videos but do not download any content without permission with the intent to re-upload. If you would like to license any content, please get in touch:
[email protected]
published: 14 Nov 2024
views: 3972
0:00
🔴 LIVE Barn Owls 🦉🐥, Stoats 🐾, Kestrels 🦅🥚, Tawny Owls 🦉 | From Fotherdale, Yorkshire, UK
Welcome to 'Live from Fotherdale', a selection of bird cams streamed from inside barn owl and kestrel nests, a buzzard feeding post and a stoat habitat. This li...
Welcome to 'Live from Fotherdale', a selection of bird cams streamed from inside barn owl and kestrel nests, a buzzard feeding post and a stoat habitat. This livestream also picks up passing foxes, hares, weasels and even badgers - offering the very best of British wildlife for you to enjoy.
There is a friendly live chat, offering a supportive and informative community of wildlife lovers to interact with as you watch the bird cams. You can also see more British wildlife visit my other livestream 'Live From Ashwood':
https://www.youtube.com/live/UcyLalFO4yk?si=1KvwQIabbRn9GkEB
To support my channel and the wildlife rehabilitation and conservation work I do, please donate here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4
What to expect on this livestream:
BARN OWLS - GYLFIE & DRYER
Gylfie is a long term resident of Fotherdale and has a mate Dryer and their chicks.
TAWNY OWLS - BOMBER & LUNA
This pair often nest in Beech Stump
BARN OWLS AT NIGHT
My bird cams Kestrel Feeding Post, Buzzard Log and Maze Wall are also great locations to see lots of barn owl action in the evenings.
STOATS & WEASELS
Look out for these on the maze wall. It will soon be spring and I'm hoping for some more kits to see! #robertefuller
GARDEN BIRD CAM
This camera is trained on a stump where I leave food out for garden birds. Look out for blue tits, great tits, chaffinches, sparrows, even woodpeckers!
Live chat:
We have a great community chatting alongside our live streams - feel free to say hi and join in! We respectfully ask you to adhere to the following rules: No self-promotion, chat in English, Don’t troll, No political/ religious talk, no swearing, no abbreviations, no caps, no more than 3 emojis, be respectful of the mods and others.
I am a British wildlife artist based in Thixendale, North Yorkshire, UK. I build ideal habitats to encourage wildlife into my garden and use nest cams to study their behaviour. These studies inform my paintings. I share the best of my video research on this channel for free. If you would like to support my work please consider a small donation here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4 Or of course you may like to purchase my artwork which you will find on my website: https://www.robertefuller.com. Many of the paintings are portraits of the creatures you watch here! © Robert E Fuller
#owl #kestrel #barnowl #tawnyowl
https://wn.com/🔴_Live_Barn_Owls_🦉🐥,_Stoats_🐾,_Kestrels_🦅🥚,_Tawny_Owls_🦉_|_From_Fotherdale,_Yorkshire,_UK
Welcome to 'Live from Fotherdale', a selection of bird cams streamed from inside barn owl and kestrel nests, a buzzard feeding post and a stoat habitat. This livestream also picks up passing foxes, hares, weasels and even badgers - offering the very best of British wildlife for you to enjoy.
There is a friendly live chat, offering a supportive and informative community of wildlife lovers to interact with as you watch the bird cams. You can also see more British wildlife visit my other livestream 'Live From Ashwood':
https://www.youtube.com/live/UcyLalFO4yk?si=1KvwQIabbRn9GkEB
To support my channel and the wildlife rehabilitation and conservation work I do, please donate here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4
What to expect on this livestream:
BARN OWLS - GYLFIE & DRYER
Gylfie is a long term resident of Fotherdale and has a mate Dryer and their chicks.
TAWNY OWLS - BOMBER & LUNA
This pair often nest in Beech Stump
BARN OWLS AT NIGHT
My bird cams Kestrel Feeding Post, Buzzard Log and Maze Wall are also great locations to see lots of barn owl action in the evenings.
STOATS & WEASELS
Look out for these on the maze wall. It will soon be spring and I'm hoping for some more kits to see! #robertefuller
GARDEN BIRD CAM
This camera is trained on a stump where I leave food out for garden birds. Look out for blue tits, great tits, chaffinches, sparrows, even woodpeckers!
Live chat:
We have a great community chatting alongside our live streams - feel free to say hi and join in! We respectfully ask you to adhere to the following rules: No self-promotion, chat in English, Don’t troll, No political/ religious talk, no swearing, no abbreviations, no caps, no more than 3 emojis, be respectful of the mods and others.
I am a British wildlife artist based in Thixendale, North Yorkshire, UK. I build ideal habitats to encourage wildlife into my garden and use nest cams to study their behaviour. These studies inform my paintings. I share the best of my video research on this channel for free. If you would like to support my work please consider a small donation here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4 Or of course you may like to purchase my artwork which you will find on my website: https://www.robertefuller.com. Many of the paintings are portraits of the creatures you watch here! © Robert E Fuller
#owl #kestrel #barnowl #tawnyowl
published: 16 Aug 2023
views: 1540024
11:54
Barn Owls' Go For Second Brood | Gylfie & Dryer | Robert E Fuller
With chicks ready to fledge, barn owls Gylfie and Dryer go for another brood. But a double brood means double the work for male barn owl Dryer.
Date filmed: Ju...
With chicks ready to fledge, barn owls Gylfie and Dryer go for another brood. But a double brood means double the work for male barn owl Dryer.
Date filmed: July-Aug 2024
Watch barn owls Gylfie & Dryer interact live on my nest cam: https://youtube.com/playlist?list=PLx09JDaWUEFM-u8Q8V11cI1Ghk_-byaPM&si=IiuGt5h53H2k4qUx & follow their story in this playlist:
*JOIN MY MISSION*
____________________
You can support my wildlife rehabilitation and conservation work by donating here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4 or joining one of my supporter communities: https://www.robertefuller.com/support_and_donate/
*ABOUT THIS FILM*
____________________
Barn owls Gylfie & Dryer
This barn owl pair have already raised two chicks this year: their own, Uno, and a foster chick, Lucky, but this doesn't stop them going for a second.
Second broods
Double brooding, where birds raise two sets of chicks in one year, is a sign that these owls have enough food and energy. On average just 10% of barn owls in England will attempt a second brood and barn owls and short eared owls are the only UK owls to do this.
A new nest
With their first chicks still occupying their favourite nest, Gylfie & Dryer chose to lay this new clutch in Beech stump. But this choice comes at a risk, since this is where tawny owls Bomber and Luna normally raise their young.
Competition
Thankfully the tawnys have finished raising their chicks, but a stock dove pair also have their eye on the property and Dryer must chase them off.
1st egg
On the 23rd July, Gylfie reveals her first egg, and Dryer can't wait to see it!
Male barn owl's double duties
Dryer now has two broods to care for. Although Lucky and Uno are fledglings now, he continues to bring them food whilst also supplying laying barn owl Gylfie with sustenance.
Dryer's fascination
But Dryer seems besotted and whilst Gylfie takes a break after laying a second egg, he sneaks a peek, looking first into the camera as if to check no one’s watching. But Gylfie soon returns to shoo him away. It is her job to brood!
Three eggs
When Gylfie stands to reveal a 3rd egg, I assume she is done. Over her 10 years here at Fotherdale, she normally averages three eggs per clutch
A fourth barn owl egg
But 3 days later, a 4th egg is revealed. Gylfie immediately gulps down a vole she has cached away in the corner of the nest - she needs all the energy she can get to get through the next month of 24/7 incubation
Then a fifth
Then in early August, Gylfie reveals a 5th barn owl egg. This makes her largest clutch since 2021 with Finn. But after laying such a large clutch, Gylfie needs more food than ever and Dryer's provisions slacken. The cameras capture her leaving the clutch to look for food herself.
Hatching begins
Thankfully Dryer resumes his duties and by 23rd August, 31 days after the first egg was laid, Dyer hears a chick is call from inside its egg. He takes a second look, and places the vole gently on top.
Gylfie returns
When Gylfie returns to the nest she puts the vole to one side.. for now. She knows it won't be long.
First brood
Meanwhile I spot Uno now able to fend for herself and Lucky has already dispersed.
Join me next time, as these eggs start hatching
And the chicks develop well under the care of this experienced pair
*ABOUT ME*
____________
I am a British wildlife artist and filmmaker on a mission to share my love for wildlife with the world. As well as creating detailed animal film and art portraits, I promote wildlife tours around the world and do all I can to help conserve and protect wildlife here at my home in Yorkshire. I hope that by putting nature in the frame I can foster a deep love for wildlife amongst my followers.
You may like to purchase my artwork: https://www.robertefuller.com. Many of my paintings are portraits of the characters you watch here!
You can also follow me on these platforms:
Website: https://www.robertefuller.com
Facebook: https://www.facebook.com/RobertEFullerArt/
Twitter: https://twitter.com/RobertEFuller
Instagram: https://www.instagram.com/RobertEFuller/
Or sign up to my newsletter: https://mailchi.mp/robertefuller/newslettersignup
#robertefuller #barnowl #wildlives
*CHAPTERS*
_____________
00:00 Barn owls 2nd brood
01:32 Securing a nest
02:56 1st egg
03:46 Male barn owl's double duties
03:56 2nd egg
05:08 3rd egg
05:55 4th egg
06:31 5th egg
07:00 Male barn owl Dryer
09:05 Chicks peeping in eggs
10:33 Next time
___________________
© Robert E Fuller
Copyright Disclaimer: Please feel free to share my videos but do not download any content without permission with the intent to re-upload. If you would like to license any content, please get in touch:
[email protected]
https://wn.com/Barn_Owls'_Go_For_Second_Brood_|_Gylfie_Dryer_|_Robert_E_Fuller
With chicks ready to fledge, barn owls Gylfie and Dryer go for another brood. But a double brood means double the work for male barn owl Dryer.
Date filmed: July-Aug 2024
Watch barn owls Gylfie & Dryer interact live on my nest cam: https://youtube.com/playlist?list=PLx09JDaWUEFM-u8Q8V11cI1Ghk_-byaPM&si=IiuGt5h53H2k4qUx & follow their story in this playlist:
*JOIN MY MISSION*
____________________
You can support my wildlife rehabilitation and conservation work by donating here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4 or joining one of my supporter communities: https://www.robertefuller.com/support_and_donate/
*ABOUT THIS FILM*
____________________
Barn owls Gylfie & Dryer
This barn owl pair have already raised two chicks this year: their own, Uno, and a foster chick, Lucky, but this doesn't stop them going for a second.
Second broods
Double brooding, where birds raise two sets of chicks in one year, is a sign that these owls have enough food and energy. On average just 10% of barn owls in England will attempt a second brood and barn owls and short eared owls are the only UK owls to do this.
A new nest
With their first chicks still occupying their favourite nest, Gylfie & Dryer chose to lay this new clutch in Beech stump. But this choice comes at a risk, since this is where tawny owls Bomber and Luna normally raise their young.
Competition
Thankfully the tawnys have finished raising their chicks, but a stock dove pair also have their eye on the property and Dryer must chase them off.
1st egg
On the 23rd July, Gylfie reveals her first egg, and Dryer can't wait to see it!
Male barn owl's double duties
Dryer now has two broods to care for. Although Lucky and Uno are fledglings now, he continues to bring them food whilst also supplying laying barn owl Gylfie with sustenance.
Dryer's fascination
But Dryer seems besotted and whilst Gylfie takes a break after laying a second egg, he sneaks a peek, looking first into the camera as if to check no one’s watching. But Gylfie soon returns to shoo him away. It is her job to brood!
Three eggs
When Gylfie stands to reveal a 3rd egg, I assume she is done. Over her 10 years here at Fotherdale, she normally averages three eggs per clutch
A fourth barn owl egg
But 3 days later, a 4th egg is revealed. Gylfie immediately gulps down a vole she has cached away in the corner of the nest - she needs all the energy she can get to get through the next month of 24/7 incubation
Then a fifth
Then in early August, Gylfie reveals a 5th barn owl egg. This makes her largest clutch since 2021 with Finn. But after laying such a large clutch, Gylfie needs more food than ever and Dryer's provisions slacken. The cameras capture her leaving the clutch to look for food herself.
Hatching begins
Thankfully Dryer resumes his duties and by 23rd August, 31 days after the first egg was laid, Dyer hears a chick is call from inside its egg. He takes a second look, and places the vole gently on top.
Gylfie returns
When Gylfie returns to the nest she puts the vole to one side.. for now. She knows it won't be long.
First brood
Meanwhile I spot Uno now able to fend for herself and Lucky has already dispersed.
Join me next time, as these eggs start hatching
And the chicks develop well under the care of this experienced pair
*ABOUT ME*
____________
I am a British wildlife artist and filmmaker on a mission to share my love for wildlife with the world. As well as creating detailed animal film and art portraits, I promote wildlife tours around the world and do all I can to help conserve and protect wildlife here at my home in Yorkshire. I hope that by putting nature in the frame I can foster a deep love for wildlife amongst my followers.
You may like to purchase my artwork: https://www.robertefuller.com. Many of my paintings are portraits of the characters you watch here!
You can also follow me on these platforms:
Website: https://www.robertefuller.com
Facebook: https://www.facebook.com/RobertEFullerArt/
Twitter: https://twitter.com/RobertEFuller
Instagram: https://www.instagram.com/RobertEFuller/
Or sign up to my newsletter: https://mailchi.mp/robertefuller/newslettersignup
#robertefuller #barnowl #wildlives
*CHAPTERS*
_____________
00:00 Barn owls 2nd brood
01:32 Securing a nest
02:56 1st egg
03:46 Male barn owl's double duties
03:56 2nd egg
05:08 3rd egg
05:55 4th egg
06:31 5th egg
07:00 Male barn owl Dryer
09:05 Chicks peeping in eggs
10:33 Next time
___________________
© Robert E Fuller
Copyright Disclaimer: Please feel free to share my videos but do not download any content without permission with the intent to re-upload. If you would like to license any content, please get in touch:
[email protected]
published: 26 Sep 2024
views: 134428
2:02
Barn Owl Tries to Feed Cheeping Egg | Gylfie & Dryer | Robert E Fuller
Male barn owl Dryer hears a cheep from one of the eggs and tries to feed it.
Date filmed: August 2024
Watch Gylfie & Finn interact live on my nest cam: https:...
Male barn owl Dryer hears a cheep from one of the eggs and tries to feed it.
Date filmed: August 2024
Watch Gylfie & Finn interact live on my nest cam: https://youtube.com/playlist?list=PLx09JDaWUEFM-u8Q8V11cI1Ghk_-byaPM&si=IiuGt5h53H2k4qUx and follow their story in this playlist: https://www.youtube.com/playlist?list=PLx09JDaWUEFPGeo0NropB21-UI0PIagx3
*JOIN MY MISSION*
____________________
You can support my wildlife rehabilitation and conservation work by donating here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4 or joining one of my supporter communities: https://www.robertefuller.com/support_and_donate/
*ABOUT THIS FILM*
____________________
While female barn owl Gylfie is out of the nest, Dryer, her partner enters with a freshly caught vole.
He can hears a cheeping sound and goes straight to them. It looks like a chick is calling from inside the egg!
Dryer looks confused to find that a chick hasn't hatched yet! He goest back to take a second look, and places the vole gently on top of the eggs! He's seems so sure that there's a hatchling there!
Female Gylfie soon returns to take over. She seems to knows they haven’t hatched yet and puts the vole to one side for now. It seems like the hatching process has begun. I'm expecting the first egg to hatch imminently.
*ABOUT ME*
____________
I am a British wildlife artist and filmmaker on a mission to share my love for wildlife with the world. As well as creating detailed animal film and art portraits, I promote wildlife tours around the world and do all I can to help conserve and protect wildlife here at my home in Yorkshire. I hope that by putting nature in the frame I can foster a deep love for wildlife amongst my followers.
You may like to purchase my artwork: https://www.robertefuller.com. Many of my paintings are portraits of the characters you watch here!
You can also follow me on these platforms:
Website: https://www.robertefuller.com
Facebook: https://www.facebook.com/RobertEFullerArt/
Twitter: https://twitter.com/RobertEFuller
Instagram: https://www.instagram.com/RobertEFuller/
Or sign up to my newsletter: https://mailchi.mp/robertefuller/newslettersignup
#robertefuller #barnowl #birds #owls #babybird
___________________
© Robert E Fuller
Copyright Disclaimer: Please feel free to share my videos but do not download any content without permission with the intent to re-upload. If you would like to license any content, please get in touch:
[email protected]
https://wn.com/Barn_Owl_Tries_To_Feed_Cheeping_Egg_|_Gylfie_Dryer_|_Robert_E_Fuller
Male barn owl Dryer hears a cheep from one of the eggs and tries to feed it.
Date filmed: August 2024
Watch Gylfie & Finn interact live on my nest cam: https://youtube.com/playlist?list=PLx09JDaWUEFM-u8Q8V11cI1Ghk_-byaPM&si=IiuGt5h53H2k4qUx and follow their story in this playlist: https://www.youtube.com/playlist?list=PLx09JDaWUEFPGeo0NropB21-UI0PIagx3
*JOIN MY MISSION*
____________________
You can support my wildlife rehabilitation and conservation work by donating here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4 or joining one of my supporter communities: https://www.robertefuller.com/support_and_donate/
*ABOUT THIS FILM*
____________________
While female barn owl Gylfie is out of the nest, Dryer, her partner enters with a freshly caught vole.
He can hears a cheeping sound and goes straight to them. It looks like a chick is calling from inside the egg!
Dryer looks confused to find that a chick hasn't hatched yet! He goest back to take a second look, and places the vole gently on top of the eggs! He's seems so sure that there's a hatchling there!
Female Gylfie soon returns to take over. She seems to knows they haven’t hatched yet and puts the vole to one side for now. It seems like the hatching process has begun. I'm expecting the first egg to hatch imminently.
*ABOUT ME*
____________
I am a British wildlife artist and filmmaker on a mission to share my love for wildlife with the world. As well as creating detailed animal film and art portraits, I promote wildlife tours around the world and do all I can to help conserve and protect wildlife here at my home in Yorkshire. I hope that by putting nature in the frame I can foster a deep love for wildlife amongst my followers.
You may like to purchase my artwork: https://www.robertefuller.com. Many of my paintings are portraits of the characters you watch here!
You can also follow me on these platforms:
Website: https://www.robertefuller.com
Facebook: https://www.facebook.com/RobertEFullerArt/
Twitter: https://twitter.com/RobertEFuller
Instagram: https://www.instagram.com/RobertEFuller/
Or sign up to my newsletter: https://mailchi.mp/robertefuller/newslettersignup
#robertefuller #barnowl #birds #owls #babybird
___________________
© Robert E Fuller
Copyright Disclaimer: Please feel free to share my videos but do not download any content without permission with the intent to re-upload. If you would like to license any content, please get in touch:
[email protected]
published: 23 Aug 2024
views: 126743
2:07
Transforming Derelict Farmhouse To Wildlife Haven | My Wildlife Gallery | Robert E Fuller
Watch as I create a haven for wildlife here in Yorkshire.
Follow the process as I create a garden from scratch - digging ponds and planting native shrubs and w...
Watch as I create a haven for wildlife here in Yorkshire.
Follow the process as I create a garden from scratch - digging ponds and planting native shrubs and wildflowers to provide food and shelter for a wealth of species.
See too how I add cameras so that I can enjoy direct views into the secret lives of the animals that come - including kestrels, owls, stoats and weasels!
You can see more of my wildlife art gallery in this series: https://youtube.com/playlist?list=PLx09JDaWUEFNd2JcMklbn8kwFElhMJ1D4 and learn more about my gallery on my website: https://www.robertefuller.com/visit-us/
Or, of course, you may like to purchase my artwork which you can find on my website: https://www.robertefuller.com. Many of my paintings are portraits of the wonderful characters you watch here!
*JOIN MY MISSION*
____________________
You can support my wildlife rehabilitation and conservation work by donating here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4 or joining one of my supporter communities: https://www.robertefuller.com/support_and_donate/
*ABOUT ME*
____________
I am a British wildlife artist and filmmaker on a mission to share my love for wildlife with the world. As well as creating detailed animal film and art portraits, I promote wildlife tours around the world and do all I can to help conserve and protect wildlife here at my home in Yorkshire. I hope that by putting nature in the frame I can foster a deep love for wildlife amongst my followers.
You can support my work by donating here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4 or joining one of my supporter communities: https://www.robertefuller.com/support_and_donate/
You can also follow me on these platforms:
Website: https://www.robertefuller.com
Facebook: https://www.facebook.com/RobertEFullerArt/
Twitter: https://twitter.com/RobertEFuller
Instagram: https://www.instagram.com/RobertEFuller/
Or sign up to my newsletter: https://mailchi.mp/robertefuller/newslettersignup
#robertefuller #wildlifeconservation #habitat
___________________
© Robert E Fuller
Copyright Disclaimer: Please feel free to share my videos but do not download any content without permission with the intent to re-upload. If you would like to license any content, please get in touch:
[email protected]
https://wn.com/Transforming_Derelict_Farmhouse_To_Wildlife_Haven_|_My_Wildlife_Gallery_|_Robert_E_Fuller
Watch as I create a haven for wildlife here in Yorkshire.
Follow the process as I create a garden from scratch - digging ponds and planting native shrubs and wildflowers to provide food and shelter for a wealth of species.
See too how I add cameras so that I can enjoy direct views into the secret lives of the animals that come - including kestrels, owls, stoats and weasels!
You can see more of my wildlife art gallery in this series: https://youtube.com/playlist?list=PLx09JDaWUEFNd2JcMklbn8kwFElhMJ1D4 and learn more about my gallery on my website: https://www.robertefuller.com/visit-us/
Or, of course, you may like to purchase my artwork which you can find on my website: https://www.robertefuller.com. Many of my paintings are portraits of the wonderful characters you watch here!
*JOIN MY MISSION*
____________________
You can support my wildlife rehabilitation and conservation work by donating here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4 or joining one of my supporter communities: https://www.robertefuller.com/support_and_donate/
*ABOUT ME*
____________
I am a British wildlife artist and filmmaker on a mission to share my love for wildlife with the world. As well as creating detailed animal film and art portraits, I promote wildlife tours around the world and do all I can to help conserve and protect wildlife here at my home in Yorkshire. I hope that by putting nature in the frame I can foster a deep love for wildlife amongst my followers.
You can support my work by donating here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4 or joining one of my supporter communities: https://www.robertefuller.com/support_and_donate/
You can also follow me on these platforms:
Website: https://www.robertefuller.com
Facebook: https://www.facebook.com/RobertEFullerArt/
Twitter: https://twitter.com/RobertEFuller
Instagram: https://www.instagram.com/RobertEFuller/
Or sign up to my newsletter: https://mailchi.mp/robertefuller/newslettersignup
#robertefuller #wildlifeconservation #habitat
___________________
© Robert E Fuller
Copyright Disclaimer: Please feel free to share my videos but do not download any content without permission with the intent to re-upload. If you would like to license any content, please get in touch:
[email protected]
published: 16 Jul 2024
views: 11119
49:16
Wild Tawny Owls Adopt 6 Orphaned Owlets | Full Story | Luna & Bomber | Robert E Fuller
Tawny owls Luna and Bomber warmed hearts around the world after adopting 6 orphaned owlets.
Watch Luna & Bomber interact live on my nest cam: https://youtube....
Tawny owls Luna and Bomber warmed hearts around the world after adopting 6 orphaned owlets.
Watch Luna & Bomber interact live on my nest cam: https://youtube.com/playlist?list=PLx09JDaWUEFM-u8Q8V11cI1Ghk_-byaPM and follow their story in this playlist: https://youtube.com/playlist?list=PLx09JDaWUEFPQ1TFNBr_6PbrcPk5GWcWv
*JOIN MY MISSION*
____________________
You can support my wildlife rehabilitation and conservation work by donating here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4 or joining one of my supporter communities: https://www.robertefuller.com/support_and_donate/
*ABOUT THIS FILM*
____________________
Securing a nest
The story begins as this tawny owl pair search for a suitable site to start a family. When they return to last year's nest, they have to fight barn owl Gylfie for it. But the battle is worth it- this nest is special to Luna. This is where she grew up as a fostered owl.
Tawny owl eggs
Luna goes on to lay 3 eggs, each 64 hours apart. Look out for Bomber's joyful reaction when he spots the first one.
Eggs fail
After 30 days of incubation, it was clear that Luna's eggs were not going to hatch. Later I shine a torch through them and see they were never viable.
Time to act
While a pair of jackdaws lay siege to the nest, blocking the tawny owl mum inside, I am called out to rescue two tawny owl chicks that have fallen from a straw stack.
A solution
The owls need a mum, and Luna needs babies - so I open the back of the nest to let Luna out and clear the sticks. Then I place the chicks inside in hopes that she will return.
Luna welcomes the orphans
Hours later Luna flies back to the nest and spots the owlets. She rushes over and wraps them under her wings as if they were her own. Later Bomber meets them and his reaction is equally touching.
Jackdaws return
But the threat from the jackdaws isn't over and soon they have trapped the family inside. Luna is visibly distressed. Without my help, all three owls would surely die.
Parents compete
Luna, so delighted to be a mum at last, barely allows Bomber a moment with the chicks. So possessive over them, she pushes him away whenever he arrives with food or tries to spend time with them.
Chicks grow fast
With all this love and attention the chicks grow up fast and it isn't long before they take their first peeks outside the nest and flap their wings, ready to fly.
ID Rings
Before they go, BTO licenced bird ringer Jean Thorpe of Ryedale Rehabilitation arrives to clip ID rings on their legs. These are individually numbered and help track owl populations across the country.
Flying lessons
Luna acts as a teacher, encouraging the first chick (named Dusk by our livestream fans) to hop to a nearby branch before launching off into the trees.
More foster chicks
Just as Bomber & Luna's work is done, 3 more tawny owl chicks are handed in. Luna instantly welcomes the first, but it takes the owl parents a few days to realise there are more. Then a third rescue arrives from Doncaster. We nickname him Donny and watch with delight as he is accepted by the family.
All 6 owlets fly free
As I watch all 6 owlets flit through the trees it's incredible to think back at their incredible journey.
*ABOUT ME*
____________
I am a British wildlife artist and filmmaker on a mission to share my love for wildlife with the world. As well as creating detailed animal film and art portraits, I promote wildlife tours around the world and do all I can to help conserve and protect wildlife here at my home in Yorkshire. I hope that by putting nature in the frame I can foster a deep love for wildlife amongst my followers.
You may like to purchase my artwork which you can find on my website: https://www.robertefuller.com. Many of my paintings are portraits of the wonderful characters you watch here!
You can also follow me on these platforms:
Website: https://www.robertefuller.com
Facebook: https://www.facebook.com/RobertEFullerArt/
Twitter: https://twitter.com/RobertEFuller
Instagram: https://www.instagram.com/RobertEFuller/
*CHAPTERS*
_____________
00:00 Meet Luna
00:11 Owls Search for Place To Nest
00:42 Fight for Nest
01:31 Luna's Adoption Story
04:32 Luna Lays First Egg
08:38 Eggs Fail
08:39 Jackdaw Siege
09:03 Rescuing Two Tawny Owlets
09:44 Placing Owlets with Luna
11:51 Luna Welcomes Owlets
13:32 Owlets Meet Foster Father
15:22 Jackdaw Trap
20:47 Luna Possessive of Chicks
24:00 Chick's Get ID Rings
29:15 Chick's First Look Outside
30:31 Allopreening
32:25 Flying Lessons
37:24 More Tawny Orphans
43:07 Final Rescue
46:23 Helping Feed Owlets
___________________
© Robert E Fuller
Copyright Disclaimer: Please feel free to share my videos but do not download any content without permission with the intent to re-upload. If you would like to license any content, please get in touch:
[email protected]
#robertefuller #tawnyowl #owl #wildlives #lunaandbomber
https://wn.com/Wild_Tawny_Owls_Adopt_6_Orphaned_Owlets_|_Full_Story_|_Luna_Bomber_|_Robert_E_Fuller
Tawny owls Luna and Bomber warmed hearts around the world after adopting 6 orphaned owlets.
Watch Luna & Bomber interact live on my nest cam: https://youtube.com/playlist?list=PLx09JDaWUEFM-u8Q8V11cI1Ghk_-byaPM and follow their story in this playlist: https://youtube.com/playlist?list=PLx09JDaWUEFPQ1TFNBr_6PbrcPk5GWcWv
*JOIN MY MISSION*
____________________
You can support my wildlife rehabilitation and conservation work by donating here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4 or joining one of my supporter communities: https://www.robertefuller.com/support_and_donate/
*ABOUT THIS FILM*
____________________
Securing a nest
The story begins as this tawny owl pair search for a suitable site to start a family. When they return to last year's nest, they have to fight barn owl Gylfie for it. But the battle is worth it- this nest is special to Luna. This is where she grew up as a fostered owl.
Tawny owl eggs
Luna goes on to lay 3 eggs, each 64 hours apart. Look out for Bomber's joyful reaction when he spots the first one.
Eggs fail
After 30 days of incubation, it was clear that Luna's eggs were not going to hatch. Later I shine a torch through them and see they were never viable.
Time to act
While a pair of jackdaws lay siege to the nest, blocking the tawny owl mum inside, I am called out to rescue two tawny owl chicks that have fallen from a straw stack.
A solution
The owls need a mum, and Luna needs babies - so I open the back of the nest to let Luna out and clear the sticks. Then I place the chicks inside in hopes that she will return.
Luna welcomes the orphans
Hours later Luna flies back to the nest and spots the owlets. She rushes over and wraps them under her wings as if they were her own. Later Bomber meets them and his reaction is equally touching.
Jackdaws return
But the threat from the jackdaws isn't over and soon they have trapped the family inside. Luna is visibly distressed. Without my help, all three owls would surely die.
Parents compete
Luna, so delighted to be a mum at last, barely allows Bomber a moment with the chicks. So possessive over them, she pushes him away whenever he arrives with food or tries to spend time with them.
Chicks grow fast
With all this love and attention the chicks grow up fast and it isn't long before they take their first peeks outside the nest and flap their wings, ready to fly.
ID Rings
Before they go, BTO licenced bird ringer Jean Thorpe of Ryedale Rehabilitation arrives to clip ID rings on their legs. These are individually numbered and help track owl populations across the country.
Flying lessons
Luna acts as a teacher, encouraging the first chick (named Dusk by our livestream fans) to hop to a nearby branch before launching off into the trees.
More foster chicks
Just as Bomber & Luna's work is done, 3 more tawny owl chicks are handed in. Luna instantly welcomes the first, but it takes the owl parents a few days to realise there are more. Then a third rescue arrives from Doncaster. We nickname him Donny and watch with delight as he is accepted by the family.
All 6 owlets fly free
As I watch all 6 owlets flit through the trees it's incredible to think back at their incredible journey.
*ABOUT ME*
____________
I am a British wildlife artist and filmmaker on a mission to share my love for wildlife with the world. As well as creating detailed animal film and art portraits, I promote wildlife tours around the world and do all I can to help conserve and protect wildlife here at my home in Yorkshire. I hope that by putting nature in the frame I can foster a deep love for wildlife amongst my followers.
You may like to purchase my artwork which you can find on my website: https://www.robertefuller.com. Many of my paintings are portraits of the wonderful characters you watch here!
You can also follow me on these platforms:
Website: https://www.robertefuller.com
Facebook: https://www.facebook.com/RobertEFullerArt/
Twitter: https://twitter.com/RobertEFuller
Instagram: https://www.instagram.com/RobertEFuller/
*CHAPTERS*
_____________
00:00 Meet Luna
00:11 Owls Search for Place To Nest
00:42 Fight for Nest
01:31 Luna's Adoption Story
04:32 Luna Lays First Egg
08:38 Eggs Fail
08:39 Jackdaw Siege
09:03 Rescuing Two Tawny Owlets
09:44 Placing Owlets with Luna
11:51 Luna Welcomes Owlets
13:32 Owlets Meet Foster Father
15:22 Jackdaw Trap
20:47 Luna Possessive of Chicks
24:00 Chick's Get ID Rings
29:15 Chick's First Look Outside
30:31 Allopreening
32:25 Flying Lessons
37:24 More Tawny Orphans
43:07 Final Rescue
46:23 Helping Feed Owlets
___________________
© Robert E Fuller
Copyright Disclaimer: Please feel free to share my videos but do not download any content without permission with the intent to re-upload. If you would like to license any content, please get in touch:
[email protected]
#robertefuller #tawnyowl #owl #wildlives #lunaandbomber
published: 19 Jan 2023
views: 11131769
13:04
Tawny Owl Luna's Tragic Loss Has a Happy Ending🦉| Luna & Bomber | Robert E Fuller
This is the story of a wild tawny owl named Luna who's eggs fail to hatch and it has a very happy ending.
Watch Luna & Bomber interact live on my nest cam: htt...
This is the story of a wild tawny owl named Luna who's eggs fail to hatch and it has a very happy ending.
Watch Luna & Bomber interact live on my nest cam: https://youtube.com/playlist?list=PLx09JDaWUEFM-u8Q8V11cI1Ghk_-byaPM and follow their story in this playlist: https://youtube.com/playlist?list=PLx09JDaWUEFPQ1TFNBr_6PbrcPk5GWcWv
*JOIN MY MISSION*
____________________
You can support my wildlife rehabilitation and conservation work by donating here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4 or joining one of my supporter communities: https://www.robertefuller.com/support_and_donate/
*ABOUT THIS FILM*
____________________
Luna's story
The story begins in January as Luna and her mate Bomber look for somewhere to nest. This owl couple are an established pair and nested here at my home in North Yorkshire last year, when their eggs sadly failed.
Beech stump
Beech stump is an owl box I made (from an old beech stump) many years ago and is where Luna grew up. Ironically, Luna is herself a fostered owl and back in 2017 I placed her in this box with a wild tawny owl pair who raised her as their own.
Nest revamp
But since Bomber & Luna were here, I have made some renovations and the owl pair seem surprised at how it has changed. They seem to like it and it isn't long before Luna begins scraping out a hollow into the sawdust. This will do for an egg.
Fighting off competition
The newly restored nest has caught the eye of a few other birds too and Luna and Bomber have to see off barn owl Gylfie before they can settle down to making it their home.
Nesting
Tawny owls make their nests in holes in trees, and both male and females scrape out the hollows the eggs will sit in. Luna also seems to like to add her own touches. I see her picking off bits of bark and making home improvements.
Egg laying
By mid-May, Luna lays her first egg. But as she broods it a jackdaw and then a kestrel land at then entrance. Luna stays calm. Tawny owls lay eggs every two to three days… and even with disturbance from jackdaws outside… 64 hours later she’s laid a second egg. And then a third, 64 hours after that. Her clutch of three is now complete.
Incubation
Tawny owls incubate their eggs for approximately 30 days and as Luna broods the clutch Bomber drops in with regular food deliveries.
Then tragedy starts
But a month later, in spite of Luna’s constant brooding there are no signs of hatching and it becomes clear that yet again Luna's eggs have failed.
And Luna is trapped
To make matters worse, the jackdaws have returned… this time, bringing nesting material into the entrance. Within hours, the nest entrance is full of sticks. And Luna is trapped inside.
Hope
Meanwhile, I get a call about two owl chicks found on the ground at a nearby farm. They’ve fallen from their nest in a straw stack. Without warmth and food these chicks could perish in a matter of hours.
Owlets get intensive care
I have to act quickly to keep these chicks alive. There’s no choice but to rescue them. Back at base, the chicks are fed. It’s never nice to take an animal out of the wild, but this really was the only option.
A plan hatches
Luna is the ideal foster mother for these two. She's still preparing for those eggs to hatch, so she’s full of maternal hormones.
But first I have to release her
Meanwhile, in the nest, Luna is still trapped. If I don’t remove the sticks she will die. I remove the back of the nest. And with her gone, the nest can be cleared.
Luna meets her new chicks
Luna rushes in and envelopes the two chicks, brooding them instantly. It's almost as though she was expecting them.
Next time
Keep an eye on my channel to watch the chicks meet foster dad Bomber and get ready for their first flights.
*ABOUT ME*
____________
I am a British wildlife artist and filmmaker on a mission to share my love for wildlife with the world. As well as creating detailed animal film and art portraits, I promote wildlife tours around the world and do all I can to help conserve and protect wildlife here at my home in Yorkshire. I hope that by putting nature in the frame I can foster a deep love for wildlife amongst my followers.
You may like to purchase my artwork which you can find on my website: https://www.robertefuller.com. Many of my paintings are portraits of the wonderful characters you watch here!
You can also follow me on these platforms:
Website: https://www.robertefuller.com
Facebook: https://www.facebook.com/RobertEFullerArt/
Twitter: https://twitter.com/RobertEFuller
Instagram: https://www.instagram.com/RobertEFuller/
___________________
© Robert E Fuller
Copyright Disclaimer: Please feel free to share my videos but do not download any content without permission with the intent to re-upload. If you would like to license any content, please get in touch:
[email protected]
#robertefuller #tawnyowl #owl #wildlives #lunaandbomber
https://wn.com/Tawny_Owl_Luna's_Tragic_Loss_Has_A_Happy_Ending🦉|_Luna_Bomber_|_Robert_E_Fuller
This is the story of a wild tawny owl named Luna who's eggs fail to hatch and it has a very happy ending.
Watch Luna & Bomber interact live on my nest cam: https://youtube.com/playlist?list=PLx09JDaWUEFM-u8Q8V11cI1Ghk_-byaPM and follow their story in this playlist: https://youtube.com/playlist?list=PLx09JDaWUEFPQ1TFNBr_6PbrcPk5GWcWv
*JOIN MY MISSION*
____________________
You can support my wildlife rehabilitation and conservation work by donating here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4 or joining one of my supporter communities: https://www.robertefuller.com/support_and_donate/
*ABOUT THIS FILM*
____________________
Luna's story
The story begins in January as Luna and her mate Bomber look for somewhere to nest. This owl couple are an established pair and nested here at my home in North Yorkshire last year, when their eggs sadly failed.
Beech stump
Beech stump is an owl box I made (from an old beech stump) many years ago and is where Luna grew up. Ironically, Luna is herself a fostered owl and back in 2017 I placed her in this box with a wild tawny owl pair who raised her as their own.
Nest revamp
But since Bomber & Luna were here, I have made some renovations and the owl pair seem surprised at how it has changed. They seem to like it and it isn't long before Luna begins scraping out a hollow into the sawdust. This will do for an egg.
Fighting off competition
The newly restored nest has caught the eye of a few other birds too and Luna and Bomber have to see off barn owl Gylfie before they can settle down to making it their home.
Nesting
Tawny owls make their nests in holes in trees, and both male and females scrape out the hollows the eggs will sit in. Luna also seems to like to add her own touches. I see her picking off bits of bark and making home improvements.
Egg laying
By mid-May, Luna lays her first egg. But as she broods it a jackdaw and then a kestrel land at then entrance. Luna stays calm. Tawny owls lay eggs every two to three days… and even with disturbance from jackdaws outside… 64 hours later she’s laid a second egg. And then a third, 64 hours after that. Her clutch of three is now complete.
Incubation
Tawny owls incubate their eggs for approximately 30 days and as Luna broods the clutch Bomber drops in with regular food deliveries.
Then tragedy starts
But a month later, in spite of Luna’s constant brooding there are no signs of hatching and it becomes clear that yet again Luna's eggs have failed.
And Luna is trapped
To make matters worse, the jackdaws have returned… this time, bringing nesting material into the entrance. Within hours, the nest entrance is full of sticks. And Luna is trapped inside.
Hope
Meanwhile, I get a call about two owl chicks found on the ground at a nearby farm. They’ve fallen from their nest in a straw stack. Without warmth and food these chicks could perish in a matter of hours.
Owlets get intensive care
I have to act quickly to keep these chicks alive. There’s no choice but to rescue them. Back at base, the chicks are fed. It’s never nice to take an animal out of the wild, but this really was the only option.
A plan hatches
Luna is the ideal foster mother for these two. She's still preparing for those eggs to hatch, so she’s full of maternal hormones.
But first I have to release her
Meanwhile, in the nest, Luna is still trapped. If I don’t remove the sticks she will die. I remove the back of the nest. And with her gone, the nest can be cleared.
Luna meets her new chicks
Luna rushes in and envelopes the two chicks, brooding them instantly. It's almost as though she was expecting them.
Next time
Keep an eye on my channel to watch the chicks meet foster dad Bomber and get ready for their first flights.
*ABOUT ME*
____________
I am a British wildlife artist and filmmaker on a mission to share my love for wildlife with the world. As well as creating detailed animal film and art portraits, I promote wildlife tours around the world and do all I can to help conserve and protect wildlife here at my home in Yorkshire. I hope that by putting nature in the frame I can foster a deep love for wildlife amongst my followers.
You may like to purchase my artwork which you can find on my website: https://www.robertefuller.com. Many of my paintings are portraits of the wonderful characters you watch here!
You can also follow me on these platforms:
Website: https://www.robertefuller.com
Facebook: https://www.facebook.com/RobertEFullerArt/
Twitter: https://twitter.com/RobertEFuller
Instagram: https://www.instagram.com/RobertEFuller/
___________________
© Robert E Fuller
Copyright Disclaimer: Please feel free to share my videos but do not download any content without permission with the intent to re-upload. If you would like to license any content, please get in touch:
[email protected]
#robertefuller #tawnyowl #owl #wildlives #lunaandbomber
published: 27 May 2022
views: 3159837
8:33
At 90, This is Sadly What Happened to Robert Fuller
At 90, This is Sadly What Happened to Robert Fuller
#robertfuller
Robert Fuller is an American horse rancher and retired actor. He began his career on televisio...
At 90, This is Sadly What Happened to Robert Fuller
#robertfuller
Robert Fuller is an American horse rancher and retired actor. He began his career on television, guest-starring primarily on Western programs, while appearing in several movies, including: The Brain from Planet Arous, Teenage Thunder, Return of the Seven, Incident at Phantom Hill, and The Hard Ride
Subscribe now for more Interesting videos.
Like share and comments.
⭐ YouTube : https://www.youtube.com/channel/UCwjZAp3_mlfUc7aZmptuivA
https://wn.com/At_90,_This_Is_Sadly_What_Happened_To_Robert_Fuller
At 90, This is Sadly What Happened to Robert Fuller
#robertfuller
Robert Fuller is an American horse rancher and retired actor. He began his career on television, guest-starring primarily on Western programs, while appearing in several movies, including: The Brain from Planet Arous, Teenage Thunder, Return of the Seven, Incident at Phantom Hill, and The Hard Ride
Subscribe now for more Interesting videos.
Like share and comments.
⭐ YouTube : https://www.youtube.com/channel/UCwjZAp3_mlfUc7aZmptuivA
published: 05 Jul 2024
views: 11028
2:01
First Barn Owl Chick Hatches Out | Gylfie & Dryer | Robert E Fuller
Watch as the first chick from barn owls Gylfie & Dryer's late egg clutch hatches out.
Date filmed: August 2024
Watch barn owls Gylfie & Dryer interact live o...
Watch as the first chick from barn owls Gylfie & Dryer's late egg clutch hatches out.
Date filmed: August 2024
Watch barn owls Gylfie & Dryer interact live on my nest cam: https://youtube.com/playlist?list=PLx09JDaWUEFM-u8Q8V11cI1Ghk_-byaPM&si=IiuGt5h53H2k4qUx and follow their story in this playlist: https://youtube.com/playlist?list=PLx09JDaWUEFPGeo0NropB21-UI0PIagx3&si=7RCPFpt5OrwDY7YJ
*JOIN MY MISSION*
____________________
You can support my wildlife rehabilitation and conservation work by donating here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4 or joining one of my supporter communities: https://www.robertefuller.com/support_and_donate/
*ABOUT THIS FILM*
____________________
It's August and barn owls Gylfie & Dryer have a late clutch of five eggs. This is their second brood this season and it's a large one!
Egg crack
Watch as the first egg pips and see it bulge as the chick inside makes the first dint in the shell.
Chick hatch
Then see how owl mum Gylfie helps remove the shell to reveal a tiny, featherless chick emerging. During its first hours this barn owl chick is so small when it tumbles upside it can't right itself.
Proud owl dad
Watch how proud Gylfie's partner Dryer seems at their new arrival. As soon as the chick hatches he reaches out to preen Gylfie as if to say well done - and in his hurry gets a pellet stuck to his foot.
Gylfie takes a break
Incubating and brooding is a messy job. As soon as she can, Gylfie flies out for a break and leaves capable Dyer to stand guard.
Four chicks to go
There are still four chicks to hatch. Barn owl chicks normally hatch within a 2/3 day window and so the next one is due to hatch soon. Keep checking in to my live cams for a chance to watch the process live.
*ABOUT ME*
____________
I am a British wildlife artist and filmmaker on a mission to share my love for wildlife with the world. As well as creating detailed animal film and art portraits, I promote wildlife tours around the world and do all I can to help conserve and protect wildlife here at my home in Yorkshire. I hope that by putting nature in the frame I can foster a deep love for wildlife amongst my followers.
You may like to purchase my artwork: https://www.robertefuller.com. Many of my paintings are portraits of the characters you watch here!
You can also follow me on these platforms:
Website: https://www.robertefuller.com
Facebook: https://www.facebook.com/RobertEFullerArt/
Twitter: https://twitter.com/RobertEFuller
Instagram: https://www.instagram.com/RobertEFuller/
Or sign up to my newsletter: https://mailchi.mp/robertefuller/newslettersignup
#robertefuller #barnowl #discoverwildlife
___________________
© Robert E Fuller
Copyright Disclaimer: Please feel free to share my videos but do not download any content without permission with the intent to re-upload. If you would like to license any content, please get in touch:
[email protected]
https://wn.com/First_Barn_Owl_Chick_Hatches_Out_|_Gylfie_Dryer_|_Robert_E_Fuller
Watch as the first chick from barn owls Gylfie & Dryer's late egg clutch hatches out.
Date filmed: August 2024
Watch barn owls Gylfie & Dryer interact live on my nest cam: https://youtube.com/playlist?list=PLx09JDaWUEFM-u8Q8V11cI1Ghk_-byaPM&si=IiuGt5h53H2k4qUx and follow their story in this playlist: https://youtube.com/playlist?list=PLx09JDaWUEFPGeo0NropB21-UI0PIagx3&si=7RCPFpt5OrwDY7YJ
*JOIN MY MISSION*
____________________
You can support my wildlife rehabilitation and conservation work by donating here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4 or joining one of my supporter communities: https://www.robertefuller.com/support_and_donate/
*ABOUT THIS FILM*
____________________
It's August and barn owls Gylfie & Dryer have a late clutch of five eggs. This is their second brood this season and it's a large one!
Egg crack
Watch as the first egg pips and see it bulge as the chick inside makes the first dint in the shell.
Chick hatch
Then see how owl mum Gylfie helps remove the shell to reveal a tiny, featherless chick emerging. During its first hours this barn owl chick is so small when it tumbles upside it can't right itself.
Proud owl dad
Watch how proud Gylfie's partner Dryer seems at their new arrival. As soon as the chick hatches he reaches out to preen Gylfie as if to say well done - and in his hurry gets a pellet stuck to his foot.
Gylfie takes a break
Incubating and brooding is a messy job. As soon as she can, Gylfie flies out for a break and leaves capable Dyer to stand guard.
Four chicks to go
There are still four chicks to hatch. Barn owl chicks normally hatch within a 2/3 day window and so the next one is due to hatch soon. Keep checking in to my live cams for a chance to watch the process live.
*ABOUT ME*
____________
I am a British wildlife artist and filmmaker on a mission to share my love for wildlife with the world. As well as creating detailed animal film and art portraits, I promote wildlife tours around the world and do all I can to help conserve and protect wildlife here at my home in Yorkshire. I hope that by putting nature in the frame I can foster a deep love for wildlife amongst my followers.
You may like to purchase my artwork: https://www.robertefuller.com. Many of my paintings are portraits of the characters you watch here!
You can also follow me on these platforms:
Website: https://www.robertefuller.com
Facebook: https://www.facebook.com/RobertEFullerArt/
Twitter: https://twitter.com/RobertEFuller
Instagram: https://www.instagram.com/RobertEFuller/
Or sign up to my newsletter: https://mailchi.mp/robertefuller/newslettersignup
#robertefuller #barnowl #discoverwildlife
___________________
© Robert E Fuller
Copyright Disclaimer: Please feel free to share my videos but do not download any content without permission with the intent to re-upload. If you would like to license any content, please get in touch:
[email protected]
published: 27 Aug 2024
views: 38454
8:26
The Sad life of Robert Fuller
The Sad life of Robert Fuller
Robert Fuller was born on July 29, 1933, was born as Leonard Leroy Lee on July 29, 1933, in Troy, New York, the only child of Eliz...
The Sad life of Robert Fuller
Robert Fuller was born on July 29, 1933, was born as Leonard Leroy Lee on July 29, 1933, in Troy, New York, the only child of Elizabeth Lee, a dance instructor. Prior to his birth, Betty married Robert Simpson, Sr., a Naval Academy officer.In 1939, at the age of 6, his family moved to Key West, Florida, where, already known by the nickname of "Buddy," he took the name Robert Simpson Jr. The early highlights of his life were acting and dancing.
#RobertFuller
https://wn.com/The_Sad_Life_Of_Robert_Fuller
The Sad life of Robert Fuller
Robert Fuller was born on July 29, 1933, was born as Leonard Leroy Lee on July 29, 1933, in Troy, New York, the only child of Elizabeth Lee, a dance instructor. Prior to his birth, Betty married Robert Simpson, Sr., a Naval Academy officer.In 1939, at the age of 6, his family moved to Key West, Florida, where, already known by the nickname of "Buddy," he took the name Robert Simpson Jr. The early highlights of his life were acting and dancing.
#RobertFuller
published: 16 Dec 2020
views: 54054
3:34
Help me to help wildlife | Become a channel member | Robert E Fuller
*JOIN MY MISSION*
Support my wildlife rehabilitation and conservation work and join my cha...
Play in Full Screen
Help me to help wildlife | Become a channel member | Robert E Fuller
Help me to help wildlife | Become a channel member | Robert E Fuller
*JOIN MY MISSION*
Support my wildlife rehabilitation and conservation work and join my channel https://www.youtube.com/c/robertefuller/join
Your contribution will help me buy food for the wildlife I support, build new nest boxes and habitats, and rehabilitate and release animals back into the wild. It will also help to keep the livestreams up and running and support my channel so I can keep sharing awareness about wildlife.
I'm offering three tiers of support so that you can decide how much you would like to donate.
Find out more here: https://www.youtube.com/c/robertefuller/join
Depending on the tier you choose, you can also expect something back, including exclusive photos and updates, special members only videos, early access to videos and special discounts and priority replies to comments.
*ABOUT ME*
____________
I am a British wildlife artist and filmmaker on a mission to share my love for wildlife with the world. As well as creating detailed animal film and art portraits, I promote wildlife tours around the world and do all I can to help conserve and protect wildlife here at my home in Yorkshire. I hope that by putting nature in the frame I can foster a deep love for wildlife amongst my followers.
You can also follow me on these platforms:
Website: https://www.robertefuller.com
Facebook: https://www.facebook.com/RobertEFullerArt/
Twitter: https://twitter.com/RobertEFuller
Instagram: https://www.instagram.com/RobertEFuller/
Or sign up to my newsletter: https://mailchi.mp/robertefuller/newslettersignup
#robertefuller #members #wildliferescue
___________________
© Robert E Fuller
Copyright Disclaimer: Please feel free to share my videos but do not download any content without permission with the intent to re-upload. If you would like to license any content, please get in touch:
[email protected]
0:00
🔴 LIVE Barn Owls 🦉🐥, Stoats 🐾, Kestrels 🦅🥚, Tawny Owls 🦉 | From Fotherdale, Yorkshire, UK
Welcome to 'Live from Fotherdale', a selection of bird cams streamed from inside barn owl ...
Play in Full Screen
🔴 LIVE Barn Owls 🦉🐥, Stoats 🐾, Kestrels 🦅🥚, Tawny Owls 🦉 | From Fotherdale, Yorkshire, UK
🔴 LIVE Barn Owls 🦉🐥, Stoats 🐾, Kestrels 🦅🥚, Tawny Owls 🦉 | From Fotherdale, Yorkshire, UK
Welcome to 'Live from Fotherdale', a selection of bird cams streamed from inside barn owl and kestrel nests, a buzzard feeding post and a stoat habitat. This livestream also picks up passing foxes, hares, weasels and even badgers - offering the very best of British wildlife for you to enjoy.
There is a friendly live chat, offering a supportive and informative community of wildlife lovers to interact with as you watch the bird cams. You can also see more British wildlife visit my other livestream 'Live From Ashwood':
https://www.youtube.com/live/UcyLalFO4yk?si=1KvwQIabbRn9GkEB
To support my channel and the wildlife rehabilitation and conservation work I do, please donate here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4
What to expect on this livestream:
BARN OWLS - GYLFIE & DRYER
Gylfie is a long term resident of Fotherdale and has a mate Dryer and their chicks.
TAWNY OWLS - BOMBER & LUNA
This pair often nest in Beech Stump
BARN OWLS AT NIGHT
My bird cams Kestrel Feeding Post, Buzzard Log and Maze Wall are also great locations to see lots of barn owl action in the evenings.
STOATS & WEASELS
Look out for these on the maze wall. It will soon be spring and I'm hoping for some more kits to see! #robertefuller
GARDEN BIRD CAM
This camera is trained on a stump where I leave food out for garden birds. Look out for blue tits, great tits, chaffinches, sparrows, even woodpeckers!
Live chat:
We have a great community chatting alongside our live streams - feel free to say hi and join in! We respectfully ask you to adhere to the following rules: No self-promotion, chat in English, Don’t troll, No political/ religious talk, no swearing, no abbreviations, no caps, no more than 3 emojis, be respectful of the mods and others.
I am a British wildlife artist based in Thixendale, North Yorkshire, UK. I build ideal habitats to encourage wildlife into my garden and use nest cams to study their behaviour. These studies inform my paintings. I share the best of my video research on this channel for free. If you would like to support my work please consider a small donation here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4 Or of course you may like to purchase my artwork which you will find on my website: https://www.robertefuller.com. Many of the paintings are portraits of the creatures you watch here! © Robert E Fuller
#owl #kestrel #barnowl #tawnyowl
11:54
Barn Owls' Go For Second Brood | Gylfie & Dryer | Robert E Fuller
With chicks ready to fledge, barn owls Gylfie and Dryer go for another brood. But a double...
Play in Full Screen
Barn Owls' Go For Second Brood | Gylfie & Dryer | Robert E Fuller
Barn Owls' Go For Second Brood | Gylfie & Dryer | Robert E Fuller
With chicks ready to fledge, barn owls Gylfie and Dryer go for another brood. But a double brood means double the work for male barn owl Dryer.
Date filmed: July-Aug 2024
Watch barn owls Gylfie & Dryer interact live on my nest cam: https://youtube.com/playlist?list=PLx09JDaWUEFM-u8Q8V11cI1Ghk_-byaPM&si=IiuGt5h53H2k4qUx & follow their story in this playlist:
*JOIN MY MISSION*
____________________
You can support my wildlife rehabilitation and conservation work by donating here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4 or joining one of my supporter communities: https://www.robertefuller.com/support_and_donate/
*ABOUT THIS FILM*
____________________
Barn owls Gylfie & Dryer
This barn owl pair have already raised two chicks this year: their own, Uno, and a foster chick, Lucky, but this doesn't stop them going for a second.
Second broods
Double brooding, where birds raise two sets of chicks in one year, is a sign that these owls have enough food and energy. On average just 10% of barn owls in England will attempt a second brood and barn owls and short eared owls are the only UK owls to do this.
A new nest
With their first chicks still occupying their favourite nest, Gylfie & Dryer chose to lay this new clutch in Beech stump. But this choice comes at a risk, since this is where tawny owls Bomber and Luna normally raise their young.
Competition
Thankfully the tawnys have finished raising their chicks, but a stock dove pair also have their eye on the property and Dryer must chase them off.
1st egg
On the 23rd July, Gylfie reveals her first egg, and Dryer can't wait to see it!
Male barn owl's double duties
Dryer now has two broods to care for. Although Lucky and Uno are fledglings now, he continues to bring them food whilst also supplying laying barn owl Gylfie with sustenance.
Dryer's fascination
But Dryer seems besotted and whilst Gylfie takes a break after laying a second egg, he sneaks a peek, looking first into the camera as if to check no one’s watching. But Gylfie soon returns to shoo him away. It is her job to brood!
Three eggs
When Gylfie stands to reveal a 3rd egg, I assume she is done. Over her 10 years here at Fotherdale, she normally averages three eggs per clutch
A fourth barn owl egg
But 3 days later, a 4th egg is revealed. Gylfie immediately gulps down a vole she has cached away in the corner of the nest - she needs all the energy she can get to get through the next month of 24/7 incubation
Then a fifth
Then in early August, Gylfie reveals a 5th barn owl egg. This makes her largest clutch since 2021 with Finn. But after laying such a large clutch, Gylfie needs more food than ever and Dryer's provisions slacken. The cameras capture her leaving the clutch to look for food herself.
Hatching begins
Thankfully Dryer resumes his duties and by 23rd August, 31 days after the first egg was laid, Dyer hears a chick is call from inside its egg. He takes a second look, and places the vole gently on top.
Gylfie returns
When Gylfie returns to the nest she puts the vole to one side.. for now. She knows it won't be long.
First brood
Meanwhile I spot Uno now able to fend for herself and Lucky has already dispersed.
Join me next time, as these eggs start hatching
And the chicks develop well under the care of this experienced pair
*ABOUT ME*
____________
I am a British wildlife artist and filmmaker on a mission to share my love for wildlife with the world. As well as creating detailed animal film and art portraits, I promote wildlife tours around the world and do all I can to help conserve and protect wildlife here at my home in Yorkshire. I hope that by putting nature in the frame I can foster a deep love for wildlife amongst my followers.
You may like to purchase my artwork: https://www.robertefuller.com. Many of my paintings are portraits of the characters you watch here!
You can also follow me on these platforms:
Website: https://www.robertefuller.com
Facebook: https://www.facebook.com/RobertEFullerArt/
Twitter: https://twitter.com/RobertEFuller
Instagram: https://www.instagram.com/RobertEFuller/
Or sign up to my newsletter: https://mailchi.mp/robertefuller/newslettersignup
#robertefuller #barnowl #wildlives
*CHAPTERS*
_____________
00:00 Barn owls 2nd brood
01:32 Securing a nest
02:56 1st egg
03:46 Male barn owl's double duties
03:56 2nd egg
05:08 3rd egg
05:55 4th egg
06:31 5th egg
07:00 Male barn owl Dryer
09:05 Chicks peeping in eggs
10:33 Next time
___________________
© Robert E Fuller
Copyright Disclaimer: Please feel free to share my videos but do not download any content without permission with the intent to re-upload. If you would like to license any content, please get in touch:
[email protected]
2:02
Barn Owl Tries to Feed Cheeping Egg | Gylfie & Dryer | Robert E Fuller
Male barn owl Dryer hears a cheep from one of the eggs and tries to feed it.
Date filmed:...
Play in Full Screen
Barn Owl Tries to Feed Cheeping Egg | Gylfie & Dryer | Robert E Fuller
Barn Owl Tries to Feed Cheeping Egg | Gylfie & Dryer | Robert E Fuller
Male barn owl Dryer hears a cheep from one of the eggs and tries to feed it.
Date filmed: August 2024
Watch Gylfie & Finn interact live on my nest cam: https://youtube.com/playlist?list=PLx09JDaWUEFM-u8Q8V11cI1Ghk_-byaPM&si=IiuGt5h53H2k4qUx and follow their story in this playlist: https://www.youtube.com/playlist?list=PLx09JDaWUEFPGeo0NropB21-UI0PIagx3
*JOIN MY MISSION*
____________________
You can support my wildlife rehabilitation and conservation work by donating here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4 or joining one of my supporter communities: https://www.robertefuller.com/support_and_donate/
*ABOUT THIS FILM*
____________________
While female barn owl Gylfie is out of the nest, Dryer, her partner enters with a freshly caught vole.
He can hears a cheeping sound and goes straight to them. It looks like a chick is calling from inside the egg!
Dryer looks confused to find that a chick hasn't hatched yet! He goest back to take a second look, and places the vole gently on top of the eggs! He's seems so sure that there's a hatchling there!
Female Gylfie soon returns to take over. She seems to knows they haven’t hatched yet and puts the vole to one side for now. It seems like the hatching process has begun. I'm expecting the first egg to hatch imminently.
*ABOUT ME*
____________
I am a British wildlife artist and filmmaker on a mission to share my love for wildlife with the world. As well as creating detailed animal film and art portraits, I promote wildlife tours around the world and do all I can to help conserve and protect wildlife here at my home in Yorkshire. I hope that by putting nature in the frame I can foster a deep love for wildlife amongst my followers.
You may like to purchase my artwork: https://www.robertefuller.com. Many of my paintings are portraits of the characters you watch here!
You can also follow me on these platforms:
Website: https://www.robertefuller.com
Facebook: https://www.facebook.com/RobertEFullerArt/
Twitter: https://twitter.com/RobertEFuller
Instagram: https://www.instagram.com/RobertEFuller/
Or sign up to my newsletter: https://mailchi.mp/robertefuller/newslettersignup
#robertefuller #barnowl #birds #owls #babybird
___________________
© Robert E Fuller
Copyright Disclaimer: Please feel free to share my videos but do not download any content without permission with the intent to re-upload. If you would like to license any content, please get in touch:
[email protected]
2:07
Transforming Derelict Farmhouse To Wildlife Haven | My Wildlife Gallery | Robert E Fuller
Watch as I create a haven for wildlife here in Yorkshire.
Follow the process as I create ...
Play in Full Screen
Transforming Derelict Farmhouse To Wildlife Haven | My Wildlife Gallery | Robert E Fuller
Transforming Derelict Farmhouse To Wildlife Haven | My Wildlife Gallery | Robert E Fuller
Watch as I create a haven for wildlife here in Yorkshire.
Follow the process as I create a garden from scratch - digging ponds and planting native shrubs and wildflowers to provide food and shelter for a wealth of species.
See too how I add cameras so that I can enjoy direct views into the secret lives of the animals that come - including kestrels, owls, stoats and weasels!
You can see more of my wildlife art gallery in this series: https://youtube.com/playlist?list=PLx09JDaWUEFNd2JcMklbn8kwFElhMJ1D4 and learn more about my gallery on my website: https://www.robertefuller.com/visit-us/
Or, of course, you may like to purchase my artwork which you can find on my website: https://www.robertefuller.com. Many of my paintings are portraits of the wonderful characters you watch here!
*JOIN MY MISSION*
____________________
You can support my wildlife rehabilitation and conservation work by donating here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4 or joining one of my supporter communities: https://www.robertefuller.com/support_and_donate/
*ABOUT ME*
____________
I am a British wildlife artist and filmmaker on a mission to share my love for wildlife with the world. As well as creating detailed animal film and art portraits, I promote wildlife tours around the world and do all I can to help conserve and protect wildlife here at my home in Yorkshire. I hope that by putting nature in the frame I can foster a deep love for wildlife amongst my followers.
You can support my work by donating here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4 or joining one of my supporter communities: https://www.robertefuller.com/support_and_donate/
You can also follow me on these platforms:
Website: https://www.robertefuller.com
Facebook: https://www.facebook.com/RobertEFullerArt/
Twitter: https://twitter.com/RobertEFuller
Instagram: https://www.instagram.com/RobertEFuller/
Or sign up to my newsletter: https://mailchi.mp/robertefuller/newslettersignup
#robertefuller #wildlifeconservation #habitat
___________________
© Robert E Fuller
Copyright Disclaimer: Please feel free to share my videos but do not download any content without permission with the intent to re-upload. If you would like to license any content, please get in touch:
[email protected]
49:16
Wild Tawny Owls Adopt 6 Orphaned Owlets | Full Story | Luna & Bomber | Robert E Fuller
Tawny owls Luna and Bomber warmed hearts around the world after adopting 6 orphaned owlets...
Play in Full Screen
Wild Tawny Owls Adopt 6 Orphaned Owlets | Full Story | Luna & Bomber | Robert E Fuller
Wild Tawny Owls Adopt 6 Orphaned Owlets | Full Story | Luna & Bomber | Robert E Fuller
Tawny owls Luna and Bomber warmed hearts around the world after adopting 6 orphaned owlets.
Watch Luna & Bomber interact live on my nest cam: https://youtube.com/playlist?list=PLx09JDaWUEFM-u8Q8V11cI1Ghk_-byaPM and follow their story in this playlist: https://youtube.com/playlist?list=PLx09JDaWUEFPQ1TFNBr_6PbrcPk5GWcWv
*JOIN MY MISSION*
____________________
You can support my wildlife rehabilitation and conservation work by donating here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4 or joining one of my supporter communities: https://www.robertefuller.com/support_and_donate/
*ABOUT THIS FILM*
____________________
Securing a nest
The story begins as this tawny owl pair search for a suitable site to start a family. When they return to last year's nest, they have to fight barn owl Gylfie for it. But the battle is worth it- this nest is special to Luna. This is where she grew up as a fostered owl.
Tawny owl eggs
Luna goes on to lay 3 eggs, each 64 hours apart. Look out for Bomber's joyful reaction when he spots the first one.
Eggs fail
After 30 days of incubation, it was clear that Luna's eggs were not going to hatch. Later I shine a torch through them and see they were never viable.
Time to act
While a pair of jackdaws lay siege to the nest, blocking the tawny owl mum inside, I am called out to rescue two tawny owl chicks that have fallen from a straw stack.
A solution
The owls need a mum, and Luna needs babies - so I open the back of the nest to let Luna out and clear the sticks. Then I place the chicks inside in hopes that she will return.
Luna welcomes the orphans
Hours later Luna flies back to the nest and spots the owlets. She rushes over and wraps them under her wings as if they were her own. Later Bomber meets them and his reaction is equally touching.
Jackdaws return
But the threat from the jackdaws isn't over and soon they have trapped the family inside. Luna is visibly distressed. Without my help, all three owls would surely die.
Parents compete
Luna, so delighted to be a mum at last, barely allows Bomber a moment with the chicks. So possessive over them, she pushes him away whenever he arrives with food or tries to spend time with them.
Chicks grow fast
With all this love and attention the chicks grow up fast and it isn't long before they take their first peeks outside the nest and flap their wings, ready to fly.
ID Rings
Before they go, BTO licenced bird ringer Jean Thorpe of Ryedale Rehabilitation arrives to clip ID rings on their legs. These are individually numbered and help track owl populations across the country.
Flying lessons
Luna acts as a teacher, encouraging the first chick (named Dusk by our livestream fans) to hop to a nearby branch before launching off into the trees.
More foster chicks
Just as Bomber & Luna's work is done, 3 more tawny owl chicks are handed in. Luna instantly welcomes the first, but it takes the owl parents a few days to realise there are more. Then a third rescue arrives from Doncaster. We nickname him Donny and watch with delight as he is accepted by the family.
All 6 owlets fly free
As I watch all 6 owlets flit through the trees it's incredible to think back at their incredible journey.
*ABOUT ME*
____________
I am a British wildlife artist and filmmaker on a mission to share my love for wildlife with the world. As well as creating detailed animal film and art portraits, I promote wildlife tours around the world and do all I can to help conserve and protect wildlife here at my home in Yorkshire. I hope that by putting nature in the frame I can foster a deep love for wildlife amongst my followers.
You may like to purchase my artwork which you can find on my website: https://www.robertefuller.com. Many of my paintings are portraits of the wonderful characters you watch here!
You can also follow me on these platforms:
Website: https://www.robertefuller.com
Facebook: https://www.facebook.com/RobertEFullerArt/
Twitter: https://twitter.com/RobertEFuller
Instagram: https://www.instagram.com/RobertEFuller/
*CHAPTERS*
_____________
00:00 Meet Luna
00:11 Owls Search for Place To Nest
00:42 Fight for Nest
01:31 Luna's Adoption Story
04:32 Luna Lays First Egg
08:38 Eggs Fail
08:39 Jackdaw Siege
09:03 Rescuing Two Tawny Owlets
09:44 Placing Owlets with Luna
11:51 Luna Welcomes Owlets
13:32 Owlets Meet Foster Father
15:22 Jackdaw Trap
20:47 Luna Possessive of Chicks
24:00 Chick's Get ID Rings
29:15 Chick's First Look Outside
30:31 Allopreening
32:25 Flying Lessons
37:24 More Tawny Orphans
43:07 Final Rescue
46:23 Helping Feed Owlets
___________________
© Robert E Fuller
Copyright Disclaimer: Please feel free to share my videos but do not download any content without permission with the intent to re-upload. If you would like to license any content, please get in touch:
[email protected]
#robertefuller #tawnyowl #owl #wildlives #lunaandbomber
13:04
Tawny Owl Luna's Tragic Loss Has a Happy Ending🦉| Luna & Bomber | Robert E Fuller
This is the story of a wild tawny owl named Luna who's eggs fail to hatch and it has a ver...
Play in Full Screen
Tawny Owl Luna's Tragic Loss Has a Happy Ending🦉| Luna & Bomber | Robert E Fuller
Tawny Owl Luna's Tragic Loss Has a Happy Ending🦉| Luna & Bomber | Robert E Fuller
This is the story of a wild tawny owl named Luna who's eggs fail to hatch and it has a very happy ending.
Watch Luna & Bomber interact live on my nest cam: https://youtube.com/playlist?list=PLx09JDaWUEFM-u8Q8V11cI1Ghk_-byaPM and follow their story in this playlist: https://youtube.com/playlist?list=PLx09JDaWUEFPQ1TFNBr_6PbrcPk5GWcWv
*JOIN MY MISSION*
____________________
You can support my wildlife rehabilitation and conservation work by donating here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4 or joining one of my supporter communities: https://www.robertefuller.com/support_and_donate/
*ABOUT THIS FILM*
____________________
Luna's story
The story begins in January as Luna and her mate Bomber look for somewhere to nest. This owl couple are an established pair and nested here at my home in North Yorkshire last year, when their eggs sadly failed.
Beech stump
Beech stump is an owl box I made (from an old beech stump) many years ago and is where Luna grew up. Ironically, Luna is herself a fostered owl and back in 2017 I placed her in this box with a wild tawny owl pair who raised her as their own.
Nest revamp
But since Bomber & Luna were here, I have made some renovations and the owl pair seem surprised at how it has changed. They seem to like it and it isn't long before Luna begins scraping out a hollow into the sawdust. This will do for an egg.
Fighting off competition
The newly restored nest has caught the eye of a few other birds too and Luna and Bomber have to see off barn owl Gylfie before they can settle down to making it their home.
Nesting
Tawny owls make their nests in holes in trees, and both male and females scrape out the hollows the eggs will sit in. Luna also seems to like to add her own touches. I see her picking off bits of bark and making home improvements.
Egg laying
By mid-May, Luna lays her first egg. But as she broods it a jackdaw and then a kestrel land at then entrance. Luna stays calm. Tawny owls lay eggs every two to three days… and even with disturbance from jackdaws outside… 64 hours later she’s laid a second egg. And then a third, 64 hours after that. Her clutch of three is now complete.
Incubation
Tawny owls incubate their eggs for approximately 30 days and as Luna broods the clutch Bomber drops in with regular food deliveries.
Then tragedy starts
But a month later, in spite of Luna’s constant brooding there are no signs of hatching and it becomes clear that yet again Luna's eggs have failed.
And Luna is trapped
To make matters worse, the jackdaws have returned… this time, bringing nesting material into the entrance. Within hours, the nest entrance is full of sticks. And Luna is trapped inside.
Hope
Meanwhile, I get a call about two owl chicks found on the ground at a nearby farm. They’ve fallen from their nest in a straw stack. Without warmth and food these chicks could perish in a matter of hours.
Owlets get intensive care
I have to act quickly to keep these chicks alive. There’s no choice but to rescue them. Back at base, the chicks are fed. It’s never nice to take an animal out of the wild, but this really was the only option.
A plan hatches
Luna is the ideal foster mother for these two. She's still preparing for those eggs to hatch, so she’s full of maternal hormones.
But first I have to release her
Meanwhile, in the nest, Luna is still trapped. If I don’t remove the sticks she will die. I remove the back of the nest. And with her gone, the nest can be cleared.
Luna meets her new chicks
Luna rushes in and envelopes the two chicks, brooding them instantly. It's almost as though she was expecting them.
Next time
Keep an eye on my channel to watch the chicks meet foster dad Bomber and get ready for their first flights.
*ABOUT ME*
____________
I am a British wildlife artist and filmmaker on a mission to share my love for wildlife with the world. As well as creating detailed animal film and art portraits, I promote wildlife tours around the world and do all I can to help conserve and protect wildlife here at my home in Yorkshire. I hope that by putting nature in the frame I can foster a deep love for wildlife amongst my followers.
You may like to purchase my artwork which you can find on my website: https://www.robertefuller.com. Many of my paintings are portraits of the wonderful characters you watch here!
You can also follow me on these platforms:
Website: https://www.robertefuller.com
Facebook: https://www.facebook.com/RobertEFullerArt/
Twitter: https://twitter.com/RobertEFuller
Instagram: https://www.instagram.com/RobertEFuller/
___________________
© Robert E Fuller
Copyright Disclaimer: Please feel free to share my videos but do not download any content without permission with the intent to re-upload. If you would like to license any content, please get in touch:
[email protected]
#robertefuller #tawnyowl #owl #wildlives #lunaandbomber
8:33
At 90, This is Sadly What Happened to Robert Fuller
At 90, This is Sadly What Happened to Robert Fuller
#robertfuller
Robert Fuller is an Amer...
Play in Full Screen
At 90, This is Sadly What Happened to Robert Fuller
At 90, This is Sadly What Happened to Robert Fuller
At 90, This is Sadly What Happened to Robert Fuller
#robertfuller
Robert Fuller is an American horse rancher and retired actor. He began his career on television, guest-starring primarily on Western programs, while appearing in several movies, including: The Brain from Planet Arous, Teenage Thunder, Return of the Seven, Incident at Phantom Hill, and The Hard Ride
Subscribe now for more Interesting videos.
Like share and comments.
⭐ YouTube : https://www.youtube.com/channel/UCwjZAp3_mlfUc7aZmptuivA
2:01
First Barn Owl Chick Hatches Out | Gylfie & Dryer | Robert E Fuller
Watch as the first chick from barn owls Gylfie & Dryer's late egg clutch hatches out.
Da...
Play in Full Screen
First Barn Owl Chick Hatches Out | Gylfie & Dryer | Robert E Fuller
First Barn Owl Chick Hatches Out | Gylfie & Dryer | Robert E Fuller
Watch as the first chick from barn owls Gylfie & Dryer's late egg clutch hatches out.
Date filmed: August 2024
Watch barn owls Gylfie & Dryer interact live on my nest cam: https://youtube.com/playlist?list=PLx09JDaWUEFM-u8Q8V11cI1Ghk_-byaPM&si=IiuGt5h53H2k4qUx and follow their story in this playlist: https://youtube.com/playlist?list=PLx09JDaWUEFPGeo0NropB21-UI0PIagx3&si=7RCPFpt5OrwDY7YJ
*JOIN MY MISSION*
____________________
You can support my wildlife rehabilitation and conservation work by donating here: https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=A52ZHAMJZC3J4 or joining one of my supporter communities: https://www.robertefuller.com/support_and_donate/
*ABOUT THIS FILM*
____________________
It's August and barn owls Gylfie & Dryer have a late clutch of five eggs. This is their second brood this season and it's a large one!
Egg crack
Watch as the first egg pips and see it bulge as the chick inside makes the first dint in the shell.
Chick hatch
Then see how owl mum Gylfie helps remove the shell to reveal a tiny, featherless chick emerging. During its first hours this barn owl chick is so small when it tumbles upside it can't right itself.
Proud owl dad
Watch how proud Gylfie's partner Dryer seems at their new arrival. As soon as the chick hatches he reaches out to preen Gylfie as if to say well done - and in his hurry gets a pellet stuck to his foot.
Gylfie takes a break
Incubating and brooding is a messy job. As soon as she can, Gylfie flies out for a break and leaves capable Dyer to stand guard.
Four chicks to go
There are still four chicks to hatch. Barn owl chicks normally hatch within a 2/3 day window and so the next one is due to hatch soon. Keep checking in to my live cams for a chance to watch the process live.
*ABOUT ME*
____________
I am a British wildlife artist and filmmaker on a mission to share my love for wildlife with the world. As well as creating detailed animal film and art portraits, I promote wildlife tours around the world and do all I can to help conserve and protect wildlife here at my home in Yorkshire. I hope that by putting nature in the frame I can foster a deep love for wildlife amongst my followers.
You may like to purchase my artwork: https://www.robertefuller.com. Many of my paintings are portraits of the characters you watch here!
You can also follow me on these platforms:
Website: https://www.robertefuller.com
Facebook: https://www.facebook.com/RobertEFullerArt/
Twitter: https://twitter.com/RobertEFuller
Instagram: https://www.instagram.com/RobertEFuller/
Or sign up to my newsletter: https://mailchi.mp/robertefuller/newslettersignup
#robertefuller #barnowl #discoverwildlife
___________________
© Robert E Fuller
Copyright Disclaimer: Please feel free to share my videos but do not download any content without permission with the intent to re-upload. If you would like to license any content, please get in touch:
[email protected]
8:26
The Sad life of Robert Fuller
The Sad life of Robert Fuller
Robert Fuller was born on July 29, 1933, was born as Leonard...
Play in Full Screen
The Sad life of Robert Fuller
The Sad life of Robert Fuller
The Sad life of Robert Fuller
Robert Fuller was born on July 29, 1933, was born as Leonard Leroy Lee on July 29, 1933, in Troy, New York, the only child of Elizabeth Lee, a dance instructor. Prior to his birth, Betty married Robert Simpson, Sr., a Naval Academy officer.In 1939, at the age of 6, his family moved to Key West, Florida, where, already known by the nickname of "Buddy," he took the name Robert Simpson Jr. The early highlights of his life were acting and dancing.
#RobertFuller
');
} else {
var query = elem.find('.keywords').html();
$.ajax({
context: elem,
url: 'https://wn.com/api/upge/cheetah-search-adv/video',
cache: true,
data: {
'query': query
},
dataType: 'jsonp',
success: function(text) {
if (text.length > 0) {
video_id = text[0].id;
elem.find('.player').html('
VIDEO
');
}
}
});
}
}
var stopAllYouTubeVideos = function() {
var iframes = document.querySelectorAll('iframe');
Array.prototype.forEach.call(iframes, function(iframe) {
iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*');
});
}
jQuery(function() {
jQuery(".playVideo").live("click", function() {
if(!$(this).hasClass("played")){
stopAllYouTubeVideos();
var elem = $(this);
setTimeout(function(){
mouseOverMe(elem);
}, 1000);
}
});
jQuery(".description_box .expandContent").live("click", function() {
elem = $(this).parent().parent().parent().find('.descContent');
if(elem.height() > 51) {
elem.css('height', '44px');
$(this).html('Show More
');
}else{
elem.css('height', 'auto');
$(this).html('Hide
');
}
});
jQuery('.interview-play-off').click(function() {
$(".interview-play-off").hide();
$(".interview-play").show();
$(".videoplayer-control-pause").click();
});
jQuery(".video-desc .show_author_videos").live("click", function() {
query = $(this).attr('title');
container = $(this).parent().parent().parent().find('.video-author-thumbs');
$(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px');
jQuery.ajax({
url: '/api/upge/cheetah-photo-search/videoresults',
data: {'query': query},
success: function(text) {
if(!text) { text = i18n("No results"); }
container.html(jQuery(text));
}
});
});
});
// -->