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

  • West African Queen, African Queen #shorts #africanbeauty

    published: 19 Jul 2022
  • A West African Philosophy of Calm

    For those prone to stress and losing their tempers, the Yoruba people of West Africa can offer a distinctive remedy: an unflappable attitude known as 'itutu'. Enjoying our Youtube videos? Get full access to all our audio content, videos, and thousands of thought-provoking articles, conversation cards and more with The School of Life Subscription: https://t.ly/pWqHt Be more mindful, present and inspired. Get the best of The School of Life delivered straight to your inbox: https://t.ly/abHQY FURTHER READING You can read more on this and other subjects here: https://b4f4.short.gy/yNBYOx MORE SCHOOL OF LIFE Watch more films on SELF in our playlist: http://bit.ly/TSOLself SOCIAL MEDIA Feel free to follow us at the links below: Facebook: https://www.facebook.com/theschooloflifelondon...

    published: 11 Oct 2023
  • Top 10 Most Beautiful Cities in West Africa

    In this video we are covering the top 10 Most Beautiful Cities in West Africa. West African Countries are known for their beautiful cities in addition to their rich histories, diverse cultures, and breathtaking natural beauty. Nigeria, Ghana, Sierra Leone, Ivory Coast, Senegal, The Gambia, Benin and Liberia to the List of West Africa Countries with the Most Beautiful Cities. Some of these Cities are capital cities while some are economic capitals 0:00 - Intro 0:38 - Monrovia, Liberia 1:16 - Banjul, The Gambia 2:01 - Free Town, Sierra Leone 2:23 - Ouagadougou, Burkina Faso 3:14 - Abuja, Nigeria 4:12 - Cotonou Benin 5:09 - Accra, Ghana 5:52 - Dakar, Senegal 6:42 - Lagos, Nigeria 7:29 - Abidjan, Cote d'Ivoire

    published: 16 Jul 2024
  • EXCLUSIVE: Two More West African Nations Align with Burkina Faso, Mali, and Niger!

    EXCLUSIVE: Two More West African Nations Align with Burkina Faso, Mali, and Niger!▬▬▬▬▬▬▬▬▬ #botswana #botswanaculture #africanews

    published: 03 Dec 2024
  • Sona Jobarteh & Band - Kora Music from West Africa

    Tracklist: 0:00 Jarabi | 10:06 Mamamuso | 16:52 Kaira | 24:40 Gainaako | 34:02 Kanu | 44:24 Saya | 49:30 Bannaya ******************** Sona Jobarteh performed in Weimar on invitation of the University of Music FRANZ LISZT Weimar and its UNESCO Chair of Transcultural Music Studies (TMS). The TMS Chair regularly invites artists to bring the musicology students into contact with various musical cultures for inspiration and exchange. For further information visit https://www.hfm-weimar.de/tms. Sona Jobarteh is the first female Kora virtuoso to come from a west African Griot family. The Kora is one of the most important instruments belonging to the Manding peoples of West Africa (Gambia, Senegal, Mali, Guinea and Guinea-Bissau). It belongs exclusively to griot families, and usually only men w...

    published: 25 Jan 2016
  • Ronis Goliath - Berlin / West Africa (Official Video)

    Follow Ronis Goliath Instagram - https://www.instagram.com/ronisgoliath TikTok - https://www.tiktok.com/@ronisgoliathofficial © Kookie Diamond / Platoon shout out to the community for helping us! Special thanks to: IMPARI MAAYA Berlin Peter Fox BoWcouleur Berlin Dianna Jacksan Manzamussa Jamie Breezay Hinni Eddy Burak Tesfly Media Waoh Mgmt Jazz Montell Wade Hitimpulse Lex Barkey

    published: 16 Aug 2024
  • Western Economies Collapsing as 10 African Nations Ban Raw Exports!

    Western economies have thrived on the assumption that Africa will continue supplying cheap raw materials to fuel their industries. Oil, gold, uranium, lithium, and other resources from Africa have powered everything from technology to transportation in Europe and North America. Now, however, Africa is reasserting control over its resources. Ten African countries have imposed strict regulations on the export of these raw materials, retaining value domestically and driving local economic growth. This shift is shaking global markets, forcing Western countries to reckon with a reality they hadn’t anticipated: Africa will no longer function merely as a supplier for the world. This move is more than an economic policy; it is a significant assertion of Africa’s sovereignty. By deciding how, when,...

    published: 05 Nov 2024
  • Cameroon -Things you never knew

    If you're looking for a destination that's both exotic and beautiful, then look no further than Cameroon! This African country is home to some of the world's most stunning sights and sounds, and it's a great place to visit if you're looking for a unique travel experience. In this video, we'll take you on a whirlwind tour of Cameroon, from the lush rainforest to the stunning coastline. We'll show you all the sights and sounds of this amazing country, and help you plan the perfect trip to Cameroon! 3 things you didn't know about #Cameroon #countries #europe #asia #america #europe #cameroon ---------------------------------------------------------------------- This video shows things about Cameroon -----------------------------------------------------------------...

    published: 29 Oct 2022
  • Pirates are Running Wild off West Africa’s Coast | System Error

    Today, 97 percent of kidnappings at sea take place in the Gulf of Guinea, making this region the piracy hotspot of the world. But why is piracy thriving in these waters? Check out the VICE World News playlist for global reporting you won't find elsewhere: https://www.youtube.com/playlist?list=PLw613M86o5o4S3BXgi3bCiIVuopQxIMgV Watch more from this series: Europe’s Agricultural Mafia https://www.youtube.com/watch?v=3AaGUYzp3J8 The Temple That Sparked an Armed Conflict https://www.youtube.com/watch?v=NwGP3Q9PDGY&t=2s The WWF’s Poaching War Is Killing Innocent People https://www.youtube.com/watch?v=9J6iJg6NUOA&t=228s Subscribe to VICE News here: http://bit.ly/Subscribe-to-VICE-News Check out VICE News for more: http://vicenews.com Follow VICE News here: Facebook: https://www.f...

    published: 21 Aug 2021
