'+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; })); }); -->

Edmund Pevensie

Edmund "Ed" Pevensie is a fictional character in C. S. Lewis's The Chronicles of Narnia series. He is a principal character in three of the seven books (The Lion, the Witch and the Wardrobe, Prince Caspian, and The Voyage of the Dawn Treader), and a lesser character in two others (The Horse and His Boy and The Last Battle).

In the live-action films, The Lion, The Witch and The Wardrobe, Prince Caspian and The Voyage of the Dawn Treader, Edmund is portrayed by actor Skandar Keynes. Actor Mark Wells portrays an older Edmund at the end of the first film.

In The Lion, the Witch and the Wardrobe, Edmund betrays his siblings to the White Witch while under her influence, but as the story goes on, he accepts the error of his ways. He is redeemed with the intervention of Aslan and joins the fight against the witch. Fulfilling an ancient prophecy, he becomes King Edmund the Just, King of Narnia, and with sisters Susan and Lucy, co-ruler under High King Peter. Edmund is described in one book in a scene in Tashbaan as being part of a group of men 'as fair-skinned as [Shasta], and most of them had fair hair', although whether Edmund is one of the fair-haired ones is not clear. Certainly in the illustrations of him in the final book he is drawn as having fair hair.

Podcasts:

  • The Life and Death of Edmund Pevensie | Narnia Lore | Into the Wardrobe

    Check out the incredible K-12 educational resources from Memoria Press: https://www.memoriapress.com/wardrobe/?utm_source=ntoWardrobe&utm_medium=YouTube&utm_campaign=Edmund Edmund Pevensie is one of the most popular characters in all of The Chronicles of Narnia. Whether it's his adventures in the Lion, The Witch and the Wardrobe, Prince Caspian, or even cameos in The Horse and His Boy and The Last Battle (nothing in The Silver Chair or the Magician's Nephew!) Edmund made a lasting impact on C.S. Lewis' magical land. Edmund was literally caught between the two opposing forces of Aslan the Lion and Jadis the White Witch of Narnia, battled the Evil Mraz, was befriended by Mr. Tumnus, Reepicheep and others, and was loved by his siblings Lucy Pevesie, Susan Pevensie, and Peter Pevensie. Sp...

    published: 09 Sep 2022
  • The Chronicles Of Narnia: Prince Caspian: Skandar Keynes and William Moseley Video Interview

    Subscribe to our channel: http://bit.ly/EmpireSub The actors talk Narnia Official YouTube home of the world's biggest (and best) movie magazine and website. Want to keep up to date with everything going on in the world of film? Visit our website here: http://www.empireonline.com Follow us on Twitter here: http://twitter.com/empiremagazine Fan us on Facebook here: http://www.facebook.com/empiremagazine And subscribe on YouTube here: http://is.gd/yRxXu0 Subscribe to the mag / iPad edition here: http://www.greatmagazines.co.uk/empire

    published: 11 Sep 2009
  • Best of | Edmund Pevensie

    Watch in 720p50 :) This was such fun! Hope you'll laugh as much as I did while editing ♥ ⚬ Tumblr: www.tumblr.com/stellae3 Copyright Disclaimer Under Section 107 of the Copyright Act 1976. I only own the editing.

    published: 18 Jun 2020
  • Best Of Edmund Pevensie

    had to make this because peters was so funny and it was perfect for edmund

    published: 14 May 2019
  • Edmund Pevensie || As It Was

    #EdmundPevensie #SkandarKeynes #NarniaEdit #AsItWas #Shorts "You know it's not the same...I don't wanna talk about the way that it was..." 🎉       🎉       🎉       🎉       🎉       🎉 One of the things I love about Edmund is his character development, but I always feel like his past is something that would be hard for him to talk about...🥺 🎉       🎉       🎉       🎉       🎉       🎉 Thank you for watching! 🎉       🎉       🎉       🎉       🎉       🎉 Song: As It Was by Harry Styles 🎉       🎉       🎉       🎉       🎉       🎉 DISCLAIMER: I DO NOT OWN THE MUSIC OR CLIPS IN THIS VIDEO. ALL RIGHTS GO TO THEIR RESPECTIVE OWNERS. I only own the edit. Edmund's story is a beautiful one, one in which we can see ourselves represented. Because, like Aslan died in order to save Edmund, even though Edmund wa...

    published: 26 Nov 2022
  • Edmund Pevensie || whatever it takes

    HD + EARPHONES please. ♥ Subscribe my channel for more videos http://www.youtube.com/user/madalore1994 #fanvidfeed #thechroniclesofnarnia #edmundpevensie ———————————————————————— ○ Music: https://www.youtube.com/watch?v=M66U_DuMCS8 ○ Fandom: The Chronicles of Narnia ○ Coloring: Forever modified ►Tumblr : http://www.tumblr.com/blog/madalore ►Back-up account https://www.youtube.com/channel/UCScZJGu636j0I-sRAgWWXFg ►Twitter: https://twitter.com/madalore ►Askfm :http://ask.fm/madalore ►Instagram : https://www.instagram.com/madalore1994/ THANK YOU ALL! ——————————————————————— Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a u...

    published: 28 Apr 2018
  • Edmund Pevensie in Narnia

    Edmund Pevensie in Narnia

    published: 01 Dec 2007
  • Edmund Pevensie || higher (for TitaniumHeart)

    HD + EARPHONES please. ♥ Subscribe my channel for more videos http://www.youtube.com/user/madalore1994 #fanvidfeed #edmundpevensie #narnia #thechroniclesofnarnia ———————————————————————— #10christmaspresent I prepared another christmas present with Edmund for my lovely friend TitaniumHeart, cuz I know she like Narnia. Thank you sweetie for your incredible support ,and also for the lovely comment you left on my video, you are amazing, and I wish you an Early Merry Christmas may the miracle of Christmas bring you joy and happiness. ———————————————————————— ○ Dedication: TitaniumHeart (https://www.youtube.com/channel/UCQSWX2qW9eL2tGoyGzxLF4w/featured) ○ Music: https://www.youtube.com/watch?v=XclXvB1Gmnc ○ Fandom: The Chronicles Of Narnia ○ Coloring: mine ►T...

    published: 12 Dec 2019
  • Edmund Pevensie || Son

    ~ HeartofNarnia ~ Thank you for watching!! ♛ follow my Instagram for more videos: @narniaheroes // @friendesires xx I do not own the content or audio used! All rights go to the following: The Chronicles of Narnia: The Lion, The Witch and The Wardrobe. The Chronicles of Narnia: Prince Caspian. The Chronicles of Narnia: The Voyage of the Dawn Treader. Warner Bros. Director Andrew Adamson; Andrew Adamson Productions. Mark Schwann Productions. Greg Prange Productions. Mark Johnson, Philp Steuer, Matthew Stillman & David Minkowski. Sim Evan-Jones and Jim May. xx Music in this Video: Son - Written and Performed by Sleeping At Last. xx BUSINESS INQUIRES: email me! sydnifrisch@gmail.com xx

    published: 04 Jun 2021
