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

Podcasts:

  • The Middle Ages Explained in 10 minutes

    Join the Captivating History Book Club: https://bit.ly/3TMmpU2 Get a FREE mythology bundle ebook covering Greek, Norse, and Egyptian mythology here: http://www.captivatinghistory.com/ebook You can get the audiobook version of the Middle Ages here: https://www.audible.com/pd/B085PNN8S5/?source_code=AUDFPWS0223189MWT-BK-ACX0-185128&ref=acx_bty_BK_ACX0_185128_rh_us You can get the paperback version of the Middle Ages here: https://www.amazon.com/Middle-Ages-Captivating-Beginning-Renaissance/dp/1950922006 And the ebook version of the Middle Ages here: https://www.amazon.com/Middle-Ages-Captivating-Beginning-Renaissance-ebook/dp/B07RV396WN One of the least understood periods of European history occurred between the 6th century and the 14th or 15th century (depending on which historian you...

    published: 09 Mar 2021
  • Timeline of The Middle Ages Explained in 15 Minutes...

    From the fall of Rome to the dawn of the Renaissance, the Middle Ages was an era of history that encompassed massive social change. A time of international warfare, national rebellion, devastating disease, and at times brutal cruelty. Here are a few of the highlights or lowlights (depending on your point of view) that occurred over the one-thousand-year period. Welcome to Medieval Madness. 00:00 Introduction 00:37 455 - The Fall of Rome 01:12 481 - Rise of the Franks 01:40 535 - The Justinian Code 02:06 570 - Muhammed is Born 02:26 597 - The First Archbishop of Canterbury 02:51 793 - The Era of the Vikings Begins 03:23 800 - Rise of the Carolingians 03:48 886 - Alfred the Great 04:01 961 - Otto the Great 04:27 1021 - The First Novel 04:43 1066 - William the Conqueror 05:09 1088 - The Firs...

    published: 27 Jan 2024
  • 6 myths about the Middle Ages that everyone believes - Stephanie Honchell Smith

    Explore the 6 most common misconceptions about the Middle Ages, and find out what living in medieval times was actually like. -- Medieval Europe. Where unbathed, sword-wielding knights ate rotten meat, thought the Earth was flat, defended chastity-belt wearing maidens, and tortured their foes with grisly gadgets. Except… this is more fiction than fact. So, where do all the myths about the Middle Ages come from? And what were they actually like? Stephanie Honchell Smith debunks common misconceptions about the time period. Lesson by Stephanie Honchell Smith, directed by Avi Ofer. Support Our Non-Profit Mission ---------------------------------------------- Support us on Patreon: http://bit.ly/TEDEdPatreon Check out our merch: http://bit.ly/TEDEDShop --------------------------------------...

    published: 07 Mar 2023
  • Why You Wouldn't Last 24 Hours in The Dark Ages....

    Many people look at the Middle Ages through romantic eyes. They think about “armoured knights on lumbering steeds”, beautiful damsels in pointy hats, dragons, chivalry, and courtly love. Nothing could be further from the truth. For most people, the Middle Ages were dirty, difficult, and really dangerous. Let’s find out now why it was unlikely that you could stay alive and prosper and why you were likely to die quite quickly during that time. Welcome to Medieval Madness. 0:00 Introduction 0:44 Communication (or the lack of it) 1:18 A Woman’s Worth 2:45 Early Life/Early Death 3:58 Who Are You Calling A Peasant? 5:43 The Justice System 7:08 War – What It Isn’t Good For 9:13 Poison 🎶🎶 Music by CO.AG: https://www.youtube.com/channel/UCcavSftXHgxLBWwLDm_bNvA Narrated by James Wade Written by...

    published: 22 Sep 2023
  • The Truth About The "Dark Ages"

    The Middle Ages was a 1,000 year time period that doesn't neatly fit into one box. Yet it's a popular misconception today that the entire era was a "Dark Age", where Europe regressed scientifically and wallowed in poverty. However, there's a problem - this is a complete myth! No actual historian uses the term "Dark Ages". It's a pop culture misnomer that's been used to mischaracterize the time between the Fall of Rome and the Renaissance. So what was the real story of the Middle Ages? In this documentary on Pax Tube, I shine light on the truth. Support the channel here: https://www.buymeacoffee.com/PaxOfficial My other socials: https://odysee.com/@PaxTube:6 https://x.com/PaxTubeOfficial https://www.instagram.com/_paxtube_/ ----------------------------------------------------------------...

    published: 24 May 2024
  • The Middle Ages for kids - 5 things you should know - History for Kids (Updated Version)

    Educational video for children to learn the five things they should know about the Middle Ages: how long it lasted, medieval society, what feudalism was, the two phrases in the Middle Ages (Early Middle Ages and Late Middle Ages), what warfare was like during that time and medieval markets. Did you know that the Middle Ages lasted more than 1,000 years? Find out about medieval castles, knights and many other interesting facts! This educational video belongs to a larger collection of videos, all related to five things you should know about History. Excellent resource for elementary school. Thanks for visiting us! If you want your children to smile and learn, subscribe! :D We only upload our own content, designed by educators so that children smile and learn while watching a video. All...

    published: 09 Jun 2020
  • The Middle Ages in 3 1/2 minutes

    An animated timeline from the book 'Science: a Discovery in Comics' by Margreet de Heer. More information: http://margreetdeheer.com/eng/science.html There's also an animated timeline of the History of the Earth: http://youtu.be/8qnnoePeHlk

    published: 12 Jul 2013
  • 30 mins, how Ireland was governed #history #irishhistory #irish #medieval

    published: 25 Jan 2025
  • Medievalist Professor Answers Medieval Questions | Tech Support | WIRED

    Professor of English and Medieval Literature Dr. Dorsey Armstrong answers your questions about the Middle Ages from Twitter. Why is it called the "Middle" Ages? What activities did people do for fun? Why were animals tried in court for crimes? Answers to these questions and many more await—it's Medieval Support. Director: Lisandro Perez-Rey Director of Photography: Constantine Economides Editor: Alex Mechanik Expert: Dr. Dorsey Armstrong Line Producer: Joseph Buscemi Associate Producer: Paul Gulyas; Brandon White Production Manager: Peter Brunette Casting Producer: Nicholas Sawyer Camera Operator: Christopher Eustache Sound Mixer: Sean Paulsen Production Assistant: Kelsey Barnhart Post Production Supervisor: Christian Olguin Post Production Coordinator: Ian Bryant Supervisi...

    published: 18 Jun 2024
