'+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:

  • Who Are The Yoruba People?

    Sign up for an annual Curiositystream subscription with 42% off and you'll also get free access to Nebula (a streaming platform I'm helping to build along with other creators). https://curiositystream.com/cogito Yorubaland is the homeland of the Yoruba people. With a population of 46 million the Yoruba are one of the largest ethnic groups in Africa. The Yoruba built one of the largest empires in West Africa and crafted some of humanity's finest art. Their artists are famous worldwide and no other African culture has affected the Americas and Caribbean as much as the Yoruba who left their mark through people, dance, food and the religions of Santeria, and Candomblé. So who are the Yoruba, what is their history, and what does it have to do with a Galactic Universe Creating Chicken? Well, ...

    published: 15 Dec 2022
  • A History Of The Yoruba People

    Patreon: https://www.patreon.com/HomeTeamHistory Afrographics: http://afrographics.com Hometeam Merchandise: https://teespring.com/stores/hometeam-history Keywords: Yoruba people

    published: 19 Apr 2019
  • Who Are the Yoruba People?

    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 Yoruba People here: https://www.amazon.com/Yoruba-People-Captivating-History-Mythology/dp/B09SQYNGGS You can get the paperback version of The Yoruba People here: https://www.amazon.com/Yoruba-People-Captivating-History-Mythology/dp/1637165447 And the ebook version of The Yoruba People here: https://www.amazon.com/Yoruba-People-Captivating-History-Mythology-ebook/dp/B09PJMTD8G The Yorubas are an interesting people with a rich cultural heritage that can be traced back to many centuries ago. The history of the Yorubas is one of Africa’s most researched and anal...

    published: 06 Feb 2023
  • Interesting Facts About the Yoruba People.

    Interesting Facts About the Yoruba People.

    published: 08 Sep 2021
  • Who are the Yoruba people? Full video in comments

    Yorubaland is the homeland of the Yoruba people. With a population of 46 million the Yoruba are one of the largest ethnic groups in Africa. No other African culture has affected the Americas and Caribbean as much as the Yoruba who left their mark through people, dance, food and religion. #educational #shorts #history #religion #geography #africa #yoruba

    published: 05 Apr 2023
  • The Most Fertile Ethnic Group in The World - The Yoruba People of Nigeria | Africa in 30 Seconds

    According to cambridge.org - The Yorubas are said to have sprung from Lamurudu one of the kings of Mecca whose offspring were:—Oduduwa, the ancestor of the Yorubas, the Kings of Gogobiri and of the Kukawa, two tribes in the Hausa country. The language of the Yorubas, known as Yoruba, belongs to the Congo-Kordofanian language family. The Yoruba homeland is located in west Africa, with most Yoruba living in Nigeria with some scattered in Togo,Benin and worldwide. The Yoruba are one of the largest ethnic groups in Africa.The Yoruba are a very sociable and expressive people who commemorate major events with colorful festivals and celebrations.As many as 20 percent of the Yoruba still practice the traditional religion of their ancestors. A large number of modern Yoruba also combine traditional ...

    published: 23 Jun 2023
  • Know more about the Yoruba Tribe #africa #history

    published: 21 Jun 2023
  • The Many Gods of Yoruba Lore

    Check out Rogue History on @pbsorigins : https://www.youtube.com/watch?v=xuT35ud41QQ In recent years we have seen a very welcome uptick in the number of fantasy books inspired by West African folklore. The Afrofuturism and Africanfuturism movements have paved the way for Black authors across the diaspora to build worlds and tell stories influenced by their heritage, allowing wider audiences to finally meet the spirits of Yoruba lore. But who are these deities, and where do they come from? For audio descriptions, go to Settings - Audio Track - English Descriptive. Hosted by Dr. Moiya McTier & Dr. Emily Zarka, FATE & FABLED explores the stories and characters of mythologies from all around the world - why they came to be and how they impact us still today. Host / Writer: Moiya McTier, ...

    published: 09 Nov 2022
  • #koikimedia A HISTORY OF THE YORUBA PEOPLE NIGERIA NEEDS NOW THE COURAGE TO DISSOLVE PEACEFULLY

    Fundraiser by Olayomi KOIKI : Our media organisation koikimedia needs you All https://gofund.me/d7f135e0 KOIKIMEDIA DONATION KOIKIMEDIA DONATION (+447594050979) DONATE TO GOOD JOURNALISM. MANY INDEPENDENT MEDIA DEPEND ON YOU. Trust has never mattered more Thanks to your support we can continue to provide accurate, independent news and calm explanation. No matter how uncertain the future feels, you can rely on us. Quality journalism can help us all make critical decisions about our lives, health and security – based on fact, not fiction. Trusted news is important to us and so is your support to KOIKIMEDIA TIDE BANK KOIKIMEDIA LTD Mr OLAYOMI KOIKI SORT CODE 040605 ACCOUNT 16906228 FIRST BANK ACCOUNT NUMBER 3096808848 OLAYOMI OLAKUNLE KOIKI PAYPAL Email Musakalam1@yahoo.co...

    published: 05 Dec 2024
  • The Yoruba People in Nigeria (1946)

    NIGERIA IN 1948. A British report tagged "The Modern Age" series about reforms in the British colony. Published June, 1948. Connect with us www.facebook.com/yorubablog www.instagram.com/yoruba_blog Source: travelfilmarchive

    published: 22 Aug 2021
