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

Timurid dynasty

The Timurid dynasty (Persian: تیموریان), self-designated as Gurkani (Persian: گورکانیان, Gūrkāniyān), was a Sunni Muslim dynasty or clan of Turco-Mongol lineage descended from the warlord Timur (also known as Tamerlane). The word "Gurkani" derived from "gurkan", a Persianized form of the Mongolian word "kuragan" meaning "son-in-law", as the Timurids being in-laws of the line of Genghis Khan, founder of the Mongol Empire. Members of the Timurid dynasty were strongly influenced by the Persian culture and had established two significant empires in history, the Timurid Empire (1370-1507) based in Persia and Central Asia and the Mughal Empire (1526-1857) based in the Indian subcontinent.

Origins

The origin of the Timurid dynasty goes back to the Mongol tribe known as Barlas, who were remnants of the original Mongol army of Genghis Khan, founder of the Mongol Empire. After the Mongol conquest of Central Asia, the Barlas settled in what is today southern Kazakhstan, from Shymkent to Taraz and Almaty, which then came to be known for a time as Moghulistan – "Land of Mongols" in Persian – and intermingled to a considerable degree with the local Turkic and Turkic-speaking population, so that at the time of Timur's reign the Barlas had become thoroughly Turkicized in terms of language and habits.

Mughal Empire

The Mughal Empire (Urdu: مغلیہ سلطنت, Mug̱ẖliyah Salṭanat) or Mogul Empire, self-designated as Gurkani (Persian: گورکانیان, Gūrkāniyān, meaning "son-in-law"), was an empire based in the Indian Subcontinent, established and ruled by a Muslim Persianatedynasty of Chagatai Turco-Mongol origin that extended over large parts of the Indian subcontinent and Afghanistan.

The beginning of the empire is conventionally dated to the founder Babur's victory over Ibrahim Lodi, the last ruler of the Delhi Sultanate in the First Battle of Panipat (1526). The Mughal emperors were Central Asian Turco-Mongols belonging to the Timurid dynasty, who claimed direct descent from both Genghis Khan (founder of the Mongol Empire, through his son Chagatai Khan) and Timur (Turco-Mongol conqueror who founded the Timurid Empire). During the reign of Humayun, the successor of Babur, the empire was briefly interrupted by the Sur Empire. The "classic period" of the Mughal Empire started in 1556 with the ascension of Akbar the Great to the throne. Under the rule of Akbar and his son Jahangir, the region enjoyed economic progress as well as religious harmony, and the monarchs were interested in local religious and cultural traditions. Akbar was a successful warrior. He also forged alliances with several Hindu Rajput kingdoms. Some Rajput kingdoms continued to pose a significant threat to the Mughal dominance of northwestern India, but most of them were subdued by Akbar. All Mughal emperors were Muslims; while Akbar was Muslim most of this life, he followed a new religion in the latter part of his life called Deen-i-Ilahi, as recorded in historical books like Ain-e-Akbari and Dabestan-e Mazaheb.

