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

Celia Cruz

Úrsula Hilaria Celia de la Caridad Cruz Alfonso also known by her stage name Celia Cruz (October 21, 1925 – July 16, 2003) was a Cuban singer of latin music. The most popular latin artist of the 20th century, she earned twenty-three gold albums and was a recipient of the National Medal of Arts. She was renowned internationally as the "Queen of Salsa", "La Guarachera de Cuba", as well as The Queen of Latin Music.

She spent much of her career working in the United States and several Latin American countries. Leila Cobo of Billboard Magazine once said "Cruz is indisputably the best known and most influential female figure in the history of Cuban and Latin music".

Early life

Úrsula Hilaria Celia de la Caridad Cruz Alfonso was born on October 21, 1925 in the diverse, working-class neighborhood of Santos Suárez in Havana, Cuba, the second of four children. Her father, Simon Cruz, was a railroad stoker and her mother, Catalina Alfonso was a homemaker who took care of an extended family of fourteen.

Podcasts:

Celia Cruz

ALBUMS

Born: 1925-10-21

Died: 2003-07-16

  • Celia Cruz - La Negra Tiene Tumbao (Official Video)

    Vídeo oficial de Celia Cruz de su tema 'La Negra Tiene Tumbao'. Haz clic aquí para escuchar a Celia Cruz en Spotify: http://smarturl.it/CCRSpot?IQid=LNTT Incluido en La Negra Tiene Tumbao. Haz clic aquí para comprar el track o el álbum en iTunes: http://smarturl.it/CCRNTTiTunes?IQid=... Google Play: http://smarturl.it/CCZNTTPlay?IQid=LNTT Amazon: http://smarturl.it/CCRNTTAm?IQid=LNTT Más de Celia Cruz Oye Como Va: https://youtu.be/z9HwpFdC6tE Rie Y Llora: https://youtu.be/83S-KtvGM2M Yo Vivré: https://youtu.be/t920avfbQY0 Pincha aquí http://smarturl.it/CRPlaylist?IQid=LNTT para escuchar más vídeos de buen Cuban Roots. Sigue a Celia Cruz Página web: http://celiacruz.com/ Facebook: https://www.facebook.com/Celia-Cruz-7... Twitter: https://twitter.com/CeliaCruzLegacy Suscríbete al canal ...

    published: 25 Oct 2009
  • C e l i a C r u z Greatest Hits ~ Latin Music ~ Top 10 Hits of All Time

    C e l i a C r u z Greatest Hits ~ Latin Music ~ Top 10 Hits of All Time [00:00:00] - 01. L̲a̲̲ N̲e̲̲gra̲̲ T̲i̲̲e̲̲ne̲̲ T̲u̲̲mba̲̲o̲̲ [00:04:19] - 02. R̲i̲̲e̲̲ Y̲ L̲lo̲̲ra̲̲ [00:07:40] - 03. Q̲u̲̲i̲̲mba̲̲ra̲̲ [00:12:58] - 04. T̲e̲̲ B̲u̲̲sco̲̲ [00:17:07] - 05. L̲a̲̲ V̲i̲̲da̲̲ E̲̲̲s U̲̲̲n C̲a̲̲rna̲̲va̲̲l [00:21:46] - 06. T̲o̲̲do̲̲ M̲e̲̲ G̲u̲̲sto̲̲ D̲e̲̲ T̲i̲̲ [00:24:24] - 07. U̲̲̲ste̲̲d A̲̲̲bu̲̲só [00:28:59] - 08. Y̲o̲̲ V̲i̲̲vi̲̲re̲̲ [00:33:31] - 09. L̲a̲̲ N̲e̲̲gra̲̲ T̲i̲̲e̲̲ne̲̲ T̲u̲̲mba̲̲o̲̲ #CeliaCruz #Latin #Latinmusic #Latinsongs Tags: greatest hits, playlist, best songs, album, top songs, Latin music, Latin songs

    published: 13 Jun 2023
  • Celia Cruz - Rie Y Llora (Video)

    Vídeo oficial de Celia Cruz de su tema 'Rie Y Llora'. Haz clic aquí para escuchar a Celia Cruz en Spotify: http://smarturl.it/CCRSpot?IQid=RYL Incluido en Regalo del Alma. Haz clic aquí para comprar el track o el álbum en iTunes: http://smarturl.it/CCRRAiTunes?IQid=RYL Google Play: http://smarturl.it/CCRRYLPlay?IQid=RYL Amazon: http://smarturl.it/CCRRAAm?IQid=RYL Más de Celia Cruz Oye Como Va: https://youtu.be/z9HwpFdC6tE La Negra Tiene Tumbao: https://youtu.be/imeXSRNRMeg Yo Vivré: https://youtu.be/t920avfbQY0 Pincha aquí http://smarturl.it/CRPlaylist?IQid=RYL para escuchar más vídeos de buen Cuban Roots. Sigue a Celia Cruz Página web: http://celiacruz.com/ Facebook: https://www.facebook.com/Celia-Cruz-7... Twitter: https://twitter.com/CeliaCruzLegacy Suscríbete al canal de Celia Cru...

    published: 25 Oct 2009
  • La Vida Es Un Carnaval - Celia Cruz

    Todo aquel que piense que la vida es desigual, tiene que saber que no es asi, que la vida es una hermosura, hay que vivirla. Todo aquel que piense que esta solo y que esta mal, tiene que saber que no es asi, que en la vida no hay nadie solo, siempre hay alguien. Ay, no ha que llorar, que la vida es un carnaval, es mas bello vivir cantando. Oh, oh, oh, Ay, no hay que llorar, que la vida es un carnaval y las penas se van cantando. Todo aquel que piense que la vida siempre es cruel, tiene que saber que no es asi, que tan solo hay momentos malos, y todo pasa. Todo aquel que piense que esto nunca va a cambiar, tiene que saber que no es asi, que al mal tiempo buena cara, y todo pasa. Ay, no ha que llorar, que la vida es un carnaval, es mas bello vivir cantando. Oh, oh, o...

    published: 01 May 2007
  • Celia Cruz - La vida es un carnaval

    Súper Sábado Sensacional es el programa de variedades con mayor raiting de la televisión venezolana. Con casi 40 años al aire, este gran magazine ha sufrido innumerables cambios durante su historia y ha llegado a alcanzar un éxito absoluto en el exterior, razón por la cual es transmitido en la mayoría de los países hispano parlante. Su estilo está en constante renovación, pero aún conserva la esencia musical que su creador, el desparecido Amador Bendayán, le otorgó desde el inicio de sus transmisiones en el año 1970. Este programa ha sido consagrado como la imagen de la música en Venezuela, pues es el espacio predilecto de los cantantes de moda para hacer el lanzamiento de sus temas. Abarca diversas secciones que varían de acuerdo a la época y a las exigencias del público en ese moment...

    published: 15 Jul 2013
  • La Vida Es Un Carnaval

    Provided to YouTube by Universal Music Group La Vida Es Un Carnaval · Celia Cruz Para La Eternidad ℗ 1998 Universal Music Latino Released on: 2016-05-27 Producer: Isidro Infante Associated Performer, Vocals: Celia Cruz Composer Lyricist: Victor Daniel Auto-generated by YouTube.

    published: 31 Jul 2018
  • Celia Cruz Exitos Mix - 20 Grandes Éxitos

    Celia Cruz Exitos Mix - 20 Grandes Éxitos Celia Cruz Exitos Mix - 20 Grandes Éxitos Celia Cruz Exitos Mix - 20 Grandes Éxitos

    published: 25 Oct 2018
  • Celia Cruz - Oye Como Va (Video Version)

    Vídeo oficial de Celia Cruz de su tema 'Oye Como Va'. Haz clic aquí para escuchar a Celia Cruz en Spotify: http://smarturl.it/CCRSpot?IQid=CCOCV Incluido en Siempre Viviré. Haz clic aquí para comprar el track o el álbum en iTunes: http://smarturl.it/CCRSViTunes?IQid=C... Google Play: http://smarturl.it/CCROCVPlay?IQid=CCOCV Amazon: http://smarturl.it/CCRSVAm?IQid=CCOCV Más de Celia Cruz La Negra Tiene Tumbao: https://youtu.be/imeXSRNRMeg Rie Y Llora: https://youtu.be/83S-KtvGM2M Yo Vivré: https://youtu.be/t920avfbQY0 Pincha aquí http://smarturl.it/CRPlaylist?IQid=CCOCV para escuchar más vídeos de buen Cuban Roots. Sigue a Celia Cruz Página web: http://celiacruz.com/ Facebook: https://www.facebook.com/Celia-Cruz-7... Twitter: https://twitter.com/CeliaCruzLegacy Suscríbete al canal de C...

    published: 25 Oct 2009
  • C.e.l.i.a C.r.u.z Greatest Hits ~ Top 100 Artists To Listen in 2023

    C.e.l.i.a C.r.u.z Greatest Hits ~ Top 100 Artists To Listen in 2023 [00:00:00] - 01. R̲i̲̲e̲̲ Y̲ L̲lo̲̲ra̲̲ [00:03:20] - 02. L̲a̲̲ V̲i̲̲da̲̲ E̲̲̲s U̲̲̲n C̲a̲̲rna̲̲va̲̲l [00:07:56] - 03. L̲a̲̲ N̲e̲̲gra̲̲ T̲i̲̲e̲̲ne̲̲ T̲u̲̲mba̲̲o̲̲ [00:12:15] - 04. Q̲u̲̲i̲̲mba̲̲ra̲̲ [00:17:31] - 05. R̲i̲̲e̲̲ Y̲ L̲lo̲̲ra̲̲ [00:20:51] - 06. L̲a̲̲ V̲i̲̲da̲̲ E̲̲̲s U̲̲̲n C̲a̲̲rna̲̲va̲̲l [00:25:27] - 07. L̲a̲̲ N̲e̲̲gra̲̲ T̲i̲̲e̲̲ne̲̲ T̲u̲̲mba̲̲o̲̲ [00:29:46] - 08. Q̲u̲̲i̲̲mba̲̲ra̲̲ [00:35:02] - 09. A̲̲̲lo̲̲xne̲̲ [00:36:49] - 10. A̲̲̲lo̲̲xne̲̲ #CeliaCruz #topsongs #topartists #greatesthits Tags: greatest hits, playlist, best songs, album, top songs, top artist, 2023, Disco music 2023, dance mix

    published: 07 Apr 2023
  • Celia Cruz - Yo Viviré (I Will Survive)

    Yo Viviré (I Will Survive) · Celia Cruz Siempre Viviré ℗ 2000 Sony Music Entertainment Inc. Released on: 2000-09-26 http://vevo.ly/cGGRuW

    published: 11 Aug 2022