West African Queen, African Queen #shorts #africanbeauty
0:08

West African Queen, African Queen #shorts #africanbeauty

  • Order:
  • Duration: 0:08
  • Uploaded Date: 19 Jul 2022
  • views: 4575646
https://wn.com/West_African_Queen,_African_Queen_Shorts_Africanbeauty
A West African Philosophy of Calm
3:08

A West African Philosophy of Calm

  • Order:
  • Duration: 3:08
  • Uploaded Date: 11 Oct 2023
  • views: 471116
For those prone to stress and losing their tempers, the Yoruba people of West Africa can offer a distinctive remedy: an unflappable attitude known as 'itutu'. Enjoying our Youtube videos? Get full access to all our audio content, videos, and thousands of thought-provoking articles, conversation cards and more with The School of Life Subscription: https://t.ly/pWqHt Be more mindful, present and inspired. Get the best of The School of Life delivered straight to your inbox: https://t.ly/abHQY FURTHER READING You can read more on this and other subjects here: https://b4f4.short.gy/yNBYOx MORE SCHOOL OF LIFE Watch more films on SELF in our playlist: http://bit.ly/TSOLself SOCIAL MEDIA Feel free to follow us at the links below: Facebook: https://www.facebook.com/theschooloflifelondon/ Twitter: https://twitter.com/TheSchoolOfLife X: https://www.instagram.com/theschooloflifelondon/ LinkedIn: https://www.linkedin.com/company/the-school-of-life-for-business/ CREDITS Produced in collaboration with: Alexandra Balan https://www.sashaanimates.com/ Title animation produced in collaboration with Graeme Probert www.gpmotion.co.uk
https://wn.com/A_West_African_Philosophy_Of_Calm
Top 10 Most Beautiful Cities in West Africa
8:46

Top 10 Most Beautiful Cities in West Africa

  • Order:
  • Duration: 8:46
  • Uploaded Date: 16 Jul 2024
  • views: 25198
In this video we are covering the top 10 Most Beautiful Cities in West Africa. West African Countries are known for their beautiful cities in addition to their rich histories, diverse cultures, and breathtaking natural beauty. Nigeria, Ghana, Sierra Leone, Ivory Coast, Senegal, The Gambia, Benin and Liberia to the List of West Africa Countries with the Most Beautiful Cities. Some of these Cities are capital cities while some are economic capitals 0:00 - Intro 0:38 - Monrovia, Liberia 1:16 - Banjul, The Gambia 2:01 - Free Town, Sierra Leone 2:23 - Ouagadougou, Burkina Faso 3:14 - Abuja, Nigeria 4:12 - Cotonou Benin 5:09 - Accra, Ghana 5:52 - Dakar, Senegal 6:42 - Lagos, Nigeria 7:29 - Abidjan, Cote d'Ivoire
https://wn.com/Top_10_Most_Beautiful_Cities_In_West_Africa
EXCLUSIVE: Two More West African Nations Align with Burkina Faso, Mali, and Niger!
10:32