Podcasts:

  • Tamerlane & History of The Timurid Empire

    Tamerlane, History of the Timurid Empire Support new videos on this channel on Patreon! :) https://www.patreon.com/Epimetheus1776 Sources The Rise and Rule of Tamerlane by By Beatrice Forbes Manz A brief history of eastern Asia by Ian C. Hannah Larousse Encyclopedia of Ancient and Medieval History by Marcel Dunan tamerlane documentary, tamerlane, timur,Timurid empire,Timur the lame, Timurid ottoman, Delhi sultanate, Tamerlane Bayezid, Ankara, mongol empire, documentary, history, mamluk, timur empire, turco-mongol, mongols , animated history, nomad empires, Chagatai khanate, timurid dynasty, ilkhanate, Samarkand, uzbekistan history, Ulugh Beg, Turkic empires, Mughal Empire, afghan history, uzbek history, tamerlane biography, timurid empire documentary, medieval history, steppe empires

    published: 15 Feb 2019
  • History vs. Tamerlane the Conqueror - Stephanie Honchell Smith

    Tamerlane was one of history’s greatest conquerors— but was he a great state builder or a bloodthirsty tyrant? You decide. -- He was born in the 1330s in the Chaghatayid Khanate, formerly the Mongol Empire. On the steppe, he rose from a lowly sheep thief to become one of history’s greatest conquerors, uniting nearly all of Central Asia, Afghanistan, and Iran under his rule. But was he a great state builder or a bloodthirsty tyrant? Stephanie Honchell Smith puts this controversial figure on trial in History vs. Tamerlane. Lesson by Stephanie Honchell Smith, directed by Brett Underhill, PorkchopBob Studio. Support Our Non-Profit Mission ---------------------------------------------- Support us on Patreon: http://bit.ly/TEDEdPatreon Check out our merch: http://bit.ly/TEDEDShop ----------...

    published: 05 Apr 2022
  • the History of the Timurids | every month (1346-1526)

    Timurid Empire was established by Temür Beg in 1370 and it was a maintenance of the Western Chagatai Khanate. Temür described himself as “Amir of the Ulus”, appointed puppet Khans and this implementation continued until 1450, Abd al-Latif’s dethronation, although interrupted by the long reign of Sultan Shahrukh. After 1450, the empire was still referred as the Ulus of Chagatai yet less frequent. When rule of Babur, a descendent of Temür, reduced to Kabulistan and then expanded to India, he had still identified himself as Chagatai/Turki. In this context, history of the Western Chagatai State, as an interconnected part of Timurid History, starts in 1346, and ends when Timurids were exterminated by the Shaybanids, and Babur establishes a new branch of Timurid dynasty in India from its ashes....

    published: 20 Aug 2022
  • Ulugh Beg Observatory (Timurid Empire)

    The Ulugh Beg Observatory is an observatory in Samarkand, Uzbekistan. Built in the 1420s by the Timurid astronomer, governor and later Sultan, Mirza Ulugh Beg. During its time, it is considered to have been one of the finest observatories in the world along with Ming Empire's Beijing Observatory. Astronomers who worked at the observatory include Persian Jamshīd al-Kāshī, Anatolian Qāḍī Zāda al-Rūmī along with Ali Qushji & Ulugh Beg himself from Samarkand. Ulugh Beg and his team compiled their observation and calculation formula in book Zij-i Sultani (the Sultan's table) containing astronomical tables of 992 stars as well as parameters to calculate of the positions of the Sun, Moon, stars, and planets. Music : Geoff Knorr - Mongolia Atomic Era: Pastoral Song, Urtin Duu (Civilization VI)...

    published: 28 Apr 2020
  • Timur Lenk: Epitome of the Turco-Mongol Synthesis Episode 1

    The great Mongol invasions in the 13th century left traces of devastation. Entire cities were depopulated, ethnic groups enslaved and deported, and Genghis Khan's family became the most powerful in the world in the short term. The term "Mongol" is still used as an insult on social media today. But recently, voices have been growing that no longer deny a certain admiration for these steppe warriors. In juxtaposition with the old, cosmopolitan world of settled peoples, from China to Germany, the Mongols seem to have been "fresh," brave warriors who hired their officers not according to origin or social position, but according to skill and intelligence. They were closer to nature than the inhabitants of Chang'an, and more culturally tolerant than the Crusaders in Jerusalem. Such a similar adm...

    published: 17 Sep 2022
  • Timur - most evil ruler to ever live? 👿#shorts

    The most evil man to ever live? #shorts #timur #tamerlane #history #war #evil

    published: 27 May 2022
  • Amir Timur The Lame ft. WhatIfAltHist | The Unconquered Lord of the Seven Climes | 1336CE - 1405CE

    Just as the Islamic world was making its peace with the Mongol invasion, the world was hit by the Black Death which killed anywhere from 30 to 50 percent of the people in many cities. However, immediately afterwards, a man rose up in Central Asia who wanted to give those numbers a strong challenge. This man is remembered as Tamerlane by the west. What if Timur never existed? Watch WhatIfAltHist’s video: https://youtu.be/6o7a8tPbLz8 Don't forget to like, comment, share and subscribe. Disclaimer: The maps and flags in the video are not 100% accurate. Some maps and flags are difficult to find and so, are estimations. Be sure to check out my Patreon Page. Even if you can't pledge, still visit it and check out the content I'll post there. https://www.patreon.com/AlMuqaddimahYT https://w...

    published: 12 Aug 2020
  • The Diabolical Things That Timur Did During His Reign

    Thanks to Established Titles for sponsoring this video! Go to https://establishedtitles.com/ADayInHistory to shop their Early Black Friday Sale, plus get an additional 10% off any purchase with code ADayInHistory and help support the channel! We hope you read more about Timur after you watch this video. There's so much more to learn. One of those things is easy: Timur is just one version of the name of the last great Mongol conqueror. His real name was "Tīmūr bin Taraghay Barlas," or "Timur, son of Taraghay of the Barlas Clan," but he is most often known in English as "Tamerlane," which is just a corruption of "Timurlenk," or "Timur the Lame." Timur actually was "lame" as people used to those with skeletal disabilities: he had a form of tuberculosis that infected the bones, which paralyze...

    published: 28 Oct 2022
  • Why did the Timurid Empire COLLAPSE?(Animated History)

    This is a short animated history on why the Timurid empire collapses in 1507. The video looks at how Timur the Lame rose to power and successfully defeated the Golden horde and Delhi. Then the video looks at the Timurid succession wars and finally the demise of the Timurid empire. Make sure to let me know what you want to see next! Live on Twitch! - http://www.twitch.tv/thesocialstreamers Join our Discord! - https://discord.gg/sg8MGmG Help us out on Patreon: https://www.patreon.com/TheSocialStreamers Follow us on Twitter: https://twitter.com/S0cialStreamers Shoutout to our Patreon Supporters! Emperor Tier: Henriki King Tier: MrShalltz

    published: 10 Jan 2021
  • Top 5 Largest Muslim Empire In History 🔥|| #shorts

    published: 11 Mar 2023