developed with YouTube
Celia Cruz - La Negra Tiene Tumbao (Official Video)
4:20

Celia Cruz - La Negra Tiene Tumbao (Official Video)

  • Order:
  • Duration: 4:20
  • Uploaded Date: 25 Oct 2009
  • views: 139477904
Vídeo oficial de Celia Cruz de su tema 'La Negra Tiene Tumbao'. Haz clic aquí para escuchar a Celia Cruz en Spotify: http://smarturl.it/CCRSpot?IQid=LNTT Incluido en La Negra Tiene Tumbao. Haz clic aquí para comprar el track o el álbum en iTunes: http://smarturl.it/CCRNTTiTunes?IQid=... Google Play: http://smarturl.it/CCZNTTPlay?IQid=LNTT Amazon: http://smarturl.it/CCRNTTAm?IQid=LNTT Más de Celia Cruz Oye Como Va: https://youtu.be/z9HwpFdC6tE Rie Y Llora: https://youtu.be/83S-KtvGM2M Yo Vivré: https://youtu.be/t920avfbQY0 Pincha aquí http://smarturl.it/CRPlaylist?IQid=LNTT para escuchar más vídeos de buen Cuban Roots. Sigue a Celia Cruz Página web: http://celiacruz.com/ Facebook: https://www.facebook.com/Celia-Cruz-7... Twitter: https://twitter.com/CeliaCruzLegacy Suscríbete al canal de Celia Cruz en YouTube: http://smarturl.it/CCRSub?IQid=LNTT --------- Letras: La negra tiene tumba'o (tiene tumba'o, tiene tumba'o) Y no camina de la'o (y no camina de la'o, y no camina de la'o) La negra tiene tumba'o (hay tumba'o) Nunca camina de la'o (nunca camina de la'o de la'o) Me tiene tumba'o, me tiene tumba'o Anda derechito, no camina de la'o Me tiene tumba'o, me tiene tumba'o"
https://wn.com/Celia_Cruz_La_Negra_Tiene_Tumbao_(Official_Video)
C e l i a C r u z Greatest Hits ~ Latin Music ~ Top 10 Hits of All Time
38:00