Who Are The Yoruba People?
24:21

Who Are The Yoruba People?

  • Order:
  • Duration: 24:21
  • Uploaded Date: 15 Dec 2022
  • views: 499285
Sign up for an annual Curiositystream subscription with 42% off and you'll also get free access to Nebula (a streaming platform I'm helping to build along with other creators). https://curiositystream.com/cogito Yorubaland is the homeland of the Yoruba people. With a population of 46 million the Yoruba are one of the largest ethnic groups in Africa. The Yoruba built one of the largest empires in West Africa and crafted some of humanity's finest art. Their artists are famous worldwide and no other African culture has affected the Americas and Caribbean as much as the Yoruba who left their mark through people, dance, food and the religions of Santeria, and Candomblé. So who are the Yoruba, what is their history, and what does it have to do with a Galactic Universe Creating Chicken? Well, let’s find out. This video was researched and written by Deborah Oliveira. The illustrations were created by Chico De La Historia, https://twitter.com/ChicoDLHistoria IF YOU WOULD LIKE TO CONTRIBUTE TO MY PATREON PLEASE SEE HERE. ​​https://www.patreon.com/CogitoEdu Follow me on twitter https://twitter.com/CogitoEdu Or Reddit r/cogitoedu Or Facebook @CogitoYT MERCHANDISE teespring.com/stores/cogito-store Sources and Further Reading: VIDEOS https://youtu.be/fRy92OJCtcY https://youtu.be/J2se_zimj40 https://youtu.be/W16fKzrTb8M https://youtu.be/I_hJwWEgarI https://youtu.be/mXwDTHYUPV8 https://youtu.be/0O7_-_iA1cc BOOKS A History of the Yoruba People by Stephen Adebanji https://www.amazon.com/History-Yoruba-Stephen-Adebanji-Akintoye/dp/2359260057 Encyclopedia of the Yoruba by Toyin Falola and Akintunde Akinyemi Adebisi Afọlayan - Yoruba language and literature Niara Sudarkasa - Where Women Work A Study of Yoruba Women in the Marketplace and in the Home Oyekan Owomoyela - Yoruba Proverbs Baba Ifa Karade - The Handbook of Yoruba Religious Concepts Miguel C. Alonso - The Development of Yoruba Candomble Communities in Salvador, Bahia A. G. Hopkins - An Economic History of West Africa Samuel Johnson - The History of the Yorubas (Old source but an iconic work in Yoruba history) OTHER SOURCES Black sand and iron stone: iron smelting in Modakeke, Ife, south western Nigeria https://discovery.ucl.ac.uk/id/eprint/93632/ Ancient History of Technology in West Africa: The Indigenous Glass/Glass Bead Industry and the Society in Early Ile-Ife https://www.researchgate.net/publication/317775780_Ancient_History_of_Technology_in_West_Africa_The_Indigenous_GlassGlass_Bead_Industry_and_the_Society_in_Early_Ile-Ife_Southwest_Nigeria https://artsandculture.google.com/story/ZgWB6Y0ZViQKJw https://artsandculture.google.com/story/_QVxsVP8AxQtIw https://artsandculture.google.com/story/qwXhr4ObJk0-JA https://artsandculture.google.com/story/LQXhfRllJNZnOA * https://en.wikipedia.org/wiki/Yoruba_language#Writing_systems https://www.jstor.org/stable/40341607?seq=1 https://www.worldhistory.org/Oshun/ https://www.bbc.com/future/article/20160922-the-nut-that-helped-to-build-a-global-empire https://artsandculture.google.com/story/12-facts-you-need-to-know-about-ife-art/TQWB2S-ClCrcNw https://www.khanacademy.org/humanities/art-africa/west-africa/nigeria/a/head-of-a-ruler-ife https://www.britishmuseum.org/collection/object/E_Af1939-34-1 https://www.theguardian.com/artanddesign/gallery/2010/feb/24/kingdom-of-ife-british-museum https://theculturetrip.com/africa/nigeria/articles/history-rediscovered-sungbos-eredo-nigerias-lost-yoruba-kingdom-2/ https://www.khanacademy.org/humanities/ap-art-history/africa-apah/west-africa-apah/a/olowe-of-ise-veranda-post-yoruba-peoples https://www.khanacademy.org/humanities/art-africa/west-africa/nigeria/a/igbo-ukwu-an-overview https://www.metmuseum.org/art/collection/search?q=Yoruba+peoples sortBy=Relevance pageSize=0 https://collections.lacma.org/node/175464 https://www.hamillgallery.com/YORUBA/YorubaCrowns/Crown08.html https://escholarship.org/content/qt17c6d1sb/qt17c6d1sb.pdf?t=q56r34 http://plantworldnews.com/2022/02/whats-in-your-pot-african-cuisine-included-leafy-greens-and-yams-over-3500-years-ago/?fbclid=IwAR32eChDFz6699EF69d7i6uE-ceWvOoXQlKfqUI-pm6hrQbC-PTXixeWG4I https://www.academia.edu/5793680/Food_and_Culture_Continuity_and_Change_in_the_Yoruba_of_West_Africa_and_Their_Diasporas_2014_ https://www.eajournals.org/wp-content/uploads/Promoting-the-beauty-of-Yoruba-traditional-fabric-of-Aso-Oke-for-international-consumption-and-sustainable-development.pdf https://www.iosrjournals.org/iosr-jhss/papers/Vol.%2022%20Issue9/Version-7/G2209074751.pdf https://www.vam.ac.uk/articles/adire-tied-and-dyed-indigo-textiles https://hearstmuseum.berkeley.edu/wp-content/uploads/TeachingKit_YorubaArtAndCulture.pdf PODCAST About beads https://archandanth.com/episode-145-interview-with-abidemi-babatunde-babalola/ Music by Epidemic Sound: https://epidemicsound.com/creator Video/Images provided by Getty Images and Archive.org Maps provided by maptiler/Geolayers #History #Yoruba #Animation #Africa
https://wn.com/Who_Are_The_Yoruba_People
A History Of The Yoruba People
8:23