EXCLUSIVE: Two More West African Nations Align with Burkina Faso, Mali, and Niger!

  • Order:
  • Duration: 10:32
  • Uploaded Date: 03 Dec 2024
  • views: 52937
EXCLUSIVE: Two More West African Nations Align with Burkina Faso, Mali, and Niger!▬▬▬▬▬▬▬▬▬ #botswana #botswanaculture #africanews
https://wn.com/Exclusive_Two_More_West_African_Nations_Align_With_Burkina_Faso,_Mali,_And_Niger
Sona Jobarteh & Band - Kora Music from West Africa
1:02:55

Sona Jobarteh & Band - Kora Music from West Africa

  • Order:
  • Duration: 1:02:55
  • Uploaded Date: 25 Jan 2016
  • views: 20283908
Tracklist: 0:00 Jarabi | 10:06 Mamamuso | 16:52 Kaira | 24:40 Gainaako | 34:02 Kanu | 44:24 Saya | 49:30 Bannaya ******************** Sona Jobarteh performed in Weimar on invitation of the University of Music FRANZ LISZT Weimar and its UNESCO Chair of Transcultural Music Studies (TMS). The TMS Chair regularly invites artists to bring the musicology students into contact with various musical cultures for inspiration and exchange. For further information visit https://www.hfm-weimar.de/tms. Sona Jobarteh is the first female Kora virtuoso to come from a west African Griot family. The Kora is one of the most important instruments belonging to the Manding peoples of West Africa (Gambia, Senegal, Mali, Guinea and Guinea-Bissau). It belongs exclusively to griot families, and usually only men who are born into these families have the right to take up the instrument professionally. Sona Jobarteh combines various genres of African Music and western musical elements. Sonah Jobarteh – Acoustic Guitar/ Kora/ Vocals Maurice Brown – Acoustic Guitar Andi McLean – Electric Bass/ BVs Mouhamadou Sarr – Djembe/ Congas/ Calabash/ BVs University of Music FRANZ LISZT Weimar: Website: https://www.hfm-weimar.de Instagram: https://www.instagram.com/hfmweimar Facebook: https://www.facebook.com/hfmweimar YouTube: https://www.youtube.com/hfmfranzlisztweimar Recorded on July 1, 2015 at the "mon ami", Weimar
https://wn.com/Sona_Jobarteh_Band_Kora_Music_From_West_Africa
Ronis Goliath - Berlin / West Africa (Official Video)
2:50

Ronis Goliath - Berlin / West Africa (Official Video)

  • Order:
  • Duration: 2:50
  • Uploaded Date: 16 Aug 2024
  • views: 313505
Follow Ronis Goliath Instagram - https://www.instagram.com/ronisgoliath TikTok - https://www.tiktok.com/@ronisgoliathofficial © Kookie Diamond / Platoon shout out to the community for helping us! Special thanks to: IMPARI MAAYA Berlin Peter Fox BoWcouleur Berlin Dianna Jacksan Manzamussa Jamie Breezay Hinni Eddy Burak Tesfly Media Waoh Mgmt Jazz Montell Wade Hitimpulse Lex Barkey
https://wn.com/Ronis_Goliath_Berlin_West_Africa_(Official_Video)
Western Economies Collapsing as 10 African Nations Ban Raw Exports!
22:25

Western Economies Collapsing as 10 African Nations Ban Raw Exports!

  • Order:
  • Duration: 22:25
  • Uploaded Date: 05 Nov 2024
  • views: 155892