Tamerlane & History of The Timurid Empire
10:09

Tamerlane & History of The Timurid Empire

  • Order:
  • Duration: 10:09
  • Uploaded Date: 15 Feb 2019
  • views: 697550
Tamerlane, History of the Timurid Empire Support new videos on this channel on Patreon! :) https://www.patreon.com/Epimetheus1776 Sources The Rise and Rule of Tamerlane by By Beatrice Forbes Manz A brief history of eastern Asia by Ian C. Hannah Larousse Encyclopedia of Ancient and Medieval History by Marcel Dunan tamerlane documentary, tamerlane, timur,Timurid empire,Timur the lame, Timurid ottoman, Delhi sultanate, Tamerlane Bayezid, Ankara, mongol empire, documentary, history, mamluk, timur empire, turco-mongol, mongols , animated history, nomad empires, Chagatai khanate, timurid dynasty, ilkhanate, Samarkand, uzbekistan history, Ulugh Beg, Turkic empires, Mughal Empire, afghan history, uzbek history, tamerlane biography, timurid empire documentary, medieval history, steppe empires
https://wn.com/Tamerlane_History_Of_The_Timurid_Empire
History vs. Tamerlane the Conqueror - Stephanie Honchell Smith
5:55

History vs. Tamerlane the Conqueror - Stephanie Honchell Smith

  • Order:
  • Duration: 5:55
  • Uploaded Date: 05 Apr 2022
  • views: 908377
