- published: 16 Jun 2009
- views: 690016736
'+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; })); }); -->
Mary Jane Blige (/ˈblaɪʒ/; born January 11, 1971) is an American singer, songwriter, model, record producer and actress. Starting her career as a background singer on Uptown Records in 1989, Blige released her first album, What's the 411?, in 1992, and has released 11 studio albums since and made over 150 guest appearances on other albums and soundtracks.
A recipient of nine Grammy Awards, in addition to receiving a record of thirty Grammy nominations, Blige is one of few entertainers in history to have eight or more albums to reach multi-platinum status. My Life, in particular, is considered among the greatest albums ever recorded according to Rolling Stone,Time, and Vibe. For her part in combining hip-hop and soul in the early-1990s and its subsequent commercial success, Blige received the Legends Award at the World Music Awards. Blige also received the Voice of Music Award from performance rights organization ASCAP, with its official Jeanie Weems stating that "[Blige's] music has been the voice of inspiration to women worldwide in both struggle and triumph." Blige made Time magazine's "Time 100" list of influential individuals around the world in 2007.
Stay Down may refer to:
Stay Down is the fourth studio album by Chicago pop punk group Smoking Popes. Released on Curb Appeal Records on August 5, 2008, it was the band's first studio album since their 2005 reunion and their first album of original material since 1997's Destination Failure. It's the only Smoking Popes album to feature drummer Ryan Chavez, who joined the band in 2006.
Shortly after the release of the album Curb Appeal Records folded and the album went out of print. The album's troubled release influenced the band's decision to find an established label and tour heavily behind their followup album, 2011's This Is Only A Test.
In 2011 the album was scheduled for rerelease, alongside Get Fired and Born to Quit, on Asian Man Records. By 2012 the release had been removed from the schedule and the band had moved on to SideOneDummy Records.
All songs written and composed by Josh Caterer.
"Stay Down" is a song by American recording artist Mary J. Blige from her eighth studio album, Growing Pains (2007). It was produced by Bryan-Michael Cox, who co-wrote the song with Johnta Austin and Blige herself. Released as the album's third and final single, it replaced "Hurt Again", that was released for a short time for airplay, but at the last minute was canceled in the favor of "Stay Down". The video for "Stay Down" was directed by Hype Williams and premiered on April 17, 2008.
REMASTERED IN HD! Official Music Video for Family Affair performed by Mary J. Blige. Follow Mary J. Blige Instagram: https://www.instagram.com/therealmaryjblige Twitter: https://twitter.com/maryjblige Facebook: https://www.facebook.com/maryjblige (C) 2001 Geffen Records #MaryJBlige #FamilyAffair #Remastered
REMASTERED IN HD! Music video by Mary J. Blige performing Be Without You. YouTube view counts pre-VEVO: 2,447,028. (C) 2005 Geffen Records #MaryJBlige #BeWithoutYou #Remastered
Mary J Blige Greatest Hits Full Album - Top Hits 2022 Mary J Blige - Top 20 Songs Mary J Blige ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ 🔔 If this music makes you happy , make sure to like ,subscribe & Please share this Mix on social pages (Facebook, Reddit, Twitter, etc.) so more people can listen together! We are a youtube music development company. We are looking forward to the cooperation of talented artists ✔ Please email here : [email protected] © ️ All rights belong to their respective owners, content ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ 🔔 R&B Songs is created to promote and support new artists, (musicians / labels, composers, producers, photographers / filmmakers) who want to create a fan base. Send your song or video on R&B Songs 🔔 We strive to find the best and most enjoyable music for you gu...
REMASTERED IN HD! Music video by Mary J. Blige performing No More Drama. (C) 2002 Geffen Records #MaryJBlige #NoMoreDrama #Remastered #Vevo
BET Awards Lifetime Achievement Award winner Mary J. Blige performs live with Lil Kim and Method Man in a performance to remember! #BETAwards SUBSCRIBE to #BET NOW! ►► http://bit.ly/1U0v9xG Download the BET NOW app for full episodes of your favorite BET shows and exclusive content! Connect with BET Web: http://www.BET.com Facebook: http://www.facebook.com/BET Twitter: http://www.twitter.com/BET Instagram: http://www.instagram.com/BET Google+: http://www.bet.us/gplusBET
The official video for Mary J. Blige's "Good Morning Gorgeous" from her album 'Good Morning Gorgeous' - Out Now! Stream 'Good Morning Gorgeous' on all platforms: https://maryjblige.ffm.to/gmgalbum Stream "Amazing (feat. DJ Khaled)" on all platforms: https://maryjblige.ffm.to/amazing Watch the official video: https://youtu.be/CRZig-WX_U8 Follow Mary: https://linktr.ee/therealmaryjblige http://twitter.com/maryjblige http://facebook.com/maryjblige http://instagram.com/therealmaryjblige Director: Eif Rivera Producer: Omar Reynoso DP: Joe Labisi 1st AD: Marc Kelly Art Director: Richard Han Production Company: ERG Designs x Fatking Films Commissioner: Lucas Prevost Styling for MJB: Jason Rembert Hair for MJB: Tym Wallace Make up for MJB: Porsche Cooper LYRICS Ooh Ooh, ooh, ohh, ah Ooh, ooh...
REMASTERED IN HD! Music video by Mary J. Blige performing Everything. YouTube view counts pre-VEVO: 2,252,809. (C) 1997 Geffen Records #MaryJBlige #Everything #Remastered #Vevo
Music video by U2 performing One (C) 2006 Universal-Island Records Limited #MaryJBlige #One #Vevo #RandB #OfficialMusicVideo
The official video for Mary J. Blige's "Amazing" featuring DJ Khaled from her album 'Good Morning Gorgeous' - Out Now! Stream 'Good Morning Gorgeous' on all platforms: https://maryjblige.ffm.to/gmgalbum Stream "Good Morning Gorgeous" on all platforms: https://maryjblige.ffm.to/gmg_ Watch the official video: https://maryjblige.ffm.to/gmg_video Follow Mary: https://linktr.ee/therealmaryjblige http://twitter.com/maryjblige http://facebook.com/maryjblige http://instagram.com/therealmaryjblige Director: Eif Rivera Producers: Omar Reynoso & Bruno Breil Vídeo Commissioner: Lucas Prevost Marketing: Rayna Bass DP: Parris Stewart 1st AD: Ibrahim Ham Yilla Art Direction: Fly Bry Productions Production Company: ERG Designs x Fatking Films LYRICS We the best music (Another one) All hail to the qu...
George Michael & Mary J. Blige - As (Official Video) Stream and download here: https://georgemichael.lnk.to/Streaming Subscribe to the George Michael YouTube channel: https://georgemichael.lnk.to/YouTubeSubscribe WATCH CARELESS WHISPER MUSIC VIDEO ► https://GeorgeMichael.lnk.to/CompleteCollection/youtube WATCH FREEDOM! '90 MUSIC VIDEO ► https://GeorgeMichael.lnk.to/CompleteCollection/youtube3 WATCH FASTLOVE MUSIC VIDEO ► https://GeorgeMichael.lnk.to/CompleteCollection/youtube4 WATCH LAST CHRISTMAS MUSIC VIDEO ► https://GeorgeMichael.lnk.to/CompleteCollection/youtube2 WATCH AS MUSIC VIDEO ► https://GeorgeMichael.lnk.to/CompleteCollection/youtube5 Follow George Michael: Tik Tok - https://www.tiktok.com/@georgemichaelofficial Instagram – https://www.instagram.com/georgemofficial/ X - ht...
Quin NFN “Stay Down” Produced by The Truth Experiment Engineered by CioMadeTheTrack Filmed by Fresco Filmz (Kade Fresco) STREAM: https://quinnfn.lnk.to/staydown IG https://instagram.com/quinnfn_?igshid=1htsh3dbd512z Twitter https://twitter.com/quin_nfn Soundcloud: https://soundcloud.com/quinnfn/quin-nfn-stay-down Spotify: https://open.spotify.com/artist/3M1quhETLChtt9NHKVaajX?si=_0gveysHSKKbZpT0CJVOCQ Apple: https://music.apple.com/us/artist/quin-nfn/1335632334
Provided to YouTube by Stem Disintermedia Inc. Stay Down · Brent Faiyaz Sonder Son ℗ 2017 Lost Kids Released on: 2017-10-13 Auto-generated by YouTube.
Provided to YouTube by Universal Music Group Stay Down · Big Sean Dark Sky Paradise ℗ 2015 Getting Out Our Dreams, Inc./Def Jam Recordings, a division of UMG Recordings, Inc. Released on: 2015-02-24 Producer: Da Internz Producer: L&F Studio Personnel, Recording Engineer: Maximilian Jaeger Studio Personnel, Recording Engineer: Gregg Rominiecki Studio Personnel, Mixer: Stan Greene Associated Performer, Sound Effects: Tilthony Daniels Associated Performer, Additional Vocals: Kanye West Composer Lyricist: Sean Anderson Composer Lyricist: Ernest Clark Composer Lyricist: Marcos Palacios Composer Lyricist: Kevin Randolph Composer Lyricist: Uforo Ebong Composer Lyricist: Christopher Umana Auto-generated by YouTube.
Music video by Mary J. Blige performing Stay Down. (C) 2008 Geffen Records #MaryJBlige #StayDown #Vevo
VIDEO PREMIERE on HARDCORE WORLDWIDE !!! STAY DOWN - MY WAY Stay Down Music Video for the song 'My Way', available on the EP album 'My way'. ►Full EP Stream: https://youtu.be/dvnQyLkr1f4 ♫ Mixed and Mastered by Jan Říha (studio Rápotice) https://www.fb.com/StudioRapotice FOLLOW US ON & MORE INFOS: http://bandzone.cz/staydown https://www.fb.com/StayDownOfficial https://www.instagram.com/staydown_official HARDCORE WORLDWIDE - HxCxWxW http://twitter.com/worldwidehc http://www.hardcore-worldwide.com http://www.youtube.com/hcworldwide https://www.facebook.com/hcworldwide LOOK AT: METAL WORLDWIDE - #MWW http://metal-world-wide.com https://www.facebook.com/MWWofficial GOTHIC WORLDWIDE - #GWW http://www.gothic-worldwide.com https://twitter.com/gothicworldwide https://www.facebook.com/goth...
Provided to YouTube by TuneCore Stay Down · Sneudie Stay Down ℗ 2019 Sneudie Released on: 2019-10-04 Producer: TnTXD Composer Lyricist: Danquarius Douglas Songwriter: Danquarius Douglas Auto-generated by YouTube.
Provided to YouTube by Awal Digital Ltd Stay Down (Ambient) · Moby · Moby Wait for Me ℗ Little Idiot Released on: 2009-11-02 Auto-generated by YouTube.
Spotify: https://spoti.fi/2JhWhts | iTunes: https://apple.co/2H8TtOE ►Spotify Playlist: http://spoti.fi/2zPncHu ✖ Click "Show More" to see social media links! ♔ Follow HotRNBsoundZ ♔ ●Facebook: http://bit.ly/2a16Owo ●Instagram: http://bit.ly/2ahFs36 ●Soundcloud: http://bit.ly/29Vo3ts ►Support The Artist ✖Instagram: https://bit.ly/2IueXFp ✖Spotify: https://spoti.fi/2JhWhts ✖iTunes: https://apple.co/2H8TtOE ✖Soundcloud: https://bit.ly/2GQSd5d ►Cook Beats ✖Instagram: https://bit.ly/2GBvrPa ✖Soundcloud: https://bit.ly/2IqjubS ➥ Submit your track here: [email protected] ▶IMPORTANT ➥ I do not claim ownership of the audio / music / films used in this video. All rights go to the artists credited above. ➥If any producers or record labels have an issue with any of the songs uploaded to t...
Original song: Kaiti Kink - Remedy This is remix ! 🎧 Follow ChillMusicHD 🎧 Facebook: https://www.facebook.com/TrapMusicHD Twitter: https://twitter.com/chillmusichd Soundcloud: https://soundcloud.com/ChillMusicHD Instagram: https://www.instagram.com/chillmusichd Snapchat - TrapMusicHD Musical.ly - TrapMusicHD 🎵 HD Family 🎵 RapMusicHD: https://goo.gl/J1Noub BassMusicHD: https://goo.gl/0RN70B ChillMusicHD: https://goo.gl/EXAoAh HouseMusicHD: https://goo.gl/l51Abz EDMMusicHD: https://goo.gl/iGNNwY GanjaMusicHD: https://goo.gl/fXdWrL
Mary Jane Blige (/ˈblaɪʒ/; born January 11, 1971) is an American singer, songwriter, model, record producer and actress. Starting her career as a background singer on Uptown Records in 1989, Blige released her first album, What's the 411?, in 1992, and has released 11 studio albums since and made over 150 guest appearances on other albums and soundtracks.
A recipient of nine Grammy Awards, in addition to receiving a record of thirty Grammy nominations, Blige is one of few entertainers in history to have eight or more albums to reach multi-platinum status. My Life, in particular, is considered among the greatest albums ever recorded according to Rolling Stone,Time, and Vibe. For her part in combining hip-hop and soul in the early-1990s and its subsequent commercial success, Blige received the Legends Award at the World Music Awards. Blige also received the Voice of Music Award from performance rights organization ASCAP, with its official Jeanie Weems stating that "[Blige's] music has been the voice of inspiration to women worldwide in both struggle and triumph." Blige made Time magazine's "Time 100" list of influential individuals around the world in 2007.
I say the world keep turning
The clock keep ticking
So don't be wasting time
They said it wasn't gone
Happened for me over night
Best believe this gonna take some time
You just gotta stay down
Yea I know I gotta keep it correct
But I still get to seize the connect
You know I gotta stay down
Yea, I had to struggle just like you
I'm from the ghetto, I grew up like you
That's why I gotta stay down
I see niggas got a hard on for me because my grind
tight
Money right, I'm going all in shortly
Mi amigo down bottom, put the call in for me
No fucking business, make sure it's all there for me
Yo watch the diamond, no offense
Yea the block been good to me
But running these streets, there's a lot that you
regret
The innocent corrupted, the niggas you don't fuck with
Shit I don't rap with all the niggas I grew up with
And that's over principle, yea that shit's real
Gotta keep it pushin', no way I could sit still
Bricks to the boy and pounds to that sense a mill
Gotta kill him in the suburbs serving them ten appeal
Now I'm back with the summer's report
Everybody tryna make it but a few niggas coming up
short
Yea, some different shit day after day
So I stay out the way
But I'm still gonna play how I play
I say the world keep turning
The clock keep ticking
So don't be wasting time
They said it wasn't gone
Happened for me over night
Best believe this gonna take some time
You just gotta stay down
Yea I know I gotta keep it correct
But I still get to seize the connect
You know I gotta stay down
Yea, I had to struggle just like you
I'm from the ghetto, I grew up like you
That's why I gotta stay down
The hood be sayin' they so proud of me
I'm proud, love my city, the haters' my only allergy
Man they just mad cuz the music takin' off
I'm worried 'bout the dottie and the julie takin' off
All in the whip when the coupe be satin off
Make it easy for these niggas, the roof – I take it off
One button, let them see what the guts be like
All the bitches looking at me like it must be nice
This shit's workin', get your girl, your bitch flirtin'
I'm something like a pimp that got him on the strip
workin'
Now I'm back, got the stomach for that
Just stay down like I'm supposed to, the money just
stack
Where my niggas 'bout their business? where the
hustlers at?
Quackin' the jungle with gorillas, we'll be confortable
there
Yea, time is money, it's a race against the clock
Some niggas die tryin', some make it to the top
I say the world keep turning
The clock keep ticking
So don't be wasting time
They said it wasn't gone
Happened for me over night
Best believe this gonna take some time
You just gotta stay down
Yea I know I gotta keep it correct
But I still get to seize the connect
You know I gotta stay down
Yea, I had to struggle just like you
I'm from the ghetto, I grew up like you