The Middle Ages Explained in 10 minutes
10:02

The Middle Ages Explained in 10 minutes

  • Order:
  • Duration: 10:02
  • Uploaded Date: 09 Mar 2021
  • views: 819550
Join the Captivating History Book Club: https://bit.ly/3TMmpU2 Get a FREE mythology bundle ebook covering Greek, Norse, and Egyptian mythology here: http://www.captivatinghistory.com/ebook You can get the audiobook version of the Middle Ages here: https://www.audible.com/pd/B085PNN8S5/?source_code=AUDFPWS0223189MWT-BK-ACX0-185128&ref=acx_bty_BK_ACX0_185128_rh_us You can get the paperback version of the Middle Ages here: https://www.amazon.com/Middle-Ages-Captivating-Beginning-Renaissance/dp/1950922006 And the ebook version of the Middle Ages here: https://www.amazon.com/Middle-Ages-Captivating-Beginning-Renaissance-ebook/dp/B07RV396WN One of the least understood periods of European history occurred between the 6th century and the 14th or 15th century (depending on which historian you ask). Commonly called the Middle Ages, this was a time period of extreme change for Europe, beginning with the fall of the Western Roman Empire. To a continent that had seen a drastic shift in the power structure, the world seemed to be particularly harsh. Rome had been a major player across Europe for well over a millennium. Then it was gone. See all captivating history books here: https://www.amazon.com/author/captivatinghistory Follow us on Facebook: https://www.facebook.com/captivatinghistory Follow us on Twitter: @CaptivHistory
https://wn.com/The_Middle_Ages_Explained_In_10_Minutes
Timeline of The Middle Ages Explained in 15 Minutes...
15:07