A History Of The Yoruba People

  • Order:
  • Duration: 8:23
  • Uploaded Date: 19 Apr 2019
  • views: 199507
Patreon: https://www.patreon.com/HomeTeamHistory Afrographics: http://afrographics.com Hometeam Merchandise: https://teespring.com/stores/hometeam-history Keywords: Yoruba people
https://wn.com/A_History_Of_The_Yoruba_People
Who Are the Yoruba People?
13:00

Who Are the Yoruba People?

  • Order:
  • Duration: 13:00
  • Uploaded Date: 06 Feb 2023
  • views: 47411
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 Yoruba People here: https://www.amazon.com/Yoruba-People-Captivating-History-Mythology/dp/B09SQYNGGS You can get the paperback version of The Yoruba People here: https://www.amazon.com/Yoruba-People-Captivating-History-Mythology/dp/1637165447 And the ebook version of The Yoruba People here: https://www.amazon.com/Yoruba-People-Captivating-History-Mythology-ebook/dp/B09PJMTD8G The Yorubas are an interesting people with a rich cultural heritage that can be traced back to many centuries ago. The history of the Yorubas is one of Africa’s most researched and analyzed histories due to the high level of literacy among the Yoruba. They have a system of government that ensures the proper running of the community and the education of their young. The Yorubas are located in West Africa, with the majority of the population found in southwestern Nigeria. With an estimated population of over thirty to forty million people, they are one of the largest ethnic groups in Africa. 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/Who_Are_The_Yoruba_People
Interesting Facts About the Yoruba People.
9:38