developed with YouTube
The Life and Death of Edmund Pevensie | Narnia Lore | Into the Wardrobe
19:46

The Life and Death of Edmund Pevensie | Narnia Lore | Into the Wardrobe

  • Order:
  • Duration: 19:46
  • Uploaded Date: 09 Sep 2022
  • views: 114569
Check out the incredible K-12 educational resources from Memoria Press: https://www.memoriapress.com/wardrobe/?utm_source=ntoWardrobe&utm_medium=YouTube&utm_campaign=Edmund Edmund Pevensie is one of the most popular characters in all of The Chronicles of Narnia. Whether it's his adventures in the Lion, The Witch and the Wardrobe, Prince Caspian, or even cameos in The Horse and His Boy and The Last Battle (nothing in The Silver Chair or the Magician's Nephew!) Edmund made a lasting impact on C.S. Lewis' magical land. Edmund was literally caught between the two opposing forces of Aslan the Lion and Jadis the White Witch of Narnia, battled the Evil Mraz, was befriended by Mr. Tumnus, Reepicheep and others, and was loved by his siblings Lucy Pevesie, Susan Pevensie, and Peter Pevensie. Special Thanks to these amazing artists for their incredible work! Justin Sweet Henrik Tamm Pauline Baynes Island by Maciej Piatek Dragon Island & Mountain Ruins by Roman Sanchez @ Artstation Sea by Zy Bowsman @ Artstation Medieval Market by Pably Dominguez @ Artstation Library Mornings by Silver Melody @ Artstation A HUGE THANK YOU to the talented concept artist Erin Marantette for providing custom artwork for this episode and more! Find more of her work at https://www.artstation.com/erinmarantette.
https://wn.com/The_Life_And_Death_Of_Edmund_Pevensie_|_Narnia_Lore_|_Into_The_Wardrobe
The Chronicles Of Narnia: Prince Caspian: Skandar Keynes and William Moseley Video Interview
3:27