Timeline of The Middle Ages Explained in 15 Minutes...

  • Order:
  • Duration: 15:07
  • Uploaded Date: 27 Jan 2024
  • views: 792049
From the fall of Rome to the dawn of the Renaissance, the Middle Ages was an era of history that encompassed massive social change. A time of international warfare, national rebellion, devastating disease, and at times brutal cruelty. Here are a few of the highlights or lowlights (depending on your point of view) that occurred over the one-thousand-year period. Welcome to Medieval Madness. 00:00 Introduction 00:37 455 - The Fall of Rome 01:12 481 - Rise of the Franks 01:40 535 - The Justinian Code 02:06 570 - Muhammed is Born 02:26 597 - The First Archbishop of Canterbury 02:51 793 - The Era of the Vikings Begins 03:23 800 - Rise of the Carolingians 03:48 886 - Alfred the Great 04:01 961 - Otto the Great 04:27 1021 - The First Novel 04:43 1066 - William the Conqueror 05:09 1088 - The First University 05:36 1095 - The First Crusade 06:09 1119 - The Knights Templar 06:40 1206 - The Mongols 07:00 1215 - Magna Carta 07:21 1271 - Marco Polo 07:46 1273 - The House of Habsburg 08:18 1296 - Scottish Wars 08:53 1299 - The Ottoman Empire 09:09 1337 - The Hundred Years’ War 09:41 1347 - The Black Death 10:11 1368 - The Great Ming 10:31 1380 - The Canterbury Tales 10:49 1415 - The Battle of Agincourt 11:11 1428 - Rise of the Aztecs 11:39 1431 - Death of Joan of Arc 12:01 1434 - The Rise of the Medici 12:37 1439 - The Printing Press 13:02 1441 - Slavery 13:31 1453 - The Fall of Constantinople 13:55 1455 - Wars of the Roses 14:20 1492 - The Unification of Spain Narrated by James Wade Written by Lisa E Rawcliffe Edited by Jamit Productions Thank you for watching. DISCLAIMER: All materials in these videos are used for entertainment purposes and fall within the guidelines of fair use. No copyright infringement is intended. If you are, or represent the copyright owner of materials used in this video, and have an issue with the use of said material, please email us at info@top5s.co.uk Copyright © 2024 Top5s All rights reserved.
https://wn.com/Timeline_Of_The_Middle_Ages_Explained_In_15_Minutes...
6 myths about the Middle Ages that everyone believes - Stephanie Honchell Smith
4:49

6 myths about the Middle Ages that everyone believes - Stephanie Honchell Smith

  • Order:
  • Duration: 4:49
  • Uploaded Date: 07 Mar 2023
  • views: 2398124
