- published: 31 Dec 2020
- views: 7891866
'+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; })); }); -->
Luis Miguel Gallego Basteri (April 19, 1970), known professionally as Luis Miguel, is a Mexican singer and an icon in Latin America, he is often referred to as El Sol de México. He is one of the most successful artists in Latin American history, having successfully performed in a wide range of musical styles, including pop, ballads, boleros and mariachi. To date, he has sold over 100 million records worldwide.
Latin pop music, along with his personal life and showmanship on stage, has made Luis Miguel an icon for nearly his entire career, which started in Mexico in 1981. Having won his first Grammy Award at the age of fourteen for his duet "Me Gustas Tal Como Eres" with Sheena Easton, he is the third youngest act in music history to receive this accolade. In 1991, the RIAA recognized the high sales for his 1991 album Romance, itself being the best-selling music album in Mexico, and one of the best-selling Spanish language albums of all time. He is the only Latin artist to have been awarded two Platinum certified Spanish-language albums in the United States (Romance and Segundo Romance). His most recent album, Luis Miguel, was released in 2010 and achieved gold and platinum certifications in four countries within three days of its release.
Luis Miguel is a Mexican singer.
Luis Miguel may also refer to:
Luis Miguel is the self-titled nineteenth studio album released worldwide by Mexican pop singer Luis Miguel on September 14, 2010. This album celebrates the singer's 30 years in music.
This is the first studio album of the artist since Cómplices, and the first time that Luis Miguel releases two studio albums in a row since 1990. There were rumours of the possible title of this album since March, but neither the name or the new album were confirmed by the artist of by Warner Music. But, on July 26, there were reports that mentioned that the album would be released between August and September, and that the title of the album and the main single would be Labios de Miel. The artist's webpage confirmed the main single, and set its release for August 3, with its videoclip set to be released on late August. Also, confirmed that the album would be released on September 14. The cover and the title of the album were not revealed.
The single Labios de Miel manage to debut at #1 on most of the Mexican charts, and to be one of the most downloaded songs in iTunes Music Store.
Miguel Fuentes Pinet (May 10, 1946 – January 29, 1970) was a Puerto Rican Major League Baseball pitcher. Fuentes was signed to his first professional contract in 1969 with the Seattle Pilots. He went on to pitch in eight games for the club at the Major League level after strong performances in the minor leagues. During the off-season, he was murdered in a bar fight at the age of 23.
Fuentes was born in Loíza, Puerto Rico in the barrio of Loíza Aldea. He starred as an amateur baseball player and, in 1968, helped lead his amateur team to a Puerto Rican championship. He was discovered by scout Felix Delgado, who went on to sign Fuentes to his first professional contract.
Fuentes was initially assigned to the Clinton Pilots, a Class A team in the Midwest League. He recorded an 8–2 record in 26 appearances and his earned run average of 1.46 was the lowest in the league for pitchers with 40 or more innings pitched. For his efforts, Fuentes was called to the Seattle Pilots' Major League roster in September 1969.
Miguel de Jesús Fuentes Razo (born September 29, 1971 in Guadalajara, Jalisco) is a retired professional footballer from Mexico, who played as a goalkeeper during his career. He was a member of the Mexico national football team competing at the 1992 Summer Olympics in Barcelona, Spain. He is currently the head coach of Club Necaxa in the Ascenso MX.
Miguel Fuentes was a squad member at the 1991 FIFA World Youth Championship held in Portugal, where he played three games.
Discos Fuentes is a record label based in Medellín, Colombia, South America. Founded in 1934 in Cartagena, Colombia, by Antonio Fuentes Estrada, Discos Fuentes was the country's first notable record label. The label was instrumental in introducing Colombia to such Afro-rhythm genres as cumbia, fandango, merengue, porro, and salsa. The label also helped forge the early careers for such musicians and composers as Guillermo Buitrago, Rafael Escalona, and Julio César Bovea.
Discos Fuentes has often been described as Colombia's version of "Motown", peaking in the 1960s and early 1970s. The label achieved a series of firsts for Colombia: the first compilation album (1960) and the first compact disc release (1987).
After the death of the label's founder, Antonio Fuentes Estrada, in 1985, the company expanded into video production and purchased several other music labels including Discos Tropical and Curro.
In the United States, the manufacture and/or distribution of Discos Fuentes releases was eventually handled by Miami Records, a Miami, Florida-based label specializing in Latin American music. Formed in 1950 by Colombian immigrant, Carlos Diaz-Granados, Sr., Miami Records also managed the manufacture and/or distribution of Latin music for other South American labels as well as for such American labels as Columbia Records.
Luis Miguel - Romances (Cd Completo/Full Album 1997) - Las Mas Romanticas Del Luis Miguel
Luis Miguel - "Ahora te puedes marchar" (Video Oficial) ¡Escucha tus éxitos favoritos de Luis Miguel aquí! https://luismiguel.lnk.to/Originales "Ahora te Puedes Marchar" Letras: Si tú me hubieras dicho siempre la verdad Si hubieras respondido cuando te llamé Si hubieras amado cuando te amé Serías en mis sueños la mejor mujer Si no supiste amar, ahora te puedes marchar Si tú superas lo que yo sufrí por ti Teniendo que olvidarte sin saber por qué Y ahora me llamas, me quieres ver Me juras que has cambiado y pensas en volver Si no supiste amar ahora te puedes marchar Aléjate de mí, no hay nada más qué hablar Contigo yo perdí, ya tengo con quién ganar Ya sé que no hubo nadie Que te diera lo que yo te di Que nadie te ha cuidado como te cuidé Por eso comprendo que estás aquí Pero ha pasad...
Luis Miguel - Hasta Que Me Olvides (En Vivo) ¡Escucha tus éxitos favoritos de Luis Miguel aquí! https://luismiguel.lnk.to/Originales Escucha “El Concierto” en tu plataforma favorita: Spotify: https://open.spotify.com/album/6efyUFJcUK18KRFTMoxNSI?si=O1Lbi0EoQnSqD4ROCVy1wA Apple Music: https://music.apple.com/mx/album/el-concierto-vivo/101249950 Claro Música: https://www.claromusica.com/album/306382/MX Amazon Music: https://music.amazon.com.mx/albums/B0018MUEUU Deezer: https://deezer.page.link/TAo4cd4ySDwFskzR6 Sigue a Luis Miguel: https://www.facebook.com/luismiguelofficial/ https://www.instagram.com/lmxlm https://twitter.com/lmxlm http://www.luismigueloficial.com/ TikTok: @lmxlm Suscríbete aquí: http://bit.ly/36E7bFh #LuisMiguel #HastaQueMeOlvides #ElConcierto
Luis Miguel - "La Incondicional" (Video Oficial) ¡Escucha tus éxitos favoritos de Luis Miguel aquí! https://luismiguel.lnk.to/Originales "La Incondicional" Tú, la misma siempre tú Amistad, ternura, que se yo. Tú, mi sombra has sido tú La historia de un amor Que no fue nada. Tú, mi eternamente tú Un hotel, tu cuerpo y un adiós. Tú, mi oculta amiga, tú Un golpe de pasión Amor de madrugada. No existe un lazo entre tú y yo Nada de amores Nada de nada. Tú, la misma de ayer La incondicional La que no espera nada. Tú, la misma de ayer La que no supe amar No sé porqué. Tú, intensamente tú Soledad, cariño yo que se Tú, mis horas bajas, tú. Un cuerpo de mujer Un par de rosas blancas. No existe un lazo entre tú y yo No hubo promesas Ni juramentos Nada de nada. Tú, la misma de ayer La i...
Luis Miguel - "Fría Como El Viento"(Video Oficial) ¡Escucha tus éxitos favoritos de Luis Miguel aquí! https://luismiguel.lnk.to/Originales "Fría Como el Viento" Te recuerdo así tu pelo en libertad hielo ardiente diferente a las demás te recuerdo así dejándote admirar intocable, inaccesible irreal, irreal Fría como el viento peligrosa como el mar dulce como un beso no te dejas amar, por eso no se si te tengo no se si vienes o te vas eres como un potro sin domar Te recuerdo así jugando a enamorar vanidosa, caprichosa ideal Te recuerdo así amando sin amar impasible, imposible de alcanzar, alcanzar http://www.facebook.com/luismigueloff... @LMXLM @warnermusicmex www.luismigueloficial.com Spotify http://spoti.fi/2yPNtZG Apple Music http://apple.co/2lm3PUk iTunes http://apple.co/2iasw...
Luis Miguel - "No Sé Tú" (Video Oficial) ¡Escucha tus éxitos favoritos de Luis Miguel aquí! https://luismiguel.lnk.to/Originales "No Sé Tú" No sé tú Pero yo no dejo de pensar Ni un minuto me logro despojar De tus besos, tus abrazos De lo bien que la pasamos la otra vez No sé tú Pero yo quisiera repetir El cansancio que me hiciste sentir Con la noche que me diste Y el momento que con besos construiste No sé tú Pero yo te he comenzado a extrañar En mi almohada no te dejo de pensar Con las gentes mis amigos y las calles Sin testigos No sé tú Pero yo te busco en cada amanecer Mis deseos no los puedo contener En las noches cuando duermo Sin imsomnio yo me enfermo Me haces falta mucha falta No sé tú No sé tú Pero yo te busco en cada amanecer Mis deseos no los puedo contener En las noches...
Luis Miguel - Culpable o No (Miénteme Como Siempre) [Video Con Letra] ¡Escucha tus éxitos favoritos de Luis Miguel aquí! https://luismiguel.lnk.to/Originales Escucha “Busca Una Mujer” en tu plataforma favorita: Spotify: http://open.spotify.com/album/6JSqwckfTYWbJj4R1fdOOo Apple Music: https://music.apple.com/us/album/busca-una-mujer/101069668 Claro Música: https://www.claromusica.com/album/226808/MX Amazon Music: https://music.amazon.com.mx/albums/B0017TATKE Deezer: https://www.deezer.com/es/album/360905 Sigue a Luis Miguel: https://www.facebook.com/luismiguelofficial/ https://www.instagram.com/lmxlm https://twitter.com/lmxlm http://www.luismigueloficial.com/ Suscríbete aquí: http://bit.ly/36E7bFh [Verso 1] Precisamente ahora que tú ya te has ido Me han dicho que has estado engañándo...
Luis Miguel - "La Bikina" (Video Oficial) ¡Escucha tus éxitos favoritos de Luis Miguel aquí! https://luismiguel.lnk.to/Originales "La Bikina" Solitaria camina la bikina La gente se pone a murmurar Dicen que tiene una pena Dicen que tiene una pena que la hace llorar Altanera preciosa y orgullosa No permite la quieran consolar Pasa luciendo su real majestad Pasas caminas nos miras sin vernos jamás La bikina Tiene pena y dolor La bikina No conoce el amor Altanera preciosa y orgullosa No permite la quieran consolar Dicen que alguien ya vino y se fue Dicen que pasa las noches llorando por él ¡Mi Mariachi! La bikina Tiene pena y dolor La bikina No conoce el amor Altanera preciosa y orgullosa No permite la quieran consolar Dicen que alguien ya vino y se fue Dicen que pasa las noches llo...
LUIS MIGUEL DEL AMARGUE - - @LuisMiguelDelAmargue SUS REDES SOCIALES ( LUIS MIGUEL DEL AMARGUE ) #luismigueldelamargue #amordeunanoche #bachata #bachataromántica PARA CONTRATACIONES 829-401-5519 @HANSELMUSIC16
Luis Miguel - "Tengo Todo Excepto A Ti" (Video Oficial) ¡Escucha tus éxitos favoritos de Luis Miguel aquí! https://luismiguel.lnk.to/Originales "Tengo Todo Excepto A Ti" Se ve que no te voy Se ve que no me vas Se ve que en realidad Solo me quieres Como a un amigo más Como algo de siempre. Ya ves, me equivoqué Creía que era feliz Pensaba que yo lo tenía todo Tantos amigos, caprichos Amores locos. Tengo todo excepto a ti Y el sabor de tu piel Bella como el sol de abril Que absurdo el día en que soñé Que eras para mí. Tengo todo excepto a ti Y la humedad de tu cuerpo Tu me hecho porque sí Seguir las huellas de tu olor Loco por tu amor. Se ve que no te voy Se ve que no me vas Pues tengo todo Menos tu mirada Y sin tus ojos Mis ojos ya no ven nada. Tengo todo excepto a ti Y el sabor de t...
Luis Miguel Gallego Basteri (April 19, 1970), known professionally as Luis Miguel, is a Mexican singer and an icon in Latin America, he is often referred to as El Sol de México. He is one of the most successful artists in Latin American history, having successfully performed in a wide range of musical styles, including pop, ballads, boleros and mariachi. To date, he has sold over 100 million records worldwide.
Latin pop music, along with his personal life and showmanship on stage, has made Luis Miguel an icon for nearly his entire career, which started in Mexico in 1981. Having won his first Grammy Award at the age of fourteen for his duet "Me Gustas Tal Como Eres" with Sheena Easton, he is the third youngest act in music history to receive this accolade. In 1991, the RIAA recognized the high sales for his 1991 album Romance, itself being the best-selling music album in Mexico, and one of the best-selling Spanish language albums of all time. He is the only Latin artist to have been awarded two Platinum certified Spanish-language albums in the United States (Romance and Segundo Romance). His most recent album, Luis Miguel, was released in 2010 and achieved gold and platinum certifications in four countries within three days of its release.
Nos quedamos solos como cada noche
Hoy te siento triste y se muy bien por que.
Tu querrás decirme que he cambiado mucho
Que el amor se acaba y quiero terminar.
Yo que ni un momento puedo estar lejos de ti.
Como soportar la vida entera ya sin ti
Te quiero, te quiero, te juro que yo
No puedo vivir sin tu amor.
Precisamente ahora que tu ya te has ido
Me han dicho que has estado engañándome
Por que de pronto tienes tantos enemigos
Por que tengo que andar disculpándote
Si ellos están mintiendo, por favor defiéndete
Yo se que no lo harás, pues dicen la verdad
Es una pena siempre seguirás doliéndome
Y culpable o no
Que le puedo hacer ya
Miénteme como siempre,
Por favor miénteme
Necesito creerte
Convencerme
Miénteme con un beso
Que parezca de amor
Necesito quererte
Culpable o no
Cuando alguna vez
Encuentro a quien amar
Apareces tu en mi mente
Una vez mas
Y te siento a ti
Este con quien este
En sus besos, en su cuerpo
Y en su olor a mujer
Mas allá de todo
Mas allá de ti
Ya no tengo nada
Que me pueda hacer vivir
Mas allá la nada
Solo quedo yo
Donde estas
Mas allá de todo
Mas allá de ti
Ya no tengo nada
Que me pueda hacer vivir
Mas allá la nada
Solo quedo yo
Donde estas
Quien te hará el amor
Te recuerdo así
Tu pelo en libertad
Hielo ardiente
Diferente a las demás
Te recuerdo así
Dejándote admirar
Intocable, inaccesible
Irreal, irreal
Fría como el viento
Peligrosa como el mar
Dulce como un beso
No te dejas amar, por eso
No se si te tengo
No se si vienes o te vas
Eres como un potro sin domar
Entrégate
un no te siento
Deja que tu cuerpo
Se acostumbre a mi calor
Entrégate
Mi prisionera
La pasión no espera
Y yo no puedo mas de amor
Déjame robar
El gran secreto de tu piel
Déjate llevar
Por tus instintos de mujer
Se ve que no te voy Se ve que no me vas
Pues tengo todo menos tu mirada Y sin tus ojos Mis ojos ya no ven nada
Tengo todo excepto a ti
Y el sabor de tu piel
Bella como el sol de abril
Que absurdo el día en que soñé Que eras para mí
Me sobra juventud Me muero por vivir Pero me faltas tú
Tengo todo excepto a ti
Y la humedad de tu cuerpo
Tú me has hecho porque sí
Seguir las huellas de tu olor Loco por tu amor
Tú, la misma siempre tú
Amistad, ternura qué sé yo
Tú, mis horas bajas tú
Un cuerpo de mujer
Un par de rosas blancas
No existe un lazo entre tú y yo
No hubo promesas
Ni juramentos Nada de nada
Tú, la misma de ayer La incondicional
La que no espera nada
Tú, la misma de ayer
La que no supe amar No sé por qué