C e l i a C r u z Greatest Hits ~ Latin Music ~ Top 10 Hits of All Time

  • Order:
  • Duration: 38:00
  • Uploaded Date: 13 Jun 2023
  • views: 339550
C e l i a C r u z Greatest Hits ~ Latin Music ~ Top 10 Hits of All Time [00:00:00] - 01. L̲a̲̲ N̲e̲̲gra̲̲ T̲i̲̲e̲̲ne̲̲ T̲u̲̲mba̲̲o̲̲ [00:04:19] - 02. R̲i̲̲e̲̲ Y̲ L̲lo̲̲ra̲̲ [00:07:40] - 03. Q̲u̲̲i̲̲mba̲̲ra̲̲ [00:12:58] - 04. T̲e̲̲ B̲u̲̲sco̲̲ [00:17:07] - 05. L̲a̲̲ V̲i̲̲da̲̲ E̲̲̲s U̲̲̲n C̲a̲̲rna̲̲va̲̲l [00:21:46] - 06. T̲o̲̲do̲̲ M̲e̲̲ G̲u̲̲sto̲̲ D̲e̲̲ T̲i̲̲ [00:24:24] - 07. U̲̲̲ste̲̲d A̲̲̲bu̲̲só [00:28:59] - 08. Y̲o̲̲ V̲i̲̲vi̲̲re̲̲ [00:33:31] - 09. L̲a̲̲ N̲e̲̲gra̲̲ T̲i̲̲e̲̲ne̲̲ T̲u̲̲mba̲̲o̲̲ #CeliaCruz #Latin #Latinmusic #Latinsongs Tags: greatest hits, playlist, best songs, album, top songs, Latin music, Latin songs
https://wn.com/C_E_L_I_A_C_R_U_Z_Greatest_Hits_~_Latin_Music_~_Top_10_Hits_Of_All_Time
Celia Cruz - Rie Y Llora (Video)
3:22