Explore the 6 most common misconceptions about the Middle Ages, and find out what living in medieval times was actually like. -- Medieval Europe. Where unbathed, sword-wielding knights ate rotten meat, thought the Earth was flat, defended chastity-belt wearing maidens, and tortured their foes with grisly gadgets. Except… this is more fiction than fact. So, where do all the myths about the Middle Ages come from? And what were they actually like? Stephanie Honchell Smith debunks common misconceptions about the time period. Lesson by Stephanie Honchell Smith, directed by Avi Ofer. Support Our Non-Profit Mission ---------------------------------------------- Support us on Patreon: http://bit.ly/TEDEdPatreon Check out our merch: http://bit.ly/TEDEDShop ---------------------------------------------- Connect With Us ---------------------------------------------- Sign up for our newsletter: http://bit.ly/TEDEdNewsletter Follow us on Facebook: http://bit.ly/TEDEdFacebook Find us on Twitter: http://bit.ly/TEDEdTwitter Peep us on Instagram: http://bit.ly/TEDEdInstagram ---------------------------------------------- Keep Learning ---------------------------------------------- View full lesson: https://ed.ted.com/lessons/6-myths-about-the-middle-ages-that-everyone-believes-stephanie-honchell-smith Dig deeper with additional resources: https://ed.ted.com/lessons/6-myths-about-the-middle-ages-that-everyone-believes-stephanie-honchell-smith#digdeeper Animator's website: https://aviofer.com Music: http://www.wonderboyaudio.com ---------------------------------------------- Thank you so much to our patrons for your support! Without you this video would not be possible! Katie McDowell, Allen, Mahina Knuckles, Charmaine Hanson, Thawsitt, Jezabel, Abdullah Abdulaziz, Xiao Yu, Melissa Suarez, Brian A. Dunn, Francisco Amaya, Daisuke Goto, Matt Switzler, Peng, Tzu-Hsiang, Bethany Connor, Jeremy Shimanek, Mark Byers, Avinash Amarnath, Xuebicoco, Rayo, Po Foon Kwong, Boffin, Jesse Jurman, Scott Markley, Elija Peterson, Ovidiu Mrd, paul g mohney, Steven Razey, Nathan Giusti, Helen Lee, Anthony Benedict, Karthik Balsubramanian, Annastasshia Ames, Amy Lopez, Vinh-Thuy Nguyen, Liz Candee, Ugur Doga Sezgin, Karmi Nguyen, John C. Vesey, Yelena Baykova, Nick Johnson, Carlos H. Costa, Jennifer Kurkoski, Ryan B Harvey, Akinola Emmanuel, Jose Arcadio Valdes Franco, Sebastiaan Vleugels, Karl Laius, JY Kang and Abhishek Goel.
https://wn.com/6_Myths_About_The_Middle_Ages_That_Everyone_Believes_Stephanie_Honchell_Smith
Why You Wouldn't Last 24 Hours in The Dark Ages....
11:43

Why You Wouldn't Last 24 Hours in The Dark Ages....

  • Order:
  • Duration: 11:43
  • Uploaded Date: 22 Sep 2023
  • views: 3629839
Many people look at the Middle Ages through romantic eyes. They think about “armoured knights on lumbering steeds”, beautiful damsels in pointy hats, dragons, chivalry, and courtly love. Nothing could be further from the truth. For most people, the Middle Ages were dirty, difficult, and really dangerous. Let’s find out now why it was unlikely that you could stay alive and prosper and why you were likely to die quite quickly during that time. Welcome to Medieval Madness. 0:00 Introduction 0:44 Communication (or the lack of it) 1:18 A Woman’s Worth 2:45 Early Life/Early Death 3:58 Who Are You Calling A Peasant? 5:43 The Justice System 7:08 War – What It Isn’t Good For 9:13 Poison 🎶🎶 Music by CO.AG: https://www.youtube.com/channel/UCcavSftXHgxLBWwLDm_bNvA Narrated by James Wade Written by Lisa E Rawcliffe Edited by Jamit Productions Thank you for watching. DISCLAIMER: All materials in these videos are used for entertainment purposes and fall within the guidelines of fair use. No copyright infringement is intended. If you are, or represent the copyright owner of materials used in this video, and have an issue with the use of said material, please email us at info@top5s.co.uk Copyright © 2023 Top5s All rights reserved.
https://wn.com/Why_You_Wouldn't_Last_24_Hours_In_The_Dark_Ages....
The Truth About The "Dark Ages"
22:57

The Truth About The "Dark Ages"

  • Order:
  • Duration: 22:57
  • Uploaded Date: 24 May 2024
  • views: 245767