Western economies have thrived on the assumption that Africa will continue supplying cheap raw materials to fuel their industries. Oil, gold, uranium, lithium, and other resources from Africa have powered everything from technology to transportation in Europe and North America. Now, however, Africa is reasserting control over its resources. Ten African countries have imposed strict regulations on the export of these raw materials, retaining value domestically and driving local economic growth. This shift is shaking global markets, forcing Western countries to reckon with a reality they hadn’t anticipated: Africa will no longer function merely as a supplier for the world. This move is more than an economic policy; it is a significant assertion of Africa’s sovereignty. By deciding how, when, and to whom they export their resources, these nations are challenging a system that has long kept them disadvantaged. Historically, African resources were extracted and exported cheaply, processed elsewhere, and then sold back to African countries at a premium. This cycle has prevented Africa from benefiting fully from its wealth, making it difficult for these nations to develop robust, self-sustaining economies. The new export restrictions signal a profound shift in how African leaders view their role in the global market. Join this channel to get access to perks: https://www.youtube.com/channel/UC2vy1ztN3iredhD_ouNbh4w/join ============================ Sources: 1. https://www.globalpolicywatch.com/2024/05/african-raw-material-export-bans-protectionism-or-self-determination/ 2. https://trtafrika.com/insight/what-africa-stands-to-gain-from-a-ban-on-export-of-raw-minerals-14716361 3. https://www.reuters.com/article/business/finance/ghana-to-tighten-controls-on-gold-exports-to-protect-revenues-idUSL8N1QH6EX/ 4. https://parliamentwatch.ug/news-amp-updates/looming-ban-on-ugandan-coffee-in-europe-raises-questions-in-parliament 5. https://www.profor.info/knowledge/log-ban-impact-assessment-gabon 6. https://www.dw.com/en/are-nigers-uranium-supplies-to-france-under-scrutiny/a-66711717 7. https://www.globaltradealert.org/intervention/116475/export-ban/guinea-export-ban-of-several-foodstuffs-for-three-months 8. https://clubofmozambique.com/news/mozambique-bans-logging-and-export-of-six-species-of-wood/#:~:text=According%20to%20the%20new%20rules,will%20revert%20to%20the%20State.&text=For%20the%20current%20year%2C%20MITADER,cubic%20metres%20for%20this%20year. 9. https://www.reuters.com/markets/commodities/namibia-bans-export-unprocessed-critical-minerals-2023-06-08/ 10. https://www.africaintelligence.com/west-africa/2024/10/29/cocoa-industry-watchdog-tightens-price-controls,110333088-art#:~:text=Ghana%2C%20Ivory%20Coast-,West%20African%20cocoa%20cartel%20battles%20with%20the%20traders,%5B...%5D 11. https://www.globaltradealert.org/intervention/119719/export-ban/dr-congo-government-reimposes-export-ban-on-copper-and-cobalt-concentrates 12. https://www.reuters.com/article/world/africa/zimbabwe-bans-chrome-ore-exports-to-boost-ferrochrome-industry-idUSL8N2PA65U/ Please, like, comment, subscribe, and ring the bell! EVERYTHING helps us grow!. Subscribe Here: #blackhistory #africanhistory #africanews Thanks For Watching Our Video 🤗
https://wn.com/Western_Economies_Collapsing_As_10_African_Nations_Ban_Raw_Exports
Cameroon -Things you never knew
0:12

Cameroon -Things you never knew

  • Order:
  • Duration: 0:12
  • Uploaded Date: 29 Oct 2022
  • views: 19288593
If you're looking for a destination that's both exotic and beautiful, then look no further than Cameroon! This African country is home to some of the world's most stunning sights and sounds, and it's a great place to visit if you're looking for a unique travel experience. In this video, we'll take you on a whirlwind tour of Cameroon, from the lush rainforest to the stunning coastline. We'll show you all the sights and sounds of this amazing country, and help you plan the perfect trip to Cameroon! 3 things you didn't know about #Cameroon #countries #europe #asia #america #europe #cameroon ---------------------------------------------------------------------- This video shows things about Cameroon --------------------------------------------------------------------- https://www.youtube.com/shorts/zHNO-P... #educational #countries #world #geography #unitedstates #shorts #cameroonfood #knowledge #youtubeshorts #happyearthday #geographynow cote divore, ivory coast, West African travel,travel #westafrica ,#ghana ,#accra ,#abidjan #assinie #cape #cameroonianyoutuber #cameroonyoutuber #camerooncomedy
https://wn.com/Cameroon_Things_You_Never_Knew
Pirates are Running Wild off West Africa’s Coast | System Error
11:27

Pirates are Running Wild off West Africa’s Coast | System Error

  • Order:
  • Duration: 11:27
  • Uploaded Date: 21 Aug 2021
  • views: 9184307