Interesting Facts About the Yoruba People.

  • Order:
  • Duration: 9:38
  • Uploaded Date: 08 Sep 2021
  • views: 16767
Interesting Facts About the Yoruba People.
https://wn.com/Interesting_Facts_About_The_Yoruba_People.
Who are the Yoruba people? Full video in comments
0:36

Who are the Yoruba people? Full video in comments

  • Order:
  • Duration: 0:36
  • Uploaded Date: 05 Apr 2023
  • views: 16083
Yorubaland is the homeland of the Yoruba people. With a population of 46 million the Yoruba are one of the largest ethnic groups in Africa. No other African culture has affected the Americas and Caribbean as much as the Yoruba who left their mark through people, dance, food and religion. #educational #shorts #history #religion #geography #africa #yoruba
https://wn.com/Who_Are_The_Yoruba_People_Full_Video_In_Comments
The Most Fertile Ethnic Group in The World - The Yoruba People of Nigeria | Africa in 30 Seconds
1:00

The Most Fertile Ethnic Group in The World - The Yoruba People of Nigeria | Africa in 30 Seconds

  • Order:
  • Duration: 1:00
  • Uploaded Date: 23 Jun 2023
  • views: 720889
According to cambridge.org - The Yorubas are said to have sprung from Lamurudu one of the kings of Mecca whose offspring were:—Oduduwa, the ancestor of the Yorubas, the Kings of Gogobiri and of the Kukawa, two tribes in the Hausa country. The language of the Yorubas, known as Yoruba, belongs to the Congo-Kordofanian language family. The Yoruba homeland is located in west Africa, with most Yoruba living in Nigeria with some scattered in Togo,Benin and worldwide. The Yoruba are one of the largest ethnic groups in Africa.The Yoruba are a very sociable and expressive people who commemorate major events with colorful festivals and celebrations.As many as 20 percent of the Yoruba still practice the traditional religion of their ancestors. A large number of modern Yoruba also combine traditional Yoruba beliefs with modern day religions such as Islam and Christianity.The Yoruba women are the most fertile as they present the highest rate of twin births in the world. This may be because of high consumption of a specific type of yam containing a natural phytoestrogen which may stimulate the ovaries to release an egg from each side. This is Africa in 30 seconds. Subscribe. And see you again tomorrow. The Most Fertile Ethnic Group in The World - The Yoruba People of Nigeria | Africa in 30 Seconds. Rakghana | Yoruba | Nigeria | Ooni of Ife | Most Fertile Ethnic Group | African Culture | African People | African History | African Tradition | Africa in 30 Seconds | Yoruba Kingdom | Yoruba Empire | Yoruba Nation Pls kindly subscribe to @Rakghana for more positive insight into Africa culture and African people. #rakghana #africain30seconds #yoruba #nigeria #ooniofife #fertility #yorubanation
https://wn.com/The_Most_Fertile_Ethnic_Group_In_The_World_The_Yoruba_People_Of_Nigeria_|_Africa_In_30_Seconds
Know more about the Yoruba Tribe #africa #history
0:37

Know more about the Yoruba Tribe #africa #history

  • Order:
  • Duration: 0:37
  • Uploaded Date: 21 Jun 2023
  • views: 63850
https://wn.com/Know_More_About_The_Yoruba_Tribe_Africa_History
The Many Gods of Yoruba Lore
12:04

The Many Gods of Yoruba Lore

  • Order:
  • Duration: 12:04
  • Uploaded Date: 09 Nov 2022
  • views: 447392