The Middle Ages was a 1,000 year time period that doesn't neatly fit into one box. Yet it's a popular misconception today that the entire era was a "Dark Age", where Europe regressed scientifically and wallowed in poverty. However, there's a problem - this is a complete myth! No actual historian uses the term "Dark Ages". It's a pop culture misnomer that's been used to mischaracterize the time between the Fall of Rome and the Renaissance. So what was the real story of the Middle Ages? In this documentary on Pax Tube, I shine light on the truth. Support the channel here: https://www.buymeacoffee.com/PaxOfficial My other socials: https://odysee.com/@PaxTube:6 https://x.com/PaxTubeOfficial https://www.instagram.com/_paxtube_/ ----------------------------------------------------------------------------------------------------------------------------------------------------------------- 0:00 Intro 2:32 The Early Middle Ages 5:38 The Church and Monasteries 8:38 The High Middle Ages 10:40 Medieval Science and Life 20:54 Why The Dark Age Myth Exists ----------------------------------------------------------------------------------------------------------------------------------------------------------------- Citations: 'The Light Ages' by Seb Falk The Idea of the ‘Dark Ages’ Is a Myth. Here’s Why Medieval Scientific Progress Still Matters https://time.com/5911003/middle-ages-myths/ 6 Reasons the Dark Ages Weren’t So Dark https://www.history.com/news/6-reasons-the-dark-ages-werent-so-dark Origins of agriculture - Medieval, Crops, Livestock | Britannica https://www.britannica.com/topic/agriculture/The-medieval-period-600-to-1600-ce Trade in Medieval Europe https://www.worldhistory.org/article/1301/trade-in-medieval-europe/ There's No Such Thing As The Dark Ages https://www.getty.edu/news/no-such-thing-as-the-dark-ages/
https://wn.com/The_Truth_About_The_Dark_Ages
The Middle Ages for kids - 5 things you should know - History for Kids (Updated Version)
4:31

The Middle Ages for kids - 5 things you should know - History for Kids (Updated Version)

  • Order:
  • Duration: 4:31
  • Uploaded Date: 09 Jun 2020
  • views: 359029
Educational video for children to learn the five things they should know about the Middle Ages: how long it lasted, medieval society, what feudalism was, the two phrases in the Middle Ages (Early Middle Ages and Late Middle Ages), what warfare was like during that time and medieval markets. Did you know that the Middle Ages lasted more than 1,000 years? Find out about medieval castles, knights and many other interesting facts! This educational video belongs to a larger collection of videos, all related to five things you should know about History. Excellent resource for elementary school. Thanks for visiting us! If you want your children to smile and learn, subscribe! :D We only upload our own content, designed by educators so that children smile and learn while watching a video. All of our content reinforces educational values, encouraging the use of multiple intelligences and language learning. If you like our videos, download Smile and Learn now. You’ll discover more than 5.000 activities for children aged 3 to 12 yeards, all designed by educators. We have 250 games and interactive stories and over 280 videos in five languages: English, Spanish, Portuguese, Italian and French. Try a month for free and start the adventure!
https://wn.com/The_Middle_Ages_For_Kids_5_Things_You_Should_Know_History_For_Kids_(Updated_Version)
The Middle Ages in 3 1/2 minutes
3:34

The Middle Ages in 3 1/2 minutes

  • Order:
  • Duration: 3:34
  • Uploaded Date: 12 Jul 2013
  • views: 1298062
An animated timeline from the book 'Science: a Discovery in Comics' by Margreet de Heer. More information: http://margreetdeheer.com/eng/science.html There's also an animated timeline of the History of the Earth: http://youtu.be/8qnnoePeHlk
https://wn.com/The_Middle_Ages_In_3_1_2_Minutes
30 mins, how Ireland was governed #history #irishhistory #irish #medieval
0:16

30 mins, how Ireland was governed #history #irishhistory #irish #medieval

  • Order:
  • Duration: 0:16
  • Uploaded Date: 25 Jan 2025
  • views: 476
https://wn.com/30_Mins,_How_Ireland_Was_Governed_History_Irishhistory_Irish_Medieval
Medievalist Professor Answers Medieval Questions | Tech Support | WIRED
19:11

