- published: 25 Jan 2018
- views: 1531387
'+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; })); }); -->
Dean Bent (born January 1971), better known as Sweetie Irie, is a British reggae singer and DJ.
Born in London in 1971, Dean Bent began working on local sound systems as a teenager, bringing him to the attention of Angus Gaye of Aswad, who recruited him to toast on the dancehall mix of their single "On and On". He was signed by the Island Records subsidiary Mango Records, and in 1991 released his debut album, DJ of the Future, and singles such as "Money Honey" (with Scoobie), "Maaga Man" and "New Talk" (with Jo 90). His single "Call Me" included him reading out a phone number that turned out to be a real private phone number, causing his record label to pay compensation. In 1991, he appeared on the Scritti Politti single "Take Me in Your Arms and Love Me", which reached no. 47 in the UK. In 2001, he had a UK Top 30 hit with "Who?", a collaboration with Ed Case.
Through his music, Sweetie Irie has travelled the world performing at events such as Jamaican Sunsplash, Notting Hill Carnival, international shows in Grenada, Trinidad and all the way to Japan Splash. As well as the artists mentioned above, he has also collaborated with Maxi Priest, Ms Dynamite, No Doubt, Spee, Specialist Moss, Gorillaz and Gwen Stefani.
Best of My Love may refer to:
"Best of My Love" is a song written by Don Henley, Glenn Frey, and J. D. Souther. It was originally recorded by the Eagles (with Henley singing lead vocals), and included on their 1974 album On the Border. The band's first Billboard Hot 100 number 1 single in March 1975, the song also topped the easy listening (adult contemporary) chart for one week a month earlier.Billboard ranked it as the number 12 song for 1975.
In 2009 J.D. Souther would recall of "Best of My Love": "Glenn found the tune; the tune I think came from a Fred Neil record... We were working on that album (On the Border) and came to London. The three of us were writing it and were on deadline to get it finished. I don’t know where we got the inspiration." Musically, Glenn Frey recalled: "I was playing acoustic guitar one afternoon in Laurel Canyon, and I was trying to figure out a tuning that Joni Mitchell had shown me a couple of days earlier. I got lost and ended up with the guitar tuning for what would later turn out to be 'The Best of My Love.'" According to Henley, much of the lyrics was written while in a booth in Dan Tana's Restaurant close to the Troubadour.
"Best of My Love" is a 1977 song by the American band The Emotions. Released as a single on June 9, 1977 from their album Rejoice, The song was composed by Maurice White and Al McKay of Earth, Wind & Fire. Earth, Wind & Fire would later team up with the Emotions for the 1979 hit "Boogie Wonderland". "Best of My Love" won a Grammy for Best R&B Performance By A Duo Or Group With Vocal and also won an American Music Award for Favourite Soul/R&B Single.
The song was listed at #87 on The Billboard Hot 100 All-Time Top Songs. and it was the third biggest Pop song of 1977 and the fifth biggest R&B song of 1977. "Best of My Love" has been certified platinum in the US by the (RIAA) and silver in the UK by the British Phonographic Industry. Recent reviews have been largely positive, and the song continues to appear on "Best of the '70s" lists.
The song has an upbeat vibe, with a prominent bass line and horns accenting the drums between the verses and chorus.
Music video by The Emotions performing Best of My Love (Audio) (Pseudo Video). (C) 2017 Columbia Records, a division of Sony Music Entertainment http://vevo.ly/3Y3lnh
Provided to YouTube by Legacy/Columbia Best of My Love · The Emotions The Best Of The Emotions: Best Of My Love ℗ 1977 Columbia Records, a division of Sony Music Entertainment Released on: 1996-03-01 Drums, Composer, Lyricist, Producer: Maurice White Guitar: Roland Bautista Guitar: Keith Henderson Composer, Lyricist: Albert McKay Guitar: Marlo Henderson Guitar: Joe Hutchinson Jr. Guitar: Jon Lind Guitar: Albert McKay Guitar: Greg Moore Guitar: Carlos Rios Percussion: Paulinho da Costa Percussion: Earl De Rouen Drums, Percussion: Fred White Drums: Leon "Ndugu" Chancler Drums: Donzell Davis Drums: Steve Ferrone Drums: James Gadson Drums: Ricky Lawson Keyboards: Larry Dunn Keyboards: David Foster Keyboards: Gary Glenn Keyboards: Terry L. Marshall Keyboards: Clarence McDonald Keyboards: B...
Provided to YouTube by Rhino/Elektra Best of My Love (2018 Remaster) · Eagles Legacy ℗ 2018, 1974 Asylum Records. Remastering Engineer: Bernie Grundman Pedal Steel Guitar: Bernie Leadon Backing Vocals: Bernie Leadon Engineer: Bill Szymczyk Drums: Don Henley Lead Vocals: Don Henley 12 String Guitar: Glenn Frey Backing Vocals: Glenn Frey Recording Engineer: Glyn Johns Producer: Glyn Johns Bass Guitar: Randy Meisner Backing Vocals: Randy Meisner Assistant Engineer: Rob Thaer Writer: Don Henley Writer: Glenn Frey Writer: J. D. Souther Auto-generated by YouTube.
4K Remastered Official Music Video for "The Best of My Love" (Live from the Capital Centre in Landover, Maryland in 1977) performed by the Eagles. Original song from 'On the Border' (1974). TO THE LIMIT: THE ESSENTIAL COLLECTION, the ultimate career-spanning collection that combines the band’s greatest hits with beloved album tracks and classic live performances, available now, as a 3CD set, a deluxe 6LP set on 180-gram vinyl, and digitally. A limited edition, embossed lithograph will be available as a gift with purchase, exclusively at https://www.Eagles.com. Order yours here: https://Eagles.lnk.to/ToTheLimit ♪ The Latest from Eagles https://linktr.ee/eaglesband Subscribe to the Eagles' channel https://Rhino.lnk.to/EaglesYTID ♪ Eagles Tour https://eagles.com/events ♪ Eagles Store ht...
Soaring vocals
'BEST OF MY LOVE' (the Emotions Classic) performed Live by the HINDLEY STREET COUNTRY CLUB feat Pina Del Re, Nikki Heuskes and Lesley Williams Produced by the HSCC Mixed by @producernerd https://www.youtube.com/c/producernerd?sub_confirmation=1 Recorded Live at Adelaide Recording Studios, South Australia Support Crew: PeterV@Derringers Camera: Peadar McBride @SmakOnContent Lead Vocals: Pina Del Re, Nikki Heuskes and Lesley Williams Guitar: James Muller Bass: Constantine Delo Keyboards: Dave Ross and Darren Mullan Drums: Mario Marino Percussion: Dan Donato Subscribe to our artist's channels! Darren Mullan (Keys and Mixing) https://www.youtube.com/c/producernerd?sub_confirmation=1 Nikki Heuskes (vocals) https://www.youtube.com/channel/UCRd6PLL5YqcNdh0qs6F5xlg?sub_confirmation=1 Pina Del...
iTunes::https://itunes.apple.com/jp/artist/an-tianrei/id656607894?at=10lpgB&ct=70007557_yt Official facebook : https://www.facebook.com/yasudareiofficial Official YouTube Channel:https://www.youtube.com/user/yasudareiSMEJ 13歳の頃から元気ロケッツに参加してきたシンガー、安田レイのデビューシングル。 サウンドプロデュースを手掛けるのは 元気ロケッツのプロデューサーでもある玉井健二(agehasprings)。 MBS・TBS系全国ネット「宇宙戦艦ヤマト2199」エンディングテーマ。
ソロデビュー10周年記念、Music Videoをフル公開! 楽曲のダウンロード、ストリーミングはこちら! https://reiyasuda.lnk.to/artistpage 2013年7月3日リリース、記念すべきソロデビュー曲。テレビアニメ『宇宙戦艦ヤマト2199』中期エンディングテーマ。 安田レイInstagram https://www.instagram.com/yasudarei/ #安田レイ #宇宙戦艦ヤマト2199
hey it's peggy and this is my new video best of my love.
4K Remastered Official Music Video for "The Best of My Love" (Live from the Capital Centre in Landover, Maryland in 1977) performed by the Eagles. Original song from 'On the Border' (1974). TO THE LIMIT: THE ESSENTIAL COLLECTION, the ultimate career-spanning collection that combines the band’s greatest hits with beloved album tracks and classic live performances, available now, as a 3CD set, a deluxe 6LP set on 180-gram vinyl, and digitally. A limited edition, embossed lithograph will be available as a gift with purchase, exclusively at https://www.Eagles.com. Order yours here: https://Eagles.lnk.to/ToTheLimit ♪ The Latest from Eagles https://linktr.ee/eaglesband Subscribe to the Eagles' channel https://Rhino.lnk.to/EaglesYTID ♪ Eagles Tour https://eagles.com/events ♪ Eagles Store ht...
Provided to YouTube by Rhino/Elektra Best of My Love (2018 Remaster) · Eagles Legacy ℗ 2018, 1974 Asylum Records. Remastering Engineer: Bernie Grundman Pedal Steel Guitar: Bernie Leadon Backing Vocals: Bernie Leadon Engineer: Bill Szymczyk Drums: Don Henley Lead Vocals: Don Henley 12 String Guitar: Glenn Frey Backing Vocals: Glenn Frey Recording Engineer: Glyn Johns Producer: Glyn Johns Bass Guitar: Randy Meisner Backing Vocals: Randy Meisner Assistant Engineer: Rob Thaer Writer: Don Henley Writer: Glenn Frey Writer: J. D. Souther Auto-generated by YouTube.
Studio version , lyrics , pics. http://www.eaglesband.com/ Asylum Records 1974 Every night I'm lyin' in bed Holdin' you close in my dreams Thinkin' about all the things that we said Comin' apart at the seams We try to talk it over But the words come out too rough I know you were tryin' To give me the best of your love Beautiful faces and loud, empty places Look at the way that we live Wastin' our time on cheap talk and wine Left us so little to give That same old crowd was like a cold dark cloud That we could never rise above But here in my heart I give you the best of my love Oh, sweet darlin', you get the best of my love (You get the best of my love) Oh, sweet darlin', you get the best of my love (You get the best of my love) I'm goin' back in time And it's a sweet dream It was a qui...
Provided to YouTube by Believe SAS Best Of My Love · Eagles Unplugged 1994 - The Second Night ℗ RR Live Recordings Released on: 2017-11-23 Author: Eagles Composer: Eagles Auto-generated by YouTube.
Provided to YouTube by RR Live Recordings The Best Of My Love · The Eagles The Summit, Houston, 1976 ℗ RR Live Recordings Released on: 2018-01-20 Composer: The Eagles Lyricist: The Eagles Auto-generated by YouTube.
To You ♡ Interpret: The Eagles Album: On The Border (1974) Song Title: The Best Of My Love Lyrics: Every night I'm lying in bed Holding you close in my dreams Thinking about all the things that we said And coming apart at the seams We try to talk it over But the words come out too rough I know you were trying To give me the best of your love Beautiful faces And loud, empty places Look at the way that we live Wasting our time on cheap talk and wine Left us so little to give That same old crowd was like a cold dark cloud That we could never rise above But here in my heart I give you the best of my love Oh-oh-oh-oh, sweet darling You get the best of my love (You get the best of my love) Oh-oh-oh-oh, sweet darling You get the best of my love (You get the best of my love) I'm goin...
Nirvana, Scorpions, Aerosmith, Bon Jovi, U2, Led Zeppelin, Eagles - Slow Rock Ballads 70s 80s 90s To more people could listen it! Don't forget to Like & Share the mix if you enjoy it! 🔔: Thanks for watching! Don't forget to SUBCRIBE, Like & Share my video if you enjoy it! Have a nice day! ! ❤ #slowrock #slowrock70s80s90s #slowrockballads #rock #slow #rockballads #bestrocksongs #rocklovesongs #slowrocksongs #ballad #bestrock #slowsongs #slowrockmedley #slowrock80s90s #slowrocklovesongnonstop #rockballads #rockballad
Provided to YouTube by Rhino/Elektra The Best of My Love (Live at the Millennium Concert, Staples Center, Los Angeles, CA, 12/31/1999) (2018 Remaster) · Eagles Legacy ℗ 2018, 1999 Asylum Records. Saxophone: Al Garth Remastering Engineer: Bernie Grundman Assistant Engineer: Charles Bouis Assistant Engineer: Dave Natale Electric Guitar: Don Felder Backing Vocals: Don Felder Guitar: Don Henley Lead Vocals: Don Henley Producer: Eagles Mixing Engineer: Elliot Scheiner Producer: Elliot Scheiner Guitar: Glenn Frey Backing Vocals: Glenn Frey Recording: Guy Charbonneau Engineer, Producer: Jay Oliver Keyboards: Jay Oliver Engineer: Jeremy Janeczko Percussion: Jeremy Janeczko Guitar: Joe Walsh Backing Vocals: Joe Walsh Keyboards: John Corey Backing Vocals: John Corey Engineer, Producer:...
Dean Bent (born January 1971), better known as Sweetie Irie, is a British reggae singer and DJ.
Born in London in 1971, Dean Bent began working on local sound systems as a teenager, bringing him to the attention of Angus Gaye of Aswad, who recruited him to toast on the dancehall mix of their single "On and On". He was signed by the Island Records subsidiary Mango Records, and in 1991 released his debut album, DJ of the Future, and singles such as "Money Honey" (with Scoobie), "Maaga Man" and "New Talk" (with Jo 90). His single "Call Me" included him reading out a phone number that turned out to be a real private phone number, causing his record label to pay compensation. In 1991, he appeared on the Scritti Politti single "Take Me in Your Arms and Love Me", which reached no. 47 in the UK. In 2001, he had a UK Top 30 hit with "Who?", a collaboration with Ed Case.
Through his music, Sweetie Irie has travelled the world performing at events such as Jamaican Sunsplash, Notting Hill Carnival, international shows in Grenada, Trinidad and all the way to Japan Splash. As well as the artists mentioned above, he has also collaborated with Maxi Priest, Ms Dynamite, No Doubt, Spee, Specialist Moss, Gorillaz and Gwen Stefani.
[Wale:]
I needed to feel like when your mother
Used to take you to the african party
[Chorus:]
You're my sweetie,
My sugar, My lady,
My lover, so honey let me hold you, let me love you, forever
[Verse 1:]
Well, maybe not forever
Chain withdrawn when we not together
Best foot forward, holla at your boy
And I can get em all without lots of effort
Take her home, and we can get it on
Make my jelof with lots of pepper
God has blessed her, prauda dresser
Mix my guiness with a Dr. Pepper
I'm so Naija, she so ibo
She so sweet, shortie feed my ego
Me bold dude, Boladipo olu
Whole crew, roll through, got more green than whole foods
African queen got what you need
Said my name wale, Ba wo ni
[Chorus:]
You're my sweetie, My sugar,
My lady, my lover,
So honey let me hold you, let me love you, forever
[Verse 2:]
Who said I don't rap, I am naija all day
When I meet your mom I still du ba le
I am Wale, Oluwa
We be in the party like we own that bar
No regard when I'm going at a broad
And I go up in a party like I'm going abroad
Understand that's fly, damn super fly guy land in Du Bai
Ya'll can't get it, I make ya'll get it
Hate estate and my iPod with it
Money on the floor, throw it on a broad
This is not balling, but this is our culture
You is not hip then I can not coach her
If it's not couture, I will not go to her
If it's not k9, I will not couture
To much cognac wheres my chauffeur
[Chorus:]
You're my sweetie,
My sugar, My lady,
My lover, so honey let me hold you, let me love you, forever
Money on the floor, spray it spray it
Said there's Money on the floor, spray it spray it
Said there's Money on the floor, spray it spray it
Said there's Money on the floor, spray it spray it
Said there's Money on the floor, spray it spray it
Said there's Money on the floor, spray it spray it
Said there's Money on the floor, spray it spray it
Said there's Money on the floor, spray it spray it
[Chorus:]
You're my sweetie,
My sugar, My lady,