The Chronicles Of Narnia: Prince Caspian: Skandar Keynes and William Moseley Video Interview

  • Order:
  • Duration: 3:27
  • Uploaded Date: 11 Sep 2009
  • views: 460614
Subscribe to our channel: http://bit.ly/EmpireSub The actors talk Narnia Official YouTube home of the world's biggest (and best) movie magazine and website. Want to keep up to date with everything going on in the world of film? Visit our website here: http://www.empireonline.com Follow us on Twitter here: http://twitter.com/empiremagazine Fan us on Facebook here: http://www.facebook.com/empiremagazine And subscribe on YouTube here: http://is.gd/yRxXu0 Subscribe to the mag / iPad edition here: http://www.greatmagazines.co.uk/empire
https://wn.com/The_Chronicles_Of_Narnia_Prince_Caspian_Skandar_Keynes_And_William_Moseley_Video_Interview
Best of | Edmund Pevensie
3:31

Best of | Edmund Pevensie

  • Order:
  • Duration: 3:31
  • Uploaded Date: 18 Jun 2020
  • views: 25671
Watch in 720p50 :) This was such fun! Hope you'll laugh as much as I did while editing ♥ ⚬ Tumblr: www.tumblr.com/stellae3 Copyright Disclaimer Under Section 107 of the Copyright Act 1976. I only own the editing.
https://wn.com/Best_Of_|_Edmund_Pevensie
Best Of Edmund Pevensie
2:45

Best Of Edmund Pevensie

  • Order:
  • Duration: 2:45
  • Uploaded Date: 14 May 2019
  • views: 331989
had to make this because peters was so funny and it was perfect for edmund
https://wn.com/Best_Of_Edmund_Pevensie
Edmund Pevensie || As It Was
0:16

Edmund Pevensie || As It Was

  • Order:
  • Duration: 0:16
  • Uploaded Date: 26 Nov 2022
  • views: 29460
