- published: 13 Apr 2014
- views: 54490
'+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; })); }); -->
Enid Mary Blyton (11 August 1897 – 28 November 1968) was an English children's writer whose books have been among the world's best-sellers since the 1930s, selling more than 600 million copies. Blyton's books are still enormously popular, and have been translated into almost 90 languages; her first book, Child Whispers, a 24-page collection of poems, was published in 1922. She wrote on a wide range of topics including education, natural history, fantasy, mystery, and biblical narratives and is best remembered today for her Noddy, Famous Five, Secret Seven, and Adventure series.
Following the commercial success of her early novels such as Adventures of the Wishing Chair (1937) and The Enchanted Wood (1939), Blyton went on to build a literary empire, sometimes producing fifty books a year in addition to her prolific magazine and newspaper contributions. Her writing was unplanned and sprang largely from her unconscious mind; she typed her stories as events unfolded before her. The sheer volume of her work and the speed with which it was produced led to rumours that Blyton employed an army of ghost writers, a charge she vigorously denied.
Enid is a British dramatic television film first broadcast on 16 November 2009 on BBC Four. Directed by James Hawes it is based on the life of children's writer Enid Blyton, portrayed by Helena Bonham Carter. The film introduced the two main lovers of Blyton's life. Her first husband Hugh Pollock, who was also her publisher, was played by Matthew Macfadyen. Kenneth Darrell Waters, a London surgeon who became Blyton's second husband, was portrayed by Denis Lawson. The film explored how the orderly, reassuringly clear worlds Blyton created within her stories contrasted with the complexity of her own personal life.
The Famous Five is the name of a series of children's adventure novels written by English author Enid Blyton. The first book, Five on a Treasure Island, was published in 1942. The novels feature the adventures of a group of young children – Julian, Dick, Anne and Georgina (George) – and their dog Timmy.
The stories take place in the children's school holidays after they have returned from their respective boarding schools. Each time they meet they get caught up in an adventure, often involving criminals or lost treasure. Sometimes the scene is set close to George's family home at Kirrin Cottage in Dorset, such as the picturesque Kirrin Island, owned by George and her family in Kirrin Bay. George's own home and various other houses the children visit or stay in are hundreds of years old and often contain secret passages or smugglers' tunnels. In some books the children go camping in the countryside, on a hike or holiday together elsewhere. The settings, however, are almost always rural and enable the children to discover the simple joys of cottages, islands, the English and Welsh countryside and sea shores, as well as an outdoor life of picnics, lemonade, bicycle trips and swimming.
The Secret Seven or "Secret Seven Society" are a fictional group of child detectives created by Enid Blyton. They appear in one of several juvenile detective series Blyton wrote.
The Secret Seven consists of Peter (the society's leader), Janet (Peter's sister), Jack, Barbara, George, Pam and Colin. Jack's sister Susie and her best friend Binkie often make an appearance in the books; they hate the Secret Seven and delight in playing tricks designed to humiliate them, although much of this is fuelled by their almost obsessive desire to belong to the society.
Unlike most other Blyton series, this one takes place during the school term time because the characters go to day schools.
The names Secret Seven and Famous Five had already been used by author Charles Hamilton, under the pen-name Frank Richards, in his long-running series of stories featuring Billy Bunter and Greyfriars School. The Secret Seven was the name of a secret society that featured in a series of eleven stories published in The Magnet magazine in 1934; the term "Famous Five" dates from 1910 and is applied to a group of the leading characters.
The Secret Seven series is an 11 part series of stories published in The Magnet magazine in 1934. The author was prolific writer Charles Hamilton, writing under the pen name Frank Richards. The series was republished by the Howard Baker (Greyfriars Press) as two volumes of Magnet facsimile editions in 1976.
The stories are set in the fictional Greyfriars School. Venerable and respected Headmaster Dr. Locke, along with popular Head Prefect George Wingate and several other senior prefects, are all hospitalised after a road accident. Portly and pompous Fifth Form master Mr Prout is appointed as temporary Headmaster. He in turn appoints the bullying Gerald Loder as temporary Head Prefect. A tyrannical regime ensues, with unjust and brutal punishments raining down across the school.
The junior schoolboys respond by forming a secret society, the Secret Seven, to fight back against Loder and Prout. Despite its name, there are many more than seven members of the society – the name “Secret Seven” is designed to mislead the authorities and divert suspicion from the ringleaders.
Noddy is a fictional character created by English children's author Enid Blyton, originally published between 1949 and 1963. Television shows based on the character have run on British television since 1955 and continue to appear to this day.
Noddy is a little wooden puppet who lives in his own little House-for-One in Toyland.
The first book explains Noddy's origins. He was made by a woodcarver in a toy store but ran away after the man began to make a wooden lion, which scared Noddy. As he wanders through the woods, with no clothes, money or home, he meets Big Ears, a friendly brownie. Big Ears decides that Noddy is a toy and takes him to live in Toyland. He generously provides Noddy with a set of clothing and a house. While Noddy is quite happy to be a toy, the citizens of Toyland are not sure that he actually is one. They put Noddy on trial and examine whether he is a toy or an ornament. Eventually, Noddy is declared a toy, but still has to convince the court that he is a good toy. The judge accepts that Noddy is good after a doll tells the court that he saved her little girl from a lion, and he is allowed to stay in Toyland. Noddy gets his car in the second book. It is given to him after he helps solve a local mystery.
Item title reads - Personality meet - Enid Blyton. Beaconsfield, Buckinghamshire. M/S of children's writer Enid sat on a chair with typewriter on her lap. M/S as her two daughters, Gillian and Imogen, come in and greet her. M/S as they read a page from her typewriter, she hands them more. M/S as she types. M/S as she sits by the fire and reads letters sent to her. Her husband Darrell Waters comes in and sits down. M/S as she sifts through letters. C/U of their cat. M/S as the children bring in chairs and sit down to play a family game of snap. Various shots as the four of them play. M/S as she reads them one of her stories before bed. C/U of title "The Island of Adventure". M/S pile of books, pans to her hands typing. M/S of her typing. FILM ID:1388.2 A VIDEO FROM BRITISH...
Enid Mary Blyton, 71 (11th August 1897 - 28th November 1968) was an English children's writer whose books have been among the world's best-sellers since the 1930s, selling more than 600 million copies. Blyton's books are still enormously popular, and have been translated into 90 languages; her first book, Child Whispers, a 24-page collection of poems, was published in 1922. She wrote on a wide range of topics including education, natural history, fantasy, mystery, and biblical narratives and is best remembered today for her Noddy, Famous Five, and Secret Seven series.
#MaloryTowers #Factful-WonderfulWorld #EnidBlyton Watch Malory Towers Episode 01 - The Most Interesting Episode
AudioBook The Magic faraway Tree by Enid Blyton
Finally, here we have Sarah Greene reading Five on Finniston Farm. Another addition to the Listen for Pleasure collection. Catalogue No. LFP 7300 Recording date: 1987 Enjoy! And thanks for listening, MG
In my continuing quest for England and Englishness, Julia and I have gone in search of The Famous Five and The Secret Seven. Enid Mary Blyton (11 August 1897 – 28 November 1968) was an English children's writer whose books have been among the world's best-sellers since the 1930s, selling more than 600 million copies. Blyton's books are still enormously popular, and have been translated into 90 languages. She wrote on a wide range of topics including education, natural history, fantasy, mystery, and biblical narratives and is best remembered today for her Noddy, Famous Five and Secret Seven series. Is this a version of England or just nostalgia? ------------------------------------------------------------------- PLEASE SUPPORT THE BALD EXPLORER My videos are funded by people like you....
BBC Drama starring Helena Bonham Carter as Enid Blyton and Matthew Macfadyen. This Bio of the Children's author was made as part of the BBC's 'Women We Loved' season.
Live Wire is a channel where wonder and wisdom come together. Every night, our soothing stories will transport your little ones to enchanted lands, magical kingdoms, and fantastical worlds. But that's not all! Each tale is carefully crafted to teach valuable lessons about friendship, kindness, honesty, and more. Our stories are designed to inspire young minds, promote positive values, and help your child develop important life skills. #kidsworld #bedtimestories #shortstories #cartoonfortoddlers #learning #livewirekids #preschooling #storiesinenglishforkids #sharingiscaring #childrensliterature #kindness #kindergarten #empathy Meet Imaad ul Haq, our enthusiastic young narrator, passionate about staying active and creative! He enjoys playing cricket, cycling, exercising, and mastering taek...
Watch Malory Towers on Family Channel! It’s the first day of term at Malory Towers and new girl Darrell Rivers can’t wait for a fresh start. However, while she’s keen to settle in, will her past come back to haunt her?
Enid Mary Blyton (11 August 1897 – 28 November 1968) was an English children's writer whose books have been among the world's best-sellers since the 1930s, selling more than 600 million copies. Blyton's books are still enormously popular, and have been translated into almost 90 languages; her first book, Child Whispers, a 24-page collection of poems, was published in 1922. She wrote on a wide range of topics including education, natural history, fantasy, mystery, and biblical narratives and is best remembered today for her Noddy, Famous Five, Secret Seven, and Adventure series.
Following the commercial success of her early novels such as Adventures of the Wishing Chair (1937) and The Enchanted Wood (1939), Blyton went on to build a literary empire, sometimes producing fifty books a year in addition to her prolific magazine and newspaper contributions. Her writing was unplanned and sprang largely from her unconscious mind; she typed her stories as events unfolded before her. The sheer volume of her work and the speed with which it was produced led to rumours that Blyton employed an army of ghost writers, a charge she vigorously denied.