Medievalist Professor Answers Medieval Questions | Tech Support | WIRED

  • Order:
  • Duration: 19:11
  • Uploaded Date: 18 Jun 2024
  • views: 3980543
Professor of English and Medieval Literature Dr. Dorsey Armstrong answers your questions about the Middle Ages from Twitter. Why is it called the "Middle" Ages? What activities did people do for fun? Why were animals tried in court for crimes? Answers to these questions and many more await—it's Medieval Support. Director: Lisandro Perez-Rey Director of Photography: Constantine Economides Editor: Alex Mechanik Expert: Dr. Dorsey Armstrong Line Producer: Joseph Buscemi Associate Producer: Paul Gulyas; Brandon White Production Manager: Peter Brunette Casting Producer: Nicholas Sawyer Camera Operator: Christopher Eustache Sound Mixer: Sean Paulsen Production Assistant: Kelsey Barnhart Post Production Supervisor: Christian Olguin Post Production Coordinator: Ian Bryant Supervising Editor: Doug Larsen Assistant Editor: Andy Morell 00:00 Medieval Support 00:11 Medieval English 00:57 Middle Ages 01:40 Red Wedding 03:19 Sleep Cycles 04:34 Torture Devices 05:15 Medieval Castle 06:17 Motes 06:50 Hygiene 07:26 Black Death 08:19 Infant Mortality 09:37 Animal Depictions 10:27 For Fun 11:04 Court Jesters 11:57 Jousting 12:47 Animal Crime 14:02 King Arthur 15:11 Sword Naming 15:41 Vikings 16:56 Medieval Women 18:13 Holy Grail Still haven’t subscribed to WIRED on YouTube? ►► http://wrd.cm/15fP7B7 Listen to the Get WIRED podcast ►► https://link.chtbl.com/wired-ytc-desc Want more WIRED? Get the magazine ►► https://subscribe.wired.com/subscribe/splits/wired/WIR_YouTube?source=EDT_WIR_YouTube_0_Video_Description_ZZ Follow WIRED: Instagram ►►https://instagram.com/wired Twitter ►►http://www.twitter.com/wired Facebook ►►https://www.facebook.com/wired Tik Tok ►►https://www.tiktok.com/@wired Get more incredible stories on science and tech with our daily newsletter: https://wrd.cm/DailyYT Also, check out the free WIRED channel on Roku, Apple TV, Amazon Fire TV, and Android TV. ABOUT WIRED WIRED is where tomorrow is realized. Through thought-provoking stories and videos, WIRED explores the future of business, innovation, and culture.
https://wn.com/Medievalist_Professor_Answers_Medieval_Questions_|_Tech_Support_|_Wired
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • The Middle Ages Explained in 10 minutes
    10:02
    The Middle Ages Explained in 10 minutesremove from playlist
  • Timeline of The Middle Ages Explained in 15 Minutes...
    15:07
    Timeline of The Middle Ages Explained in 15 Minutes...remove from playlist
  • 6 myths about the Middle Ages that everyone believes - Stephanie Honchell Smith
    4:49
    6 myths about the Middle Ages that everyone believes - Stephanie Honchell Smithremove from playlist
  • Why You Wouldn't Last 24 Hours in The Dark Ages....
    11:43
    Why You Wouldn't Last 24 Hours in The Dark Ages....remove from playlist
  • The Truth About The
    22:57
    The Truth About The "Dark Ages"remove from playlist
  • The Middle Ages for kids - 5 things you should know - History for Kids (Updated Version)
    4:31
    The Middle Ages for kids - 5 things you should know - History for Kids (Updated Version)remove from playlist
  • The Middle Ages in 3 1/2 minutes
    3:34
    The Middle Ages in 3 1/2 minutesremove from playlist
  • Medievalist Professor Answers Medieval Questions | Tech Support | WIRED
    19:11
    Medievalist Professor Answers Medieval Questions | Tech Support | WIREDremove from playlist