Today, 97 percent of kidnappings at sea take place in the Gulf of Guinea, making this region the piracy hotspot of the world. But why is piracy thriving in these waters? Check out the VICE World News playlist for global reporting you won't find elsewhere: https://www.youtube.com/playlist?list=PLw613M86o5o4S3BXgi3bCiIVuopQxIMgV Watch more from this series: Europe’s Agricultural Mafia https://www.youtube.com/watch?v=3AaGUYzp3J8 The Temple That Sparked an Armed Conflict https://www.youtube.com/watch?v=NwGP3Q9PDGY&t=2s The WWF’s Poaching War Is Killing Innocent People https://www.youtube.com/watch?v=9J6iJg6NUOA&t=228s Subscribe to VICE News here: http://bit.ly/Subscribe-to-VICE-News Check out VICE News for more: http://vicenews.com Follow VICE News here: Facebook: https://www.facebook.com/vicenews Twitter: https://twitter.com/vicenews Tumblr: http://vicenews.tumblr.com/ Instagram: http://instagram.com/vicenews More videos from the VICE network: https://www.fb.com/vicevideo #VICENews #News
https://wn.com/Pirates_Are_Running_Wild_Off_West_Africa’S_Coast_|_System_Error
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • A West African Philosophy of Calm
    3:08
    A West African Philosophy of Calmremove from playlist
  • Top 10 Most Beautiful Cities in West Africa
    8:46
    Top 10 Most Beautiful Cities in West Africaremove from playlist
  • EXCLUSIVE: Two More West African Nations Align with Burkina Faso, Mali, and Niger!
    10:32
    EXCLUSIVE: Two More West African Nations Align with Burkina Faso, Mali, and Niger!remove from playlist
  • Sona Jobarteh & Band - Kora Music from West Africa
    1:02:55
    Sona Jobarteh & Band - Kora Music from West Africaremove from playlist
  • Ronis Goliath - Berlin / West Africa (Official Video)
    2:50
    Ronis Goliath - Berlin / West Africa (Official Video)remove from playlist
  • Western Economies Collapsing as 10 African Nations Ban Raw Exports!
    22:25
    Western Economies Collapsing as 10 African Nations Ban Raw Exports!remove from playlist
  • Cameroon -Things you never knew
    0:12
    Cameroon -Things you never knewremove from playlist
  • Pirates are Running Wild off West Africa’s Coast | System Error
    11:27
    Pirates are Running Wild off West Africa’s Coast | System Errorremove from playlist
PLAYLIST TIME: 0:00 / 2:02:23

West African Queen, African Queen #shorts #africanbeauty

0:08
West African Queen, African Queen #shorts #africanbeauty
published: 19 Jul 2022
Play in Full Screen
3:08
A West African Philosophy of Calm
For those prone to stress and losing their tempers, the Yoruba people of West Africa can o...
published: 11 Oct 2023
Play in Full Screen
8:46
Top 10 Most Beautiful Cities in West Africa
In this video we are covering the top 10 Most Beautiful Cities in West Africa. West Afric...
published: 16 Jul 2024
Play in Full Screen
10:32
EXCLUSIVE: Two More West African Nations Align with Burkina Faso, Mali, and Niger!
EXCLUSIVE: Two More West African Nations Align with Burkina Faso, Mali, and Niger!▬▬▬▬▬▬▬▬...
published: 03 Dec 2024
Play in Full Screen
1:02:55
Sona Jobarteh & Band - Kora Music from West Africa
Tracklist: 0:00 Jarabi | 10:06 Mamamuso | 16:52 Kaira | 24:40 Gainaako | 34:02 Kanu | 44:2...
published: 25 Jan 2016
Play in Full Screen
2:50
Ronis Goliath - Berlin / West Africa (Official Video)
Follow Ronis Goliath Instagram - https://www.instagram.com/ronisgoliath TikTok - https://w...
published: 16 Aug 2024
Play in Full Screen
22:25
Western Economies Collapsing as 10 African Nations Ban Raw Exports!
Western economies have thrived on the assumption that Africa will continue supplying cheap...
published: 05 Nov 2024
Play in Full Screen
0:12
Cameroon -Things you never knew
If you're looking for a destination that's both exotic and beautiful, then look no further...
published: 29 Oct 2022
Play in Full Screen
11:27
Pirates are Running Wild off West Africa’s Coast | System Error
Today, 97 percent of kidnappings at sea take place in the Gulf of Guinea, making this regi...
published: 21 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: west african

