- published: 09 Feb 2018
- views: 2380342
'+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; })); }); -->
Emmanuel "Manu" N'Djoké Dibango (born 12 December 1933) is a Cameroonian saxophonist and vibraphone player. He developed a musical style fusing jazz, funk and traditional Cameroonian music. His father was a member of the Yabassi ethnic group, though his mother was a Duala. He is best known for his 1972 single "Soul Makossa".
Dibango was born in Douala, Cameroon. His father, Michel Manfred N'Djoké Dibango was a civil servant. The son of a farmer, he met his wife travelling by pirogue to her residence, Douala. A literate woman, she was a fashion designer, running her own small business. Both her ethnicity, the Duala, and his, the Yabassi, viewed this union of different ethnic groups with some disdain. Emmanuel had no siblings, although he had a stepbrother from his father's previous marriage who was four years older than he was. In Cameroon, one's ethnicity is dictated by their fathers, though he wrote in his autobiography, Three Kilos of Coffee, that he has "never been able to identify completely with either of [his] parents."
"El manisero", known in English as "The Peanut Vendor", is a Cuban son-pregón composed by Moisés Simons. Together with "Guantanamera", it is arguably the most famous piece of music created by a Cuban musician. "The Peanut Vendor" has been recorded more than 160 times, sold over a million copies of the sheet music, and was the first million-selling 78 rpm single of Cuban music.
Maní, maní, maní… si te quieres por el pico divertir, cómprame un cucuruchito de maní...
Maní, el manisero se va, caballero, no se vayan a dormir, sin comprarme un cucurucho de maní.
The score and lyrics of "El manisero" were by Moises Simons (1889–1945), the Cuban son of a Basque musician. It sold over a million copies of sheet music for E.B. Marks Inc., and this netted $100,000 in royalties for Simons by 1943. Its success led to a 'rumba craze' in the US and Europe which lasted through the 1940s. The consequences of the Peanut Vendor's success were quite far-reaching.
The number was first sung and recorded by the vedette Rita Montaner in 1927 or 1928 for Columbia Records. The biggest record sales for "El manisero" came from the recording made by Don Azpiazú and his Havana Casino Orchestra in New York in 1930 for Victor Records. The band included a number of star musicians such as Julio Cueva (trumpet) and Mario Bauza (saxophone); Antonio Machín was the singer. There seems to be no authoritative account of the number of 78 rpm records of this recording sold by Victor; but it seems likely that the number would have exceeded the sheet music sales, making it the first million-selling record of Cuban (or even Latin) music.
For More Jazz / Blues / Rock / Soul / Greek Music, check my channel I do not own copyright of the songs. Copyright belongs to artists and company. Vinyl Rip From The Original LP (1972) 01.NEW BELL [0:00] 02.NIGHTS IN ZERALDA [6:43] 03.HIBISCUS [11:17] 04.DANGWA [17:34] 05.LILY [23:33] 06.SOUL MAKOSSA [26:35] 07.OBOSO [31:00] JOBY JOBS : drums MANU RODANET : toumba MALEKANI GERRY : guitar FREDDY MARS : percussion LONG MANFRED : bass PIERRE ZOGO : acoustic guitar PATRICE GALAS : piano GEORGES ARVANITAS : piano MANU DIBANGO : tenor sax, alto sax, vocals Recommendations from my channel Jazz / Latin Jaazz / Jazz Funk https://www.youtube.com/watch?v=HYAEBD7E-AA (Houston Person - Basics (Full Album) https://www.youtube.com/watch?v=OyvytviXELU&t=247s (Reuben Wilson - The ...
A true musician never dies, he just stops performing live. Manu Dibango, the Lion of Africa. I am at peace, my soul at rest There are no need for tears For with your love I was so blessed For all those many years. December 12, 1933 – March 24, 2020 With deep sadness and this world's loss, Manu Dibango (the Lion of Africa), has made his transition into the Light at 86 years of age to covid 19, in a hospital near Paris, according to his Facebook post. RIP Manu and thank you for the gift of your music. Facebook: https://www.facebook.com/ManuDibangoOfficiel/ Soul Makossa meaning: "I will dance." The lyrics are written phonetically and not in the actual language intended. Makoosa...Akeela Mama ko mama sa maka makoosa Mama ko mama sa maka makoosa Mama ko mama sa maka makoosa Heyyyy sou...
The great music icon from Cameroon - Manu Dibango live in concert at the 30th Africa Festival Würzburg in 2018. Please note that all rights are reserved. Any copy or download of the concert is strictly prohibited. SAVE THE DATE: 32nd International Africa Festival from June 3rd to 6th, 2021 TICKETS are available here: https://www.africafestival.org/tickets The Africa Festival Würzburg has been established in 1989 and is the largest festival for African music and culture in Europe. More than 400 groups and individual artists from 56 African and Caribbean countries have performed live on stage in Würzburg so far and represented the cultural wealth of the African continent to more than 2.100.00 visitors. Das Africa Festival Würzburg besteht seit 1989 und ist das größte Festival für afrikani...
This special concert called Lion of Africa took place in London in 2004 when, along with Courtney Pine and the Maraboutik Big Band, Manu celebrated his 71st birthday. © 2007 Global Mix Media Limited (http://www.globalmix.co.uk) The DVD, which contains this and 9 other tracks, can be purchased here: http://www.play.com/Music/CD/4-/3337365/Lion-of-Africa/Product.html
http://www.manudibango.net/, http://www.b-jazz.com/ ● © For any questions regarding copyright issues related to video materials, please contact us via email at [email protected] ● Personnel: Manu Dibango - sax, vocals, vibraphone Julien Agazar - keyboards Raymond Doumbé - bass Patrick Marie-Magdelaine - guitar Guy Nwogang - drums Isabel Gonzalez - vocals Valérie Belinga - vocals ● #ManuDibango #Africadelik - Jazzwoche Burghausen 2018 Live at 49. Internationale Jazzwoche Burghausen, Germany, March 9, 2018 ▶ Internationale Jazzwoche Burghausen 2018 - https://bit.ly/2ZAC0se ▶ Internationale Jazzwoche Burghausen - Full Length Concerts - http://bit.ly/1BIsmTc ● SUBSCRIBE HERE ıı▶ http://bit.ly/2mMMd2W
cameroonian artist with great style.
This experimental animation unintentionally terrified children that saw it.
Puppet animation featuring a monkey singing and dancing to the jazz song 'Peanut Vendor'. Film is a recut of the 1934 animation ‘Peanut Vendor’. “Despite the interest generated by his first film, Tusalava (1929), the early 1930s were a difficult time for artist and animator Len Lye. A series of projects were abandoned through lack of funding, and he supported himself by designing book jackets. By 1934 he was doing relatively menial work in the Wembley studios of Associated Sound Film Industries, while trying to convince investors to back his latest project with his long-time friend and collaborator, Jack Ellitt, provisionally titled Quicksilver. Lye had already produced dozens of set and costume designs for this ambitious science-fiction musical comedy but, although an American producer e...
Remastered in 4K using Topaz Video Enhance AI and Final Cut Pro. Content belongs to The Len Lye Foundation. Song is "The Peanut Vendor" by Red Nichols & His Five Pennies.
uno de perez prado mejor Mambo
01 Breaking Bad (Main Title Theme) 02 Negro y Azul - Ballad of Heisenber 03 One By One 04 Walt Bandages His Leg 05 Zungguzungguzungguzeng (Short Version) 06 The Peanut Vendor 07 You're All They Talk About 08 Fallacies 09 Banderilla 10 The Morning After 11 Red Moon 12 The Missing Piece 13 End Credits - Season One
Watch the visualizer for The Wonderful World of Louis Armstrong Allstars’ “Peanut Vendor,” featuring Wynton Marsalis Order ‘A Gift to Pops’: https://Verve.lnk.to/AGTP Follow Louis Armstrong: https://www.facebook.com/louisarmstrong/ https://www.instagram.com/louisarmstrongofficial/ Follow Louis Armstrong Educational Foundation: https://www.facebook.com/louisarmstrongfoundation/ https://www.instagram.com/louisarmstrongfoundation/ Follow Wynton Marsalis: https://www.facebook.com/wyntonmarsalis https://www.instagram.com/wyntonmarsalis/ https://twitter.com/wyntonmarsalis #LouisArmstrong #TheWonderfulWorldOfLouisArmstrongAllStars #PeanutVendor Music video by The Wonderful World of Louis Armstrong All Stars performing The Peanut Vendor (Visualizer). A Verve Records release; © 2021 Ve...
This is the creepiest puppet film ever made, an experimental piece by filmmaker Len Lye in 1933.
Major best-selling recording of the Cuban ‘rumba.’ From 78rpm Victor 22483 - The Peanut Vender (El Manisero) (Simons) by Don Azpiazu and His Havana Casino Orchestra, vocal by Antonio Machin, recorded in NYC May 13, 1930 THE 1931 HITS ARCHIVE - here in one place, a good-quality library of best-sellers and songs that made an impact that were either released or enjoyed a major chunk of their popularity within the calendar year 1931 (some were recorded in 1930). . ---------------------------------------------------------------------------------------------- The three* MusicProf channels are home to The HITS ARCHIVES, YouTube’s most comprehensive collection of U.S. ‘popular music’ recordings from 1925 thru 1975. Discover thousands of original hit versions, conveniently arranged in year-by-yea...
On January 10th, 1969, George Harrison quit The Beatles. At lunchtime, Paul, John, Ringo, and the rest of the gang snuck out to get drunk, and when they returned to Twickenham, they broke bad for a while before passing out. Official Website http://itsmeimalex.com/ Buy It’s Me I’m Alex Merch! https://streamlabs.com/itsmeimalex/merch Send us a $TIP https://streamlabs.com/itsmeimalex Patron us on Patreon https://www.patreon.com/itsmeimalex Join the official IMIA Discord to get the latest updates and news about the show, and also hang out with some pretty cool people: https://discord.gg/BfrqeSD Twitch https://www.twitch.tv/itsmeimalex YouTube https://www.youtube.com/@itsmeimalex TikTok https://www.tiktok.com/@itsmeimalex Reddit https://www.reddit.com/r/itsmeimalex/ Threads ht...
Jane Powell performs "The Peanut Vendor" in the 1948 musical "Luxury Liner".
Emmanuel "Manu" N'Djoké Dibango (born 12 December 1933) is a Cameroonian saxophonist and vibraphone player. He developed a musical style fusing jazz, funk and traditional Cameroonian music. His father was a member of the Yabassi ethnic group, though his mother was a Duala. He is best known for his 1972 single "Soul Makossa".
Dibango was born in Douala, Cameroon. His father, Michel Manfred N'Djoké Dibango was a civil servant. The son of a farmer, he met his wife travelling by pirogue to her residence, Douala. A literate woman, she was a fashion designer, running her own small business. Both her ethnicity, the Duala, and his, the Yabassi, viewed this union of different ethnic groups with some disdain. Emmanuel had no siblings, although he had a stepbrother from his father's previous marriage who was four years older than he was. In Cameroon, one's ethnicity is dictated by their fathers, though he wrote in his autobiography, Three Kilos of Coffee, that he has "never been able to identify completely with either of [his] parents."
Makoosa... Akeela Mama
Ko mama sa maka makoosa Mama ko mama sa maka makoosa Mama ko mama sa maka makoosa
Heyyyy soul makoosa... Su maiyea
Heyyyy soul makoosa... Atteele
Heyyyy soul makoosa... Mosoma Mosoma
Heyyyy soul makoosa... coma coma coma coma coma coma coma coma coma coma coma
Tunga debo ombo e tunga nailso makosa
Anaamoona sisi aooo yasal makosa
Amona yeayea amona yeayea coma saou makosa
Tunga tunga umbo te tunga nesa makosa
Nikaso Mama ko mama sa maka makoosa
Mama ko mama sa maka makoosa Mama ko mama sa maka makoosa
Mama ko mama sa maka makoosa
Vido... he he
Nadea
Heyyyy soul makoosa... Makine
Heyyyy soul makoosa... Mangola wakina
Heyyyy soul makoosa... MOSAMA!
Heyyyy soul makoosa... ynot domo
MOODOK! mmmmm hmmmm
Tunga tunga umbo te tunga nesa makosa now makoosa makoosa makoosa makoosa makoosa
Bathaso mosoon
Yonse yonse batha yonse makoosa
Heyyyy soul makoosa
Heyyyy soul makoosa
Heyyyy soul makoosa
Heyyyy soul makoosa
Heyyyy soul makoosa
Heyyyy soul makoosa
Heyyyy soul makoosa
Heyyyy soul makoosa
Heyyyy soul makoosa... Ahfray way bali de salinglay makoosa
Heyyyy soul makoosa... Mondiday oak amoon oohenga akyeah