Check out Rogue History on @pbsorigins : https://www.youtube.com/watch?v=xuT35ud41QQ In recent years we have seen a very welcome uptick in the number of fantasy books inspired by West African folklore. The Afrofuturism and Africanfuturism movements have paved the way for Black authors across the diaspora to build worlds and tell stories influenced by their heritage, allowing wider audiences to finally meet the spirits of Yoruba lore. But who are these deities, and where do they come from? For audio descriptions, go to Settings - Audio Track - English Descriptive. Hosted by Dr. Moiya McTier & Dr. Emily Zarka, FATE & FABLED explores the stories and characters of mythologies from all around the world - why they came to be and how they impact us still today. Host / Writer: Moiya McTier, PhD Director: David Schulte Executive Producer: Amanda Fox Producer: Thomas Fernandes Editor / Animator: Steven Simone Assistant Editor: Jordyn Buckland Illustrator: Sophie Calhoun Expert/Consultant: Oluseye Adesola, PhD Script Editors: Emily Zarka, PhD & Moiya McTier, PhD Fact Checker: Yvonne McGreevy Additional Footage: Shutterstock Music: APM Music Executive in Charge (PBS): Maribel Lopez Director of Programming (PBS): Gabrielle Ewing Assistant Director of Programming (PBS): John Campbell Fate & Fabled is produced by Spotzen for PBS Digital Studios. Descriptive Audio & Captions provided by The Described and Captioned Media Program
https://wn.com/The_Many_Gods_Of_Yoruba_Lore
#koikimedia A HISTORY OF THE YORUBA PEOPLE NIGERIA NEEDS NOW THE COURAGE TO DISSOLVE PEACEFULLY
2:32:02

#koikimedia A HISTORY OF THE YORUBA PEOPLE NIGERIA NEEDS NOW THE COURAGE TO DISSOLVE PEACEFULLY

  • Order:
  • Duration: 2:32:02
  • Uploaded Date: 05 Dec 2024
  • views: 518
Fundraiser by Olayomi KOIKI : Our media organisation koikimedia needs you All https://gofund.me/d7f135e0 KOIKIMEDIA DONATION KOIKIMEDIA DONATION (+447594050979) DONATE TO GOOD JOURNALISM. MANY INDEPENDENT MEDIA DEPEND ON YOU. Trust has never mattered more Thanks to your support we can continue to provide accurate, independent news and calm explanation. No matter how uncertain the future feels, you can rely on us. Quality journalism can help us all make critical decisions about our lives, health and security – based on fact, not fiction. Trusted news is important to us and so is your support to KOIKIMEDIA TIDE BANK KOIKIMEDIA LTD Mr OLAYOMI KOIKI SORT CODE 040605 ACCOUNT 16906228 FIRST BANK ACCOUNT NUMBER 3096808848 OLAYOMI OLAKUNLE KOIKI PAYPAL Email Musakalam1@yahoo.com If you enjoy what I do, please support me on Ko-fi! https://ko-fi.com/koikimedia CONTACT US We believe that a business with a great media team can make an impact on the world. Take the first step: contact us, and together, we will help you get your message to the world. Koikimedia London, Greater London, England, United Kingdom +447594050979 STUDIO LINE TO CALL DURING PROGRAM +447404405917 Join this channel to get access to perks: https://www.youtube.com/channel/UCSeWjBdLKtzRwwcpnIjglmw/join
https://wn.com/Koikimedia_A_History_Of_The_Yoruba_People_Nigeria_Needs_Now_The_Courage_To_Dissolve_Peacefully
The Yoruba People in Nigeria (1946)
7:25

The Yoruba People in Nigeria (1946)

  • Order:
  • Duration: 7:25
  • Uploaded Date: 22 Aug 2021
  • views: 9553