#EdmundPevensie #SkandarKeynes #NarniaEdit #AsItWas #Shorts "You know it's not the same...I don't wanna talk about the way that it was..." 🎉       🎉       🎉       🎉       🎉       🎉 One of the things I love about Edmund is his character development, but I always feel like his past is something that would be hard for him to talk about...🥺 🎉       🎉       🎉       🎉       🎉       🎉 Thank you for watching! 🎉       🎉       🎉       🎉       🎉       🎉 Song: As It Was by Harry Styles 🎉       🎉       🎉       🎉       🎉       🎉 DISCLAIMER: I DO NOT OWN THE MUSIC OR CLIPS IN THIS VIDEO. ALL RIGHTS GO TO THEIR RESPECTIVE OWNERS. I only own the edit. Edmund's story is a beautiful one, one in which we can see ourselves represented. Because, like Aslan died in order to save Edmund, even though Edmund was a traitor, Jesus died to save us- when we were the ones deserving of death. We have all been like Edmund at times: we have all sinned, made mistakes, and offended God. It is not hard to imagine the guilt that Edmund must have felt for his actions. Perhaps he felt as if he could never change, that he had made too many mistakes. But, of course, he *did* change for the better, and we can too. When we fall down and feel trapped in our sins, we should never lose hope of receiving or regaining God's love and mercy. Even some of the most wonderful Saints who we look up to as being such holy and pious lovers of God started out as some of the most sinful people. Saints such as St. Mary Magdalene, who after repenting of her sins, became one of Jesus' closest followers and was even there at the foot of the Cross, the representative of those who have had much forgiven. St. Augustine, too, started out leading an immoral life, but with the help of the prayers of his mother, St. Monica, came to know and love God and later wrote some of the most amazing works glorifying Him. Another story is that of St. Cyprian, who before becoming a Christian practiced, what we might call, black magic, but his "power" only came from evil spirits. Realizing his errors, he began to follow Christ and, along with St. Justina, became a martyr for the Faith. The stories of these repentant sinners are here to inspire us, give us hope, and show the power of God's grace to repair the damage done by sin. So call on God for His forgiveness and ask for His help in changing for the better. Every one of us is called to Sainthood, because for every one of us Jesus died. He is there, waiting for us, with His hand out to pull us up, if, truly sorry for our sins, we reach out to grab It. Prayer: Dear Jesus, thank You for all You've done for us, to give us hope. You didn't leave us to figure things out on our own, but have given us so many ways of coming to You and becoming closer to You. The examples of the Saints, their writings, the Bible, Your Mother Mary- all things to help us grow in love for You. Please help us to never fall into despair, but to have hope that things don't have to be the same as they were: we can change, we can let go of the past, and we can learn to love You more. Help us to always call on You for help in times of temptation and to have true contrition for our sins- the desire to change in the first place is the important first step in amending our lives. Please fill our hearts with this desire for repentance and gratitude for all You've done, and continue to do for us. Help us to abandon the sins of our past and to grow in virtue and love for You, so that we can become true followers of You, lead others to the truth as well, and all make it to Heaven one day, to love and praise You in perfect happiness forever. Amen
https://wn.com/Edmund_Pevensie_||_As_It_Was
Edmund Pevensie || whatever it takes
0:54

Edmund Pevensie || whatever it takes

  • Order:
  • Duration: 0:54
  • Uploaded Date: 28 Apr 2018
  • views: 48094
HD + EARPHONES please. ♥ Subscribe my channel for more videos http://www.youtube.com/user/madalore1994 #fanvidfeed #thechroniclesofnarnia #edmundpevensie ———————————————————————— ○ Music: https://www.youtube.com/watch?v=M66U_DuMCS8 ○ Fandom: The Chronicles of Narnia ○ Coloring: Forever modified ►Tumblr : http://www.tumblr.com/blog/madalore ►Back-up account https://www.youtube.com/channel/UCScZJGu636j0I-sRAgWWXFg ►Twitter: https://twitter.com/madalore ►Askfm :http://ask.fm/madalore ►Instagram : https://www.instagram.com/madalore1994/ THANK YOU ALL! ——————————————————————— Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
https://wn.com/Edmund_Pevensie_||_Whatever_It_Takes
Edmund Pevensie in Narnia
5:49

Edmund Pevensie in Narnia

  • Order:
  • Duration: 5:49
  • Uploaded Date: 01 Dec 2007
  • views: 24298
Edmund Pevensie in Narnia
https://wn.com/Edmund_Pevensie_In_Narnia
Edmund Pevensie || higher (for TitaniumHeart)
1:26

Edmund Pevensie || higher (for TitaniumHeart)

  • Order:
  • Duration: 1:26
  • Uploaded Date: 12 Dec 2019
  • views: 37165
HD + EARPHONES please. ♥ Subscribe my channel for more videos http://www.youtube.com/user/madalore1994 #fanvidfeed #edmundpevensie #narnia #thechroniclesofnarnia ———————————————————————— #10christmaspresent I prepared another christmas present with Edmund for my lovely friend TitaniumHeart, cuz I know she like Narnia. Thank you sweetie for your incredible support ,and also for the lovely comment you left on my video, you are amazing, and I wish you an Early Merry Christmas may the miracle of Christmas bring you joy and happiness. ———————————————————————— ○ Dedication: TitaniumHeart (https://www.youtube.com/channel/UCQSWX2qW9eL2tGoyGzxLF4w/featured) ○ Music: https://www.youtube.com/watch?v=XclXvB1Gmnc ○ Fandom: The Chronicles Of Narnia ○ Coloring: mine ►Tumblr : http://www.tumblr.com/blog/madalore ►Back-up account https://www.youtube.com/channel/UCScZJGu636j0I-sRAgWWXFg ►Twitter: https://twitter.com/madalore ►Askfm :http://ask.fm/madalore ►Instagram : https://www.instagram.com/madalore1994/ THANK YOU ALL! ——————————————————————— Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
https://wn.com/Edmund_Pevensie_||_Higher_(For_Titaniumheart)
Edmund Pevensie || Son
3:59