Edit

Feature: Chinese doctors restore eyesight to Senegalese cataract patients

People Daily 07 May 2025
A month earlier, she and four colleagues had traveled over 10,000 km to reach this West African country ... words of gratitude in Wolof, French, and Chinese echoed across the West African savannah.
Edit

Ekpo Heads West African Gas Pipeline Project Ministers’ C’tee 

This Day 06 May 2025
The Minister of State Petroleum Resources (Gas),&nbsp; Ekperikpe Ekpo, has been elected Chairman of the Committee of Ministers of the West African Gas Pipeline (WAGP), a statement by his spokesman, Louis Ibah, said.
Edit

US-led exercise in West Africa aims to help thwart growing sophistication of maritime crime

Stars and Stripes 06 May 2025
PRAIA, Cabo VerdeWest African countries are adapting their interdiction strategies as drug traffickers and other criminals turn to sophisticated technology to evade detection, U.S ... West African ...
Edit

Center Theatre Group’s 2025-26 season: David Byrne’s ‘Here Lies Love,’ ‘Paranormal Activity’ and more

The Los Angeles Times 06 May 2025
Set in Harlem, Bioh’s play centers on a community of West African immigrants who “confront the challenges of being outsiders in their own neighborhood.” Whitney White will direct a co-production with ...
Edit

Prof Douglas Boateng unveils 2 books

B & FT Online 06 May 2025
The launch was filmed and recorded for broadcast across West Africa, Ghana, and other parts of the continent as part of a broader initiative to showcase South African publishing leadership and expand access to transformative African-authored content.
Edit

Govt dissatisfied with food supplied by second-cycle school heads

Business Ghana 06 May 2025
He stated that the President was not enthused about what was being done ... &nbsp; ... Mr Iddrisu during the inauguration called on the West African Examination Council (WAEC) to let its calendar be in sync with the other West African countries of WAEC ... .
Edit

Togo's opposition denounces new role of the country's leader as a 'constitutional coup'

Beaumont Enterprise 06 May 2025
Opposition politicians in the West African country denounced the move as a “constitutional coup” that could signal further democratic ...
Edit

Zodiac Gold Announces Shares For Debt Settlement

MENA FN 06 May 2025
(MENAFN - Newsfile Corp) Vancouver, British Columbia--(Newsfile Corp. - May 5, 2025) - Zodiac Gold Inc. (TSXV. ZAU) (" Zodiac Gold " or the " Company "), a West- African gold exploration ... .
Edit

Venture into international markets to boost revenue -Dzifa Gomashie urges local beverage coys

Business Ghana 06 May 2025
According to her, expanding into the West African, African and global markets would not only increase the industry’s contribution to economic growth but also showcase Ghana’s cultural identity through locally produced beverages.
Edit

Senegal reports 3.8 mln-barrel oil output from Sangomar field

China.dot.org 06 May 2025
Located about 100 km offshore from Dakar, the capital of the West African country, the Sangomar field is operated by the Australian company Woodside Energy, which began oil extraction ...
Edit

Mali: Junta continues to undermine democracy

The Times of India 06 May 2025
Many opposition parties fear that Mali's military-led government — like its West African allies in Niger and Burkina Faso — will try to strengthen its already harsh crackdown on political dissent.
Edit

China congratulates Togo on successful completion of political transition

China.dot.org 06 May 2025
... Ministers, which followed a constitutional amendment that came into effect in the West African country in 2024, formally transitioning Togo from a semi-presidential system to a parliamentary system.
Edit

ECOWAS Court to Hold Sensitisation Outreach and External Court Sessions in Lagos

This Day 06 May 2025
Featured . 50 minutes ago ... &nbsp;The initiative aligns with Article 26(2) of the 1991 Protocol that established the ECOWAS Court, and is aimed at bringing the institution closer to citizens of the West African region ... .
Edit

IMF warns of global debt levels surge amid rising geopolitical tensions and trade volatility

Independent online (SA) 06 May 2025
Waldo Krugell, an economics professor at the North-West University, said that concern about the level of public debt is not only a South African fiscal issue.
Edit

Nigeria taps AI to fight fake news and boost local languages

Anadolu Agency 06 May 2025
To address this growing menace, West African fact-checking initiative Dubawa, led by the Centre for Journalism Innovation and Development (CJID), launched an AI-powered chatbot in May 2024 to help users verify claims.
×