NIGERIA IN 1948. A British report tagged "The Modern Age" series about reforms in the British colony. Published June, 1948. Connect with us www.facebook.com/yorubablog www.instagram.com/yoruba_blog Source: travelfilmarchive
https://wn.com/The_Yoruba_People_In_Nigeria_(1946)
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Who Are The Yoruba People?
    24:21
    Who Are The Yoruba People?remove from playlist
  • A History Of The Yoruba People
    8:23
    A History Of The Yoruba Peopleremove from playlist
  • Who Are the Yoruba People?
    13:00
    Who Are the Yoruba People?remove from playlist
  • Who are the Yoruba people? Full video in comments
    0:36
    Who are the Yoruba people? Full video in commentsremove from playlist
  • The Most Fertile Ethnic Group in The World - The Yoruba People of Nigeria | Africa in 30 Seconds
    1:00
    The Most Fertile Ethnic Group in The World - The Yoruba People of Nigeria | Africa in 30 Secondsremove from playlist
  • The Many Gods of Yoruba Lore
    12:04
    The Many Gods of Yoruba Loreremove from playlist
  • #koikimedia A HISTORY OF THE YORUBA PEOPLE NIGERIA NEEDS NOW THE COURAGE TO DISSOLVE PEACEFULLY
    2:32:02
    #koikimedia A HISTORY OF THE YORUBA PEOPLE NIGERIA NEEDS NOW THE COURAGE TO DISSOLVE PEACEFULLYremove from playlist
  • The Yoruba People in Nigeria (1946)
    7:25
    The Yoruba People in Nigeria (1946)remove from playlist
PLAYLIST TIME:

Who Are The Yoruba People?