PLAYLIST TIME: 0:00 / 1:32:10

The Middle Ages Explained in 10 minutes

Join the Captivating History Book Club: https://bit.ly/3TMmpU2 Get a FREE mythology bundle ebook covering Greek, Norse, and Egyptian mythology here: http://www.captivatinghistory.com/ebook You can get the audiobook version of the Middle Ages here: https://www.audible.com/pd/B085PNN8S5/?source_code=AUDFPWS0223189MWT-BK-ACX0-185128&ref=acx_bty_BK_ACX0_185128_rh_us You can get the paperback version of the Middle Ages here: https://www.amazon.com/Middle-Ages-Captivating-Beginning-Renaissance/dp/1950922006 And the ebook version of the Middle Ages here: https://www.amazon.com/Middle-Ages-Captivating-Beginning-Renaissance-ebook/dp/B07RV396WN One of the least understood periods of European history occurred between the 6th century and the 14th or 15th century (depending on which historian you ask). Commonly called the Middle Ages, this was a time period of extreme change for Europe, beginning with the fall of the Western Roman Empire. To a continent that had seen a drastic shift in the power structure, the world seemed to be particularly harsh. Rome had been a major player across Europe for well over a millennium. Then it was gone. See all captivating history books here: https://www.amazon.com/author/captivatinghistory Follow us on Facebook: https://www.facebook.com/captivatinghistory Follow us on Twitter: @CaptivHistory
10:02
The Middle Ages Explained in 10 minutes
Join the Captivating History Book Club: https://bit.ly/3TMmpU2 Get a FREE mythology bundl...
published: 09 Mar 2021
Play in Full Screen
15:07
Timeline of The Middle Ages Explained in 15 Minutes...
From the fall of Rome to the dawn of the Renaissance, the Middle Ages was an era of histor...
published: 27 Jan 2024
Play in Full Screen
4:49
6 myths about the Middle Ages that everyone believes - Stephanie Honchell Smith
Explore the 6 most common misconceptions about the Middle Ages, and find out what living i...
published: 07 Mar 2023
Play in Full Screen
11:43
Why You Wouldn't Last 24 Hours in The Dark Ages....
Many people look at the Middle Ages through romantic eyes. They think about “armoured knig...
published: 22 Sep 2023
Play in Full Screen
22:57
The Truth About The "Dark Ages"
The Middle Ages was a 1,000 year time period that doesn't neatly fit into one box. Yet it'...
published: 24 May 2024
Play in Full Screen
4:31
The Middle Ages for kids - 5 things you should know - History for Kids (Updated Version)
Educational video for children to learn the five things they should know about the Middle ...
published: 09 Jun 2020
Play in Full Screen
3:34
The Middle Ages in 3 1/2 minutes
An animated timeline from the book 'Science: a Discovery in Comics' by Margreet de Heer. M...
published: 12 Jul 2013
Play in Full Screen
0:16
30 mins, how Ireland was governed #history #irishhistory #irish #medieval
published: 25 Jan 2025
Play in Full Screen
19:11
Medievalist Professor Answers Medieval Questions | Tech Support | WIRED
Professor of English and Medieval Literature Dr. Dorsey Armstrong answers your questions a...
published: 18 Jun 2024
Play in Full Screen
'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: middle ages

Edit

Trump's to tout 'cooperative relationships' during upcoming Middle East trip

Anadolu Agency 09 May 2025
"This trip ultimately highlights how we stand on the brink of the golden age for both America and the Middle East, united by a shared vision of stability, opportunity and mutual respect," she added.
Edit

Private school for 'freethinkers' and 'creatives' to open in Staunton after council approval

News Leader - Staunton 09 May 2025
As the school grows and students age, Geary hopes to add middle and high school studios ... Initially, there will be two staff members and, according to Geary, approximately 15 students between the ages of 5-11 per Geary.
Edit