Celia Cruz - Rie Y Llora (Video)

  • Order:
  • Duration: 3:22
  • Uploaded Date: 25 Oct 2009
  • views: 67564926
Vídeo oficial de Celia Cruz de su tema 'Rie Y Llora'. Haz clic aquí para escuchar a Celia Cruz en Spotify: http://smarturl.it/CCRSpot?IQid=RYL Incluido en Regalo del Alma. Haz clic aquí para comprar el track o el álbum en iTunes: http://smarturl.it/CCRRAiTunes?IQid=RYL Google Play: http://smarturl.it/CCRRYLPlay?IQid=RYL Amazon: http://smarturl.it/CCRRAAm?IQid=RYL Más de Celia Cruz Oye Como Va: https://youtu.be/z9HwpFdC6tE La Negra Tiene Tumbao: https://youtu.be/imeXSRNRMeg Yo Vivré: https://youtu.be/t920avfbQY0 Pincha aquí http://smarturl.it/CRPlaylist?IQid=RYL para escuchar más vídeos de buen Cuban Roots. Sigue a Celia Cruz Página web: http://celiacruz.com/ Facebook: https://www.facebook.com/Celia-Cruz-7... Twitter: https://twitter.com/CeliaCruzLegacy Suscríbete al canal de Celia Cruz en YouTube: http://smarturl.it/CCRSub?IQid=RYL --------- Letras: Agarrate fuerte y ya no te sueltes Rie...Llora que a cada cual le llega su hora Rie...Llora vive tu vida ygozala toda La la la la la la La la la la la la La la la la la la la la la la la la la la La la la la la la la La la la la la la la"
https://wn.com/Celia_Cruz_Rie_Y_Llora_(Video)
La Vida Es Un Carnaval - Celia Cruz
4:38