Sign up for an annual Curiositystream subscription with 42% off and you'll also get free access to Nebula (a streaming platform I'm helping to build along with other creators). https://curiositystream.com/cogito Yorubaland is the homeland of the Yoruba people. With a population of 46 million the Yoruba are one of the largest ethnic groups in Africa. The Yoruba built one of the largest empires in West Africa and crafted some of humanity's finest art. Their artists are famous worldwide and no other African culture has affected the Americas and Caribbean as much as the Yoruba who left their mark through people, dance, food and the religions of Santeria, and Candomblé. So who are the Yoruba, what is their history, and what does it have to do with a Galactic Universe Creating Chicken? Well, let’s find out. This video was researched and written by Deborah Oliveira. The illustrations were created by Chico De La Historia, https://twitter.com/ChicoDLHistoria IF YOU WOULD LIKE TO CONTRIBUTE TO MY PATREON PLEASE SEE HERE. ​​https://www.patreon.com/CogitoEdu Follow me on twitter https://twitter.com/CogitoEdu Or Reddit r/cogitoedu Or Facebook @CogitoYT MERCHANDISE teespring.com/stores/cogito-store Sources and Further Reading: VIDEOS https://youtu.be/fRy92OJCtcY https://youtu.be/J2se_zimj40 https://youtu.be/W16fKzrTb8M https://youtu.be/I_hJwWEgarI https://youtu.be/mXwDTHYUPV8 https://youtu.be/0O7_-_iA1cc BOOKS A History of the Yoruba People by Stephen Adebanji https://www.amazon.com/History-Yoruba-Stephen-Adebanji-Akintoye/dp/2359260057 Encyclopedia of the Yoruba by Toyin Falola and Akintunde Akinyemi Adebisi Afọlayan - Yoruba language and literature Niara Sudarkasa - Where Women Work A Study of Yoruba Women in the Marketplace and in the Home Oyekan Owomoyela - Yoruba Proverbs Baba Ifa Karade - The Handbook of Yoruba Religious Concepts Miguel C. Alonso - The Development of Yoruba Candomble Communities in Salvador, Bahia A. G. Hopkins - An Economic History of West Africa Samuel Johnson - The History of the Yorubas (Old source but an iconic work in Yoruba history) OTHER SOURCES Black sand and iron stone: iron smelting in Modakeke, Ife, south western Nigeria https://discovery.ucl.ac.uk/id/eprint/93632/ Ancient History of Technology in West Africa: The Indigenous Glass/Glass Bead Industry and the Society in Early Ile-Ife https://www.researchgate.net/publication/317775780_Ancient_History_of_Technology_in_West_Africa_The_Indigenous_GlassGlass_Bead_Industry_and_the_Society_in_Early_Ile-Ife_Southwest_Nigeria https://artsandculture.google.com/story/ZgWB6Y0ZViQKJw https://artsandculture.google.com/story/_QVxsVP8AxQtIw https://artsandculture.google.com/story/qwXhr4ObJk0-JA https://artsandculture.google.com/story/LQXhfRllJNZnOA * https://en.wikipedia.org/wiki/Yoruba_language#Writing_systems https://www.jstor.org/stable/40341607?seq=1 https://www.worldhistory.org/Oshun/ https://www.bbc.com/future/article/20160922-the-nut-that-helped-to-build-a-global-empire https://artsandculture.google.com/story/12-facts-you-need-to-know-about-ife-art/TQWB2S-ClCrcNw https://www.khanacademy.org/humanities/art-africa/west-africa/nigeria/a/head-of-a-ruler-ife https://www.britishmuseum.org/collection/object/E_Af1939-34-1 https://www.theguardian.com/artanddesign/gallery/2010/feb/24/kingdom-of-ife-british-museum https://theculturetrip.com/africa/nigeria/articles/history-rediscovered-sungbos-eredo-nigerias-lost-yoruba-kingdom-2/ https://www.khanacademy.org/humanities/ap-art-history/africa-apah/west-africa-apah/a/olowe-of-ise-veranda-post-yoruba-peoples https://www.khanacademy.org/humanities/art-africa/west-africa/nigeria/a/igbo-ukwu-an-overview https://www.metmuseum.org/art/collection/search?q=Yoruba+peoples sortBy=Relevance pageSize=0 https://collections.lacma.org/node/175464 https://www.hamillgallery.com/YORUBA/YorubaCrowns/Crown08.html https://escholarship.org/content/qt17c6d1sb/qt17c6d1sb.pdf?t=q56r34 http://plantworldnews.com/2022/02/whats-in-your-pot-african-cuisine-included-leafy-greens-and-yams-over-3500-years-ago/?fbclid=IwAR32eChDFz6699EF69d7i6uE-ceWvOoXQlKfqUI-pm6hrQbC-PTXixeWG4I https://www.academia.edu/5793680/Food_and_Culture_Continuity_and_Change_in_the_Yoruba_of_West_Africa_and_Their_Diasporas_2014_ https://www.eajournals.org/wp-content/uploads/Promoting-the-beauty-of-Yoruba-traditional-fabric-of-Aso-Oke-for-international-consumption-and-sustainable-development.pdf https://www.iosrjournals.org/iosr-jhss/papers/Vol.%2022%20Issue9/Version-7/G2209074751.pdf https://www.vam.ac.uk/articles/adire-tied-and-dyed-indigo-textiles https://hearstmuseum.berkeley.edu/wp-content/uploads/TeachingKit_YorubaArtAndCulture.pdf PODCAST About beads https://archandanth.com/episode-145-interview-with-abidemi-babatunde-babalola/ Music by Epidemic Sound: https://epidemicsound.com/creator Video/Images provided by Getty Images and Archive.org Maps provided by maptiler/Geolayers #History #Yoruba #Animation #Africa
24:21
Who Are The Yoruba People?
Sign up for an annual Curiositystream subscription with 42% off and you'll also get free a...
published: 15 Dec 2022
Play in Full Screen
8:23
A History Of The Yoruba People
Patreon: https://www.patreon.com/HomeTeamHistory Afrographics: http://afrographics.com H...
published: 19 Apr 2019
Play in Full Screen
13:00
Who Are the Yoruba People?
Join the Captivating History Book Club: https://bit.ly/3TMmpU2 Get a FREE mythology bundl...
published: 06 Feb 2023
Play in Full Screen
9:38
Interesting Facts About the Yoruba People.
Interesting Facts About the Yoruba People.
published: 08 Sep 2021
Play in Full Screen
0:36
Who are the Yoruba people? Full video in comments
Yorubaland is the homeland of the Yoruba people. With a population of 46 million the Yorub...
published: 05 Apr 2023
Play in Full Screen
1:00
The Most Fertile Ethnic Group in The World - The Yoruba People of Nigeria | Africa in 30 Seconds
According to cambridge.org - The Yorubas are said to have sprung from Lamurudu one of the ...
published: 23 Jun 2023
Play in Full Screen
0:37
Know more about the Yoruba Tribe #africa #history
published: 21 Jun 2023
Play in Full Screen
12:04
The Many Gods of Yoruba Lore
Check out Rogue History on @pbsorigins : https://www.youtube.com/watch?v=xuT35ud41QQ In r...
published: 09 Nov 2022
Play in Full Screen
2:32:02
#koikimedia A HISTORY OF THE YORUBA PEOPLE NIGERIA NEEDS NOW THE COURAGE TO DISSOLVE PEACEFULLY
Fundraiser by Olayomi KOIKI : Our media organisation koikimedia needs you All https://gofu...
published: 05 Dec 2024
Play in Full Screen
7:25
The Yoruba People in Nigeria (1946)
NIGERIA IN 1948. A British report tagged "The Modern Age" series about reforms in the Bri...
published: 22 Aug 2021
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: yoruba people