Drug overdose, suicide and liver disease. White men are in crisis. | Opinion

The Columbus Dispatch 09 May 2025
Additionally, from 1998 to 2018, mortality due to alcoholic liver disease rose by 41%, disproportionately affecting middle-aged White non-Hispanic men without a college degree ... those aged 45 to 54.
Edit

Beloved military TV show host Lee Sang-yong dies at 81

Korea Times 09 May 2025
Lee Sang-yong, a well-known TV personality who long served as host of a popular entertainment program for soldiers, died Friday at age 81 following ... Ajeossi is a Korean term for a middle-aged man.
Edit

The History of Copper in Cyprus

CyprusMail 09 May 2025
... the Middle East, and even beyond ... During the Bronze Age, thousands of Cypriot copper ingots were exported to Egypt, Mesopotamia, Asia Minor, the Middle East and almost the entire European continent.
Edit

BRYONY GORDON: Why I'd be in the street in my PJs shouting long before 3am ...

The Daily Mail 09 May 2025
In my middle age, I have become the kind of complaining curtain-twitcher we all fear turning into, the ... In my middle age, I have become the kind of complaining curtain-twitcher we all fear turning into.
Edit

Boys & Girls Clubs of St. Lucie County launches program to address mental health among youth

WPTV 09 May 2025
To further emphasize the need for mental health resources, over 75% of Club members reported needing someone to talk to when faced with challenges, while 62% of middle school-aged members expressed ...
Edit

When my kids were younger, the age gap between them was difficult. Now, it's more ...

Business Insider 09 May 2025
The author has four kids (not pictured), and there's an age gap between them ... Five years separate my middle children, and eight years separate my oldest and youngest ... As my children have grown, the significance of their age gap seems to have lessened.
Edit

Jane character energy: 250 years on, what still makes Austen’s novels the stuff of blockbusters?

Hindustan Times 09 May 2025
Watch the fourth instalment, this year’s Mad About the Boy, for the way it moves its characters beautifully into uncertain middle-age ... it moves its characters beautifully into uncertain middle-age.).
Edit

Movie Review: Schmaltzy and sweet, Vince Vaughn leads Netflix’s ‘Nonnas’

Killeen Daily Herald 09 May 2025
The new Vince Vaughn movie “Nonnas” aspires to be a bit of cinematic comfort food. Streaming Friday on Netflix, “Nonnas” is based on the true story of a middle-aged man who opens a restaurant on Staten Island and hires Italian-American ....
Edit

Review: Hugh Jackman in a Twisty Tale of ‘Sexual Misconduct’

New York Times 09 May 2025
A new play about a middle-age professor and his teenage student forces you to ask. Who’s grooming whom? ... .
Edit

Four decades and endless reports but tidal power is still all at sea

The Times/The Sunday Times 09 May 2025
There has been a lot of flour since. Through the late Middle Ages, twice a day, the tide came up the River Deben, filled the mill pond, then emptied, turning a wheel that ground Suffolk flour with utter reliability ... Comment. Columnists ... .
Edit

Sinicization of Chinese Buddhism: What Does It Mean?

Bitter Winter English 09 May 2025
The event offered an excellent point of observation to understand what the CCP and the government-controlled mean by “Sinicization of Buddhism.” It cannot mean adapting Buddhism to Chinese culture, which was already done during the early Middle Ages.
Edit

Secrets dance club mentioned on Netflix’s 'The Four Seasons'

Times Union 09 May 2025
The series, which follows three middle-aged couples navigating the ups and downs of long-term friendship and marriage, debuted to warm reviews, a top spot on Netflix, and an even warmer reaction from ...
Edit

Man found dead in Jharkhand police station after being summoned for questioning

Hindustan Times 09 May 2025
A middle-aged man, who was summoned for questioning in connection with a case on Friday, was found hanging in a room of the police station in Jharkhand's Seraikela-Kharswan district, an officer said ... Mahato had not turned up on Thursday ... Jharkhand ... ....
×