La Vida Es Un Carnaval - Celia Cruz

  • Order:
  • Duration: 4:38
  • Uploaded Date: 01 May 2007
  • views: 97270743
Todo aquel que piense que la vida es desigual, tiene que saber que no es asi, que la vida es una hermosura, hay que vivirla. Todo aquel que piense que esta solo y que esta mal, tiene que saber que no es asi, que en la vida no hay nadie solo, siempre hay alguien. Ay, no ha que llorar, que la vida es un carnaval, es mas bello vivir cantando. Oh, oh, oh, Ay, no hay que llorar, que la vida es un carnaval y las penas se van cantando. Todo aquel que piense que la vida siempre es cruel, tiene que saber que no es asi, que tan solo hay momentos malos, y todo pasa. Todo aquel que piense que esto nunca va a cambiar, tiene que saber que no es asi, que al mal tiempo buena cara, y todo pasa. Ay, no ha que llorar, que la vida es un carnaval, es mas bello vivir cantando. Oh, oh, oh, Ay, no hay que llorar, que la vida es un carnaval y las penas se van cantando. Para aquellos que se quejan tanto. Para aquellos que solo critican. Para aquellos que usan las armas. Para aquellos que nos contaminan. Para aquellos que hacen la guerra. Para aquellos que viven pecando. Para aquellos nos maltratan. Para aquellos que nos contagian.
https://wn.com/La_Vida_Es_Un_Carnaval_Celia_Cruz
Celia Cruz - La vida es un carnaval
4:37

Celia Cruz - La vida es un carnaval

  • Order:
  • Duration: 4:37
  • Uploaded Date: 15 Jul 2013
  • views: 35544386
Súper Sábado Sensacional es el programa de variedades con mayor raiting de la televisión venezolana. Con casi 40 años al aire, este gran magazine ha sufrido innumerables cambios durante su historia y ha llegado a alcanzar un éxito absoluto en el exterior, razón por la cual es transmitido en la mayoría de los países hispano parlante. Su estilo está en constante renovación, pero aún conserva la esencia musical que su creador, el desparecido Amador Bendayán, le otorgó desde el inicio de sus transmisiones en el año 1970. Este programa ha sido consagrado como la imagen de la música en Venezuela, pues es el espacio predilecto de los cantantes de moda para hacer el lanzamiento de sus temas. Abarca diversas secciones que varían de acuerdo a la época y a las exigencias del público en ese momento, tales como secciones de premios, dramáticas, cómicas, entre otras. Incluye la transmisión de los más importantes eventos de belleza y grandes espectáculos multitudinarios que son llevados a cabo en los más importantes estadios y plazas de toros del interior del país. Su actual animador, nuestro querido Leonardo Villalobos, con una larga trayectoria en el medio artístico, ha logrado entrar en los hogares venezolanos, gracias a su gran pasión y carisma arriba de los escenarios de Súper Sábado Sensacional.
https://wn.com/Celia_Cruz_La_Vida_Es_Un_Carnaval
La Vida Es Un Carnaval
4:39

La Vida Es Un Carnaval

  • Order:
  • Duration: 4:39
  • Uploaded Date: 31 Jul 2018
  • views: 47768115
Provided to YouTube by Universal Music Group La Vida Es Un Carnaval · Celia Cruz Para La Eternidad ℗ 1998 Universal Music Latino Released on: 2016-05-27 Producer: Isidro Infante Associated Performer, Vocals: Celia Cruz Composer Lyricist: Victor Daniel Auto-generated by YouTube.
https://wn.com/La_Vida_Es_Un_Carnaval
Celia Cruz Exitos Mix - 20 Grandes Éxitos
46:53

