- published: 16 Feb 2022
- views: 53918
'+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; })); }); -->
Honorius (Latin: Flavius Honorius Augustus; 9 September 384 – 15 August 423), was Western Roman Emperor from 393 to 423. He was the younger son of emperor Theodosius I and his first wife Aelia Flaccilla, and brother of Arcadius, who was the Eastern Emperor from 395 until his death in 408.
Even by the standards of the rapidly declining Western Empire, Honorius's reign was precarious and chaotic. His reign was supported by his principal general, Stilicho, who was successively Honorius's guardian (during his childhood) and his father-in-law (after the emperor became an adult). Stilicho's generalship helped preserve some level of stability, but with his execution in 408, the Western Roman Empire moved closer to collapse. Honorius is widely considered as one of the worst of the emperors; it was during his reign that Rome was sacked for the first time in 800 years.
After holding the consulate at the age of two, Honorius was declared Augustus by his father Theodosius I, and thus co-ruler, on 23 January 393 after the death of Valentinian II and the usurpation of Eugenius. When Theodosius died, in January 395, Honorius and Arcadius divided the Empire, so that Honorius became Western Roman Emperor at the age of ten.
Augustus (Latin: Imperātor Caesar Dīvī Fīlius Augustus; 23 September 63 BC – 19 August 14 AD) was the founder of the Roman Empire and its first Emperor, ruling from 27 BC until his death in AD 14.
He was born Gaius Octavius into an old and wealthy equestrian branch of the plebeian Octavii family. His maternal great-uncle Julius Caesar was assassinated in 44 BC, and Octavian was named in Caesar's will as his adopted son and heir. He, Mark Antony, and Marcus Lepidus formed the Second Triumvirate to defeat the assassins of Caesar. Following their victory at Philippi, the Triumvirate divided the Roman Republic among themselves and ruled as military dictators. The Triumvirate was eventually torn apart under the competing ambitions of its members. Lepidus was driven into exile and stripped of his position, and Antony committed suicide following his defeat at the Battle of Actium by Octavian in 31 BC.
After the demise of the Second Triumvirate, Augustus restored the outward facade of the free Republic, with governmental power vested in the Roman Senate, the executive magistrates, and the legislative assemblies. In reality, however, he retained his autocratic power over the Republic as a military dictator. By law, Augustus held a collection of powers granted to him for life by the Senate, including supreme military command, and those of tribune and censor. It took several years for Augustus to develop the framework within which a formally republican state could be led under his sole rule. He rejected monarchical titles, and instead called himself Princeps Civitatis ("First Citizen of the State"). The resulting constitutional framework became known as the Principate, the first phase of the Roman Empire.
Augustus (63 BC – 14 AD) was the first emperor of ancient Rome.
Augustus may also refer to:
Augustus is a 1986 historical novel by Scottish writer Allan Massie, the first of a highly regarded series of novels about the movers and makers of Imperial Rome. Massie begins with Augustus, the successor to Julius Caesar, who ruled the Roman Empire for forty one years and oversaw the beginnings of an extended peace,' the Pax Romana '.
The novel is in the form of a memoir written by Augustus in old age, in which he looks back over his long reign. Massie uses modern language and phraseology to describe Augustus' ruthlessness and the political intrigue he mastered and used so capably to keep himself in power for so many years when for most of his rule he was surrounded by powerful enemies and duplicitous allies.
🔴 YOU WANT TO SUPPORT THIS CHANNEL? 🔴 🤗 Join our Patreon community: https://www.patreon.com/Maiorianus Or become an official Maiorianus member on YouTube: https://www.youtube.com/c/Maiorianus461/join Honorius, son of Theodosius turned out as one of the worst roman emperors. Even with Stilicho as a mentor, he has greatly hastened the collapse of the roman empire. In this documentary about the late roman empire, we examine the weak and incapable Western Roman Emperor Flavius Honorius. If only there had been another emperor to defend the empire against the barbarians. 🤗 One-Time Donation? - PayPal: https://paypal.me/Maiorianus - Bitcoin: bc1qv4lsfsplvfecrrgvmfclhga28we7mvh9563xdj 🔗 Share the video with anyone who might be interested (it helps a ton!) 👍 Subscribe to our video...
The emperor Honorius is infamous for the sack of Rome and the loss of Britain during his reign. But when examining the evidence, do these generalisations really stand up to scrutiny? Chapters: 00:00 Introduction 01:05 The Empire Declined 03:02 Fall of Britain 04:25 Stilicho's Execution 06:26 Civil Wars 08:46 The Sack of Rome Follow this link for my video on Honorius' reign: https://www.youtube.com/watch?v=k_WhCTkh4eU Bibliography: Primary Sources Gallic Chronicle of AD452, Edition by R. W. Burgess, (2001). Claudian, Works, Edited and Translated by M. Platnauer, (1922). Eunapius, History to Continue Dexippus, Edited and Translated by R. C. Blockley, (1983). Frigeridus, Histories, Edited and Translated by L. Van Hoof, and P. Van Nuffelen, (2020). Hydatius, Chronicle, Edited and Translated...
Honorius, usually remembered as the emperor during the sack of Rome by the Visigoths and the loss of Britain, was not treated kindly by posterity with Procopius writing that he was more concerned with his fowl Rome than the actual city. However, by examining the long reign of this child-emperor what contemporary sources show is that the situation was far more nuanced and that perhaps even Honorius had some decent qualities. Chapters: 00:00 Introduction 01:08 Prince Honorius 02:01 The Regency of Stilicho 04:14 The Gildonic War 10:33 A Peaceful Interlude 15:24 The Invasions of Alaric and Radagaisus 25:28 The Crossing of the Rhine 27:10 The Downfall of Stilicho 36:28 The Seven Emperors and the Fall of Britain 44:10 The Sack of Rome 46:52 The Empire Struck Back 50:56 Honorius' Domestic and Ch...
Captain Jean-Luc Picard considers whether the Emperor Honorius, watching the Visigoths coming over the Seventh Hill, could truly realize that the Roman Empire was about to fall. (N.B. Rome was not the capital of the Western Roman Empire during this time, nor was it the seat of the Imperial government. Honorius would have been in Ravenna at the time of the sack of Rome in 410.)
Honorius, perhaps Rome’s most useless emperor, watches as Rome burns. Songs Used Let Your Enemies Feel the Weight of Your Burdens - Chris Zabriskie Egmont Overture - Ludwig van Beethoven Ancient Sources Jerome Hydatius Procopius Modern Sources Heather, Peter, The Fall of the Roman Empire (2005) Gibbon, Edward, The Decline and Fall of the Roman Empire Online Sources Wikipedia.org Loeb Classical Library Perseus Tufts Library Livius.org #history #rome #thucydides
In this video i will be ranking every Western Roman Emperor from Lazy Honorius to Short reigned Romulus Augustulus, if you disagree with my ranking pls be free and say your opinion on the comment section, i will be happy to see your opinions on this video and also who should i do next? ;) If you liked the video make sure to like and subscribe for more content also follow my twitter @HGraecae
In this video, I explore the strategy pursued by the Emperor Honorius and talk about whether or not the harsh judgment that scholars have taken of him is justified.
Theodosius is now dead and the empire is split in two for the final time. The eventful three decades long reign of emperor Honorius was a turning point for the roman state. ⏰ Timestamps 0:00 - Introduction 0:52 - Political turmoil 5:51 - Stilicho defends the West 7:27 - Crossing of the Rhine 10:54 - Sack of Rome 13:21 - Gallic usurpers 15:10 - Hypatia 16:50 - Constantius Augustus 18:05 - Honorius' last years 19:43 - Conclusion 🎵 Music https://www.epidemicsound.com/ The Portal - Bonnie Grace Under the Cherry Tree - Jon Bjork Village in Ruins - Experia Behind Every Powerful Man - Howard Harper-Barnes Super Hero - Bonnie Grace A Lesson in Vengeance - Experia Tourbillon - Edward Karl Hanson Happily Unknowing - Christian Andersen The Last Disaster - Howard Harper-Barnes The Lifeguard - Jon ...
It would only be right of me to make a ranking of the Western Roman Emperors after I had already done one on the Roman Emperors. So here it is, hope you enjoy it.
John Robson reports, it’s now over 1600 years since the feeble Roman Emperor Honorius banned pants in Rome because they were a proud badge of barbarian contempt for Roman traditions. Within three years, barbarians had sacked Rome. Perhaps they should have worried sooner. MORE http://www.therebel.media/today_in_history_roman_emperor_honorius_bans_pants_insolent_badge_of_barbarian_contempt_407_ad http://www.Facebook.com/JoinTheRebel http://www.Twitter.com/TheRebelTV VISIT our NEW group blog The Megaphone! It’s your one-stop shop for rebellious commentary from independent and fearless readers and writers. http://www.TheRebel.Media/TheMegaphone
Check out our Patreon page: https://www.patreon.com/teded View full lesson: https://ed.ted.com/lessons/history-vs-augustus-alex-gendler-and-peta-greenfield His reign marked the beginning of one of history’s greatest empires … and the end of one of its first republics. Was Rome’s first emperor a visionary leader who guaranteed his civilization’s place in history, or a tyrant who destroyed its core values? Peta Greenfield and Alex Gendler put this controversial figure on trial in History vs. Augustus. Lesson by Peta Greenfield & Alex Gendler, animation by Brett Underhill. Thank you so much to our patrons for your support! Without you this video would not be possible! Stephanie Perozo, Marc Bilodeau, Ruby Solorzano, Ivan Tsenov, Claudia Mayfield, Pavel Zalevskiy, Yankai Liu, Duo Xu, Ghass...
Please head over and subscribe to our friends on the History Hit Network who are helping us make these videos possible. https://www.youtube.com/@TimelineChannel https://www.youtube.com/@RealRoyalty https://www.youtube.com/@realhistory9284 https://www.youtube.com/@ChronicleMedieval Go to https://thld.co/bosley_peopleprofiles_0322 and get your FREE Bosley Info kit and $250 gift card. Thanks to Bosley for sponsoring today’s video. Hello guys! If you like our work please subscribe to our second channel The History Chronicles https://www.youtube.com/c/TheHistoryChronicles For early access to our videos, discounted merch and many other exclusive perks please support us as a Patron or Member... Patreon: http://www.patreon.com/thepeopleprofiles Buy me a Coffee: https://www.buymeacoffee.com/p...
Many Romans had conquered the Republic, but nobody could keep it, until Augustus. In the half century after the assassination of Caesar, his adoptive son would fundamentally transform the Roman state: expanding it, reforming it, and bringing it under the control of one man. The Age of Augustus found Rome a Republic and left it an Empire. This video is a Remastered, Definitive Edition of three previous videos from this channel — History Summarized: "Augustus Versus The Assassins", "Augustus Versus Antony", and "How Augustus Made An Empire". This video combines them all into one narrative, fully upgrading all of the visuals and audio. If you want more Histories to be Re-Summarized, please comment and let me know! SOURCES & Further Reading: "The Age of Augustus" by Werner Eck, "Augustus an...
Check out Squarespace: http://squarespace.com/BIOGRAPHICS for 10% off on your first purchase. → Subscribe for new videos four times per week. https://www.youtube.com/c/biographics?sub_confirmation=1 TopTenz Properties Our companion website for more: http://biographics.org Our sister channel TopTenz: https://www.youtube.com/channel/UCQ-hpFPF4nOKoKPEAZM_THw/ Our Newest Channel about Interesting Places: https://studio.youtube.com/channel/UCHKRfxkMTqiiv4pF99qGKIw This video is #sponsored by Squarespace. Source/Further reading: Mike Duncan’s excellent, in-depth History of Rome podcast (several episodes covering Augustus): https://thehistoryofrome.typepad.com/the_history_of_rome/2009/04/52-caesar-augustus-the-history-of-rome.html Britannica, in-depth: https://www.britannica.com/biograp...
Imagine having an imperial capital and it's only made of bricks. How embarrassing. SOURCES & Further Reading: Books – "The Age of Augustus" by Werner Eck, "Augustus and the Creation of the Roman Empire" by Ronald Mellor, "Ara Pacis Augustae" by Mark Cartwright on World History Encyclopedia https://www.worldhistory.org/article/618/ara-pacis-augustae/, "Ara Pacis Augustae" by Dr. Jeffrey A. Becker on Smarthistory https://smarthistory.org/ara-pacis/. Great Courses Lectures – "Piazza Farnese to the Ara Pacis" from "The Essential Guide to Italy" by Dr. Kenneth R. Bartlett, "Roman Art and Architecture" from "The Roman Empire: From Augustus to the Fall of Rome" by Gregory Aldrete. University – I have a Bachelor's Degree in Classical Studies. Our content is intended for teenage ...
💯 𝙅𝙤𝙞𝙣 𝙩𝙝𝙚 𝙡𝙚𝙜𝙞𝙤𝙣! 💯 Become a channel member and receive the following benefits: • A badge that marks one as a member of History Documentary's legions! • Exclusive emojis! • Prioritised replies to your comments! • Access to new videos a day before going live (so you can get those comments in nice and early)! So what are you waiting for?! Sign up for 25 years of service right here: https://www.youtube.com/channel/UC9-LkaGmFDZUKi9_gNAKeCQ/join Music from Tunetank.com https://tunetank.com/ Footage from: HBO's Rome - https://www.hbo.com/rome Gladiator (2000) - https://www.youtube.com/watch?v=SpHnRtZwT6M
Signup for your FREE trial to The Great Courses Plus here: http://ow.ly/d97230noz23 The Great Courses Plus is currently available to watch through a web browser to almost anyone in the world and optimized for the US, UK, and Australian markets. The Great Courses Plus is currently working to both optimize the product globally and accept credit card payments globally. It is widely accepted that Augustus is one of the most important people in the Roman history. In this video we will describe the reforms he enacted to improve the structure of the Roman legions, which made the Roman Empire more stable and was one of the reasons why it survived for so long. Previous videos in the series: https://www.youtube.com/watch?v=UIRS_PMeVVY&list=PLaBYW76inbX5Jmy5E740LBDVk25VhObDi Support us on Patreon...
A conversation with Dr. Beth Harris and Dr. Steven Zucker in front of Augustus of Primaporta, early 1st century C.E., found at the Villa of Livia, Primaporta (north of Rome), Italy, marble with traces of polychromy, 203 cm high (Vatican Museums)
🚩 Go to http://bit.ly/thld_cs_historymarche and use code HISTORYMARCHE to save 25% off today. Thanks to Curiosity Stream for sponsoring today’s video. 🚩 Consider supporting my work on Patreon and enjoy ad-free videos: https://www.patreon.com/historymarche 📢 Narrated by David McCallion 📜 Research and script by: Skylar J. Gordon 🎵 Music: EpidemicSound https://www.epidemicsound.com/ #augustus #rome #caesar
For early access to our videos, discounted merch and many other exclusive perks please support us as a Patron or Member... Patreon: http://www.patreon.com/thepeopleprofiles Buy me a Coffee: https://www.buymeacoffee.com/peopleprofiles YouTube Membership: https://www.youtube.com/channel/UCD6TPU-PvTMvqgzC_AM7_uA/join or follow us on Twitter! https://twitter.com/tpprofiles Hello guys! If you like our work please subscribe to our second channel The History Chronicles https://www.youtube.com/c/TheHistoryChronicles All footage, images and music used in People Profiles Documentaries are sourced from free media websites or are purchased with commercial rights from online media archives. 0:00 Augustus 0:58:04 Tiberius 2:12:46 Caligula 3:13:12 Claudius 4:21:04 Nero #Biography #History #Documenta...
#history #facts #ww2 #youtubeshorts #dailyhistory #rome #romanempire #juliuscaesar #makeitviral #youdidntknow
Secure your privacy with Surfshark! Enter coupon code DJPEACH for 4 months EXTRA at https://surfshark.com/djpeach Cassius Dio: https://penelope.uchicago.edu/Thayer/E/Roman/Texts/Cassius_Dio/50*.html Today, DJ Peach Cobbler discusses the role that Roman attitudes towards Egyptians played in the rise of Octavian. Along the way he'll discuss Marc Antony's mistakes, Cleopatra's feminine charms, and how Octavia was definitely hot. For this video I used two main sources, both of which I recommend. Plutarch's "Life of Antony" and "The War that Made the Roman Empire" by Barry Strauss. "Rubicon" and "Dynasty: Rise and Fall of the House of Caesar" by Tom Holland were both also very helpful here, and I highly-recommend them. I promise I wasn't lazy, I checked the work of Barry Strauss, which...
Boy, there sure is some terrible television in the world…. Join http://www.WatchMojo.com as we count down our picks for theTop 10 Worst TV Shows of All Time. Subscribe►►http://www.youtube.com/subscription_center?add_user=watchmojo Facebook►►http://www.Facebook.com/WatchMojo. Twitter►►http://www.Twitter.com/WatchMojo Instagram►►http://instagram.com/watchmojo Suggestion Tool►►http://www.WatchMojo.com/suggest Channel Page►►http://www.youtube.com/watchmojo For this list, we'll be scouring TV's lengthy history in search of the programs that are universally viewed as lacking in quality. Special thanks to our users Liza Davydzenkava, SuperSaiyanKirby100, DonovanTPS, Jerome Magajes, Aeryk Marcellus Bacon, TylerKienzlen@gmail., sarahjessicaparkerth, mac121mr0, Brody Nicholas Eiffel Jay, jhwoe6, P...
Please forgive my dreadful pronunciation throughout. Latin! Almost as bad as German. My channel needs a proper name! Leave a comment with a suggestion, it'll be fun. Contact: https://twitter.com/shaun_jen https://curiouscat.me/Shaun_Jen https://www.patreon.com/shaun_jen History of Rome podcast site. Go listen! http://thehistoryofrome.typepad.com/ My previous Rome video: https://www.youtube.com/watch?v=BHW3Y_p2llo Any specific sources available on request. Send me a curiouscat!
Men are obsessed with the Roman Empire. And it’s for good reason because there are some eerie parallels between Rome and America today. In this episode, we will cover the causes behind the fall of the Roman Empire and whether America is heading down a similar path. Sponsored By: Good Ranchers: Go to https://go.goodranchers.com/mta and use promo code "Nick" for $25 off your order + free shipping. ------------------------------------------------ Links from today's ep: https://howardwiseman.me/Roman/19Maps.html#9%20AD https://www.youtube.com/watch?v=NeNpEQ0hfMg&ab_channel=BalkanHistory https://en.wikipedia.org/wiki/War_of_Actium https://en.wikipedia.org/wiki/Pax_Romana https://en.wikipedia.org/wiki/Crisis_of_the_Third_Century#:~:text=The%20Crisis%20of%20the%20Third,implementation%...
Dr Caroline Vout, Fellow, College Lecturer in Classics and University Reader in Classics at Christ's College University of Cambridge, gave her lecture on Nero and the art of dissolution at Senate House in London on 2nd June 2018.
Hey everyone! For today's lesson, let's také a look at who would be the emperor of rome in 2022. Thinking of making more history based content, let me know if you want more! Subscribe and like! It gets me closer to being able to make a few pennies off doing this stuff! More importantly, thanks for watching! -------------------- Socials: https://linktr.ee/paurthur -------------------- #rome #emperor #history #edit #edits #nato
Which celebrities are named after historical figures? In this video from History Calling we look at famous people with the same name from throughout history, some of whom you’ll have heard of and some not. Which famous father and son duo does Brad Pitt share his name with for instance? Who is the other Anne Hathaway and what links her to William Shakespeare? What is the original Tom Holland known for? What name do both a modern singer and a famed Roman general have and why do you have to be careful when you mention Steve McQueen that you clarify who you mean? All will be revealed in this video in which we’ll also look at the actress and the Tudor Queen with the same name, the Harry Potter/Home Alone director and the famous explorer both called Christopher Columbus and the TV personality (a...
Wikipedia Search Big Ben Article Talk Language Download PDF Watch View source For other uses, see Big Ben (disambiguation). The Elizabeth Tower is the clock tower of the Palace of Westminster in London, England.[1] It contains the Great Clock, a striking clock with five bells.[2] The tower is nicknamed "Big Ben", a name which was originally applied only to the largest bell of the clock.[3] The tower was officially called the Clock Tower until 2012, when it was renamed to mark the Diamond Jubilee of Elizabeth II. Elizabeth Tower Big Ben in June 2022 MapWikimedia | © OpenStreetMap Former names Clock Tower Alternative names Big Ben General information Type Clock tower Architectural style Gothic Revival Location Westminster, London, England Coordinates 51.5007°N 0.1245°W Completed 31 May 18...
Subscribe to this channel for more BEST YOUTUBE TV SHOWS BEST MINI-SERIES ON YOUTUBE TV BEST LIMITED SERIES ON YOUTUBE TV BEST SERIES ON YOUTUBE TV BEST SHOWS ON YOUTUBE PREMIUM WHAT TO WATCH ON YOUTUBE TV BEST NEW SHOWS ON YOUTUBE TV BINGE WATCHING YOUTUBE TV BEST DOCUMENTARIES ON YOUTUBE TV BEST SHOWS TO BINGE WATCH ON YOUTUBE TV BEST DRAMAS ON YOUTUBE TV BEST SITCOMS ON YOUTUBE TV BEST THRILLERS ON YOUTUBE TV BEST HORROR MOVIES ON YOUTUBE TV BEST SCARY MOVIES ON YOUTUBE TV BEST COMEDIES ON YOUTUBE TV BEST SCI-FI SERIES ON YOUTUBE TV BEST SCIENCE FICTION SHOWS ON YOUTUBE TV BEST NEW SHOWS ON YOUTUBE PREMIUM TV BEST MOVIES ON YOUTUBE TV PREMIUM BEST FILMS ON YOUTUBE TV HIGHEST RATED MOVIES ON YOUTUBE TV HIGHEST RATED SHOWS ON YOUTUBE TV #YOUTUBETV #YOUTUBE_TV_SERIES #YOUTUBE_PR...
Honorius (Latin: Flavius Honorius Augustus; 9 September 384 – 15 August 423), was Western Roman Emperor from 393 to 423. He was the younger son of emperor Theodosius I and his first wife Aelia Flaccilla, and brother of Arcadius, who was the Eastern Emperor from 395 until his death in 408.
Even by the standards of the rapidly declining Western Empire, Honorius's reign was precarious and chaotic. His reign was supported by his principal general, Stilicho, who was successively Honorius's guardian (during his childhood) and his father-in-law (after the emperor became an adult). Stilicho's generalship helped preserve some level of stability, but with his execution in 408, the Western Roman Empire moved closer to collapse. Honorius is widely considered as one of the worst of the emperors; it was during his reign that Rome was sacked for the first time in 800 years.
After holding the consulate at the age of two, Honorius was declared Augustus by his father Theodosius I, and thus co-ruler, on 23 January 393 after the death of Valentinian II and the usurpation of Eugenius. When Theodosius died, in January 395, Honorius and Arcadius divided the Empire, so that Honorius became Western Roman Emperor at the age of ten.