- published: 27 Apr 2016
- views: 27385271
'+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 "Instruments" is not recognizedHIDDEN ERROR: Usage of "Formed" is not recognized
Level 42 are an English pop rock and jazz-funk band, who had a number of worldwide and UK hits during the 1980s and 1990s.
Their most successful single in the UK was "Lessons in Love", which reached number three on the UK Singles Chart, and number 12 on the US Billboard Hot 100 chart, upon its release in 1986. The earlier single, "Something About You" was their most successful single in the United States, reaching number 7 on the Billboard Hot 100 chart.
After much success as a live and studio band in the 1980s, Level 42's commercial profile diminished during the early 1990s following a series of personnel changes and musical shifts. After disbanding in 1994, the band reformed in 2001.
Mark King and the Gould brothers (Phil and Rowland, the latter generally known by his nickname "Boon") were all brought up on the Isle of Wight and played together in various bands during their teenage years. Phil Gould went on to study at London's Guildhall School of Music and Drama, where he met keyboard player Mike Lindup in a percussion course. Both musicians found that they shared musical heroes: Miles Davis, John McLaughlin, Keith Jarrett and Jan Hammer.
One in a Million may refer to:
One in a Million is Malaysia's first ever reality singing competition to offer a RM 1 million prize to the winner. The second season began on 16 November 2007, resuming to its former timeslot at 9.30pm on 8TV. The season had been marred by a restriction imposed on 8TV against airing live telecasts, as a result of season one's runner-up Faizal Tahir breaching the decency code during 8TV's birthday concert on mid-January 2008. Nevertheless, the show went on and on 29 February 2008, in a Grand Finale which was aired delayed by 30 minutes from Shah Alam, Sabahan Norayu Damit became the overall champion and new owner of RM1,000,000 as funding for a musical career.
The auditions for the second season began in August. Two more audition locations were added (Sungai Petani and Johor Bahru) compared to the only two last year. One in a Million Roadshows were also held in the three locations in the peninsula, featuring Season 1 finalists and other Malaysian artistes. The first three audition legs were edited into one episode for the season début.
"One in a Million" is a song by American R&B recording artist Aaliyah from her second studio album of the same name (1996). The song was the third main single from One in a Million following "Got to Give It Up", but in North America the song was the second single, because "Got to Give It Up" was not released until 1998 in the U.S.
"One in a Million" is a R&B song written by Missy Elliott and Timbaland, who also produced the song.
An R&B slow jam, "One in a Million" was considered quite atypical and innovative at the time of its release. The song was the first major display of Timbaland's early drum-skitter-style of programming, with its rambunctious influence owing dues to the then burgeoning drum-n-bass movement in Europe. This frantic drum programming juxtaposed against the rather tranquil manner of the vocal arrangement and the remaining instrumentation was, then, immediately distinguishable from most mainstream R&B/pop. Though Timbaland, Missy Elliott and Aaliyah had been previously at work in the industry for some time, the song was a breakthrough/name-making moment for the lot of them. "One in a Million" was recorded at Pyramid Studios in Ithaca, New York.
Music video by Level 42 performing Lessons In Love. (C) 2016 PolyGram Video International http://vevo.ly/KxOvWm
Level 42 performing live in the Vredenburg in Utrecht, Holland on the 18th February 2009. HD material kindly provided by Jarko Romanesko Remember to subscribe to stay up to date with all new releases in the official channel. Subcribe here: https://bit.ly/2O4Od2k Level 42 Live in Holland 2009 personnel: Mark King: Vocals/bass guitar Gary Husband: Drums Mike Lindup: Keyboard/vocals Nathan King :Guitar/vocals Sean Freeman: Saxophone/vocals Brian Coles:Tour Manager Mark Clements: FOH engineer Joey Jowitt: Mon engineer Micky Griffiths: PA Tech Mark Pritchard: Lighting operator Chris Titman: Lighting Tech Jean Gaillard: Stage manager/drums Trevor Dawkins: Bass/guitar tech Tony: Bus driver Ronald Redeker: Truck driver Han De Lima: Promoters rep Production/Sound Company: Capital Productions ...
Music video by Level 42 performing Something About You. (C) 1985 PolyGram Video International http://vevo.ly/Kj3y6y
Recorded at London's Indigo2 in October 2010, the concert was part of Level 42's world tour celebrating their 30th anniversary. Remember to subscribe to stay up to date with all new releases on the channel. http://vevo.ly/3ZzAAt
Recorded at the Indigo O2 Arena in London on the 5th September 2015 as part of the Sirens tour, the concert features amazing live renditions of all Level 42's classic hits and much more. Remember to subscribe to stay up to date with all new releases on the channel. Executive Producer: Mark King http://vevo.ly/J2bLBf
Legendary song of 1986, from Level 42 band, this is a extended video version.
Video is reversed as blocked on YT
Link do vídeo: https://youtu.be/eUC4o8ZN8FM COPYRIGHT DOESN´T BELONG TO ME. ALL RIGHTS RESERVED TO LEVEL 42. Music video by Level 42 performing It’s Over. (C) 1987 UMG. Sound recording and video administered by: UMG. This video and sound recording has been uploaded for entertainment purposes only and is in accordance with fair use standards (section 107 of the U.S. Copyright. Act.). Composta pelo vocalista Mark King, pelo guitarrista da banda Boon Gould e pelo músico francês Wally Badarou, "It's Over" é uma música de 1987 da banda britânica Level 42. Lançado como o quarto single do álbum 'Running in the Family' , ele alcançou o 10º lugar no UK Singles Chart (tornando-se o sexto e último hit do Top 10 no Reino Unido). O videoclipe da canção "It's Over" foi filmado na região de Mammoth Lak...
REMASTERED IN HD! Official Music Video for One In A Million performed by Ne-Yo. Follow Ne-Yo: Instagram: http://instagram.com/neyo Facebook: http://facebook.com/neyo Twitter: http://twitter.com/neyocompound Website: http://www.neyothegentleman.com #NeYo #OneInAMillion #Remastered
Music video by Bosson performing One In A Million. (C) 2001 MNW Music AB http://vevo.ly/HRPWtz
🎧 Old but gold vibing song. Hope you like it! 🔔 Please don't forget to subscribe and hit that notification bell for more updates of my daily uploads. 👍 Give it a thumbs up if you liked my video Thank you very much! Jet setter Go getter Nothing better Call me Mr. been there done that Top model chick to your every day hood rat Less than all but more than a few But I've never met one like you Been all over the world Done a little bit of everything Little bit of everywhere With a little bit of everyone But all the girls I've been with Things I've seen and it takes much to impress But sho nuff you blow it makes your soul stand out from the rest I can be in love But I just don't know (don't know girl) Baby one thing is for certain Whatever you do it's working Other girls don't matter In y...
Provided to YouTube by Universal Music Group One In A Million · Guns N' Roses G N' R Lies ℗ 1988 UMG Recordings, Inc. Released on: 1988-01-01 Producer, Studio Personnel, Engineer: Mike Clink Composer Lyricist: W. Axl Rose Composer Lyricist: Duff McKagan Composer Lyricist: Izzy Stradlin Composer Lyricist: Slash Composer Lyricist: Steven Adler Auto-generated by YouTube.
"Immerse in premium sound. 🎧 Elevate your experience. 🚀 Explore now: https://s.click.aliexpress.com/e/_DBnARqj https://s.click.aliexpress.com/e/_DmUCAdV Don't forget to subscribe my channel😉 If you have any lyrics video request comment below 👇 Bosson - One In A Million You're one in a million, oh You're one in a million, oh Sometimes love can hit you everyday Sometimes you can fall for everyone you see But only one can really make me stay A sign from the sky said to me You're one in a million You're once in a lifetime You made me discover one of the stars above us You're one in a million You're Once in a lifetime You made me discover one of the stars above us I've been looking for that special one And I've been searching for someone to give my love And when I thought that all the h...
"One in a Million" is Aaliyah's second album. It was released on August 27, 1996. The album has sold 3.7 million copies in the U.S. NO COPYRIGHT INTENDED!
Listen to "One in a Million": https://BebeRexha.lnk.to/oneinamillion Listen to my album, 'Bebe' out now: https://BebeRexha.lnk.to/BEBEalbum Follow Bebe Rexha: Instagram: https://www.instagram.com/beberexha/ TikTok: https://www.tiktok.com/@beberexha Twitter: https://twitter.com/BebeRexha Facebook: https://www.facebook.com/beberexha Website: https://www.beberexha.com/ Follow David Guetta: Instagram: https://www.instagram.com/davidguetta/ TikTok: https://www.tiktok.com/@davidguetta Twitter: https://twitter.com/DavidGuetta Facebook: https://www.facebook.com/DavidGuetta/ Website: https://davidguetta.com/ Credits: Director: Corey Wilson Producer: Erica Gould Production Company: Corey LLC Lyrics: You're my one one one in a million It’s like someone picked you outta the sky Maybe I met you...
Provided to YouTube by JYP Entertainment ONE IN A MILLION · TWICE TWICEcoaster: LANE1 ℗ 2016 JYP Entertainment Released on: 2016-10-24 Composer: Sebastian Thott, Didrik Thott, Andreas Oberg, Danielle Senior Music Publisher: Y & M HBT GmbH / BMG Rights Management, Kobalt Music, Razor Boy Music Publishing, DEEP CUT Publishing, Notting Hill Music (UK) Ltd., Fuji Pacific Music Korea, Soundgraphics Inc. admin by Music Cube, Inc., Sony/ATV Music Publishing (HongKong)(Korea Branch) Lyricist: mr.cho Auto-generated by YouTube.
David Guetta, Bebe Rexha - One In A Million (Lyrics) One In A Million (Lyrics) - David Guetta, Bebe Rexha For more quality music subscribe here ➡ http://bit.ly/sub2thvbgd We're on Spotify ➡ https://spoti.fi/37r55sT 🔔 Turn on notifications to stay updated with new uploads! ✖ Stream / Download: https://beberexha.lnk.to/oneinamillion ✖ Follow David Guetta: https://lnk.bio/davidguetta ✖ Follow Bebe Rexha: https://instagram.com/beberexha 🎤 Lyrics: HOOK You're my one one one in a million It’s like someone picked you outta the sky Maybe I met you for a reason And I can’t believe that we’re both alive at the same time Is this Heaven now? Am I dreamin’ out? Am I dreamin’? You’re my one one one in a million And I can’t believe that we’re both alive at the same time VERSE You got me speedi...
Sabi nila, sa milyun-milyong tao sa mundo ay may isang nakalaan para sa iyo. Yung nag-iisang makakasama mo sa habang panahon - "One In A Million You", ika nga sa kantang pinasikat ni Larry Graham noong 1980 mula sa kaniyang album sa kaparehong title nito. Thanks for watching ATOMIC Karaoke! ➤SUBSCRIBE to our Youtube Channel: https://www.youtube.com/c/AtomicKaraoke ➤ LIKE us on Facebook: https://www.facebook.com/Atomic-Karaoke-243776199533810/ ⚠ Please DO NOT Re-upload our video/instrumentals Click the SUBSCRIBE BUTTON and NOTIFICATION BELL to receive updates on our latest videos. _______________DETAILS:__________________ Music artist: Larry Graham Video created by: Atomic Karaoke Layout and Design created by: Atomic Karaoke
HIDDEN ERROR: Usage of "Instruments" is not recognizedHIDDEN ERROR: Usage of "Formed" is not recognized
Level 42 are an English pop rock and jazz-funk band, who had a number of worldwide and UK hits during the 1980s and 1990s.
Their most successful single in the UK was "Lessons in Love", which reached number three on the UK Singles Chart, and number 12 on the US Billboard Hot 100 chart, upon its release in 1986. The earlier single, "Something About You" was their most successful single in the United States, reaching number 7 on the Billboard Hot 100 chart.
After much success as a live and studio band in the 1980s, Level 42's commercial profile diminished during the early 1990s following a series of personnel changes and musical shifts. After disbanding in 1994, the band reformed in 2001.
Mark King and the Gould brothers (Phil and Rowland, the latter generally known by his nickname "Boon") were all brought up on the Isle of Wight and played together in various bands during their teenage years. Phil Gould went on to study at London's Guildhall School of Music and Drama, where he met keyboard player Mike Lindup in a percussion course. Both musicians found that they shared musical heroes: Miles Davis, John McLaughlin, Keith Jarrett and Jan Hammer.
In your hands there's a photograph
You look up, she begins to laugh
So cold as she walks away
And you know that it's time to pay
You're caught in a web you spun yourself
Face to face with your failure this very day
You call out her name, you can't help yourself
But you need love like you need a kick in the head
You worked hard for the things you own
Fancy cars and a country home
Gave it all for a glittering prize
To be a face people recognize
On the walls of your home there are works of art
But you stare at the picture on the floor
The face of a man with an aching heart
It's no fun to be famous anymore
You said, "This is a sad day
And I would gladly give it all away
In exchange for a floating life"
Shed your tears for a shallow dream
Let your cry be a primal scream
A song through the mists of time
A serenade to your concubine
You were wrong to believe she could set you free
You're trapped by the trappings of success
And you know that you'll never let you be
'Til the world knows the secrets you confessed
You said, "I see her cruel face
My heart is nothing but an empty space
And on this sad day I would gladly give it all away
In exchange for a floating life"
Neither asleep nor awake
Losing control you start to shake
As the day begins to break
They're gonna shoot you down in flames
When that girl starts naming names
There's nowhere to hide from your shame
I see her cruel face
My heart is nothing but an empty space
And on this sad day I would gladly give it all away