Celia Cruz Exitos Mix - 20 Grandes Éxitos

  • Order:
  • Duration: 46:53
  • Uploaded Date: 25 Oct 2018
  • views: 721091
Celia Cruz Exitos Mix - 20 Grandes Éxitos Celia Cruz Exitos Mix - 20 Grandes Éxitos Celia Cruz Exitos Mix - 20 Grandes Éxitos
https://wn.com/Celia_Cruz_Exitos_Mix_20_Grandes_Éxitos
Celia Cruz - Oye Como Va (Video Version)
4:26

Celia Cruz - Oye Como Va (Video Version)

  • Order:
  • Duration: 4:26
  • Uploaded Date: 25 Oct 2009
  • views: 34959926
Vídeo oficial de Celia Cruz de su tema 'Oye Como Va'. Haz clic aquí para escuchar a Celia Cruz en Spotify: http://smarturl.it/CCRSpot?IQid=CCOCV Incluido en Siempre Viviré. Haz clic aquí para comprar el track o el álbum en iTunes: http://smarturl.it/CCRSViTunes?IQid=C... Google Play: http://smarturl.it/CCROCVPlay?IQid=CCOCV Amazon: http://smarturl.it/CCRSVAm?IQid=CCOCV Más de Celia Cruz La Negra Tiene Tumbao: https://youtu.be/imeXSRNRMeg Rie Y Llora: https://youtu.be/83S-KtvGM2M Yo Vivré: https://youtu.be/t920avfbQY0 Pincha aquí http://smarturl.it/CRPlaylist?IQid=CCOCV para escuchar más vídeos de buen Cuban Roots. Sigue a Celia Cruz Página web: http://celiacruz.com/ Facebook: https://www.facebook.com/Celia-Cruz-7... Twitter: https://twitter.com/CeliaCruzLegacy Suscríbete al canal de Celia Cruz en YouTube: http://smarturl.it/CCRSub?IQid=CCOCV --------- Letras: Oye como ya, mi ritmo Bueno pa goza, mulata Oye como va, mi ritmo Bueno pa goza, mulata Si t no sabes bailar Si ests peleado con el son Sgueme marcando el paso Que te aseguro que es de lo ms sabrosn Voy pa la rumba, la rumba, la rumba Porque me llama, me llama, me llama Y necesito que suene el coro Para que se ponga a vacilar, y te digo"
https://wn.com/Celia_Cruz_Oye_Como_Va_(Video_Version)
C.e.l.i.a C.r.u.z Greatest Hits ~ Top 100 Artists To Listen in 2023
38:46

C.e.l.i.a C.r.u.z Greatest Hits ~ Top 100 Artists To Listen in 2023

  • Order:
  • Duration: 38:46
  • Uploaded Date: 07 Apr 2023
  • views: 889898
C.e.l.i.a C.r.u.z Greatest Hits ~ Top 100 Artists To Listen in 2023 [00:00:00] - 01. R̲i̲̲e̲̲ Y̲ L̲lo̲̲ra̲̲ [00:03:20] - 02. L̲a̲̲ V̲i̲̲da̲̲ E̲̲̲s U̲̲̲n C̲a̲̲rna̲̲va̲̲l [00:07:56] - 03. L̲a̲̲ N̲e̲̲gra̲̲ T̲i̲̲e̲̲ne̲̲ T̲u̲̲mba̲̲o̲̲ [00:12:15] - 04. Q̲u̲̲i̲̲mba̲̲ra̲̲ [00:17:31] - 05. R̲i̲̲e̲̲ Y̲ L̲lo̲̲ra̲̲ [00:20:51] - 06. L̲a̲̲ V̲i̲̲da̲̲ E̲̲̲s U̲̲̲n C̲a̲̲rna̲̲va̲̲l [00:25:27] - 07. L̲a̲̲ N̲e̲̲gra̲̲ T̲i̲̲e̲̲ne̲̲ T̲u̲̲mba̲̲o̲̲ [00:29:46] - 08. Q̲u̲̲i̲̲mba̲̲ra̲̲ [00:35:02] - 09. A̲̲̲lo̲̲xne̲̲ [00:36:49] - 10. A̲̲̲lo̲̲xne̲̲ #CeliaCruz #topsongs #topartists #greatesthits Tags: greatest hits, playlist, best songs, album, top songs, top artist, 2023, Disco music 2023, dance mix
https://wn.com/C.E.L.I.A_C.R.U.Z_Greatest_Hits_~_Top_100_Artists_To_Listen_In_2023
Celia Cruz - Yo Viviré (I Will Survive)
4:33

