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

Narmer

Narmer was an ancient Egyptian king of the Early Dynastic Period. Probably the successor to the Protodynastic kings Scorpion and/or Ka, some consider him the unifier of Egypt and founder of the First Dynasty, therefore the first king of a unified Egypt.

The identity of Narmer is the subject of ongoing debate, although mainstream Egyptological consensus identifies Narmer with the First Dynasty pharaoh Menes, who is also credited with the unification of Egypt, as the first pharaoh. This conclusion is based on the Narmer Palette which shows Narmer as the unifier of Egypt and the two necropolis seals from the necropolis of Abydos that show him as the first king of the First Dynasty.

The approximate date of Narmer/Menes is mostly estimated as close to the 31st or 32nd century BCE, although recent Egyptological literature comprises estimates of anywhere between the 34th and the 30th centuries BCE.

Reign

The famous Narmer Palette, discovered by James E. Quibell in 1898 in Hierakonpolis, shows Narmer displaying the insignia of both Upper and Lower Egypt, giving rise to the theory that he unified the two kingdoms. Since its discovery, it has been debated whether the Narmer Palette represents a historic event or was purely symbolic. In 1993, however, Günter Dreyer discovered in Abydos a year label of Narmer depicting the same event as that on the Narmer Palette which clearly shows that the Narmer Palette depicts an actual historic event.