Edmund Pevensie || Son

  • Order:
  • Duration: 3:59
  • Uploaded Date: 04 Jun 2021
  • views: 3859
~ HeartofNarnia ~ Thank you for watching!! ♛ follow my Instagram for more videos: @narniaheroes // @friendesires xx I do not own the content or audio used! All rights go to the following: The Chronicles of Narnia: The Lion, The Witch and The Wardrobe. The Chronicles of Narnia: Prince Caspian. The Chronicles of Narnia: The Voyage of the Dawn Treader. Warner Bros. Director Andrew Adamson; Andrew Adamson Productions. Mark Schwann Productions. Greg Prange Productions. Mark Johnson, Philp Steuer, Matthew Stillman & David Minkowski. Sim Evan-Jones and Jim May. xx Music in this Video: Son - Written and Performed by Sleeping At Last. xx BUSINESS INQUIRES: email me! sydnifrisch@gmail.com xx
https://wn.com/Edmund_Pevensie_||_Son
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • The Life and Death of Edmund Pevensie | Narnia Lore | Into the Wardrobe
    19:46
    The Life and Death of Edmund Pevensie | Narnia Lore | Into the Wardroberemove from playlist
  • The Chronicles Of Narnia: Prince Caspian: Skandar Keynes and William Moseley Video Interview
    3:27
    The Chronicles Of Narnia: Prince Caspian: Skandar Keynes and William Moseley Video Interviewremove from playlist
  • Best of | Edmund Pevensie
    3:31
    Best of | Edmund Pevensieremove from playlist
  • Best Of Edmund Pevensie
    2:45
    Best Of Edmund Pevensieremove from playlist
  • Edmund Pevensie || As It Was
    0:16
    Edmund Pevensie || As It Wasremove from playlist
  • Edmund Pevensie || whatever it takes
    0:54
    Edmund Pevensie || whatever it takesremove from playlist
  • Edmund Pevensie || higher (for TitaniumHeart)
    1:26
    Edmund Pevensie || higher (for TitaniumHeart)remove from playlist
  • Edmund Pevensie || Son
    3:59
    Edmund Pevensie || Sonremove from playlist
developed with YouTube
PLAYLIST TIME:

The Life and Death of Edmund Pevensie | Narnia Lore | Into the Wardrobe