Celia Cruz - Yo Viviré (I Will Survive)

  • Order:
  • Duration: 4:33
  • Uploaded Date: 11 Aug 2022
  • views: 2620576
Yo Viviré (I Will Survive) · Celia Cruz Siempre Viviré ℗ 2000 Sony Music Entertainment Inc. Released on: 2000-09-26 http://vevo.ly/cGGRuW
https://wn.com/Celia_Cruz_Yo_Viviré_(I_Will_Survive)
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Celia Cruz - La Negra Tiene Tumbao (Official Video)
    4:20
    Celia Cruz - La Negra Tiene Tumbao (Official Video)remove from playlist
  • C e l i a C r u z Greatest Hits ~ Latin Music ~ Top 10 Hits of All Time
    38:00
    C e l i a C r u z Greatest Hits ~ Latin Music ~ Top 10 Hits of All Timeremove from playlist
  • Celia Cruz - Rie Y Llora (Video)
    3:22
    Celia Cruz - Rie Y Llora (Video)remove from playlist
  • La Vida Es Un Carnaval - Celia Cruz
    4:38
    La Vida Es Un Carnaval - Celia Cruzremove from playlist
  • Celia Cruz - La vida es un carnaval
    4:37
    Celia Cruz - La vida es un carnavalremove from playlist
  • La Vida Es Un Carnaval
    4:39
    La Vida Es Un Carnavalremove from playlist
  • Celia Cruz Exitos Mix - 20 Grandes Éxitos
    46:53
    Celia Cruz Exitos Mix - 20 Grandes Éxitosremove from playlist
  • Celia Cruz - Oye Como Va (Video Version)
    4:26
    Celia Cruz - Oye Como Va (Video Version)remove from playlist
  • C.e.l.i.a C.r.u.z Greatest Hits ~ Top 100 Artists To Listen in 2023
    38:46
    C.e.l.i.a C.r.u.z Greatest Hits ~ Top 100 Artists To Listen in 2023remove from playlist
  • Celia Cruz - Yo Viviré (I Will Survive)
    4:33
    Celia Cruz - Yo Viviré (I Will Survive)remove from playlist
developed with YouTube
PLAYLIST TIME:

Celia Cruz - La Negra Tiene Tumbao (Official Video)

