- published: 08 May 2021
- views: 8427075
'+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; })); }); -->
I Need may refer to:
"I Need" is a song by Irish singer Maverick Sabre, from his debut studio album Lonely Are the Brave. It was released on 4 November 2011 as a digital download in the United Kingdom.
A music video to accompany the release of "I Need" was first released onto YouTube on 16 September 2011 at a total length of four minutes and two seconds. In the video, Stafford travels back to his native town of New Ross. The video features many locals of the town and places like 'Aladdins cave' and 'New Ross Crystal'.
Robert Copsey of Digital Spy gave the song a positive review stating:
Not that there is much in the way of propaganda here, as little more than strings, drums and an electric organ play out over Sabre's self-penned words about remembering the good ol' days. "I need blue skies/ I need them old times/ I need something good," he rap-sings is his inimitable twang on a gravelly chorus that burrows deeper into your brain with each listen. Don't worry mate, we have a sneaking suspicion that things will pick up again very soon. .
Armageddon is a Scottish beer introduced on 3 November 2012. Ingredients include crystal malt, wheat, flaked oats and Scottish spring water. It is labelled as the world's 2nd strongest beer as of October 2013, after Brewmeister's Snake Venom was released, with an ABV rating of 65%.
Armageddon (2008) was a professional-wrestling pay-per-view event produced by the World Wrestling Entertainment (WWE) promotion and presented by Ubisoft's Prince of Persia. It took place on December 14, 2008, at the HSBC Arena in Buffalo, New York. It featured professional wrestlers and other talent from all WWE's three brands: Raw, SmackDown and ECW. The ninth and final event within the Armageddon chronology, it featured on its card seven professional wrestling matches.
During the SmackDown main event, Jeff Hardy defeated Triple H and WWE Champion Edge in a match involving three competitors to win the championship. The Raw main event featured the World Heavyweight Championship contested in a standard wrestling match, in which John Cena defeated Chris Jericho to retain the title. The undercard featured several matches, including CM Punk against Rey Mysterio in the finals of a tournament to determine the number-one contender to the WWE Intercontinental Championship, and Randy Orton versus Batista in a standard wrestling match.
Armageddon is the third studio album and fourth album overall by Canadian rock band Prism. It was released in 1979 on Canadian record label GRT. It achieved double platinum status in Canada (in excess of 200,000 units sold).
Armageddon is notable for several reasons. Bruce Fairbairn received the Canadian music industry 1980 Juno Award for Producer of the Year for the album. Band leader and guitarist-songwriter Lindsay Mitchell received the SOCAN Song of the Year award for "Night to Remember". It is the band's best selling album. Despite all the commercial success, the band's record label, GRT Records, filed for bankruptcy in the same year of the album's release. The album is also notable for the songwriting contributions by Bryan Adams.
Armageddon was crucial in Prism's commercial development. The band had already released two successful albums, both reaching platinum status in Canada (100,000+ units sold.) But they had yet to break into the US in a significant way and were only an opening act on the Canadian arena rock tour. Armageddon was expected to be their breakout album, elevating the band to international success and a concert headline act. The first and biggest obstacle the band faced was a lack of songwriting within the lineup. Jim Vallance, under the pseudonym "Rodney Higgs", was the original and principal songwriter for Prism. But after the first album, he withdrew from the band and only provided token contributions. The role of principal songwriter was then left to Lindsay Mitchell. Although a capable songwriter, he could not match the quantity of material written by Vallance. This in turn forced the band to go outside the lineup for new material.
Lithe - I need (Prod. Lithe) Stream https://symphony.to/lithe/ineed Follow https://www.instagram.com/lithe https://www.tiktok.com/@iamlithe https://twitter.com/iamlithe https://soundcloud.com/lithe9 https://www.facebook.com/lithe9601/ Subscribe https://www.youtube.com/@lithe-music?sub_confirmation=1 Lyrics Shorty, yeah, she worried if I might show (Mm) Damn, it's hard to care for a side, though (Mm) Out here with my mains in the night show (Mm) Drinking, party, yeah, we keep the lights low (Mm) I been 'bout mine all the way (Mm) Ice cold, what a nigga got to say now? (Mm) Sippin' Henny, we been mobbin' through the night, though, yeah Movin' like we trappin' out a bando I need, I need, I need, I need, I need I need, I need, I need, I need, I need I need you here with me Don't you fu...
Watch the official music for "I Need" performed by Maverick Sabre The official video for " I Need", the new single from Maverick Sabre. (C) 2011 Mercury Records Ltd "I Need" out 6th November 2011 on iTunes. Maverick Sabre is on tour in the UK during October and November: www.mavericksabre.com/gigs www.mavericksabre.com www.facebook.com/mavericksabre www.twitter.com/mavericksabre #MaverickSabre #INeed #Vevo #Alternative #Indie #OfficialMusicVideo
LeAnn Rimes - I Need You (Lyrics) I need you like water like breath like rain 🔔 Don't forget to subscribe and turn on notifications! Follow LeAnn Rimes https://www.instagram.com/leannrimes/ https://twitter.com/leannrimes https://www.facebook.com/leannrimesmusic I Need You Lyrics [Verse 1] I don't need a lot of things I can get by with nothing But all the blessings life can bring I've always needed something But I've got all I want when it comes to loving you You're my only reason You're my only truth [Chorus] I need you like water, like breath, like rain I need you like mercy from Heaven's gate There's a freedom in your arms That carries me through I need you [Verse 2] You're the hope that moves me To courage again, oh yeah You're the love that rescues me When the cold winds rage And i...
티빙에서 스트리밍 : https://tving.onelink.me/xHqC/30a78d6f M COUNTDOWN|Ep.853 이영지 X 명재현 - 아이 니드 어 걸 (Lee Young Ji X JAEHYUN - I Need A Girl) World No.1 K-POP Chart Show M COUNTDOWN Every Thur 6PM(KST) Mnet Live on Air 매주 목요일 저녁 6시 엠넷 생방송 #티빙에서스트리밍
Benson Boone - Beautiful Things (Official Music Video) Listen to 'Fireworks & Rollerblades' the debut album from Benson Boone now at: https://BensonBoone.lnk.to/FireworksRollerblades Listen to the song now at: https://BensonBoone.lnk.to/BeautifulThings 🔔 Subscribe to Benson's Channel: https://bit.ly/3RV5Na8 Follow Benson Boone: http://www.BensonBoone.com https://www.Tiktok.com/@bensonboone http://www.Instagram.com/BensonBoone http://www.Twitter.com/BensonBoone http://www.Facebook.com/BensonBoone Credits: Music Video Directed by: Matt Eastin Written by Benson Boone, Jackson Lafrantz Larsen, and Evan Blair Produced by Evan Blair Engineered by Evan Blair Mixed by Alex Ghenea Mastered by Randy Merrill Lyrics: For a while there it was rough But lately I’ve been doing better Than the las...
LeAnn Rimes - I Need You Get: Lyrics: [Verse 1] I don't need a lot of things I can get by with nothing But all the blessings life can bring I've always needed something But I've got all I want when it comes to loving you You're my only reason You're my only truth [Chorus] I need you like water, like breath, like rain I need you like mercy from Heaven's gate There's a freedom in your arms That carries me through I need you [Verse 2] You're the hope that moves me To courage again, oh yeah You're the love that rescues me When the cold winds rage And it's so amazing 'Cause that's just how you are And I can't turn back now 'Cause you've brought me too far [Chorus] I need you like water, like breath, like rain I need you like mercy from Heaven's gate There's a freedom in your arms That carr...
Provided to YouTube by Atlantic Records I Need · TGT I Need ℗ 2013 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States. Additional Recording: Andrew Hey Producer: B.A.M. Music: Brandon Hodge Engineer: David Boyd Masterer: David Kutch Executive Producer: Ginuwine Lead Vocals: Ginuwine Mixer: Harvey Mason, Jr Engineer: Michael Daley Editor: Richard Furay Additional Recording: Richard Furay Recorded by: Richard Furch Executive Producer: Tank Lead Vocals: Tank Music: The Underdogs Vocal Producer: The Underdogs Co-ordinator Production: Trina Bowman Executive Producer: Tyrese Lead Vocals: Tyrese Writer: Brandon Hodge Writer: Damon Thomas Writer: Elgin Lumpkin Writer: Harvey Mason, Jr. Writer: Lonny Bereal Writer...
support me: https://patreon.com/SAGE_BEATs?utm_medium=unknown&utm_source=join_link&utm_campaign=creatorshare_creator&utm_content=copyLink purchase my wave/phonk pack : https://payhip.com/xSAGEx if you are a fan of Grimes, lxst cxntury, skeler, Ramirez, or Antxres you have landed in the right place Consider supporting my work by following: Spotify: https://open.spotify.com/artist/5Hrr2Bao1LAeHZ5n5kARe4?si=u4nyQIH-TLiS_jJXe4gr6w IG: https://www.instagram.com/sage_beatz/ SC: https://on.soundcloud.com/o1snVkg2EnmpdfzBA BC: https://www.sagexmusic.bandcamp.com/ Youtube : https://www.youtube.com/@SAGE_BEATS/videos #phonk #wavephonk #underground #music #skeler #lxstcxntury
Get COMPTON the NEW ALBUM from Dr. Dre on Apple Music: http://smarturl.it/Compton Music video by Dr. Dre performing I Need A Doctor featuring Eminem and Skylar Grey (Explicit). © 2011 Aftermath Records #VEVOCERTIFIED on Aug. 17, 2012. http://www.youtube.com/vevocertified
Watch the official music for "I Need" performed by Maverick Sabre The official video for " I Need", the new single from Maverick Sabre. (C) 2011 Mercury Records Ltd "I Need" out 6th November 2011 on iTunes. Maverick Sabre is on tour in the UK during October and November: www.mavericksabre.com/gigs www.mavericksabre.com www.facebook.com/mavericksabre www.twitter.com/mavericksabre #MaverickSabre #INeed #Vevo #Alternative #Indie #OfficialMusicVideo
Maverick Sabre & Luis Leon - I Need (Remix) is OUT NOW on Spinnin' Deep! Grab your copy HERE: https://spinnindeep.lnk.to/INeedRemix Stay up to date on more Spinnin' artists & music here! ► http://spinninrecords.com A long anticipated release, the Luis Leon version of Maverick Sabre’s inspirational song I Need. Here, the incredible vocals get intertwined with sweet organ melodies and subtle deep house rhythms. There’s nice melodic effects and a laidback groove, bound to make the sun shine everywhere this tune gets played. Unforgettable music! Follow Maverick Sabre: https://www.facebook.com/mavericksabre https://twitter.com/mavericksabre https://soundcloud.com/maverick-sabre Follow Luis Leon: https://www.facebook.com/LuisLeonMusica https://twitter.com/luisleonmusica https://soundcloud.co...
Maverick Sabre performs an accoustic versoin of I Need in a World War II bunker hidden in the sand dunes at Beach Break Live festival, South Wales, exclusively for VEVO UK's SummerSiz Festival Programme
See Maverick Sabre performing the track 'I Need' as part of his 1Xtra Live performance in Birmingham
Music video by Maverick Sabre performing I Need. (C) 2011 Mercury Records Limited
Maverick Sabre 'Lonely Are The Brave' (Mav's Version) available to buy now on CD and Vinyl or digitally featuring rarities and demos. Get it now: https://mavericksabre.orcd.co/lonelyarethebrave Follow Maverick Sabre: https://www.instagram.com/mavericksabre https://www.facebook.com/mavericksabre https://twitter.com/MaverickSabre https://sptfy.com/6qfV https://apple.co/3EQcbJ8 Music credits: Produced by Charlie J Perry and Utters Additional Production by Utters at Lion Aboard Studio, London Mixed by Utters Mastered by Stuart Hawkes at Metropolis Mastering, London Video credits: Creative Direction - Maverick Sabre Director: OJ Deady Producer: Sam Herbert Assistant Producer: Jacob Strugnell DOP: Mark Warmington Gaffer: Jimmy Crippen 1st AC: Sean Webb Styling by: Adémidé Udoma Stylist assis...
*I do not own this song. No copyright intended. All rights go to their rightful owners. This was made for entertainment purposes only.*
In September and October 2011, Maverick Sabre visited music colleges across the UK to collaborate with their students on a brand new version of his single "I Need". This is the video and the track they made. With thanks to: Access to Music, Norwich Access to Music, Brighton Trafford College, Manchester Liverpool Institute of Performing Arts Sheffield Norton College http://www.facebook.com/mavericksabre Pre-order the original version of "I Need" by Maverick Sabre: http://itunes.apple.com/gb/preorder/i-need-remixes/id468179539 http://www.mavericksabre.com http://www.facebook.com/mavericksabre http://twitter.com/mavericksabre http://youtube.com/mavericksabreVEVO
"I Need" taken from the forthcoming album ''Lonely Are The Brave'' by Maverick Sabre. Click here to prorder the album at iTunes: http://zaphod.uk.vvhp.net/v-v/120116153611 http://www.mavericksabre.com http://www.facebook.com/mavericksabre http://twitter.com/mavericksabre http://youtube.com/mavericksabreVEVO
I Need may refer to:
Da-da-da-daa-da-da-hoo
Da-da-da-daa-da-da-da-hoo-hoo
You say you gonna leave me, for the arms of another.
You say my love for you is no good and we can't go any further.
But have pity on me.
I was blind but know I see.
Stay with me and never walk out of my life.
Because...
Ooo, I need your lovin'. (I need your lovin')
Oh, ooo, I need your lovin'. (I need your lovin', baby)
Inspite of all the wrong I've done, I'll make it up to ya.
Even if it takes all my life, I'll prove my love to ya.
So please don't go away.
With me always stay, 'cause I love you.
And I couldn't stand it being away, girl.
Ooo, I need your lovin'. (I need your lovin')
Oh, ooo, I need your lovin'. (I need your lovin', baby)
Girl, restore the faith you had in me.
I'm beggin' you down on my knees.
Please don't take your love from me.
Don't leave me, don't leave.
Forgive this fool, for causing your heart to suffer.
Remember two wrongs don't make a right, it'll only make things tougher.
So have little sympathy, on a poor fool like me.
And stay with me, please don't walk out of my life.
Because...
Ooo, I need your lovin'. (I need your lovin')
Oh, ooo, I need your lovin'. (I need your lovin', baby)
Oh baby, baby, baby. (I need your lovin')
Oh, woo, I need your lovin'. (I need your lovin', baby)
Oh-oh-oh (I need your lovin')
I need your lovin' baby, baby, baby. (I need your lovin', baby)
Oh, woo, I need your lovin'. (I need your lovin')
I need it, I need it.