Tamerlane was one of history’s greatest conquerors— but was he a great state builder or a bloodthirsty tyrant? You decide. -- He was born in the 1330s in the Chaghatayid Khanate, formerly the Mongol Empire. On the steppe, he rose from a lowly sheep thief to become one of history’s greatest conquerors, uniting nearly all of Central Asia, Afghanistan, and Iran under his rule. But was he a great state builder or a bloodthirsty tyrant? Stephanie Honchell Smith puts this controversial figure on trial in History vs. Tamerlane. Lesson by Stephanie Honchell Smith, directed by Brett Underhill, PorkchopBob Studio. 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/history-vs-tamerlane-the-conqueror-stephanie-honchell-smith Dig deeper with additional resources: https://ed.ted.com/lessons/history-vs-tamerlane-the-conqueror-stephanie-honchell-smith#digdeeper Animator's website: https://www.instagram.com/porkchopbob_studio ---------------------------------------------- Thank you so much to our patrons for your support! Without you this video would not be possible! Xuebicoco, Rare Media, Rayo, Po Foon Kwong, NinjaBoffin, Jesse Jurman, Scott Markley, Elija Peterson, Ovidiu Mrd, paul g mohney, Aravind Battaje, Steven Razey, Nathan Giusti, Helen Lee, Anthony Arcis Benedict, Karthik Balsubramanian, John Hong, Annastasshia Ames, Sean, Amy Lopez, Vinh-Thuy Nguyen, Liz Candee, Ugur Doga Sezgin, Anthony Arcis, Karmi Nguyen, John C. Vesey, Yelena Baykova, Harshita Jagdish Sahijwani, Nick Johnson, Carlos H. Costa, Robert Patrick, Jennifer Kurkoski, Ryan B Harvey, Abhishek Bansal, Akinola Emmanuel, Jose Arcadio Valdes Franco, Sebastiaan Vleugels, JY Kang, Abhishek Goel, Heidi Stolt, Christina Salvatore, Karlee Finch, Michael Goldberg, Denise A Pitts, Doug Henry, Keven Webb, Mihai Sandu, Deepak Iyer, Javid Gozalov and Kyanta Yap.
https://wn.com/History_Vs._Tamerlane_The_Conqueror_Stephanie_Honchell_Smith
the History of the Timurids | every month (1346-1526)
11:04

the History of the Timurids | every month (1346-1526)

  • Order:
  • Duration: 11:04
  • Uploaded Date: 20 Aug 2022
  • views: 289949
Timurid Empire was established by Temür Beg in 1370 and it was a maintenance of the Western Chagatai Khanate. Temür described himself as “Amir of the Ulus”, appointed puppet Khans and this implementation continued until 1450, Abd al-Latif’s dethronation, although interrupted by the long reign of Sultan Shahrukh. After 1450, the empire was still referred as the Ulus of Chagatai yet less frequent. When rule of Babur, a descendent of Temür, reduced to Kabulistan and then expanded to India, he had still identified himself as Chagatai/Turki. In this context, history of the Western Chagatai State, as an interconnected part of Timurid History, starts in 1346, and ends when Timurids were exterminated by the Shaybanids, and Babur establishes a new branch of Timurid dynasty in India from its ashes. Telegram : https://t.me/mapperlar Discord: https://discord.gg/RzeVxY8Raz Telegram Channel: https://t.me/mappingturkiye Instagram : https://www.instagram.com/kayra_atakanqx/ Frame : 2157 Sources: ---please check the comments section--- Pictures from: - mongoliancoins.com - Stephen Album Rare Coins - Silk Road Cities - ELENA PASKALEVA GABRIELLE VAN DEN BERG - the series Monuments Antiques, Turkestan Russe, early 20th century. - washington.edu - silkroad texts babur Music : - Beautiful Mongolia Music · Traditional Music Channel - Sheherazade’s Triumph · Fikret Amirov - Untitled in 5/4 · Ensemble Maraghi - Forgotten Ferghana - Karluk Music · Ravan Yuzkhan - Qari Navo - Yaponiyalik Mashu Komazaki ijrosida - In the Footsteps of Babur · Aga Khan Music Programme
https://wn.com/The_History_Of_The_Timurids_|_Every_Month_(1346_1526)
Ulugh Beg Observatory (Timurid Empire)
4:45