Check out the incredible K-12 educational resources from Memoria Press: https://www.memoriapress.com/wardrobe/?utm_source=ntoWardrobe&utm_medium=YouTube&utm_campaign=Edmund Edmund Pevensie is one of the most popular characters in all of The Chronicles of Narnia. Whether it's his adventures in the Lion, The Witch and the Wardrobe, Prince Caspian, or even cameos in The Horse and His Boy and The Last Battle (nothing in The Silver Chair or the Magician's Nephew!) Edmund made a lasting impact on C.S. Lewis' magical land. Edmund was literally caught between the two opposing forces of Aslan the Lion and Jadis the White Witch of Narnia, battled the Evil Mraz, was befriended by Mr. Tumnus, Reepicheep and others, and was loved by his siblings Lucy Pevesie, Susan Pevensie, and Peter Pevensie. Special Thanks to these amazing artists for their incredible work! Justin Sweet Henrik Tamm Pauline Baynes Island by Maciej Piatek Dragon Island & Mountain Ruins by Roman Sanchez @ Artstation Sea by Zy Bowsman @ Artstation Medieval Market by Pably Dominguez @ Artstation Library Mornings by Silver Melody @ Artstation A HUGE THANK YOU to the talented concept artist Erin Marantette for providing custom artwork for this episode and more! Find more of her work at https://www.artstation.com/erinmarantette.
19:46
The Life and Death of Edmund Pevensie | Narnia Lore | Into the Wardrobe
Check out the incredible K-12 educational resources from Memoria Press: https://www.memor...
published: 09 Sep 2022
Play in Full Screen
3:27
The Chronicles Of Narnia: Prince Caspian: Skandar Keynes and William Moseley Video Interview
Subscribe to our channel: http://bit.ly/EmpireSub The actors talk Narnia Official YouTube ...
published: 11 Sep 2009
Play in Full Screen
3:31
Best of | Edmund Pevensie
Watch in 720p50 :) This was such fun! Hope you'll laugh as much as I did while editing ...
published: 18 Jun 2020
Play in Full Screen
2:45
Best Of Edmund Pevensie
had to make this because peters was so funny and it was perfect for edmund
published: 14 May 2019
Play in Full Screen
0:16
Edmund Pevensie || As It Was
#EdmundPevensie #SkandarKeynes #NarniaEdit #AsItWas #Shorts "You know it's not the same....
published: 26 Nov 2022
Play in Full Screen
0:54
Edmund Pevensie || whatever it takes
HD + EARPHONES please. ♥ Subscribe my channel for more videos http://www.youtube.com/use...
published: 28 Apr 2018
Play in Full Screen
5:49
Edmund Pevensie in Narnia
Edmund Pevensie in Narnia
published: 01 Dec 2007
Play in Full Screen
1:26
Edmund Pevensie || higher (for TitaniumHeart)
HD + EARPHONES please. ♥ Subscribe my channel for more videos http://www.youtube.com/...
published: 12 Dec 2019
Play in Full Screen
3:59
Edmund Pevensie || Son
~ HeartofNarnia ~ Thank you for watching!! ♛ follow my Instagram for more videos: @narniah...
published: 04 Jun 2021
Play in Full Screen

Edmund Pevensie

Edmund "Ed" Pevensie is a fictional character in C. S. Lewis's The Chronicles of Narnia series. He is a principal character in three of the seven books (The Lion, the Witch and the Wardrobe, Prince Caspian, and The Voyage of the Dawn Treader), and a lesser character in two others (The Horse and His Boy and The Last Battle).

In the live-action films, The Lion, The Witch and The Wardrobe, Prince Caspian and The Voyage of the Dawn Treader, Edmund is portrayed by actor Skandar Keynes. Actor Mark Wells portrays an older Edmund at the end of the first film.

In The Lion, the Witch and the Wardrobe, Edmund betrays his siblings to the White Witch while under her influence, but as the story goes on, he accepts the error of his ways. He is redeemed with the intervention of Aslan and joins the fight against the witch. Fulfilling an ancient prophecy, he becomes King Edmund the Just, King of Narnia, and with sisters Susan and Lucy, co-ruler under High King Peter. Edmund is described in one book in a scene in Tashbaan as being part of a group of men 'as fair-skinned as [Shasta], and most of them had fair hair', although whether Edmund is one of the fair-haired ones is not clear. Certainly in the illustrations of him in the final book he is drawn as having fair hair.

'); } 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(''); } } }); } } 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)); } }); }); }); // -->

Latest News for: edmund pevensie

Edit

The Most Enchanting Chronicles of Narnia Gifts for Christmas

Coming Soon 20 Nov 2024
Photo Credit. The Chronicles of Narnia. Very soon, snow will begin to cover the land, and the world outside will resemble the magical realm of Narnia ... AMAZON ... Treat your special someone to the same sweet treat that tempted Edmund Pevensie in Narnia ... .
Edit

All 3 Versions of 'The Lion, the Witch, and the Wardrobe,' Ranked

Collider 20 Oct 2024
In the source material, Peter, Susan, Edmund, and Lucy Pevensie are being sheltered in the ...
Edit

Introducing Colin Gay, The Tuscaloosa News' new Alabama football beat reporter

Montgomery Advertiser 16 Sep 2024
Lewis’ series “The Chronicles of Narnia,” becoming engulfed in the adventures of Peter, Susan, Edmund and Lucy Pevensie as they discover and explore a whole new world of talking beasts and magical creatures.
Edit

Can You Watch The Chronicles of Narnia: The Voyage of the Dawn Treader Online Free?

