- published: 22 Feb 2008
- views: 7940113
'+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; })); }); -->
Enrico Caruso (Italian pronunciation: [enˈriːko kaˈruːzo]; February 25, 1873 – August 2, 1921) was an Italian operatic tenor. He sang to great acclaim at the major opera houses of Europe and the Americas, appearing in a wide variety of roles from the Italian and French repertoires that ranged from the lyric to the dramatic. Caruso also made approximately 260 commercially released recordings from 1902 to 1920. All of these recordings, which span most of his stage career, are available today on CDs and as digital downloads.
Enrico Caruso came from a poor but not destitute background. Born in Naples in the Via San Giovannello agli Ottocalli 7 on February 25, 1873, he was baptised the next day in the adjacent Church of San Giovanni e Paolo. Called Errico in accordance with the Neapolitan language, he would later adopt the formal Italian version of his given name, Enrico (the equivalent of "Henry" in English). This change came at the suggestion of a singing teacher, Guglielmo Vergine, with whom he began lessons at the age of 16.
The following discography contains all known published recordings by Enrico Caruso made from 1902 through 1920. The recordings are listed chronologically by recording date, title, composer and matrix number. A list of unpublished recordings follows the main discography. When more than one "take" was recorded for a selection, only the published take number appears after the matrix number; Occasionally, multiple takes of the same selection have been issued. If only one take was recorded, no take number is listed after the matrix number. Matrix numbers should not be confused with catalog numbers.
The Gramophone & Typewriter Co. Ltd. Milan, 11 April 1902. Accompanied by Salvatore Cottone, piano.
"Santa Lucia" (Italian: [ˈsanta luˈtʃiːa], Neapolitan: [ˈsandə luˈʃiːə]) is a traditional Neapolitan song. It was transcribed by Teodoro Cottrau (1827–1879) and published by the Cottrau firm, as a "barcarolla", at Naples in 1849. Cottrau translated it from Neapolitan into Italian during the first stage of the Risorgimento, the first Neapolitan song to be given Italian lyrics. Its transcriber, who is very often credited as its composer, was the son of the French-born Italian composer and collector of songs Guillaume Louis Cottrau (1797–1847).
Various sources credit A. Longo with the music, 1835.
The original lyrics of "Santa Lucia" celebrate the picturesque waterfront district, Borgo Santa Lucia, in the Bay of Naples, in the invitation of a boatman to take a turn in his boat, to better enjoy the cool of the evening.
In the United States, an early edition of the song, with an English translation by Thomas Oliphant, was published by M. McCaffrey, Baltimore. Perhaps the definitive 20th century recording of the song was that of Enrico Caruso, the great Neapolitan opera singer.
Santa Lucía (Tucumán) is a settlement in Tucumán Province in northern Argentina.
Coordinates: 27°06′S 65°31′W / 27.100°S 65.517°W / -27.100; -65.517
Santa Lucia is a Baroque-style Roman Catholic church located on Strada Cavour in central Parma, region of Emilia Romagna, Italy.
A church on the site called San Michele in Canale is first mentioned in documents from 1223. The present building was erected by the Confraternity of San Carlo Borromeo in 1615. The structure was enlarged and facade designed by the architect Mauro Oddi and in 1697, reconsecrated and named Santa Lucia.
The facade sculptures of Saints Ilario and Agatha and the façade medallion were completed by Giacomo Barbieri.
The main altar has a canvas depicting the Last Communion and Martyrdom of St Lucy by the Venetian painter Sebastiano Ricci. The ceiling quadratura frescoes were painted by Alessandro Baratta (painter). The church also has paintings by Giulio Cesare Amidano and Antonio Ligori. The cupola frescoes were painted by the Theatine priest Filippo Maria Galletti.
Coordinates: 44°48′9.07″N 10°19′43.95″E / 44.8025194°N 10.3288750°E / 44.8025194; 10.3288750
Digitally remastered version of a recording from the 1st of February 1904 (room 826, Carnegie Hall, NY). You may want to look at my non-profit website for more Caruso info: http://www.enricocaruso.dk (English). I have uploaded all of Caruso's recordings (in different versions/restorations) to that website. Una furtiva lagrima (A furtive tear) is the romanza from Act II, Scene 2 of the Italian opera, L'elisir d'amore (The Elixir of Love) by Gaetano Donizetti. It is sung by Nemorino (Caruso) when he finds that the love potion he bought to win his dream lady's heart, Adina, works. Nemorino is in love with Adina, but she isn't interested in a relationship with an innocent, rustic man. To win her heart, Nemorino buys a "love potion" with all the money he has in his pocket. The "love potion" i...
Just Music. Enrico Caruso sings "O Sole Mio" in this recording from February 5, 1916 with the Victor Orchestra. Walter B. Rogers is conducting.
Enrico Caruso was an Italian operatic tenor. He sang to great acclaim at the major opera houses of Europe and the Americas, appearing in a wide variety of roles from the Italian and French repertoires that ranged from the lyric to the dramatic. Subscribe and click the bell icon to get more arts content every week: youtube.com/c/PerspectiveArts Perspective is YouTube's home for the arts. Come here to get your fill of great music, theatre, art and much, much more! From Opera Legends Content licensed from 3DD to Little Dot Studios. Any queries, please contact us at: [email protected]
Just Music. Enrico Caruso sings "Una Furtiva Lagrima" from "L'elisir D'amore" by G. Donizetti in this remastered recording where he is accompanied by the Vienna Radio Symphony Orchestra. The vocals were recorded on February 1, 1904 in New York and the instrumentals were recorded in April, 2002 in Vienna.
This is the aria Ombra Mai Fu from Handel's 1738 opera Xerxes. It was recorded by Enrico Caruso 19th January 1920.He died the following year at just 48 years of age.In the aria the singer is actually admiring a tree and the translation is as follows. Tender and beautiful fronds of my beloved plane tree, let Fate smile upon you. May thunder, lightning, and storms never disturb your dear peace, nor may you by blowing winds be profaned Never was a shade of any plant dearer and more lovely, or more sweet I have tried to improve the overall audio sound as much as possible and, just to give a live effect and to cover noise, I have added applause.
Caruso singing La Donna e Mobile from Verdi's Rigoletto for Victor in 1907. The correct playing speed is 75 rpm which I did not know when I uploaded this record. I played it at 78.26 rpm. Some of Caruso's earlier records played at much slower speeds and I have adjusted those postings accordingly.
Digitally remastered version. Music by Salvatore Cardillo (1874–1947). Text written by Alessandro Sisca (under the pseudonym Riccardo Cordiferro) for Caruso. Recorded on Sunday the 19th of November 1911. A restored (not digitally restored) version with the original orchestration can be heard here: http://www.youtube.com/watch?v=Rt5tIQGEW5w More Caruso info on my website: http://www.enricocaruso.dk (English). TEXT (may not be the Caruso version ...): Italian/Neapolitan: Core 'Ngrato Catari, Catari, pecche me dice sti parole amare, pecche me parle e 'o core me turmiente, Catari? Nun te scurda ca t'aggio date 'o core, Catari, nun te scurda! Catari, Catari, che vene a dicere stu parla ca me da spaseme? Tu nun'nce pienze a stu dulore mio, tu nun'nce pienze, tu nun te ne cure. Core, co...
A digitally remastered version of the original recording from 20th of March 1916. I generally don't like these remasterings as Caruso's voice is often distorted, but this one is OK I think and more palatable for most listeners. For more Caruso info visit my website: http://www.enricocaruso.dk Santa Lucia is a traditional Neapolitan song. It was transcribed by Teodoro Cottrau (1827-1879) and published by the Cottrau firm, as a "barcarolla", at Naples in 1849. Cottrau translated it from Napuletano into Italian during the first stage of the Risorgimento, the first Neapolitan song to be given Italian lyrics. Its transcriber, who is very often credited as its composer, was the son of the French-born Italian composer and collector of songs Guillaume Louis Cottrau (1797-1847). The Neap...
🇬🇧 The best Music Show for your Event in Italy. 🇮🇹 Il miglior intrattenimento musicale per i vostri eventi. [email protected]
Rodolfo's aria from Puccini's La Bohème. Recorded on 11th February 1906. Digitally remastered. You may want to look at my website for more: http://www.enricocaruso.dk (English). Italian text: Che gelida manina, se la lasci riscaldar. Cercar che giova? Al buio non si trova. Ma per fortuna é una notte di luna, e qui la luna l'abbiamo vicina. Aspetti, signorina, le dirò con due parole chi son, e che faccio, come vivo. Vuole? Chi son? Sono un poeta. Che cosa faccio? Scrivo. E come vivo? Vivo. In povertà mia lieta scialo da gran signore rime ed inni d'amore. Per sogni e per chimere e per castelli in aria, l'anima ho milionaria. Talor dal mio forziere ruban tutti i gioelli due ladri, gli occhi belli. V'entrar con voi pur ora, ed i miei sogni...
The great Napolitan song "Santa Lucia" sung by the great voice of Alfie Boe and accompanied with pictures from the great and beatiful city of Naples (Napoli) with the lyrics on the screen. Video I made to hone the singer "Boe", the city "Napoli" and the great Napolitan music that I totally admire.
Dedicated to my friend Pete. Pete love this song. And Pete is a big fan of Carlo Bernini. I like you Pete. This video is for you. Ringrazio a maestri Andrea Bocelli e Carlo Benini per il loro lavoro mozzafiato.
Lyrics: Sul mare luccica l'astro d'argento. Placida è l'onda, prospero è il vento. Sul mare luccica l'astro d'argento. Placida è l'onda, prospero è il vento. Venite all'agile barchetta mia, Santa Lucia! Santa Lucia! Venite all'agile barchetta mia, Santa Lucia! Santa Lucia! Tom And Jerry Belong To Warner Bros.
A digitally remastered version of the original recording from 20th of March 1916. I generally don't like these remasterings as Caruso's voice is often distorted, but this one is OK I think and more palatable for most listeners. For more Caruso info visit my website: http://www.enricocaruso.dk Santa Lucia is a traditional Neapolitan song. It was transcribed by Teodoro Cottrau (1827-1879) and published by the Cottrau firm, as a "barcarolla", at Naples in 1849. Cottrau translated it from Napuletano into Italian during the first stage of the Risorgimento, the first Neapolitan song to be given Italian lyrics. Its transcriber, who is very often credited as its composer, was the son of the French-born Italian composer and collector of songs Guillaume Louis Cottrau (1797-1847). The Neap...
Provided to YouTube by Universal Music Group Santa Lucia (Remastered 2005) · Miguel Ríos Rocanrol Bumerang ℗ 1980 Universal Music Spain, S.L. Released on: 1980-01-01 Producer: Miguel Ríos Producer: Carlos Narea Producer: Tato Gomez Composer Lyricist: Narvaja Rogue Auto-generated by YouTube.
Luciano Pavarotti Santa Lucia with lyrics YouTube
เพลงประจำมหาวิทยาลัยศิลปากร
Mario Lanza sing Santa Lucia .What a performance!!! Mario...the king of tenor`s!
Enrico Caruso (Italian pronunciation: [enˈriːko kaˈruːzo]; February 25, 1873 – August 2, 1921) was an Italian operatic tenor. He sang to great acclaim at the major opera houses of Europe and the Americas, appearing in a wide variety of roles from the Italian and French repertoires that ranged from the lyric to the dramatic. Caruso also made approximately 260 commercially released recordings from 1902 to 1920. All of these recordings, which span most of his stage career, are available today on CDs and as digital downloads.
Enrico Caruso came from a poor but not destitute background. Born in Naples in the Via San Giovannello agli Ottocalli 7 on February 25, 1873, he was baptised the next day in the adjacent Church of San Giovanni e Paolo. Called Errico in accordance with the Neapolitan language, he would later adopt the formal Italian version of his given name, Enrico (the equivalent of "Henry" in English). This change came at the suggestion of a singing teacher, Guglielmo Vergine, with whom he began lessons at the age of 16.
SANTA, SANTA LUCÍA
SOÑARÉ CADA NOCHE QUE ME QUIERES IGUAL QUE AYER,
Y UNA LÁGRIMA FRÍA NACERÁ AL AMANECER…
EN EL MAR QUE NOS SEPARA REFLEJADA SIEMPRE ESTÁS, TÚ
SANTA, SANTA LUCÍA, ERES MI VIDA, REINA DE LA ALEGRÍA,
SANTA, SANTA LUCÍA, ALMA DE NIÑA, DUEÑA Y AMANTE MÍA,
SANTA, SANTA LUCÍA, ERES MI VIDA, REINA DE LA ALEGRÍA,
SANTA, SANTA LUCÍA, ALMA DE NIÑA, DUEÑA Y AMANTE MÍA,
EN LA ETERNA DISTANCIA QUE ALEJA NUESTRO AMOR,
SIEMPRE HAY UNA ESTRELLA QUE ILUMINA MI CORAZÓN…
EN EL MAR QUE NOS SEPARA REFLEJADA SIEMPRE ESTÁS TÚ
SANTA, SANTA LUCÍA, ERES MI VIDA, REINA DE LA ALEGRÍA,
SANTA, SANTA LUCÍA, ALMA DE NIÑA, DUEÑA Y AMANTE MÍA,
SANTA, SANTA LUCÍA, ERES MI VIDA, REINA DE LA ALEGRÍA,
SANTA, SANTA LUCÍA, ALMA DE NIÑA, DUEÑA Y AMANTE MÍA,
DAME, DAME TU MAGIA, DAMELA, SANTA LUCÍA
DAME, DAME TU HECHIZO, DAMELO YA
SANTA, SANTA LUCÍA, ERES MI VIDA, SANTA LUCÍA
SANTA, SANTA LUCÍA, SANTA LUCÍA
SANTA, SANTA LUCÍA, ERES MI VIDA, REINA DE LA ALEGRÍA,
SANTA, SANTA LUCÍA, ALMA DE NIÑA, DUEÑA Y AMANTE MÍA,
SANTA, SANTA LUCÍA