Ulugh Beg Observatory (Timurid Empire)

  • Order:
  • Duration: 4:45
  • Uploaded Date: 28 Apr 2020
  • views: 40917
The Ulugh Beg Observatory is an observatory in Samarkand, Uzbekistan. Built in the 1420s by the Timurid astronomer, governor and later Sultan, Mirza Ulugh Beg. During its time, it is considered to have been one of the finest observatories in the world along with Ming Empire's Beijing Observatory. Astronomers who worked at the observatory include Persian Jamshīd al-Kāshī, Anatolian Qāḍī Zāda al-Rūmī along with Ali Qushji & Ulugh Beg himself from Samarkand. Ulugh Beg and his team compiled their observation and calculation formula in book Zij-i Sultani (the Sultan's table) containing astronomical tables of 992 stars as well as parameters to calculate of the positions of the Sun, Moon, stars, and planets. Music : Geoff Knorr - Mongolia Atomic Era: Pastoral Song, Urtin Duu (Civilization VI) Video : Ulugh Beg: The Man Who Unlocked the Universe (2017) Sci-Fi Short Film “Genghis Khan Conquers the Moon" | DUST (2017) Der Medicus (2013) Landscpes and Starry Nights /South Gobi, Mongolia - delphinus1024 (2016) 1 Year Moon Timelapse (4K) - Jason S (2019) Wie der Islam die Renaissance schuf (2012) Қазақ хандығы: Алмас қылыш (2016) Oyqiz ertagi (2016)
https://wn.com/Ulugh_Beg_Observatory_(Timurid_Empire)
Timur Lenk: Epitome of the Turco-Mongol Synthesis Episode 1
22:27

Timur Lenk: Epitome of the Turco-Mongol Synthesis Episode 1

  • Order:
  • Duration: 22:27
  • Uploaded Date: 17 Sep 2022
  • views: 62616
The great Mongol invasions in the 13th century left traces of devastation. Entire cities were depopulated, ethnic groups enslaved and deported, and Genghis Khan's family became the most powerful in the world in the short term. The term "Mongol" is still used as an insult on social media today. But recently, voices have been growing that no longer deny a certain admiration for these steppe warriors. In juxtaposition with the old, cosmopolitan world of settled peoples, from China to Germany, the Mongols seem to have been "fresh," brave warriors who hired their officers not according to origin or social position, but according to skill and intelligence. They were closer to nature than the inhabitants of Chang'an, and more culturally tolerant than the Crusaders in Jerusalem. Such a similar admiration was held by a certain Timur, even before the end of the Middle Ages. More than a century after Genghis Khan's death, this Turko-Mongol set himself the goal of reviving the Mongol Empire. But he himself and his environment in Uzbekistan were nevertheless influenced by Turks, as was the rest of Central Asia. And so he combined ancient Turkic culture with elements of the Mongol systems of rule, proclaiming himself emir over Central Asia. Within a few decades, Timur expanded in all directions. He spread fear and terror, especially in the Islamic Middle East, because of his violent ways. But he was a Muslim himself, and valued education and the arts. Timur invited numerous painters and scholars to his court, and had beautiful splendors built that still decorate the cities of Central Asia today. His reign was the product of a Turkish-Mongol synthesis at its height. But on the way to world domination Timur had to remove many obstacles. The biggest obstacle was he himself. In the first installment of the TIMUR series, we look at the geopolitical and social background of Timur's era, his youth, and his rise to become the local ruler of Transoxania. Along the way, we also analyze the Mongol Empire and its successor states, most notably the Chagatay Empire, as well as key figures in the post-Mongol history of Central Asia. This video is the very first collaboration under the KHAN's CLUB banner. Narrated by: Jay Lamrod Timur Art by: Sinem Bulut Interview with: Prof. habil. Martine Robbeets Special thanks to Osirois Music for his rendition of "Anxious Heart" from the video game Final Fantasy 7.
https://wn.com/Timur_Lenk_Epitome_Of_The_Turco_Mongol_Synthesis_Episode_1
Timur - most evil ruler to ever live? 👿#shorts
0:51

