- published: 12 Aug 2008
- views: 433718
'+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; })); }); -->
HIDDEN ERROR: Usage of "Also known as" is not recognizedHIDDEN ERROR: Usage of "husband" is not recognized
Ú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".
Ú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.
Cha-Cha, Cha Cha, ChaCha or Chacha may refer to:
Viva is the second and most successful album of Klaus Dinger's (of Neu! fame) band La Düsseldorf. It has both "Rheinita", which was their most successful single, and "Cha Cha 2000", which has become their most famous song.
Different mixes/edits of "Rheinita" and "Viva" were released as a single; the single version of "Viva" is slightly longer and has a fadeout, the album version segues into "White Overalls". "Vögel" (Birds, in German) is a minute and a half of bird noises. All songs are written by Klaus Dinger.
All tracks composed by Klaus Dinger.
Cha Cha 2000 - Live in Tokyo 1996 Vol. 1 is a 1998 live album by the German group La! Neu?, recorded at a 1996 concert in Tokyo during the band's Japanese tour. The album consists of the second half of the 3½ hour concert, during which time the band played an extended 1¾ hour version of La Düsseldorf's 1978 song Cha Cha 2000 (which was written by La! Neu?'s frontman Klaus Dinger). The album is regarded as the pinnacle of La! Neu?'s and Dinger's artistic achievements by many, and continues to be the best selling album released by Captain Trip Records.
In early 1996 Klaus Dinger and Michael Rother met in Düsseldorf to review their ongoing legal battle with Metronome Records for the rights to the three original Neu! albums which they made together in the 1970s. Metronome had offered to compromise with Dinger and Rother by giving the two musicians a sizable proportion of the profits made from a reissue of the albums and by financing promotional activities, possibly including a world tour. Whilst Dinger was willing to accept this offer, Rother was more hesitant, still hoping to secure full ownership of the recordings. In the meantime, Dinger spoke to Ken Matsutani (the head of Captain Trip Records which was at that time releasing Dinger's post-Neu! back catalogue), and Matsutani began looking for venues in Japan for the upcoming tour. Matsutani discovered two venues which were interested in hosting Neu! - Muse Hall in Osaka and On Air West in Tokyo. In early 1996 Cluster (a band associated with Neu! and particularly with Michael Rother) had visited both venues as part of a world tour and produced the album Japan 1996 Live from the result. Dinger and Neu! (like Cluster) had a comparatively large following in Japan, and it was anticipated that any Neu! concerts arranged would be well attended.
Una linda guaracha a cargo de la reina rumba Celia Cruz!!!!!!!!!
Provided to YouTube by Zebralution GmbH Cha cha güere (Remastered) · Celia Cruz Baho Kende ℗ 1956 Seeco 7626 Released on: 2020-12-01 Composer: Severino Ramos Lyricist: Luis Reyes Music Publisher: Copyright control Auto-generated by YouTube.
Provided to YouTube by The-Source Cha Cha Guere (Original Version) · Celia Cruz · La Sonora Matancera · Ramos · Reyes La Cumbanchera - La Época Dorada de la Salsa ℗ 2023 Preciosa Released on: 2023-05-12 Composer: Ramos Composer: Reyes Auto-generated by YouTube.
#LaSonoraMatancera #DiscosFuentes --~-- SUSCRIBETE: https://goo.gl/Wyb1vw Instagram ►http://www.instagram.com/discosfuentes Visita: http://www.discosfuentes.com Haz parte de nuestras RedesSociales Facebook ►https://goo.gl/kSQSoZ Twitter ►www.twitter.com/discosfuentes Google + ►https://plus.google.com/+Discosfuentesedimusica TODOS LOS DERECHOS RESERVADOS ® La Sonora Matancera es un conjunto de música cubana fundado en la década de 1920 en la ciudad de Matanzas. Iniciando la década del treinta, la agrupación empezó adaptarse a los nuevos ritmos que aparecían por la época como también adaptando nuevos instrumentos, es el caso del piano de cola, que fue tocado por primera vez en el conjunto por Dámaso Pérez Prado, quien años después sería el Rey del Mambo. En 1935 la agrupación ...
Provided to YouTube by Bumeran Music CHA CHA GUERE · Celia Cruz · Luis Reyes Bacallao · Severino Ramos Celia Cruz sings ℗ Bumeran Music Released on: 2023-02-04 Auto-generated by YouTube.
18 Diciembre 2016 Tultepec Estado de México Sonora Fuerza Matancera Titulo: Cha Cha Güere Director: Felipe Paredes
Celia Cruz y la Sonora Matancera grabaron esta guaracha como todas las demas en radio "Progreso" en la habana Cuba...
UN DE LOS SONIDOS MAS GRANDE DE MEXICO SONIDO IMAGINACION HERMANOS RIVEROLL TEL. 26367019
HIDDEN ERROR: Usage of "Also known as" is not recognizedHIDDEN ERROR: Usage of "husband" is not recognized
Ú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".
Ú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.
(Kumbayea, yea, kumbayea)
(este es un ritmo que cualquiera se menea)
(Kumbayea, yea, kumbayea)
(este es un coro que cualquiera tararea)
Si tú ves una pareja bailando
y ninguno de los dos se menea
tú le dices pongan atención
para que gocen mi ritmo kumbayea
(Kumbayea, yea, kumbayea)
(este es un ritmo que cualquiera se menea)
(Kumbayea, yea, kumbayea)
(este es un coro que cualquiera tararea)
En una fiesta que estaba yo cantando
hubo un concurso de ritmo kumbayea
qué alegrÃa me dio cuando el premio
se lo ganó mi amiguita Dorotea
(Kumbayea, yea, kumbayea)
(este es un ritmo que cualquiera se menea)
(Kumbayea, yea, kumbayea)
(este es un coro que cualquiera tararea)
A mà me gusta cuando me presento
cantar un tema que pida mi gente
fue sensación mi sabroso carnaval
y ahora te traigo un ritito diferente
(Kumbayea, yea, kumbayea)
(este es un coro que cualquiera tararea)
como hay tanta gente tú puedes cantar
y aunque desafines no se va a notar
(Kumbayea, yea, kumbayea)
(este es un coro que cualquiera tararea)
lo mismo lo canta el de cara bonita
como puede cantarlo el de cara feita
(Kumbayea, yea, kumbayea)
(este es un coro que cualquiera tararea)
a mà sà me gusta brindarle a mi gente
cuando me presento algo diferente
(Kumbayea, yea, kumbayea)
(este es un coro que cualquiera tararea)
ay, qué lindo tararean,
con mi ritmo se menean
(Kumbayea, yea, kumbayea)
este tema tan sabroso
(Kumbayea, yea, kumbayea)
tiene un algo sin igual
(Kumbayea, yea, kumbayea)
no sólo se tararea
(Kumbayea, kumbayea, kumbayea)
también se puede bailar
(Kumbayea, yea, kumbayea)
pongan los brazos arriba
(Kumbayea, yea, kumbayea)
y bailen el kumbayea
(Kumbayea, yea, kumbayea)
mira, mira, mira, mira como está gozando
(Kumbayea, yea, kumbayea)
ay, mi vecina Dorotea
(Kumbayea, yea, kumbayea)
kumbayea, kumbayea
(Kumbayea, yea, kumbayea)