Edit

Pope Trump, Adebanjo And Other Stories

This Day 06 May 2025
It is unfortunate that in this country today, most people do not stand for anything ... There are people who stand for their stomach ... Poor people will always say anything until they get into trouble ... That is how Yoruba people behave.
Edit

Diddy trial starts, Sovereignty rules Derby | The Backstory

Usatoday 04 May 2025
Blige to Mariah Carey ... That was then ... "Don't forget that Black people in the Hamptons wasn't a common thing," says filmmaker Yoruba Richen, co-director with Emma Schwartz of "The Fall of Diddy" series, according to della Cava and Reed’s story.
Edit

Support for David Oyelowo's Rocketeer movie dried up after 2020 Black Lives Matter movement

AV Club 01 May 2025
David Oyelowo has witnessed this first hand through his production company Yoruba Saxon, which has been trying to get an adaptation of kids’ book Onyeka And The Academy Of The Sun and a sequel to The Rocketeer made.
Edit

With DEI under attack, David Oyelowo calls out Hollywood’s ‘performative’ politics

The Los Angeles Times 30 Apr 2025
And through their production company, Yoruba Saxon, they hope to use the stories they tell to generate empathy in the world, placing marginalized people at the epicenter of the universes they create.
Edit

Loud Whispers  with JOSEPH EDGAR

This Day 27 Apr 2025
Eventually, the governor who appears to be thoroughly overwhelmed with the security situation in his state recanted and said – ohh it is the “dada” people who belong to a cult terrorising our state and not the Duke of Shomolu type of “Dada.”.
Edit

Afro-Brazilian carnival celebrates cultural kinship in Lagos

Manila Standard 21 Apr 2025
... dance to traditional Nigerian Yoruba music ... Many slaves were forced to adopt Portuguese names, and today in Nigeria, it is common to find people with Yoruba first names and Portuguese surnames.
Edit

If the Foundations of Logic Be Destroyed

This Day 20 Apr 2025
I once read a post and comments where people were arguing that it is better to create jobs than to build infrastructure ... We have eloquent and smart people spewing fluent gibberish on TV, radio and social media day and night.
Edit

Diddy's star-studded parties were cultural extravaganzas: Inside the White Party

Usatoday 20 Apr 2025
At some parties, people ended up in the pool, often losing items of clothing ... "Don't forget that Black people in the Hamptons wasn't a common thing," says filmmaker Yoruba Richen, co-director with Emma Schwartz of "The Fall of Diddy" series.
Edit

Seaman’s Schnapps Celebrates Egba Heritage as Lead Sponsor of 38th Lisabi Festival

This Day 19 Apr 2025
International guests from Brazil, Cuba, Trinidad and Tobago, and other parts of the world joined the festivities, highlighting the enduring historical connections between the Yoruba people and their counterparts across continents.
Edit

Adire fabric symbolizes cultural identity and empowerment in Nigeria

Anadolu Agency 18 Apr 2025
... in Yoruba culture. Adire fabric, crafted for centuries by the Yoruba people of southwestern Nigeria, is more than a textile—it symbolizes identity, resistance, and aesthetic expression.
  • 1
×