Timur - most evil ruler to ever live? 👿#shorts

  • Order:
  • Duration: 0:51
  • Uploaded Date: 27 May 2022
  • views: 490716
The most evil man to ever live? #shorts #timur #tamerlane #history #war #evil
https://wn.com/Timur_Most_Evil_Ruler_To_Ever_Live_👿_Shorts
Amir Timur The Lame ft. WhatIfAltHist | The Unconquered Lord of the Seven Climes | 1336CE - 1405CE
23:19

Amir Timur The Lame ft. WhatIfAltHist | The Unconquered Lord of the Seven Climes | 1336CE - 1405CE

  • Order:
  • Duration: 23:19
  • Uploaded Date: 12 Aug 2020
  • views: 179471
Just as the Islamic world was making its peace with the Mongol invasion, the world was hit by the Black Death which killed anywhere from 30 to 50 percent of the people in many cities. However, immediately afterwards, a man rose up in Central Asia who wanted to give those numbers a strong challenge. This man is remembered as Tamerlane by the west. What if Timur never existed? Watch WhatIfAltHist’s video: https://youtu.be/6o7a8tPbLz8 Don't forget to like, comment, share and subscribe. Disclaimer: The maps and flags in the video are not 100% accurate. Some maps and flags are difficult to find and so, are estimations. Be sure to check out my Patreon Page. Even if you can't pledge, still visit it and check out the content I'll post there. https://www.patreon.com/AlMuqaddimahYT https://www.facebook.com/alMuqaddimahYT https://twitter.com/AlMuqaddimahYT https://www.instagram.com/alMuqaddimahYT https://www.tiktok.com/@almuqaddimahyt Music by epidemicsound.com If you had a problem with the video, or found something to be incorrect, please send me a message, rather than being a jerk and reporting it.
https://wn.com/Amir_Timur_The_Lame_Ft._Whatifalthist_|_The_Unconquered_Lord_Of_The_Seven_Climes_|_1336Ce_1405Ce
The Diabolical Things That Timur Did During His Reign
16:25

The Diabolical Things That Timur Did During His Reign

  • Order:
  • Duration: 16:25
  • Uploaded Date: 28 Oct 2022
  • views: 485865
Thanks to Established Titles for sponsoring this video! Go to https://establishedtitles.com/ADayInHistory to shop their Early Black Friday Sale, plus get an additional 10% off any purchase with code ADayInHistory and help support the channel! We hope you read more about Timur after you watch this video. There's so much more to learn. One of those things is easy: Timur is just one version of the name of the last great Mongol conqueror. His real name was "Tīmūr bin Taraghay Barlas," or "Timur, son of Taraghay of the Barlas Clan," but he is most often known in English as "Tamerlane," which is just a corruption of "Timurlenk," or "Timur the Lame." Timur actually was "lame" as people used to those with skeletal disabilities: he had a form of tuberculosis that infected the bones, which paralyzed his right leg and shoulder. In his younger years, he had been shot through the right hand with an arrow, losing two fingers, and limiting its use. Timur, in a word, was likely in constant pain throughout most of his life. Perhaps this affected his temper – because Timur's temper was bad. REALLY, REALLY BAD. But, unlike another supposedly disabled leader, the Viking “Ivar the Boneless”, Timur grew up to rule a gigantic empire, and killed millions, not hundreds or thousands. Ivar was an amateur compared to “Timur the Lame.” Timur's ancestors were from a powerful Mongolian clan who had emigrated from Mongolia to the area that geographers still know as "Transoxania" - the "Land beyond the Oxus River." We know the area better as Uzbekistan, Kyrgyzstan, Kazakhstan, and Turkmenistan. These were lands inhabited by Turkic peoples who the Mongols had subjugated under Genghis Khan and his sons in the 1200s. By the time of Timur (1336-1405), the Mongol Empire had fractured into several different kingdoms. The ruling Mongols assimilated to some degree with the native Turkic people and culture, creating a new culture called the "Turko-Mongolian." #tamerlane #timur #history #genghiskhan #mongols Copyright © 2021 A Day In History. All rights reserved. Timestamps: 00:00 Start 00:55 Become a Scottish Lord 02:56 Names and afflictions 04:01 Timur's roots 04:40 Early life, rise to power, killing his brother...normal Middle Ages stuff 08:10 Timur Unleashed 09:40 Isfahan 10:55 Delhi 12:52 Timur's other escapades 15:31 Timur reached out from beyond the grave DISCLAIMER: All materials in these videos are used for entertainment purposes and fall within the guidelines of fair use. No copyright infringement 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 send an email to adayinhistory2021@gmail.com
https://wn.com/The_Diabolical_Things_That_Timur_Did_During_His_Reign
Why did the Timurid Empire COLLAPSE?(Animated History)
3:45