Vídeo oficial de Celia Cruz de su tema 'La Negra Tiene Tumbao'. Haz clic aquí para escuchar a Celia Cruz en Spotify: http://smarturl.it/CCRSpot?IQid=LNTT Incluido en La Negra Tiene Tumbao. Haz clic aquí para comprar el track o el álbum en iTunes: http://smarturl.it/CCRNTTiTunes?IQid=... Google Play: http://smarturl.it/CCZNTTPlay?IQid=LNTT Amazon: http://smarturl.it/CCRNTTAm?IQid=LNTT Más de Celia Cruz Oye Como Va: https://youtu.be/z9HwpFdC6tE Rie Y Llora: https://youtu.be/83S-KtvGM2M Yo Vivré: https://youtu.be/t920avfbQY0 Pincha aquí http://smarturl.it/CRPlaylist?IQid=LNTT para escuchar más vídeos de buen Cuban Roots. Sigue a Celia Cruz Página web: http://celiacruz.com/ Facebook: https://www.facebook.com/Celia-Cruz-7... Twitter: https://twitter.com/CeliaCruzLegacy Suscríbete al canal de Celia Cruz en YouTube: http://smarturl.it/CCRSub?IQid=LNTT --------- Letras: La negra tiene tumba'o (tiene tumba'o, tiene tumba'o) Y no camina de la'o (y no camina de la'o, y no camina de la'o) La negra tiene tumba'o (hay tumba'o) Nunca camina de la'o (nunca camina de la'o de la'o) Me tiene tumba'o, me tiene tumba'o Anda derechito, no camina de la'o Me tiene tumba'o, me tiene tumba'o"
4:20
Celia Cruz - La Negra Tiene Tumbao (Official Video)
Vídeo oficial de Celia Cruz de su tema 'La Negra Tiene Tumbao'. Haz clic aquí para escucha...
published: 25 Oct 2009
Play in Full Screen
38:00
C e l i a C r u z Greatest Hits ~ Latin Music ~ Top 10 Hits of All Time
C e l i a C r u z Greatest Hits ~ Latin Music ~ Top 10 Hits of All Time [00:00:00] - 01. ...
published: 13 Jun 2023
Play in Full Screen
3:22
Celia Cruz - Rie Y Llora (Video)
Vídeo oficial de Celia Cruz de su tema 'Rie Y Llora'. Haz clic aquí para escuchar a Celia ...
published: 25 Oct 2009
Play in Full Screen
4:38
La Vida Es Un Carnaval - Celia Cruz
Todo aquel que piense que la vida es desigual, tiene que saber que no es asi, que la vid...
published: 01 May 2007
Play in Full Screen
4:37
Celia Cruz - La vida es un carnaval
Súper Sábado Sensacional es el programa de variedades con mayor raiting de la televisión v...
published: 15 Jul 2013
Play in Full Screen
4:39
La Vida Es Un Carnaval
Provided to YouTube by Universal Music Group La Vida Es Un Carnaval · Celia Cruz Para La...
published: 31 Jul 2018
Play in Full Screen
46:53
Celia Cruz Exitos Mix - 20 Grandes Éxitos
Celia Cruz Exitos Mix - 20 Grandes Éxitos Celia Cruz Exitos Mix - 20 Grandes Éxitos Celia ...
published: 25 Oct 2018
Play in Full Screen
4:26
Celia Cruz - Oye Como Va (Video Version)
Vídeo oficial de Celia Cruz de su tema 'Oye Como Va'. Haz clic aquí para escuchar a Celia ...
published: 25 Oct 2009
Play in Full Screen
38:46
C.e.l.i.a C.r.u.z Greatest Hits ~ Top 100 Artists To Listen in 2023
C.e.l.i.a C.r.u.z Greatest Hits ~ Top 100 Artists To Listen in 2023 [00:00:00] - 01. R̲i̲...
published: 07 Apr 2023
Play in Full Screen
4:33
Celia Cruz - Yo Viviré (I Will Survive)
Yo Viviré (I Will Survive) · Celia Cruz Siempre Viviré ℗ 2000 Sony Music Entertainment I...
published: 11 Aug 2022
Play in Full Screen

Celia Cruz

Úrsula Hilaria Celia de la Caridad Cruz Alfonso also known by her stage name Celia Cruz (October 21, 1925 – July 16, 2003) was a Cuban singer of latin music. The most popular latin artist of the 20th century, she earned twenty-three gold albums and was a recipient of the National Medal of Arts. She was renowned internationally as the "Queen of Salsa", "La Guarachera de Cuba", as well as The Queen of Latin Music.

She spent much of her career working in the United States and several Latin American countries. Leila Cobo of Billboard Magazine once said "Cruz is indisputably the best known and most influential female figure in the history of Cuban and Latin music".

Early life

Úrsula Hilaria Celia de la Caridad Cruz Alfonso was born on October 21, 1925 in the diverse, working-class neighborhood of Santos Suárez in Havana, Cuba, the second of four children. Her father, Simon Cruz, was a railroad stoker and her mother, Catalina Alfonso was a homemaker who took care of an extended family of fourteen.

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