Coming Soon 08 Aug 2024
In this film, siblings Edmund and Lucy, along with their cousin ... Skandar Keynes plays Edmund Pevensie, Georgie Henley plays Lucy Pevensie, and Will Poulter plays Eustace Scrubb in the leading roles.
Edit

7 best fantasy movie franchises, ranked

Digital Trends 03 Apr 2024
Warner Bros. Pictures ... Contents. 7 ... Avatar (2009 – )5 ... 7 ... Related ... 6 ... The Pevensie siblings, Peter (William Moseley), Susan (Anna Popplewell), Edmund (Skandar Keynes), and Lucy (Georgie Henley), are severely underrated compared to other fantasy heroes.
Edit

Columbus Middle School to put on production of 'The Lion, The Witch and The Wardrobe'

News-Press Now 30 Nov 2023
The witch discovers that the Pevensie children — Peter, Susan, Edmund and Lucy — have made their way into Narnia, which is part of a prophecy of her downfall ... As the Pevensies learn their way around ...
Edit

Best holiday books for kids: 10 books to read to your kids this Christmas

Deseret News 26 Nov 2023
Sabina Sturzu, Unsplash ... 1 ... Barbara Robinson ... 1971 ... 3-7 ... 1868 ... This first of seven books in Lewis’ “Chronicles of Narnia” series introduces the four Pevensie children, Peter, Susan, Edmund and Lucy, who have been evacuated due to air raids in World War II.
Edit

CS Lewis best books: Of the over 37 he wrote, here are the best ten

Deseret News 23 Nov 2023
<img class="Image" alt="A box set of “Chronicles of Narnia” novels by C.S ... The first book, “The Lion, The Witch and the Wardrobe,” introduces Peter, Susan, Edmund and Lucy Pevensie, who had to leave their home due to air raids during World War II.
Edit

The Chronicles of Narnia: Prince Caspian: Where to Watch & Stream Online

Coming Soon 13 Nov 2023
“One year after their incredible adventures in the Lion, the Witch and the Wardrobe, Peter, Edmund, Lucy and Susan Pevensie return to Narnia to aid a young prince whose life has been threatened by the evil King Miraz.
Edit

The Chronicles of Narnia Series Netflix Release Date Rumors: When Is It Coming Out?

Coming Soon 03 Oct 2023
The plot revolves around four siblings, Peter, Susan, Edmund, and Lucy Pevensie, living in Britain during World War II, and their adventures in the magical land of Narnia ... “Siblings Lucy, Edmund, ...
Edit

Narnia enchants the town

Corsicana Daily Sun 09 Sep 2023
The Warehouse Living Arts Center is currently running its production of C. S ... 10 ... 10 ... The four Pevensie children. Peter (Carson Hoover), Susan (Hava Leite), Edmund (Christian Amundson), and Lucy (Aliza Williams) are perfectly cast for their roles ... and Mrs.
Edit

The 30 highest-grossing actors under the age of 30

Corvallis Gazette-Times 22 Jan 2023
This Brit-born actor played Edmund Pevensie in the “Chronicles of Narnia” movie franchise, appearing in all three of the films ... Georgie Henley shot to fame when she portrayed Lucy Pevensie in the “Chronicles of Narnia” franchise.
Edit

Winter films: 28 non-Christmas movies perfect for the coldest season of all

Stylist 04 Nov 2022
... not to love about this long, lush, lovely fantasy, eh? Grab your furriest coat and step inside the wardrobe with Lucy, Peter, Susan, and Edmund Pevensie, and experience the magic all over again.
Edit

The Dexter High School Drama Club presents "The Lion, The Witch and The Wardrobe"

The Sun Times News 14 Oct 2022
Four children Peter, Susan, Edmund, and Lucy Pevensie stumble through a wardrobe only to be presented with a place unlike they have ever seen.
Edit

Classic tale comes to life in park

The Lancaster News 07 Oct 2022
The show, dramatized by Joseph Robinette, is based on C.S ... She plays Susan Pevensie, one of four siblings — Peter, Susan, Edmund and Lucy — sent to live in the country with a peculiar professor during World War II ... “The show is magical ... ....

Most Viewed

×