Why did the Timurid Empire COLLAPSE?(Animated History)

  • Order:
  • Duration: 3:45
  • Uploaded Date: 10 Jan 2021
  • views: 36846
This is a short animated history on why the Timurid empire collapses in 1507. The video looks at how Timur the Lame rose to power and successfully defeated the Golden horde and Delhi. Then the video looks at the Timurid succession wars and finally the demise of the Timurid empire. Make sure to let me know what you want to see next! Live on Twitch! - http://www.twitch.tv/thesocialstreamers Join our Discord! - https://discord.gg/sg8MGmG Help us out on Patreon: https://www.patreon.com/TheSocialStreamers Follow us on Twitter: https://twitter.com/S0cialStreamers Shoutout to our Patreon Supporters! Emperor Tier: Henriki King Tier: MrShalltz
https://wn.com/Why_Did_The_Timurid_Empire_Collapse_(Animated_History)
Top 5 Largest Muslim Empire In History 🔥|| #shorts
0:45

Top 5 Largest Muslim Empire In History 🔥|| #shorts

  • Order:
  • Duration: 0:45
  • Uploaded Date: 11 Mar 2023
  • views: 1077940
https://wn.com/Top_5_Largest_Muslim_Empire_In_History_🔥||_Shorts
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Tamerlane & History of The Timurid Empire
    10:09
    Tamerlane & History of The Timurid Empireremove from playlist
  • History vs. Tamerlane the Conqueror - Stephanie Honchell Smith
    5:55
    History vs. Tamerlane the Conqueror - Stephanie Honchell Smithremove from playlist
  • the History of the Timurids | every month (1346-1526)
    11:04
    the History of the Timurids | every month (1346-1526)remove from playlist
  • Ulugh Beg Observatory (Timurid Empire)
    4:45
    Ulugh Beg Observatory (Timurid Empire)remove from playlist
  • Timur Lenk: Epitome of the Turco-Mongol Synthesis Episode 1
    22:27
    Timur Lenk: Epitome of the Turco-Mongol Synthesis Episode 1remove from playlist
  • Amir Timur The Lame ft. WhatIfAltHist | The Unconquered Lord of the Seven Climes | 1336CE - 1405CE
    23:19
    Amir Timur The Lame ft. WhatIfAltHist | The Unconquered Lord of the Seven Climes | 1336CE - 1405CEremove from playlist
  • The Diabolical Things That Timur Did During His Reign
    16:25
    The Diabolical Things That Timur Did During His Reignremove from playlist
  • Why did the Timurid Empire COLLAPSE?(Animated History)
    3:45
    Why did the Timurid Empire COLLAPSE?(Animated History)remove from playlist
PLAYLIST TIME: 0:00 / 1:39:25

Tamerlane & History of The Timurid Empire

