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

Gandalf

Gandalf /ˈɡændɑːlf/ is a fictional character and one of the main protagonists in J. R. R. Tolkien's novels The Hobbit and The Lord of the Rings. He is a wizard, member of the Istari order, as well as leader of the Fellowship of the Ring and the army of the West. In The Lord of the Rings, he is initially known as Gandalf the Grey, but returns from death as Gandalf the White.

Characteristics

Tolkien discusses Gandalf in his essay on the Istari, which appears in the work Unfinished Tales. He describes Gandalf as the last of the wizards to appear in Middle-earth, one who: "seemed the least, less tall than the others, and in looks more aged, grey-haired and grey-clad, and leaning on a staff". Yet the Elf Círdan who met him on arrival nevertheless considered him "the greatest spirit and the wisest" and gave him the elven Ring of power called Narya, the Ring of Fire, containing a "red" stone for his aid and comfort. Tolkien explicitly links Gandalf to the element Fire later in the same essay:

Gandalf (disambiguation)

Gandalf is a fictional wizard in J. R. R. Tolkien's book The Lord of the Rings.

Gandalf may also refer to:

In Norse mythology and legend:

  • Gandalf (mythology), a dwarf in Norse mythology
  • Gandalf Alfgeirsson, the legendary king of Vingulmark
  • In modern popular culture

  • Gandalf the Mad, a Viking king in the Thorgal comic series
  • Gandalf, used to describe lead character Saito, a character in the anime The Familiar of Zero
  • In business and technology:

  • Gandalf Airlines, an airline company
  • Gandalf Technologies, a modem and PACX manufacturer
  • Gandalf (theorem prover), a first-order automated theorem prover
  • Gandalf, a chess engine, named after the Tolkien character
  • Gandalf the Wizard Inc., a leather/clothing company based in Detroit, Michigan, USA
  • In music:

  • Gandalf (Finnish band), an early 1990s metal group
  • Gandalf (musician), Austrian New Age musician
  • Gandalf (American band), formerly Rahgoos, an influential late 1960s psychedelic rock group
  • Other:

  • GANDALF trial, the 1997 UK trial of the editors of Green Anarchist magazine
  • Duma Key

    Duma Key is a novel by American novelist Stephen King published on January 22, 2008 by Scribner. The book reached #1 on the New York Times Best Seller List. It is King's first novel to be set in Florida or Minnesota. The dust jacket features holographic lettering.

    Plot

    Edgar Freemantle, a contractor in St. Paul, Minnesota, barely survives a horrific on-site accident where his truck is crushed by a crane. Freemantle's right arm is amputated, and severe injuries to his head cause Edgar to have problems with speech, vision, and memory. As a result, Edgar also has violent mood swings and thoughts of suicide. During one of those mood swings, he attacks his wife, who later claims that as a main reason why she divorced him.

    On the advice of his psychologist, Dr. Kamen, Edgar takes "a geographical": a year long vacation meant for rest and further recovery. He decides to rent a beach house on Duma Key, a small island off the west coast of Florida, after reading about it in a travel brochure. Edgar's beach house is located on a part of the island called Salmon Point; Edgar nicknames the house "Big Pink," because of its rich pink color. On the advice of Dr. Kamen, Edgar revives his old hobby of sketching after he moves into Big Pink. He settles in with the help of Jack Cantori, a local college student.

    Podcasts:

    Gandalf

    ALBUMS

    Gandalf

    ALBUMS

    Gandolf

    ALBUMS

    Gandalf

    ALBUMS

    • What if Gandalf Took the Ring? | Tolkien Theory

      "Gandalf as Ring-lord would have been far worse than Sauron" - JRR Tolkien. Today, using my usual weekly level of research, I've created a plausible scenario that could to Gandalf taking the One Ring and replacing the Dark Lord. There's some safe bets in here, in addition to some longshots, but it's all in good fun! Let me know in the comments what you think would happen if the Grey wizard claimed the ring for himself! Hit subscribe - and the bell - so you never miss a video from Nerd of the Rings! Nerd of the Rings on PATREON: https://www.patreon.com/NerdoftheRings -------------- All content falls under fair use: any copying of copyrighted material done for a limited and “transformative” purpose, such as to comment upon, criticize, or parody a copyrighted work. Such uses can be do...

      published: 16 Jan 2021
    • What Happened To Gandalf After He Fought The Balrog? | Lord of the Rings Lore

      Gandalf vs The Balrog in Moria is an iconic duel, but what happened to Gandalf after they fell? How did he go from this battle to returning as Gandalf the White in Fangorn Forest? We look at this today! ----- You Can Support The Broken Sword & our other channels (For the price of a coffee) Here: https://www.buymeacoffee.com/flawlessfilms ----- Timecodes: 00:00 – Intro 01:27 – At the Bridge of Khazad-dûm 05:57 – What Was Gandalf’s Mission? 07:38 – How Did Gandalf Change? 09:52 – Gandalf vs Sauron 11:23 – Conclusion 12:08 – QotD & Thank you’s. ----- Also check out our other channels! ► The 6th Ranger - https://www.youtube.com/channel/UCScfG2CfbSh_LUzkGJ_p-aA ► The Batcave - https://www.youtube.com/channel/UCsqIwOSrCoZ4JM8MBdoOXQw ► History of Dragon Ball - https://www.youtube.com/chan...

      published: 03 Jul 2023
    • Gandalf vs. the Balrog explained - LOTR Lore

      Gandalf versus the Balrog, also known as the Flame of Udûn or Durin's Bane is one of the most memorable moments from the Fellowship of the Ring. How can Gandalf defy a fiery demon? How does Gandalf and the Balrog survive the fall from the Bridge of Khazad-Dûm? Why was Gandalf reembodied, and who did it? You will get all these answers answered in this video. Support me on Patreon: https://www.patreon.com/LOME Support me through PayPal: https://www.paypal.com/paypalme/LoreoftheRingsYT?locale.x=no_NO Join my YouTube membership: https://www.youtube.com/channel/UCxoxXCaHRY5z0K3hhkxDxNg/join Check out my merch: https://lore-of-the-rings.myteespring.co/ The Middle-Earth knowledge playlist: https://www.youtube.com/watch?v=3xu2WeZJXiY&list=PLmyswK5tb-jQsixD7yzz5mlSuL0dKAL0l Lore of the Rings...

      published: 15 Jun 2019
    • Why did Saruman Turn Evil and Hate Gandalf? | Lord of the Rings Lore | Middle-Earth

      Why did Saruman join Sauron and turn Evil? What led him to betray the mission that the Valar had given him? And were there any early signs of his betrayal? And why did Saruman hate Gandalf so much? These questions and more as we explore the flaws and downfall of Saruman the White, the head of the Wizards of Middle-Earth. Business inquiries: Geekzonemt@gmail.com Affiliates: ► Unleash Your Inner Dark Lord! Papillon9 Jewelry Store: https://papillon9.net/?ref=GeekZone ► Support us on Patreon! - https://www.patreon.com/Geek_Zone ► Instagram - https://www.instagram.com/geekzonemt/ ► Facebook - https://www.facebook.com/GeekZone-113587049285161/ ► Twitter - https://twitter.com/GeekZoneMT ► Discord - https://discord.gg/KVhx8vw ================================================ In this serie...

      published: 13 Nov 2020
    • Gandalf and Radagast in Nazgul's grave [HD]

      The Hobbit The Desolation of Smaug (2013)

      published: 28 Aug 2014
    • Gandalf's Speech To The Balrog & What It Means | Tolkien Explained

      The brand new Magic: the Gathering The Lord of the Rings: Tales of Middle-earth releases June 23, 2023! Check out the card packs here: http://spr.ly/LOTRxNotR In today's video, we go line-by-line through Gandalf's speech to the balrog, explaining the meaning and significance of his words. Gandalf and the Balrog - Matthew Stewart Gandalf v Balrog - Dzmitry Yakhouski Gandalf and Balrog - JG Jones Flame of Udûn - Manuel Castañón Gandalf and Balrog - Daniel Dougherty The Bridge of Khazad-Dum - Anna Kulisz The Balrog – Ted Nasmith Balrog - JG Jones Gandalf Balrog - Felix Englund Gandalf - Elrodimus Flash Gandalf the Grey - Elrodimus Flash Gandalf - skullb*st*rd gandalf - Jenny Dolfen Mithlond - Sara M. Morello ainur, children of iluvatar - nahar birth of valar - skullb*st*rd Ainulindale, Harm...

      published: 17 Jun 2023
    • LOTR The Fellowship of the Ring - Extended Edition - Gandalf speaks to Frodo in Moria

      The extended edition version of when Gandalf talks to Frodo about Gollum, after Frodo sees him in the shadows of Moria. (HD Blu-ray) Frodo: "I wish the Ring had never come to me. I wish none of this had happened." Gandalf: "So do all who live to see such times but that is not for them to decide. All we have to decide is what to do with the time that is given to us." More tags: LOTR Fellowship Ring - Extended Edition - Moria Part 4 Mines of Moria Frodo sees Gollum in the dark in Moria Frodo It's something down there Gandalf It's Gollum He's been following us for three 3 days Frodo He escaped the dungeons of Barad-dûr Gandalf Escaped or was set loose Now the Ring has brought him here He will never be rid of his need for it He hates and loves the Ring as he hates and loves himself Ganda...

      published: 28 Dec 2012
    • Gandalf & Middle Earth after defeating Sauron

      published: 22 Feb 2022
    • Gandalf, Galadriel, Elrond and Saruman have a discussion in Rivendell [1080 HD][ENG SUB]

      Scene from "The Hobbit: An Unexpected Journey" (2012)

      published: 14 Mar 2017
    • What if Sauron got The One Ring? | Tolkien Theory

      We look at sections of The Lord of the Rings and Tolkien's letters to answer the question - what would happen if Sauron reclaimed The One Ring? We'll pick up from Frodo's failure at Mount Doom to determine Sauron's strategy, how the elves would seek to combat him, and who would be left standing! Hit subscribe - and the bell! Nerd of the Rings on PATREON: https://www.patreon.com/NerdoftheRings To purchase artist work, check out these amazing artists! Anna Podedworna - https://www.artstation.com/akreon Jenny Dolfen - goldseven.wordpress.com/ Turner Mohan - www.instagram.com/turner_mohan Ted Nasmith - www.tednasmith.com/shop/ Anke Eissmann - http://anke.edoras-art.de/anke_illustration.html Donato Giancola - https://www.donatoarts.com/online-store/secure-store/Middle-earth-c34110463 Aronja...

      published: 05 Mar 2022
    developed with YouTube
    What if Gandalf Took the Ring? | Tolkien Theory
    19:22

    What if Gandalf Took the Ring? | Tolkien Theory

    • Order:
    • Duration: 19:22
    • Uploaded Date: 16 Jan 2021
    • views: 6047407
    "Gandalf as Ring-lord would have been far worse than Sauron" - JRR Tolkien. Today, using my usual weekly level of research, I've created a plausible scenario that could to Gandalf taking the One Ring and replacing the Dark Lord. There's some safe bets in here, in addition to some longshots, but it's all in good fun! Let me know in the comments what you think would happen if the Grey wizard claimed the ring for himself! Hit subscribe - and the bell - so you never miss a video from Nerd of the Rings! Nerd of the Rings on PATREON: https://www.patreon.com/NerdoftheRings -------------- All content falls under fair use: any copying of copyrighted material done for a limited and “transformative” purpose, such as to comment upon, criticize, or parody a copyrighted work. Such uses can be done without permission from the copyright owner. Gandalf, Aragorn, & Samwise - Donato Giancola Gandalf in Moria - Donato Giancola Gandalf Pensive - Donato Giancola Gandalf and Aragorn - Reacool Gandalf and Theoden - Tolman Cotton Gandalf the Grey - Matt DeMino Gandalf before Denethor - Alan Lee Theoden - Harlis Suardana Aragorn - Ian Fee Gandalf Attacks Dol Guldur - John Howe King Theoden and Wormtongue - Greg and Tim Hildebrandt Looking into the Stone - Kuliszu Rivendell - Zak Seymour Rohirrim - Gellihana Art Nazgul - Rui Goncalves The Hermit - bnolin The King of the Golden Hall - Ullakko The Riders of Rohan - Ted Nasmith Nazgul Rider - William Nunez Orthanc - Alan Lee The Ringwraiths - Anato Finnstark Nazgul on Weathertop - Anato Finnstark The Nine - Anato Finnstark Boromir Arrives to Rivendell - Joshua Cairos The Council of Elrond - Alan Lee Frodo and Gandalf in Bag End - Raul Vitale Gandalf and Frodo Examine the Ring - Donato Giancola Gandalf and Theoden - Kacik Rohanskiej Gandalf and Saruman - Angelo Montanini Gandalf in Minas Tirith - Anke Eissman Nazgul - Allrich Art Saruman and the Palantir - Greg and Tim Hildebrandt Saruman - AIMaNeGrA Saruman's Staff - Alexandr Elichev Bilbo and Gandalf - Tim Kirk Wrath of Galadriel - Zyrexthez Bag End - Wictorian Art Minas Tirith: Hall of Kings - Hayo Koekkoek The Shire - Liam Tart Minas Tirith - Ludovic Bourgeois Dol Guldur - Michael Merc Orthanc in the Second Age - Ted Nasmith Barad-dur - Steve Firchow The Shire, A View of Hobbiton - Ted Nasmith An Enemy Revealed - Laurence Andrew Page Cthumang Darth Vader Gandalf & Sauron - Joujeen Denethor Son of Ecthelion - Joshua Cairos Gandalf and Dumbledore - Rodolfo Gurreiro Check out these resources for this and more info about Smaug, the Dragons of the North, and the War of Dwarves and Dragon: The Lord of the Rings Unfinished Tales The Encyclopedia of Arda Tolkien Gateway Theonering.net “Today in Middle-earth History” Calendar #gandalf #tolkien #lordoftherings
    https://wn.com/What_If_Gandalf_Took_The_Ring_|_Tolkien_Theory
    What Happened To Gandalf After He Fought The Balrog? | Lord of the Rings Lore
    13:09

    What Happened To Gandalf After He Fought The Balrog? | Lord of the Rings Lore

    • Order:
    • Duration: 13:09
    • Uploaded Date: 03 Jul 2023
    • views: 168811
    Gandalf vs The Balrog in Moria is an iconic duel, but what happened to Gandalf after they fell? How did he go from this battle to returning as Gandalf the White in Fangorn Forest? We look at this today! ----- You Can Support The Broken Sword & our other channels (For the price of a coffee) Here: https://www.buymeacoffee.com/flawlessfilms ----- Timecodes: 00:00 – Intro 01:27 – At the Bridge of Khazad-dûm 05:57 – What Was Gandalf’s Mission? 07:38 – How Did Gandalf Change? 09:52 – Gandalf vs Sauron 11:23 – Conclusion 12:08 – QotD & Thank you’s. ----- Also check out our other channels! ► The 6th Ranger - https://www.youtube.com/channel/UCScfG2CfbSh_LUzkGJ_p-aA ► The Batcave - https://www.youtube.com/channel/UCsqIwOSrCoZ4JM8MBdoOXQw ► History of Dragon Ball - https://www.youtube.com/channel/UCpgaqH-cKuqvfKr1NL-yudg ► The Tabletop Alliance - https://www.youtube.com/c/TheTabletopAlliance ----- If you want to support the channel, you can help us via Patreon ► https://www.patreon.com/thebrokensword ----- Also if you want to support in a different way then check out our Teespring page for original designs for our merch! ► https://www.teespring.com/stores/historyoftheages Social media links - ► Facebook – https://www.facebook.com/TheBrokenSwordYouTube/ ► Twitter – https://twitter.com/TheBroken_Sword ► Instagram – https://www.instagram.com/thebroken_sword/ --- Please consider subscribing to the channel for all future updates based on the Lord of the Rings! Any future news and updates regarding the show or anything else, we will be sure to let you guys know ASAP! Also, if you have any suggestions for future videos too, then please leave a comment below! ---------- We do not claim to own the rights to any of the art work used throughout this video. All credit must go to the talented artists. If we have not credited an artist, it is because we could not find an owner of the art. Please message us if we have not credited you! If any artists would like us to remove their artwork, or add anything additional to credit you, please contact us and we will sort it straight away! Thank you! CK Goksoy - https://www.artstation.com/ckgoksoy Ivan Cavini - https://www.ivancavini.com Ted Nasmith - https://www.tednasmith.com Peter Xavier Price – https://www.deviantart.com/peet Elena Kukanova - https://www.deviantart.com/ekukanova Magali Villeneuve - http://www.magali-villeneuve.com KipRasmussen - https://www.deviantart.com/kiprasmussen RalphDamiani - https://www.deviantart.com/ralphdamiani Matthew Stewart - http://www.matthew-stewart.com/middle-earth Anato Finnstark - https://www.artstation.com/anto-finnstark Illustrator Fabio Leone - www.Facebook.com/IllustratorFabioLeone Thumbnail Art: Gandalf White - snezhana-mirkwood Gandalf vs Balrog - Omer Tunc Art in order of first appearance: The Lord of the Rings Trilogy – New Line Cinema A Map of Moria - Daniel Reeve Durin's Bane – CKGoksoy Flame of Udûn - Manuel Castanon The Lord of the Rings - You shall not pass! - Florent Broissand Gandalf - Fabio Leone The Balrog – MattDeMino LOTR-Gandalf and the Balrog – Evolvana The Stranger in the Forest - Ted Nasmith Balrog vs Gandalf - Omer Tunc Gandalf vs The Balrog - Jerry Vanderstelt Lord of the Rings-Balrog - stevej061069 Zirakzigil – deagol Upon Celebdil - 2Bdubious Balrog vs Gandalf - Rinat Sait Gandalf - Abi909 The Music of the Gods – KipRasmussen Sauron The Lord of the Rings - William Faucher Gandalf the Grey - Hossein Diba The Five – Sindacollo Welcome to Valinor - Nahar-Doa Portrait of Gandalf the White – ReneAigner Lord of the Rings - Gandalf the White - p1xer The Istari - Ivan Cavini Staffs of the Istari – Norloth The Istari - mairon666 Middle earth – Klaradox Gandalf Returns – Ted Nasmith Gandalf White - snezhana-mirkwood The White Rider – RalphDamiani Across Middle-earth - Caras Galadhon – ralphdamiani Across Middle-earth - Evening at Caras Galadhon – ralphdamiani Hobbits – Giacobino Gandalf and Gwaihir (lotr) – AnatoFinnstark Gandalf and Shadowfax – Ted Nasmith Gandalf the White - Suzanne-Helmigh Mithrandir! Mithrandir! (Gandalf Returns) - NerdyLizard5 Way to Mordor – Iribel Gandalf the White - Juan Galeote The Shadow and the Flame – AnatoFinnstark Bridge of Khazad-dum – CKGoksoy Gandalf - Anato Finnstark Gandalf - Suc-of ---------- All content falls under fair use: any copying of copyrighted material done for a limited and “transformative” purpose, such as to comment upon, criticize, or parody a copyrighted work. Such uses can be done without permission from the copyright owner. In the event I use art of yours or you have any questions, please contact me and we'll get it sorted straight away! :) . . . #lordoftherings #gandalf #balrog
    https://wn.com/What_Happened_To_Gandalf_After_He_Fought_The_Balrog_|_Lord_Of_The_Rings_Lore
    Gandalf vs. the Balrog explained - LOTR Lore
    11:38

    Gandalf vs. the Balrog explained - LOTR Lore

    • Order:
    • Duration: 11:38
    • Uploaded Date: 15 Jun 2019
    • views: 597366
    Gandalf versus the Balrog, also known as the Flame of Udûn or Durin's Bane is one of the most memorable moments from the Fellowship of the Ring. How can Gandalf defy a fiery demon? How does Gandalf and the Balrog survive the fall from the Bridge of Khazad-Dûm? Why was Gandalf reembodied, and who did it? You will get all these answers answered in this video. Support me on Patreon: https://www.patreon.com/LOME Support me through PayPal: https://www.paypal.com/paypalme/LoreoftheRingsYT?locale.x=no_NO Join my YouTube membership: https://www.youtube.com/channel/UCxoxXCaHRY5z0K3hhkxDxNg/join Check out my merch: https://lore-of-the-rings.myteespring.co/ The Middle-Earth knowledge playlist: https://www.youtube.com/watch?v=3xu2WeZJXiY&list=PLmyswK5tb-jQsixD7yzz5mlSuL0dKAL0l Lore of the Rings is a channel dedicated to the exploration of Middle-Earth. My goal is to share Tolkien’s world to the masses and to give a mere representation of his works. I hope you find my content enjoyable and enriching. Subscribe now to explore the legendarium together with me. Fair use permits limited use of copyrighted material without having to first acquire permission from the copyright holder I do not claim the rights to artwork created by other artists. All credit goes to the artists themselves. If any artist would like their work removed or given additional credit, contact me and we will sort things out! ♪ - Music used in this video: Alive Evil – Hainbach Dol Guldur - Brandon Fiecther and Derek Fiecther Gollum - Brandon Fiecther and Derek Fiecther Mines of Moria - Brandon Fiecther and Derek Fiecther Night of the Werewolf - Brandon Fiecther and Derek Fiecther Watcher in the water - Brandon Fiecther and Derek Fiecther I do not own this music, but I have used them rightfully under the Creative Commons license. #gandalfthewhite #theflameofudûn #battleofthepeak #gandalfvsdurinsbane
    https://wn.com/Gandalf_Vs._The_Balrog_Explained_Lotr_Lore
    Why did Saruman Turn Evil and Hate Gandalf? | Lord of the Rings Lore | Middle-Earth
    12:41

    Why did Saruman Turn Evil and Hate Gandalf? | Lord of the Rings Lore | Middle-Earth

    • Order:
    • Duration: 12:41
    • Uploaded Date: 13 Nov 2020
    • views: 210148
    Why did Saruman join Sauron and turn Evil? What led him to betray the mission that the Valar had given him? And were there any early signs of his betrayal? And why did Saruman hate Gandalf so much? These questions and more as we explore the flaws and downfall of Saruman the White, the head of the Wizards of Middle-Earth. Business inquiries: Geekzonemt@gmail.com Affiliates: ► Unleash Your Inner Dark Lord! Papillon9 Jewelry Store: https://papillon9.net/?ref=GeekZone ► Support us on Patreon! - https://www.patreon.com/Geek_Zone ► Instagram - https://www.instagram.com/geekzonemt/ ► Facebook - https://www.facebook.com/GeekZone-113587049285161/ ► Twitter - https://twitter.com/GeekZoneMT ► Discord - https://discord.gg/KVhx8vw ================================================ In this series, we explore the history of places in Middle-Earth, Characters or events that took place. The information is presented in an orderly easy to understand way so that it is friendly to people that are new to the Lord of the Rings Lore and Mythos. Special thanks to our Valar-Tier Patrons: Jacob Williams T-Gorman Special thanks to our Wizard-Tier Patrons: Mike Feeney Roland Myrvold If I feature any of your artwork during this video, please drop a message or a comment and I can link your page in the description of my videos! Thumbnail Artists: Ziorke Wardenlight Studio Artistic Credits: Deanna Crisbacher Dsilvamattos Kotnonekot Concept-art-house Minenanoah Donato Giancola Murat Gül Chrisfernzz Almanegra Kazashino Nemanja Bubalo Kenneth Sofia Celebrimbot Aleksander Karcz William Faucher Magali villeneuve Makingpicsslowly Entar0178 Thaldir Helen Tkachenko Suzanne-helmigh Shockbolt Jontorresart Natasha Masmood Renzomonero Apterus Magali Villeneuve Laurenceandrewpage Viceroyphoenix Rafael Rivera Zhai Rui Jonatas Tobias Ilustre João sergchayote Frankvenice Ralph damiani Diegovila John Paul Cavara Helinopotato Totallyandspice Ziorke Ulaelanor Sercan Hangün ArtofOkan Alexandra Naumenko Mattdemino Sucubita Xbalanque-benereb Kotnonekot Paco Sikora Pfodra Shironei Sergchayote Jleonardk Vihrushka Youngphoenix3191 Apterus Alystraea Alexey Rudikov Exaequo94 Martin de Diego Mental-lighton Mscibilia Noei1984 Tessasworld -~-~~-~~~-~~-~- Check out my latest video!: "How are Orcs and Uruk-Hai Different? | Lord of the Rings Lore | Middle-Earth" https://youtu.be/COJx7rWMIJc #Saruman #Sauron #LordOfTheRings #MiddleEarth #LOTR #Gandalf #Arda #Wizards #Morgoth #Tolkien #Lore
    https://wn.com/Why_Did_Saruman_Turn_Evil_And_Hate_Gandalf_|_Lord_Of_The_Rings_Lore_|_Middle_Earth
    Gandalf and Radagast in Nazgul's grave [HD]
    3:39

    Gandalf and Radagast in Nazgul's grave [HD]

    • Order:
    • Duration: 3:39
    • Uploaded Date: 28 Aug 2014
    • views: 2017161
    The Hobbit The Desolation of Smaug (2013)
    https://wn.com/Gandalf_And_Radagast_In_Nazgul's_Grave_Hd
    Gandalf's Speech To The Balrog & What It Means | Tolkien Explained
    16:30

    Gandalf's Speech To The Balrog & What It Means | Tolkien Explained

    • Order:
    • Duration: 16:30
    • Uploaded Date: 17 Jun 2023
    • views: 1193805
    The brand new Magic: the Gathering The Lord of the Rings: Tales of Middle-earth releases June 23, 2023! Check out the card packs here: http://spr.ly/LOTRxNotR In today's video, we go line-by-line through Gandalf's speech to the balrog, explaining the meaning and significance of his words. Gandalf and the Balrog - Matthew Stewart Gandalf v Balrog - Dzmitry Yakhouski Gandalf and Balrog - JG Jones Flame of Udûn - Manuel Castañón Gandalf and Balrog - Daniel Dougherty The Bridge of Khazad-Dum - Anna Kulisz The Balrog – Ted Nasmith Balrog - JG Jones Gandalf Balrog - Felix Englund Gandalf - Elrodimus Flash Gandalf the Grey - Elrodimus Flash Gandalf - skullb*st*rd gandalf - Jenny Dolfen Mithlond - Sara M. Morello ainur, children of iluvatar - nahar birth of valar - skullb*st*rd Ainulindale, Harmony - Anna Kulisz Iluvatar's Mighty Theme - Anna Kulisz Eru Iluvatar - Janka Latečková Ainulindale, The last chord - Anna Kulisz the music of the ainur - aegeri Ainulindale - Alystraea Eru and the Gods Singing the First Song of Creation - Kip Rasmussen Eru Iluvatar (and_the_Ainur) - Šárka Škorpíková green elves - Turner Mohan iluvatar's mighty theme - kuliszu Melkor Weaves Opposing Music - Ted Nasmith The Dawn of the Firstborn Elves - Ted Nasmith Aule and the Seven Fathers - Ted Nasmith fathers of the dwarves - steamey Aule the Destroyer - Ted Nasmith The Dwarf Lords - Ralph Damiani And Morgoth came - Jenny Dolfen origin of the orcs - Turner Mohan Misty Mountain Orc - Olanda Fong-Surdenas Gandalf - aegeri gandalf - John Howe Gandalf - Kinko White Legolas and Gandalf - Catherine Karina Chmiel Balrog - John_Howe Gothmog - Anastasiya Gandalf and the Balrog - John Howe Bane of Durin - Jerry Vanderstelt fingolfin facing morgoth - Tolman Cotton Gandalf the Grey - Kinko White Gandalf, A Light in the Dark - Matthew Stewart Gandalf and the Balrog - John Howe The Elven Rings - Ralph Damiani grey havens - Tolman Cotton Gandalf and Shadowfax - Ted Nasmith Cirdan, Lord of the Falathrim - Peter Xavier Price Cirdan - Alystraea Gandalf - Catherine Karina Chmiel Gandalf and Frodo - Ivan Cavini Gandalf - Rafael Damiani Ringbearers - Jenny Dolfen Galadriel - Ted Nasmith Gandalf at the Doors of Durin moria - Dzmitry Yakhouski mountains - felix englund glorfindel with elrond and gandalf - alystraea Grey Havens - Alan Lee JRR Tolkien - skullb*st*rd Gandalf Balrog - Felix Englund Moria - John Howe Gandalf - Elrodimus Flash The Bridge of Khazad-dum - John Howe Gandalf - Catherine Karina Chmiel The First Dawn of the Sun - Ted Nasmith Of Sun and Moon - Šárka Škorpíková Balrog - John Howe fingolfin vs morgoth - Matt Leese Fingolfin vs Morgoth - Šárka Škorpíková Arien - Lída Holubová Morgoth and Fingolfin - YidanYuan Anfauglith - Peter Xavier Price Anar - the Sun vessel - Matěj Čadil Lungorthin - Anastasiya Cemetery Balrog - Daniel Govar The Balrog - Ted Nasmith Balrog - John_Howe Balrog - John_Howe Gandalf - Daniel Dougherty Dark valley - Felix Englund Battle in the distance - Felix Englund dramatic clouds - Felix Englund Battle of Sudden Flame - Alan Lee Balrog - John Howe balrog - Kinko White Balrog - Jerry Vanderstelt Beren and Luthien flee Angband - Pete Amachree At the Bridge - Ted Nasmith Gothmog - Steve Airola Gandalf book Mazarbul - Matthew Stewart Lord of the Eagles - Tuuliky Fionwe - Marya Filatova Angband - skullb*st*rd Gandalf v Balrog - Dzmitry Yakhouski khazad-dum - CK Goksoy Gandalf and the Balrog Upon Celebdil - Ted Nasmith #gandalf #lordoftherings #balrog
    https://wn.com/Gandalf's_Speech_To_The_Balrog_What_It_Means_|_Tolkien_Explained
    LOTR The Fellowship of the Ring - Extended Edition - Gandalf speaks to Frodo in Moria
    2:36

    LOTR The Fellowship of the Ring - Extended Edition - Gandalf speaks to Frodo in Moria

    • Order:
    • Duration: 2:36
    • Uploaded Date: 28 Dec 2012
    • views: 3168775
    The extended edition version of when Gandalf talks to Frodo about Gollum, after Frodo sees him in the shadows of Moria. (HD Blu-ray) Frodo: "I wish the Ring had never come to me. I wish none of this had happened." Gandalf: "So do all who live to see such times but that is not for them to decide. All we have to decide is what to do with the time that is given to us." More tags: LOTR Fellowship Ring - Extended Edition - Moria Part 4 Mines of Moria Frodo sees Gollum in the dark in Moria Frodo It's something down there Gandalf It's Gollum He's been following us for three 3 days Frodo He escaped the dungeons of Barad-dûr Gandalf Escaped or was set loose Now the Ring has brought him here He will never be rid of his need for it He hates and loves the Ring as he hates and loves himself Gandalf Smeagol's life is a sad story Yes Smeagol he was ones called before the Ring found him Before it drove him mad Frodo It's a pity Bilbo didn't kill him when he had the chance Gandalf Pity It was pity that stayed Bilbo's hand Many that live deserve death and some that die deserve life Can you give it to them Frodo Gandalf Do not be too eager to deal out death in judgement Even the very wise cannot see all ends My heart tells me that Gollum has some part to play yet for good or evil before this is over Gandalf The pity of Bilbo may rule the fate of many Frodo I wish the Ring had never come to me I wish none of this had happened Gandalf So do all who live to see such times but that is not for them to decide All we have to decide is what to do with the time that is given to us Gandalf There are other forces at work in this world Frodo besides the will of evil Bilbo was meant to find the Ring in which case you also were meant to have it And that is an encouraging thought
    https://wn.com/Lotr_The_Fellowship_Of_The_Ring_Extended_Edition_Gandalf_Speaks_To_Frodo_In_Moria
    Gandalf & Middle Earth after defeating Sauron
    0:14

    Gandalf & Middle Earth after defeating Sauron

    • Order:
    • Duration: 0:14
    • Uploaded Date: 22 Feb 2022
    • views: 298
    https://wn.com/Gandalf_Middle_Earth_After_Defeating_Sauron
    Gandalf, Galadriel, Elrond and Saruman have a discussion in Rivendell [1080 HD][ENG SUB]
    4:53

    Gandalf, Galadriel, Elrond and Saruman have a discussion in Rivendell [1080 HD][ENG SUB]

    • Order:
    • Duration: 4:53
    • Uploaded Date: 14 Mar 2017
    • views: 996624
    Scene from "The Hobbit: An Unexpected Journey" (2012)
    https://wn.com/Gandalf,_Galadriel,_Elrond_And_Saruman_Have_A_Discussion_In_Rivendell_1080_Hd_Eng_Sub
    What if Sauron got The One Ring? | Tolkien Theory
    12:17

    What if Sauron got The One Ring? | Tolkien Theory

    • Order:
    • Duration: 12:17
    • Uploaded Date: 05 Mar 2022
    • views: 1772307
    We look at sections of The Lord of the Rings and Tolkien's letters to answer the question - what would happen if Sauron reclaimed The One Ring? We'll pick up from Frodo's failure at Mount Doom to determine Sauron's strategy, how the elves would seek to combat him, and who would be left standing! Hit subscribe - and the bell! Nerd of the Rings on PATREON: https://www.patreon.com/NerdoftheRings To purchase artist work, check out these amazing artists! Anna Podedworna - https://www.artstation.com/akreon Jenny Dolfen - goldseven.wordpress.com/ Turner Mohan - www.instagram.com/turner_mohan Ted Nasmith - www.tednasmith.com/shop/ Anke Eissmann - http://anke.edoras-art.de/anke_illustration.html Donato Giancola - https://www.donatoarts.com/online-store/secure-store/Middle-earth-c34110463 Aronja Art - https://www.instagram.com/aronjaart/ Ivan Cavini - https://www.instagram.com/ivan_cavini/ Sara Morello - https://www.artstation.com/saramorello Tulikoura - https://www.deviantart.com/tulikoura Sauron - Jerry Vanderstelt Sauron at Barad-dur - Shadow of War Sauron - Anna Podedworna (thumbnail) Sauron - WETA Sauron - Shadow of War At the Cracks of Doom - Ted Nasmith Frodo and Sam in Mordor - Andrea Piparo Sauron - WETA Sauron - Guardians of Middle-earth Battle of the Black Gate - Ted Nasmith The Eagle's Song - Anke Eissmann Nazgul Charge - Felix Englund Battle of Dale - WETA Eye of Sauron - John Howe Battle of Dale - WETA Dol Guldur - WETA Sauron - Guardians of Middle-earth Angband - Skullb*st*rd Battle of Pelennor Fields - Aegeri Sauron - Shadow of War Sauron - WETA Galadriel - Catherine Karina Chmiel Elrond Halfelven - Donato Giancola Morgoth - CK Goksoy Minas Tirith - Ralph Damiani Lothlorien - Ralph Damiani Rivendell - Ralph Damiani Grey Havens - Ralph Damiani Sauron - Alan Lee Carn Dum - Skullb*st*rd Orthanc - Ralph Damiani Fortress - Felix Englund The Mouth of Sauron - John Howe The Mouth of Sauron - John Howe Mouth of Sauron - Guardians of Middle-earth Nazgul Bowing Before Sauron - Kip Rasmussen Sauron - Janka Lateckova Barad-dur - Shadow of War Saruman - John Howe The Voice of Isengard - Matthew Stewart Sauron - Tom Romain (for Lore of the Rings YouTube channel) Luthien in the Court of Morgoth - Pete Amachree Sauron the Deceiver - Skullb*st*rd Spirit of Sauron - Skullb*st*rd The Shadow of Sauron - Ted Nasmith Morgoth - CK Goksoy Morgoth the Vala - Skullb*st*rd The Shores of Valinor - Ted Nasmith Eru Iluvatar - Janka Lateckova Music of the Gods - Kip Rasmussen Wanderer - CK Goksoy Radagast the Brown - Ralph Damiani Alatar and Pallando - Ralph Damiani Alatar and Pallando 2 - Ralph Damiani Sam and Frodo in Emyn Muil - Ted Nasmith Mount Doom - Alan Lee Samwise Gamgee - Matthew Stewart #sauron #lordoftherings #tolkien
    https://wn.com/What_If_Sauron_Got_The_One_Ring_|_Tolkien_Theory
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • What if Gandalf Took the Ring? | Tolkien Theory
      19:22
      What if Gandalf Took the Ring? | Tolkien Theoryremove from playlist
    • What Happened To Gandalf After He Fought The Balrog? | Lord of the Rings Lore
      13:09
      What Happened To Gandalf After He Fought The Balrog? | Lord of the Rings Loreremove from playlist
    • Gandalf vs. the Balrog explained - LOTR Lore
      11:38
      Gandalf vs. the Balrog explained - LOTR Loreremove from playlist
    • Why did Saruman Turn Evil and Hate Gandalf? | Lord of the Rings Lore | Middle-Earth
      12:41
      Why did Saruman Turn Evil and Hate Gandalf? | Lord of the Rings Lore | Middle-Earthremove from playlist
    • Gandalf's Speech To The Balrog & What It Means | Tolkien Explained
      16:30
      Gandalf's Speech To The Balrog & What It Means | Tolkien Explainedremove from playlist
    • LOTR The Fellowship of the Ring - Extended Edition - Gandalf speaks to Frodo in Moria
      2:36
      LOTR The Fellowship of the Ring - Extended Edition - Gandalf speaks to Frodo in Moriaremove from playlist
    • What if Sauron got The One Ring? | Tolkien Theory
      12:17
      What if Sauron got The One Ring? | Tolkien Theoryremove from playlist
    developed with YouTube
    PLAYLIST TIME:

    What if Gandalf Took the Ring? | Tolkien Theory

    "Gandalf as Ring-lord would have been far worse than Sauron" - JRR Tolkien. Today, using my usual weekly level of research, I've created a plausible scenario that could to Gandalf taking the One Ring and replacing the Dark Lord. There's some safe bets in here, in addition to some longshots, but it's all in good fun! Let me know in the comments what you think would happen if the Grey wizard claimed the ring for himself! Hit subscribe - and the bell - so you never miss a video from Nerd of the Rings! Nerd of the Rings on PATREON: https://www.patreon.com/NerdoftheRings -------------- All content falls under fair use: any copying of copyrighted material done for a limited and “transformative” purpose, such as to comment upon, criticize, or parody a copyrighted work. Such uses can be done without permission from the copyright owner. Gandalf, Aragorn, & Samwise - Donato Giancola Gandalf in Moria - Donato Giancola Gandalf Pensive - Donato Giancola Gandalf and Aragorn - Reacool Gandalf and Theoden - Tolman Cotton Gandalf the Grey - Matt DeMino Gandalf before Denethor - Alan Lee Theoden - Harlis Suardana Aragorn - Ian Fee Gandalf Attacks Dol Guldur - John Howe King Theoden and Wormtongue - Greg and Tim Hildebrandt Looking into the Stone - Kuliszu Rivendell - Zak Seymour Rohirrim - Gellihana Art Nazgul - Rui Goncalves The Hermit - bnolin The King of the Golden Hall - Ullakko The Riders of Rohan - Ted Nasmith Nazgul Rider - William Nunez Orthanc - Alan Lee The Ringwraiths - Anato Finnstark Nazgul on Weathertop - Anato Finnstark The Nine - Anato Finnstark Boromir Arrives to Rivendell - Joshua Cairos The Council of Elrond - Alan Lee Frodo and Gandalf in Bag End - Raul Vitale Gandalf and Frodo Examine the Ring - Donato Giancola Gandalf and Theoden - Kacik Rohanskiej Gandalf and Saruman - Angelo Montanini Gandalf in Minas Tirith - Anke Eissman Nazgul - Allrich Art Saruman and the Palantir - Greg and Tim Hildebrandt Saruman - AIMaNeGrA Saruman's Staff - Alexandr Elichev Bilbo and Gandalf - Tim Kirk Wrath of Galadriel - Zyrexthez Bag End - Wictorian Art Minas Tirith: Hall of Kings - Hayo Koekkoek The Shire - Liam Tart Minas Tirith - Ludovic Bourgeois Dol Guldur - Michael Merc Orthanc in the Second Age - Ted Nasmith Barad-dur - Steve Firchow The Shire, A View of Hobbiton - Ted Nasmith An Enemy Revealed - Laurence Andrew Page Cthumang Darth Vader Gandalf & Sauron - Joujeen Denethor Son of Ecthelion - Joshua Cairos Gandalf and Dumbledore - Rodolfo Gurreiro Check out these resources for this and more info about Smaug, the Dragons of the North, and the War of Dwarves and Dragon: The Lord of the Rings Unfinished Tales The Encyclopedia of Arda Tolkien Gateway Theonering.net “Today in Middle-earth History” Calendar #gandalf #tolkien #lordoftherings
    19:22
    What if Gandalf Took the Ring? | Tolkien Theory
    "Gandalf as Ring-lord would have been far worse than Sauron" - JRR Tolkien. Today, using m...
    published: 16 Jan 2021
    Play in Full Screen
    13:09
    What Happened To Gandalf After He Fought The Balrog? | Lord of the Rings Lore
    Gandalf vs The Balrog in Moria is an iconic duel, but what happened to Gandalf after they ...
    published: 03 Jul 2023
    Play in Full Screen
    11:38
    Gandalf vs. the Balrog explained - LOTR Lore
    Gandalf versus the Balrog, also known as the Flame of Udûn or Durin's Bane is one of the m...
    published: 15 Jun 2019
    Play in Full Screen
    12:41
    Why did Saruman Turn Evil and Hate Gandalf? | Lord of the Rings Lore | Middle-Earth
    Why did Saruman join Sauron and turn Evil? What led him to betray the mission that the Val...
    published: 13 Nov 2020
    Play in Full Screen
    3:39
    Gandalf and Radagast in Nazgul's grave [HD]
    The Hobbit The Desolation of Smaug (2013)
    published: 28 Aug 2014
    Play in Full Screen
    16:30
    Gandalf's Speech To The Balrog & What It Means | Tolkien Explained
    The brand new Magic: the Gathering The Lord of the Rings: Tales of Middle-earth releases J...
    published: 17 Jun 2023
    Play in Full Screen
    2:36
    LOTR The Fellowship of the Ring - Extended Edition - Gandalf speaks to Frodo in Moria
    The extended edition version of when Gandalf talks to Frodo about Gollum, after Frodo sees...
    published: 28 Dec 2012
    Play in Full Screen
    0:14
    Gandalf & Middle Earth after defeating Sauron
    published: 22 Feb 2022
    Play in Full Screen
    4:53
    Gandalf, Galadriel, Elrond and Saruman have a discussion in Rivendell [1080 HD][ENG SUB]
    Scene from "The Hobbit: An Unexpected Journey" (2012)
    published: 14 Mar 2017
    Play in Full Screen
    12:17
    What if Sauron got The One Ring? | Tolkien Theory
    We look at sections of The Lord of the Rings and Tolkien's letters to answer the question ...
    published: 05 Mar 2022
    Play in Full Screen

    Gandalf

    Gandalf /ˈɡændɑːlf/ is a fictional character and one of the main protagonists in J. R. R. Tolkien's novels The Hobbit and The Lord of the Rings. He is a wizard, member of the Istari order, as well as leader of the Fellowship of the Ring and the army of the West. In The Lord of the Rings, he is initially known as Gandalf the Grey, but returns from death as Gandalf the White.

    Characteristics

    Tolkien discusses Gandalf in his essay on the Istari, which appears in the work Unfinished Tales. He describes Gandalf as the last of the wizards to appear in Middle-earth, one who: "seemed the least, less tall than the others, and in looks more aged, grey-haired and grey-clad, and leaning on a staff". Yet the Elf Círdan who met him on arrival nevertheless considered him "the greatest spirit and the wisest" and gave him the elven Ring of power called Narya, the Ring of Fire, containing a "red" stone for his aid and comfort. Tolkien explicitly links Gandalf to the element Fire later in the same essay:

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