Podcasts:

  • The First Pharaoh | Narmer | Ancient Egypt Documentary

    Narmer was an ambitious Upper Egyptian king who managed to conquer Lower Egypt and declare himself the first ruler of both lands. This began Egypt's Early Dynastic Period, and laid the foundation for one of history's most extensive and long-lived civilizations, lasting over 3,000 years! Narmer Biography 3180 BC - 3120 BC The First Pharaoh Ancient Egypt Documentary __________________________________ History Explained Videos (Chronological Order) Narmer | The First Pharaoh Ancient Egypt | 3100 BC youtu.be/e_ByLv949-8 Imhotep | The First Pyramid Builder Ancient Egypt | 2650 BC youtu.be/gpL5TgIRukQ Sargon | The Greatest King of Akkad Ancient Mesopotamia | 2300 BC youtu.be/kkSwK59CwF8 Sobekneferu | The First Female Pharaoh Ancient Egypt | 1800 BC youtu.be/TaI3MawgKNE Hammurabi | The Firs...

    published: 10 Sep 2019
  • Warframe | **SPOILER WARNING** | ‘For Narmer’ Official Song

    ***WARNING: This video’s song lyrics contains spoilers for The New War*** Lyrics: Healed, the pain of independence Strong, our wise and trusted friend We, united in one vision Rise to sing of sorrow's end He, the bringer of the vision Bids you answer to his call Praise the wise and mighty Ballas Heed the ruler of us all For we're all One And the work's begun For Narmer And we all run To our golden son For Narmer For Narmer Here today we sing our story With Ballas we have found our home Virtue once was work together But virtue now is lift alone Free we are now from each other Brothers, sisters, daughters, sons Where once we dreamt of independence Now we stand and dream alone We were all for One Now the work's begun For Narmer And we all run To the golden son For Narmer For Narmer M...

    published: 15 Dec 2021
  • King Narmer | king before Pharaoh's

    The discovery of King Scorpion challenged history books that claimed Egyptian civilization arose from foreign invaders.

    published: 04 Jul 2014
  • THE FIRST PHARAOH - Narmer (Part 1)

    Thank you so much for watching, it took a while to cobble this together and I hope you think it was worth it! Without Narmer.org, I wouldn't have been able to illustrate half of this video, so a big thanks to them. I would also like to thank my good friend Leafy for creating a large part of the design I used for my thumbnail. #ancientegypt #history #historydocumentary #narmer #Egypt #ancientegyptianhistory #pharaohs #artdocumentary #egyptianhistory #egyptology #archaeology #prehistory #predynasticperiod #minidoc #documentary #artifacts #science #dovahatty #Israel #israelihistory #middleast #neareast #antiquity #kings #royalty #wojak #treasure #relics

    published: 23 Mar 2022
  • For Narmer (From "Warframe")

    Provided to YouTube by CDBaby For Narmer (From "Warframe") · Keith Power · George Spanos For Narmer (From "Warframe") ℗ 2022 Digital Extremes Released on: 2022-02-14 Auto-generated by YouTube.

    published: 03 Mar 2022
  • Ancient Egypt Dynasty by Dynasty - Scorpion, Narmer and the Predynastic Period / Dynasty 0

    Welcome to this new series, Ancient Egypt Dynasty by Dynasty, where we'll travel through over 3000 years of Egyptian history. Before we get to what scholars call the very first dynasty of Egyptian civilization, we'll take a look at who some of Egypt's first kings were and where they may have been from. In this video we'll cover the period roughly from the late Naqada / Naqada III period to the threshold of the Early Dynastic Period. Featured in this program are the kings 'Scorpion' and Narmer. Related Videos: Ancient Egypt Dynasty by Dynasty Playlist: https://www.youtube.com/watch?v=gucY935l4Sw&list=PLUx8354UG5yy4JiAs1I23s5cLtnfDs0pN Predynastic Egypt - Early Egyptian History Before the Pharaohs and Pyramids (5000-3000 BC) https://youtu.be/fYNQk2jXSTY The Real Scorpion King (Scorpi...

    published: 31 Jul 2021
  • For Narmer Intro | New War | Warframe #warframe #spoiler

    New War is out now check the link for more details: https://www.warframe.com/the-new-war For Narmer Song: https://www.youtube.com/watch?v=L50II6zJy9U If you wish to support the channel: https://streamlabs.com/ggirl2020/tip If there's any games that you wish for me to play let me know in the comments below! Platform: PS4 IGN: GGirl2020 Need more dose of fashion? Check this playlist out: https://www.youtube.com/playlist?list=PLkWNzc2gaXhdmX3r8tLAb7I2BhY6Qggnc Follow my Socials! Instagram: https://www.instagram.com/ggirl2020yt/ TikTok: https://vm.tiktok.com/ZMeGcN7LP/ Twitch: https://www.twitch.tv/ggirl2020

    published: 16 Dec 2021
  • The FIRST Pharaoh - Narmer (Part 2)

    Hi guys, I hope you enjoy the second part of my exploration of the life and times of Egypt's first ever pharaoh, Narmer! This is the third video in my series aiming to cover every single ancient Egyptian pharaoh in depth, so I plan on releasing a video on Narmer's successor Aha very soon! Music: Michael Levy playing a Ugandan harp similar to the ancient Egyptian harp (https://www.youtube.com/watch?v=bgAZ28dPjPQ) #ancientegypt #historydocumentary #history #mystery #minidoc #pharaohs #treasure #losttombs #artifacts #relics #mysterydocumentary #educational #narmer #egypt #africa #prehistory 3ancienthistory #ancientneareast #ancientcivilizations #art #arthistory #arthistorydocumentary #royals #royalty #kings

    published: 17 Apr 2022
  • Unification Battle of Egypt : circa 3100 BCE - King Narmer and the Narmer Palette (Ancient Egypt)

    The Narmer Palette, also known as the Great Hierakonpolis Palette or the Palette of Narmer, is a significant Egyptian archeological find, dating from about the 31st century BC, belonging, at least nominally, to the category of cosmetic palettes. It contains some of the earliest hieroglyphic inscriptions ever found. The tablet is thought by some to depict the unification of Upper and Lower Egypt under the king Narmer. On one side, the king is depicted with the bulbed White Crown of Upper (southern) Egypt, and the other side depicts the king wearing the level Red Crown of Lower (northern) Egypt. Along with the Scorpion Macehead and the Narmer Maceheads, also found together in the main deposit at Nekhen, the Narmer Palette provides one of the earliest known depictions of an Egyptian king. The...

    published: 22 Jul 2021
  • WARFRAME - For Narmer (Cover)

    Get 15% off Aran jumper(sweater) goodness at Skellig Gift Store w/Discount code: COLM22 https://skelliggiftstore.com/ (with orders over €50) ✨YOU CAN SUPPORT ME AT✨ https://ko-fi.com/colmmcguinness 🐦 TWITTER: https://twitter.com/NiceViolinBoy 📷 INSTA: https://www.instagram.com/colmrmcguinness/ 🎵 SOUNDCLOUD: https://soundcloud.com/crmmusic 🎵 BANDCAMP: https://colmmcguinness.bandcamp.com/ EMAIL: colmmcguinnesscomposer@outlook.com #Warframe #ForNarmer #TheNewWar

    published: 14 Jan 2022
developed with YouTube
The First Pharaoh | Narmer | Ancient Egypt Documentary
6:00

The First Pharaoh | Narmer | Ancient Egypt Documentary

  • Order:
  • Duration: 6:00
  • Uploaded Date: 10 Sep 2019
  • views: 846876
Narmer was an ambitious Upper Egyptian king who managed to conquer Lower Egypt and declare himself the first ruler of both lands. This began Egypt's Early Dynastic Period, and laid the foundation for one of history's most extensive and long-lived civilizations, lasting over 3,000 years! Narmer Biography 3180 BC - 3120 BC The First Pharaoh Ancient Egypt Documentary __________________________________ History Explained Videos (Chronological Order) Narmer | The First Pharaoh Ancient Egypt | 3100 BC youtu.be/e_ByLv949-8 Imhotep | The First Pyramid Builder Ancient Egypt | 2650 BC youtu.be/gpL5TgIRukQ Sargon | The Greatest King of Akkad Ancient Mesopotamia | 2300 BC youtu.be/kkSwK59CwF8 Sobekneferu | The First Female Pharaoh Ancient Egypt | 1800 BC youtu.be/TaI3MawgKNE Hammurabi | The First Emperor of Babylon Ancient Mesopotamia | 1750 BC youtu.be/jPn-Lxuilw4 Hatshepsut | The Greatest Female Pharaoh Ancient Egypt | 1470 BC youtu.be/L_A8B_MdAdY Thutmose III | The Deadliest Pharaoh Ancient Egypt | 1450 BC youtu.be/-2XS3vmVGjU Amenhotep III | The Wealthiest Pharaoh Ancient Egypt | 1370 BC youtu.be/j5Oua9WNo8c Akhenaten | The Most Hated Pharaoh Ancient Egypt | 1350 BC youtu.be/Gdcu2g5uM7o Nefertiti | The Most Hated Female Pharaoh Ancient Egypt | 1340 BC youtu.be/bLWD3bVhSbM Ramses the Great | The Greatest Pharaoh Ancient Egypt | 1250 BC youtu.be/TeESSvut5xA Lycurgus | The Lawgiver of Sparta Ancient Greece | 750 BC youtu.be/zfC1ZnTKOJU Ashurbanipal | The Cruelest King of Assyria Ancient Mesopotamia | 650 BC youtu.be/LOCm2G0R4PY Nebuchadnezzar | The Greatest King of Babylon Ancient Mesopotamia | 600 BC youtu.be/WX4sTXOKRcY Draco | The Lawgiver of Athens Ancient Greece | 600 BC https://youtu.be/sqOxqv_yIzE Cyrus the Great | The Greatest King of Persia Achaemenid Empire | 550 BC youtu.be/CMc1rF8u4ro Cambyses II | The First Persian Pharaoh Achaemenid Empire | 530 BC youtu.be/pXOjOcTqU5w __________________________________ Foreign Language Subtitles Hindi Arabic French Turkish English Marathi Russian Spanish Romanian Portuguese __________________________________ Video Credits Editor: Christopher Geman Writer: Christopher Geman Narrator: Christian H. Miles Artist: William R. Liberto Music: "Desert Winds" - Jon Sumner Carlos Jaramillo's ArtStation https://carlosjar.artstation.com __________________________________ Contact Email: history.explained5@gmail.com All images by Christopher Geman, found in the public domain, or used under fair use guidelines. __________________________________ If you enjoy this video, please like & share it. 👍 Share your opinions in the comments below. 💬 Subscribe and press the bell for new videos. 🔔 __________________________________ #History #Biography #Documentary
https://wn.com/The_First_Pharaoh_|_Narmer_|_Ancient_Egypt_Documentary
Warframe | **SPOILER WARNING** | ‘For Narmer’ Official Song
3:40

Warframe | **SPOILER WARNING** | ‘For Narmer’ Official Song

  • Order:
  • Duration: 3:40
  • Uploaded Date: 15 Dec 2021
  • views: 2337190
***WARNING: This video’s song lyrics contains spoilers for The New War*** Lyrics: Healed, the pain of independence Strong, our wise and trusted friend We, united in one vision Rise to sing of sorrow's end He, the bringer of the vision Bids you answer to his call Praise the wise and mighty Ballas Heed the ruler of us all For we're all One And the work's begun For Narmer And we all run To our golden son For Narmer For Narmer Here today we sing our story With Ballas we have found our home Virtue once was work together But virtue now is lift alone Free we are now from each other Brothers, sisters, daughters, sons Where once we dreamt of independence Now we stand and dream alone We were all for One Now the work's begun For Narmer And we all run To the golden son For Narmer For Narmer Music: Keith Power Lyrics: Adrian Bott, Keith Power Vocals: Matthew Chalmers, Evan Duffy, Shila Farahani, Keith Power, Joshua Ryan Romero Music Supervisor: George Spanos
https://wn.com/Warframe_|_Spoiler_Warning_|_‘For_Narmer’_Official_Song
King Narmer |  king before Pharaoh's
44:50

King Narmer | king before Pharaoh's

  • Order:
  • Duration: 44:50
  • Uploaded Date: 04 Jul 2014
  • views: 1003073
The discovery of King Scorpion challenged history books that claimed Egyptian civilization arose from foreign invaders.
https://wn.com/King_Narmer_|_King_Before_Pharaoh's
THE FIRST PHARAOH - Narmer (Part 1)
20:36

THE FIRST PHARAOH - Narmer (Part 1)

  • Order:
  • Duration: 20:36
  • Uploaded Date: 23 Mar 2022
  • views: 87356
Thank you so much for watching, it took a while to cobble this together and I hope you think it was worth it! Without Narmer.org, I wouldn't have been able to illustrate half of this video, so a big thanks to them. I would also like to thank my good friend Leafy for creating a large part of the design I used for my thumbnail. #ancientegypt #history #historydocumentary #narmer #Egypt #ancientegyptianhistory #pharaohs #artdocumentary #egyptianhistory #egyptology #archaeology #prehistory #predynasticperiod #minidoc #documentary #artifacts #science #dovahatty #Israel #israelihistory #middleast #neareast #antiquity #kings #royalty #wojak #treasure #relics
https://wn.com/The_First_Pharaoh_Narmer_(Part_1)
For Narmer (From "Warframe")
3:35

For Narmer (From "Warframe")

  • Order:
  • Duration: 3:35
  • Uploaded Date: 03 Mar 2022
  • views: 1013308
Provided to YouTube by CDBaby For Narmer (From "Warframe") · Keith Power · George Spanos For Narmer (From "Warframe") ℗ 2022 Digital Extremes Released on: 2022-02-14 Auto-generated by YouTube.
https://wn.com/For_Narmer_(From_Warframe_)
Ancient Egypt Dynasty by Dynasty - Scorpion, Narmer and the Predynastic Period / Dynasty 0
15:24

Ancient Egypt Dynasty by Dynasty - Scorpion, Narmer and the Predynastic Period / Dynasty 0

  • Order:
  • Duration: 15:24
  • Uploaded Date: 31 Jul 2021
  • views: 227700
Welcome to this new series, Ancient Egypt Dynasty by Dynasty, where we'll travel through over 3000 years of Egyptian history. Before we get to what scholars call the very first dynasty of Egyptian civilization, we'll take a look at who some of Egypt's first kings were and where they may have been from. In this video we'll cover the period roughly from the late Naqada / Naqada III period to the threshold of the Early Dynastic Period. Featured in this program are the kings 'Scorpion' and Narmer. Related Videos: Ancient Egypt Dynasty by Dynasty Playlist: https://www.youtube.com/watch?v=gucY935l4Sw&list=PLUx8354UG5yy4JiAs1I23s5cLtnfDs0pN Predynastic Egypt - Early Egyptian History Before the Pharaohs and Pyramids (5000-3000 BC) https://youtu.be/fYNQk2jXSTY The Real Scorpion King (Scorpion I of Egypt) https://youtu.be/jxD-RY_O7jY Sources and Suggested Reading ► https://bit.ly/37buk3H Follow History with Cy: Instagram ► https://www.instagram.com/historywithcy/ Facebook ► https://www.facebook.com/historywithcy/ Twitter ► https://twitter.com/historywithcy Website ► http://www.historywithcy.com Podcast ► https://historywithcy.buzzsprout.com/ Music: Epidemic Sound #egypt #ancienthistory #bronzeage
https://wn.com/Ancient_Egypt_Dynasty_By_Dynasty_Scorpion,_Narmer_And_The_Predynastic_Period_Dynasty_0
For Narmer Intro | New War | Warframe #warframe #spoiler
2:02

For Narmer Intro | New War | Warframe #warframe #spoiler

  • Order:
  • Duration: 2:02
  • Uploaded Date: 16 Dec 2021
  • views: 137447
New War is out now check the link for more details: https://www.warframe.com/the-new-war For Narmer Song: https://www.youtube.com/watch?v=L50II6zJy9U If you wish to support the channel: https://streamlabs.com/ggirl2020/tip If there's any games that you wish for me to play let me know in the comments below! Platform: PS4 IGN: GGirl2020 Need more dose of fashion? Check this playlist out: https://www.youtube.com/playlist?list=PLkWNzc2gaXhdmX3r8tLAb7I2BhY6Qggnc Follow my Socials! Instagram: https://www.instagram.com/ggirl2020yt/ TikTok: https://vm.tiktok.com/ZMeGcN7LP/ Twitch: https://www.twitch.tv/ggirl2020
https://wn.com/For_Narmer_Intro_|_New_War_|_Warframe_Warframe_Spoiler
The FIRST Pharaoh - Narmer (Part 2)
23:08

The FIRST Pharaoh - Narmer (Part 2)

  • Order:
  • Duration: 23:08
  • Uploaded Date: 17 Apr 2022
  • views: 20995
Hi guys, I hope you enjoy the second part of my exploration of the life and times of Egypt's first ever pharaoh, Narmer! This is the third video in my series aiming to cover every single ancient Egyptian pharaoh in depth, so I plan on releasing a video on Narmer's successor Aha very soon! Music: Michael Levy playing a Ugandan harp similar to the ancient Egyptian harp (https://www.youtube.com/watch?v=bgAZ28dPjPQ) #ancientegypt #historydocumentary #history #mystery #minidoc #pharaohs #treasure #losttombs #artifacts #relics #mysterydocumentary #educational #narmer #egypt #africa #prehistory 3ancienthistory #ancientneareast #ancientcivilizations #art #arthistory #arthistorydocumentary #royals #royalty #kings
https://wn.com/The_First_Pharaoh_Narmer_(Part_2)
Unification Battle of Egypt : circa 3100 BCE - King Narmer and the Narmer Palette (Ancient Egypt)
3:50

Unification Battle of Egypt : circa 3100 BCE - King Narmer and the Narmer Palette (Ancient Egypt)

  • Order:
  • Duration: 3:50
  • Uploaded Date: 22 Jul 2021
  • views: 10225
The Narmer Palette, also known as the Great Hierakonpolis Palette or the Palette of Narmer, is a significant Egyptian archeological find, dating from about the 31st century BC, belonging, at least nominally, to the category of cosmetic palettes. It contains some of the earliest hieroglyphic inscriptions ever found. The tablet is thought by some to depict the unification of Upper and Lower Egypt under the king Narmer. On one side, the king is depicted with the bulbed White Crown of Upper (southern) Egypt, and the other side depicts the king wearing the level Red Crown of Lower (northern) Egypt. Along with the Scorpion Macehead and the Narmer Maceheads, also found together in the main deposit at Nekhen, the Narmer Palette provides one of the earliest known depictions of an Egyptian king. The Palette shows many of the classic conventions of Ancient Egyptian art, which must already have been formalized by the time of the Palette's creation. The Egyptologist Bob Brier has referred to the Narmer Palette as "the first historical document in the world". CLICK HERE TO SEE THE ENTIRE HISTORY OF THE WORLD FEATURE LENGTH DOCUMENTARY: https://www.youtube.com/watch?v=T5PwyuzSYcs The Palette, which has survived five millennia in almost perfect condition, was discovered by British archeologists James E. Quibell and Frederick W. Green, in what they called the Main Deposit in the Temple of Horus at Nekhen, during the dig season of 1897–98. Also found at this dig were the Narmer Macehead and the Scorpion Macehead. The exact place and circumstances of these finds were not recorded very clearly by Quibell and Green. In fact, Green's report placed the Palette in a different layer one or two yards away from the deposit, which is considered to be more accurate on the basis of the original excavation notes. It has been suggested that these objects were royal donations made to the temple. Nekhen, or Hierakonpolis, was one of four power centers in Upper Egypt that preceded the consolidation of Upper Egypt at the end of the Naqada III period. Hierakonpolis's religious importance continued long after its political role had declined. Palettes were typically used for grinding cosmetics, but this palette is too large and heavy (and elaborate) to have been created for personal use and was probably a ritual or votive object, specifically made for donation to, or use in, a temple. One theory is that it was used to grind cosmetics to adorn the statues of the deities. The Narmer Palette is part of the permanent collection of the Egyptian Museum in Cairo. It is one of the initial exhibits which visitors have been able to see when entering the museum. It has the Journal d'Entrée number JE32169 and the Catalogue Général number CG14716. Shoutout: History Explained: https://youtu.be/e_ByLv949-8 All images used with CC license or no copyright filter. Music Used: Legend of Narmer Please subscribe to Made In History for more videos! We are always trying to grow and educate!
https://wn.com/Unification_Battle_Of_Egypt_Circa_3100_Bce_King_Narmer_And_The_Narmer_Palette_(Ancient_Egypt)
WARFRAME - For Narmer (Cover)
3:22

WARFRAME - For Narmer (Cover)

  • Order:
  • Duration: 3:22
  • Uploaded Date: 14 Jan 2022
  • views: 451464
Get 15% off Aran jumper(sweater) goodness at Skellig Gift Store w/Discount code: COLM22 https://skelliggiftstore.com/ (with orders over €50) ✨YOU CAN SUPPORT ME AT✨ https://ko-fi.com/colmmcguinness 🐦 TWITTER: https://twitter.com/NiceViolinBoy 📷 INSTA: https://www.instagram.com/colmrmcguinness/ 🎵 SOUNDCLOUD: https://soundcloud.com/crmmusic 🎵 BANDCAMP: https://colmmcguinness.bandcamp.com/ EMAIL: colmmcguinnesscomposer@outlook.com #Warframe #ForNarmer #TheNewWar
https://wn.com/Warframe_For_Narmer_(Cover)
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • The First Pharaoh | Narmer | Ancient Egypt Documentary
    6:00
    The First Pharaoh | Narmer | Ancient Egypt Documentaryremove from playlist
  • Warframe | **SPOILER WARNING** | ‘For Narmer’ Official Song
    3:40
    Warframe | **SPOILER WARNING** | ‘For Narmer’ Official Songremove from playlist
  • King Narmer |  king before Pharaoh's
    44:50
    King Narmer | king before Pharaoh'sremove from playlist
  • THE FIRST PHARAOH - Narmer (Part 1)
    20:36
    THE FIRST PHARAOH - Narmer (Part 1)remove from playlist
  • For Narmer (From
    3:35
    For Narmer (From "Warframe")remove from playlist
  • Ancient Egypt Dynasty by Dynasty - Scorpion, Narmer and the Predynastic Period / Dynasty 0
    15:24
    Ancient Egypt Dynasty by Dynasty - Scorpion, Narmer and the Predynastic Period / Dynasty 0remove from playlist
  • For Narmer Intro | New War | Warframe #warframe #spoiler
    2:02
    For Narmer Intro | New War | Warframe #warframe #spoilerremove from playlist
  • The FIRST Pharaoh - Narmer (Part 2)
    23:08
    The FIRST Pharaoh - Narmer (Part 2)remove from playlist
  • Unification Battle of Egypt : circa 3100 BCE - King Narmer and the Narmer Palette (Ancient Egypt)
    3:50
    Unification Battle of Egypt : circa 3100 BCE - King Narmer and the Narmer Palette (Ancient Egypt)remove from playlist
  • WARFRAME - For Narmer (Cover)
    3:22
    WARFRAME - For Narmer (Cover)remove from playlist
developed with YouTube
PLAYLIST TIME:

The First Pharaoh | Narmer | Ancient Egypt Documentary

Narmer was an ambitious Upper Egyptian king who managed to conquer Lower Egypt and declare himself the first ruler of both lands. This began Egypt's Early Dynastic Period, and laid the foundation for one of history's most extensive and long-lived civilizations, lasting over 3,000 years! Narmer Biography 3180 BC - 3120 BC The First Pharaoh Ancient Egypt Documentary __________________________________ History Explained Videos (Chronological Order) Narmer | The First Pharaoh Ancient Egypt | 3100 BC youtu.be/e_ByLv949-8 Imhotep | The First Pyramid Builder Ancient Egypt | 2650 BC youtu.be/gpL5TgIRukQ Sargon | The Greatest King of Akkad Ancient Mesopotamia | 2300 BC youtu.be/kkSwK59CwF8 Sobekneferu | The First Female Pharaoh Ancient Egypt | 1800 BC youtu.be/TaI3MawgKNE Hammurabi | The First Emperor of Babylon Ancient Mesopotamia | 1750 BC youtu.be/jPn-Lxuilw4 Hatshepsut | The Greatest Female Pharaoh Ancient Egypt | 1470 BC youtu.be/L_A8B_MdAdY Thutmose III | The Deadliest Pharaoh Ancient Egypt | 1450 BC youtu.be/-2XS3vmVGjU Amenhotep III | The Wealthiest Pharaoh Ancient Egypt | 1370 BC youtu.be/j5Oua9WNo8c Akhenaten | The Most Hated Pharaoh Ancient Egypt | 1350 BC youtu.be/Gdcu2g5uM7o Nefertiti | The Most Hated Female Pharaoh Ancient Egypt | 1340 BC youtu.be/bLWD3bVhSbM Ramses the Great | The Greatest Pharaoh Ancient Egypt | 1250 BC youtu.be/TeESSvut5xA Lycurgus | The Lawgiver of Sparta Ancient Greece | 750 BC youtu.be/zfC1ZnTKOJU Ashurbanipal | The Cruelest King of Assyria Ancient Mesopotamia | 650 BC youtu.be/LOCm2G0R4PY Nebuchadnezzar | The Greatest King of Babylon Ancient Mesopotamia | 600 BC youtu.be/WX4sTXOKRcY Draco | The Lawgiver of Athens Ancient Greece | 600 BC https://youtu.be/sqOxqv_yIzE Cyrus the Great | The Greatest King of Persia Achaemenid Empire | 550 BC youtu.be/CMc1rF8u4ro Cambyses II | The First Persian Pharaoh Achaemenid Empire | 530 BC youtu.be/pXOjOcTqU5w __________________________________ Foreign Language Subtitles Hindi Arabic French Turkish English Marathi Russian Spanish Romanian Portuguese __________________________________ Video Credits Editor: Christopher Geman Writer: Christopher Geman Narrator: Christian H. Miles Artist: William R. Liberto Music: "Desert Winds" - Jon Sumner Carlos Jaramillo's ArtStation https://carlosjar.artstation.com __________________________________ Contact Email: history.explained5@gmail.com All images by Christopher Geman, found in the public domain, or used under fair use guidelines. __________________________________ If you enjoy this video, please like & share it. 👍 Share your opinions in the comments below. 💬 Subscribe and press the bell for new videos. 🔔 __________________________________ #History #Biography #Documentary
6:00
The First Pharaoh | Narmer | Ancient Egypt Documentary
Narmer was an ambitious Upper Egyptian king who managed to conquer Lower Egypt and declare...
published: 10 Sep 2019
Play in Full Screen
3:40
Warframe | **SPOILER WARNING** | ‘For Narmer’ Official Song
***WARNING: This video’s song lyrics contains spoilers for The New War*** Lyrics: Healed...
published: 15 Dec 2021
Play in Full Screen
44:50
King Narmer | king before Pharaoh's
The discovery of King Scorpion challenged history books that claimed Egyptian civilization...
published: 04 Jul 2014
Play in Full Screen
20:36
THE FIRST PHARAOH - Narmer (Part 1)
Thank you so much for watching, it took a while to cobble this together and I hope you thi...
published: 23 Mar 2022
Play in Full Screen
3:35
For Narmer (From "Warframe")
Provided to YouTube by CDBaby For Narmer (From "Warframe") · Keith Power · George Spanos ...
published: 03 Mar 2022
Play in Full Screen
15:24
Ancient Egypt Dynasty by Dynasty - Scorpion, Narmer and the Predynastic Period / Dynasty 0
Welcome to this new series, Ancient Egypt Dynasty by Dynasty, where we'll travel through o...
published: 31 Jul 2021
Play in Full Screen
2:02
For Narmer Intro | New War | Warframe #warframe #spoiler
New War is out now check the link for more details: https://www.warframe.com/the-new-war ...
published: 16 Dec 2021
Play in Full Screen
23:08
The FIRST Pharaoh - Narmer (Part 2)
Hi guys, I hope you enjoy the second part of my exploration of the life and times of Egypt...
published: 17 Apr 2022
Play in Full Screen
3:50
Unification Battle of Egypt : circa 3100 BCE - King Narmer and the Narmer Palette (Ancient Egypt)
The Narmer Palette, also known as the Great Hierakonpolis Palette or the Palette of Narmer...
published: 22 Jul 2021
Play in Full Screen
3:22
WARFRAME - For Narmer (Cover)
Get 15% off Aran jumper(sweater) goodness at Skellig Gift Store w/Discount code: COLM22 ht...
published: 14 Jan 2022
Play in Full Screen

Narmer

Narmer was an ancient Egyptian king of the Early Dynastic Period. Probably the successor to the Protodynastic kings Scorpion and/or Ka, some consider him the unifier of Egypt and founder of the First Dynasty, therefore the first king of a unified Egypt.

The identity of Narmer is the subject of ongoing debate, although mainstream Egyptological consensus identifies Narmer with the First Dynasty pharaoh Menes, who is also credited with the unification of Egypt, as the first pharaoh. This conclusion is based on the Narmer Palette which shows Narmer as the unifier of Egypt and the two necropolis seals from the necropolis of Abydos that show him as the first king of the First Dynasty.

The approximate date of Narmer/Menes is mostly estimated as close to the 31st or 32nd century BCE, although recent Egyptological literature comprises estimates of anywhere between the 34th and the 30th centuries BCE.

Reign

The famous Narmer Palette, discovered by James E. Quibell in 1898 in Hierakonpolis, shows Narmer displaying the insignia of both Upper and Lower Egypt, giving rise to the theory that he unified the two kingdoms. Since its discovery, it has been debated whether the Narmer Palette represents a historic event or was purely symbolic. In 1993, however, Günter Dreyer discovered in Abydos a year label of Narmer depicting the same event as that on the Narmer Palette which clearly shows that the Narmer Palette depicts an actual historic event.

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