Tamerlane, History of the Timurid Empire Support new videos on this channel on Patreon! :) https://www.patreon.com/Epimetheus1776 Sources The Rise and Rule of Tamerlane by By Beatrice Forbes Manz A brief history of eastern Asia by Ian C. Hannah Larousse Encyclopedia of Ancient and Medieval History by Marcel Dunan tamerlane documentary, tamerlane, timur,Timurid empire,Timur the lame, Timurid ottoman, Delhi sultanate, Tamerlane Bayezid, Ankara, mongol empire, documentary, history, mamluk, timur empire, turco-mongol, mongols , animated history, nomad empires, Chagatai khanate, timurid dynasty, ilkhanate, Samarkand, uzbekistan history, Ulugh Beg, Turkic empires, Mughal Empire, afghan history, uzbek history, tamerlane biography, timurid empire documentary, medieval history, steppe empires
10:09
Tamerlane & History of The Timurid Empire
Tamerlane, History of the Timurid Empire Support new videos on this channel on Patreon! :)...
published: 15 Feb 2019
Play in Full Screen
5:55
History vs. Tamerlane the Conqueror - Stephanie Honchell Smith
Tamerlane was one of history’s greatest conquerors— but was he a great state builder or a ...
published: 05 Apr 2022
Play in Full Screen
11:04
the History of the Timurids | every month (1346-1526)
Timurid Empire was established by Temür Beg in 1370 and it was a maintenance of the Wester...
published: 20 Aug 2022
Play in Full Screen
4:45
Ulugh Beg Observatory (Timurid Empire)
The Ulugh Beg Observatory is an observatory in Samarkand, Uzbekistan. Built in the 1420s b...
published: 28 Apr 2020
Play in Full Screen
22:27
Timur Lenk: Epitome of the Turco-Mongol Synthesis Episode 1
The great Mongol invasions in the 13th century left traces of devastation. Entire cities w...
published: 17 Sep 2022
Play in Full Screen
0:51
Timur - most evil ruler to ever live? 👿#shorts
The most evil man to ever live? #shorts #timur #tamerlane #history #war #evil
published: 27 May 2022
Play in Full Screen
23:19
Amir Timur The Lame ft. WhatIfAltHist | The Unconquered Lord of the Seven Climes | 1336CE - 1405CE
Just as the Islamic world was making its peace with the Mongol invasion, the world was hit...
published: 12 Aug 2020
Play in Full Screen
16:25
The Diabolical Things That Timur Did During His Reign
Thanks to Established Titles for sponsoring this video! Go to https://establishedtitles.co...
published: 28 Oct 2022
Play in Full Screen
3:45
Why did the Timurid Empire COLLAPSE?(Animated History)
This is a short animated history on why the Timurid empire collapses in 1507. The video lo...
published: 10 Jan 2021
Play in Full Screen
0:45
Top 5 Largest Muslim Empire In History 🔥|| #shorts
published: 11 Mar 2023
Play in Full Screen

Timurid dynasty

The Timurid dynasty (Persian: تیموریان), self-designated as Gurkani (Persian: گورکانیان, Gūrkāniyān), was a Sunni Muslim dynasty or clan of Turco-Mongol lineage descended from the warlord Timur (also known as Tamerlane). The word "Gurkani" derived from "gurkan", a Persianized form of the Mongolian word "kuragan" meaning "son-in-law", as the Timurids being in-laws of the line of Genghis Khan, founder of the Mongol Empire. Members of the Timurid dynasty were strongly influenced by the Persian culture and had established two significant empires in history, the Timurid Empire (1370-1507) based in Persia and Central Asia and the Mughal Empire (1526-1857) based in the Indian subcontinent.

Origins

The origin of the Timurid dynasty goes back to the Mongol tribe known as Barlas, who were remnants of the original Mongol army of Genghis Khan, founder of the Mongol Empire. After the Mongol conquest of Central Asia, the Barlas settled in what is today southern Kazakhstan, from Shymkent to Taraz and Almaty, which then came to be known for a time as Moghulistan – "Land of Mongols" in Persian – and intermingled to a considerable degree with the local Turkic and Turkic-speaking population, so that at the time of Timur's reign the Barlas had become thoroughly Turkicized in terms of language and habits.

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