- published: 25 Feb 2009
- views: 2613497
'+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; })); }); -->
Andrea Britton is a British singer-songwriter and a soulful trance vocalist and runs her own online and brand marketing consultancy.
Andrea Britton runs her own online marketing and social media consultancy, where she writes a weekly blog that has attracted over 11,000 people in 2 years.
She spent over 15 years in the music industry releasing tracks globally. Britton's single "Am I on Your Mind?", recorded with Oxygen, made it to #30 on the UK Singles Chart in late 2002. In 2005, she had another hit single, "Winter", with DT8 Project, which made #35. Her other notable songs include the singles "Time Still Drifts Away" and "Inner Sense" with The Disco Brothers, "Wait for You" with Lost Witness, "Take My Hand" with Jurgen Vries (which peaked at #23) and "Counting Down The Days" with Sunfreakz in 2007 (peaked at #37 on the UK chart). She has appeared with 4 Strings and on numerous compilation albums worldwide, and continues to feature on many dance tracks around the world.
The Music were an English alternative rock band, formed in Kippax, Leeds in 1999. Comprising Robert Harvey (vocals, guitar), Adam Nutter (lead guitar), Stuart Coleman (bass) and Phil Jordan (drums), the band came to prominence with the release of their debut album, The Music, in 2002. The band released two further studio albums, Welcome to the North (2004) and Strength in Numbers (2008), before parting ways in 2011.
The Music all met at Brigshaw High School, except Phil Jordan who went to Garforth, and began playing in 1999 as Insense. In 2001 the song "Take the Long Road and Walk It" circulated as a demo before being released by Fierce Panda as a 1000-copies-only single, a rarity from its day of release. Around this time the NME and Steve Lamacq were describing them as the best unsigned band in Britain. The band were quickly signed by Hut, who released their first EP You Might as Well Try to Fuck Me.
In 2002, following another EP (The People) they released their eponymous début album which reached No. 4 in the UK album charts. Their début single was re-issued as part of a two-disc set to promote the album, and reached No. 14 in the singles chart. Two further singles from the album, "Getaway" and "The Truth is No Words" reached No. 26 and No. 18 respectively. June 2003 saw them filling in for an absent Zwan on the Pyramid Stage at Glastonbury Festival.
Kamal Humphrey De Iruretagoyena, better known by his stage name Radioinactive, is an indie hip hop artist from Los Angeles, California. He is a member of the Shape Shifters collective. He was a member of Log Cabin along with Eligh, Murs and Scarub. He has released a number of solo albums, as well as collaborating with artists such as Busdriver, Daedelus and Antimc.
Radioinactive released the first album, Pyramidi, on Mush Records in 2001.The Weather, his collaborative album with rapper Busdriver and producer Daedelus, was released on the label in 2003.
In 2004, he released Free Kamal with producer Antimc. Josh Drimmer of Dusted Magazine said: "Intelligent and fun, it’s a good record to listen to with a cool glass of lemonade. And a dictionary."
The second solo album, Soundtrack to a Book, was released on Stranger Touch Records in 2006. Mason Jones of Dusted Magazine said, "Soundtrack to a Book is an excellent mini-album, perhaps the best yet from Radioinactive."
He released the third solo album, The Akashic Record, on Flying Carpet Studios in 2012.
The Music (also known as The Music Group, Polish: Muzyka, Grupa Muzyka) is one of three sculptures located on the roof of the building on Koszykowa Street 34/50 in Warsaw since 1952. The project was chosen after an artistic competition. The monument was designed by Józef Gosławski, but his wife - Wanda - and his brother - Stanisław - helped him with its realization because of the short deadline. Lack of scaffolds, problems with obtaining funds and the short deadline forced the artists to write a letter to the chief architect of Warsaw - Józef Sigalin. After that, the conditions were improved and work was completed on time.
The image of Music Group was on one of the postcards published in 1952. It cost 1.30 zł, of which 0.08 zł was spent on The Social Fund of Reconstruction of Capital City.
Music video by The Music performing Getaway.
🎵 Follow the official 7clouds playlist on Spotify : http://spoti.fi/2SJsUcZ 🎧 Gigi Perez - Sailor Song (Lyrics) ⏬ Download / Stream: https://spoti.fi/3Q8l4CS 🔔 Turn on notifications to stay updated with new uploads! ❤️ Follow our Spotify playlists: http://bit.ly/7cloudsSpotify 👉 Gigi Perez https://tiktok.com/@gigi4perez?lang=en https://instagram.com/gigi4perez/ https://soundcloud.com/gigi4perez https://x.com/gigi4perez ☁️ 7clouds: https://open.spotify.com/user/7cloudsmusic https://soundcloud.com/7cloudsmusic https://audiomack.com/7cloudsmusic https://facebook.com/7cloudsofficial https://discord.com/invite/d5Arh8Y https://twitter.com/7cloudsmusic https://instagram.com/7clouds https://tiktok.com/@7clouds https://7clouds.org ......... 🎤 Lyrics: Gigi Perez - Sailor Song [Verse 1] I saw ...
Music Videos
Download MP3 : http://www.m-wav.com (Rep.korea) NAVER TV : https://tv.naver.com/zzangkaraoke The music and All sources of this video are produced by MWAV (www.m-wav.com). MWAV and ZZang KARAOKE is a brand owned by Moin Entertainment. If you need a lot more different songs you are looking for, you can download them at www.m-wav.com. This recording is not from the original artist in the original album, but it is cover accompaniment (karaoke). So this version is not the original version and the original artist did not play it. This instrumental / playback version includes a guide melody as needed or no melody. All the assets on ZZang KARAOKE channels are used by permission under licensing agreement with rights holders (music composition, sound re-recording). ...
Provided to YouTube by Universal Music Group The People · The Music The Music ℗ 2002 Virgin Records Limited Released on: 2004-01-01 Associated Performer, Vocals: Robert Harvey Associated Performer, Guitar: Adam Nutter Associated Performer, Bass Guitar: Stuart Coleman Associated Performer, Drums: Phil Jordan Producer: Jim Abbiss Composer Lyricist: Adam Nutter Composer Lyricist: Phil Jordan Composer Lyricist: Robert Harvey Composer Lyricist: Stuart Coleman Auto-generated by YouTube.
Song: Sabrina Carpenter - Juno Subtitles/Lyrics: One are you the most looking forward to playing live? Wow. That's such a good question. I think I'm most looking forward to playing Juno Live. Have you ever tried this one? I know you want my touch for life
Music video by The Music performing Freedom Fighters.
I don't own this music. Credits to the owner. Subscribe for more videos. ©️Matt Monro - The Music Played ©️Matt Monro - Alguien Canto ( Spanish Version )
Promo video for The Music's new single "Drugs".
Listen to the new album: https://abba.lnk.to/VoyageAlbum Listen to more music by ABBA: https://abba.lnk.to/musicID Follow ABBA: Facebook: https://www.facebook.com/ABBA/ Instagram: https://www.instagram.com/abba/ Twitter: https://twitter.com/abba TikTok: https://www.tiktok.com/@abba Read More About ABBA: http://www.abbasite.com/ Video produced by: Lasse Hallström Music video by Abba performing Thank You For The Music. (C) 1977 Polar Music International AB #ABBA #TheAlbum
Official video for "Mint Tea", the first single off RADIOINACTIVE's fourth studio album "The Akashic Record" available in May via Flying Carpet Studios/LELP Follow @Radioinactive1 on Twitter Track produced by LA CAUTION. Video directed by TUCKER CAPPS. DIGITAL SINGLE "MINT TEA/BURY ME STANDING" AVAILABLE AVAILABLE APRIL 9. - Vidéo officielle de "Mint Tea", le premier single issu du quatrième album studio de RADIOINACTIVE, "The Akashic Record" disponible en mai prochain sur Flying Carpet Studios/IDOL. Morceau produit par LA CAUTION. Clip réalisé par TUCKER CAPPS. SINGLE "MINT TEA/BURY ME STANDING" DISPONIBLE SUR ITUNES ET AUTRES PLATEFORMES LE 9 AVRIL. (C) 2012 FLYING CARPET STUDIOS.
Official video for "Mint Tea", the first single off RADIOINACTIVE's fourth studio album "The Akashic Record" available in May via Flying Carpet Studios/LELP Follow @Radioinactive1 on Twitter! Track produced by LA CAUTION. Video directed by TUCKER CAPPS. HD version Vidéo officielle de "Mint Tea", le premier single issu du quatrième album studio de RADIOINACTIVE, "The Akashic Record" disponible en mai prochain sur Flying Carpet Studios/LELP. Morceau produit par LA CAUTION. Clip réalisé par TUCKER CAPPS. SINGLE "MINT TEA/BURY ME STANDING" DISPONIBLE SUR ITUNES ET AUTRES PLATEFORMES LE 9 AVRIL. (C) 2012 FLYING CARPET STUDIOS. Facebook: KAMALSOUND Buy It Now! http://itunes.apple.com/us/album/the-akashic-record/
Music video for "Pyramidi" by Radioinactive. Directed by Anisa Qureshi. From the album Pyramidi on Mush Records. www.mushrecords.com. Lyrics: Prophet of god In quest of the uttermost Long have you searched the distances for your ship And now your ship has come and you must needs go Deep is your longing for the land of your memories And the dwelling place of your greater desires And our love would not bind you Nor our needs hold you Yet this we ask ere you leave us That you speak to us and give us of your truth This is a journey Into the desert As I enter the measure On the back of a camel That was robotic And I got it from a lizard-man That came from a hole in the sky That came down in a prehistoric time With a holographic rhyme Accelerating mankind From a grunt...
"Hip-Hop Helmet" out now (Flying Carpet Studios/Laitdbac) LP, CD, Tape and digital North America/Asia: http://radioinactive.bandcamp.com Europe: https://laitdbac.bandcamp.com/album/radioinactive-hip-hop-helmet HHV: http://www.hhv.de/shop/en/catalog/all/artist:radioinactive/sort:R/per:25?term=radioinactive iTunes: bit.ly/1mcxNQX Official website: http://www.radioinactivemusic.com Directed, edited, and Shot by Hazard Gibson, additional camera by Isaac Campos.
Official Music video for Never Ends from Radioinactive's "The Akashic Record". Directed by Matthew Holt. Director of Photography: Bobby Gibson Edit/Montage by Matthew Holt. Assistant Editor: Nathan Seifert Produced by Radioinactive Bass: Burt Gregory Background vocals: Alyssa Noui toasting: Andre Afram Asmar. Album available on Itunes http://itunes.apple.com/us/album/the-akashic-record/id520787097
Follow @Radioinactive1 on Twitter! Official Music Video from Radioinactive's The Akashic Record. Directed by Owen A. Smith Cinematographer Diego Torroija B-side off the first single of RADIOINACTIVE's fourth studio album "The Akashic Record" available on Itunes now http://itunes.apple.com/us/album/the-akashic-record/id520787097
:Radioinactive La Caution 2Mex - Mint Tea [Clean]
Provided to YouTube by The Orchard Enterprises Launch Padlock Smithereen · Radioinactive Pyramidi ℗ 2001 Mush Released on: 2001-08-28 Music Publisher: On The Down Low Music (ASCAP) Music Publisher: Mally Godzilla Music (ASCAP) Music Publisher: Art Rap Music (ASCAP) Auto-generated by YouTube.
XOLOLANXINXO, JIZZM, AWOL ONE, RADIOINACTIVE, AND CIRCUS, LIVE @ THE EL REY THEATER IN LOS ANGELES 2002 Mush Records tour with Radionactives band led by Anti MC the Pyramidi Allstars
From Radioinactive "The Akashik Record" 2012
"Hip-Hop Helmet" out april 22 Pre-order (LP, CD, Tape and digital) http://radioinactive.bandcamp.com (North America/Asia...) http://laitdbac.bandcamp.com (Europe)
Music video for "Pyramidi" by Radioinactive. Directed by Anisa Qureshi. Shot by Eric Jones. From the album Pyramidi on Mush Records. www.mushrecords.com. Follow @Radioinactive1 on Twitter
Provided to YouTube by IDOL Gobo · Radioinactive The Akashic Record ℗ Flying Carpet Studios Released on: 2012-04-30 Lyricist: Kamal de Iruretagoyena Humphrey Composer: Kamal de Iruretagoyena Humphrey Auto-generated by YouTube.
Directed by Tucker Capps. DP Owen Smith, Terrance Lofton-Camera, Tim Baker Gaffer,Maxi SIngle available on iTunes. https://itunes.apple.com/us/album/chump-remixes-ep/id654934462 Flying Carpet Studios 2013 Follow Radioinactive on twitter @Radioinactive1 introducing Sheldon Sims as "the Champ",Matt Alsberg-Bass,guitar, Radioinactive- Drums, Clarinet, Bass Clarinet, David Moyer-Baritone Sax, Burt-Claps, Background vocals,Alyssa Noui- Background vocals, David Humphrey, background vocals, Andre Asmar,-additional arrangement,
Andrea Britton is a British singer-songwriter and a soulful trance vocalist and runs her own online and brand marketing consultancy.
Andrea Britton runs her own online marketing and social media consultancy, where she writes a weekly blog that has attracted over 11,000 people in 2 years.
She spent over 15 years in the music industry releasing tracks globally. Britton's single "Am I on Your Mind?", recorded with Oxygen, made it to #30 on the UK Singles Chart in late 2002. In 2005, she had another hit single, "Winter", with DT8 Project, which made #35. Her other notable songs include the singles "Time Still Drifts Away" and "Inner Sense" with The Disco Brothers, "Wait for You" with Lost Witness, "Take My Hand" with Jurgen Vries (which peaked at #23) and "Counting Down The Days" with Sunfreakz in 2007 (peaked at #37 on the UK chart). She has appeared with 4 Strings and on numerous compilation albums worldwide, and continues to feature on many dance tracks around the world.
Ain't got no trouble in my life
No foolish dreams to make me cry
I'm never frightened or worried
You know, I always get by
I heat up, heat up
I cool down, cool down
When something gets in my way, I go 'round it
I don't let life get me down
Gonna take it the way that I found it
(Chorus)
I've got the music in me
I've got the music in me
I've got the music in me
I've got the music in me
I've got the music in me
I've got the music in me
You say that life is a circle
But that ain't the way that I found it
Gonna move in a straight line
Keeping my feet firmly on the ground
I heat up, heat up
I cool down, cool down
I've got words in my head, so I sing them
I don't let life get me down
Don't let it get me
Can't hold onto my blues, so I play them
(Chorus)
I've got the music in me
I've got the music in me
I've got the music in me
I've got the music in me
I've got the music in me
I've got the music in me
Feel funky, feel good
Gonna tell you, out in the neighborhood
Gonna fly like a bird on the wing
Hold on to your hat, hey, hey
Sing, sing, sing, sing
(Chorus)
I've got the music in me
I've got the music in me
I've got the music in me
I've got the music in me
I've got the music in me
I got the music, pretty music
I've got the music in me
I've got the music in me
I've got the music in me
I've got the music in me
I've got the music in me
I've got the music in me