'+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; })); }); -->

Training Day (soundtrack)

Training Day: The Soundtrack is the soundtrack to the 2001 crime film, Training Day. It was released on September 11, 2001, through Priority Records and contained mostly hip hop music. The album did fairly well on the Billboard charts, peaking at number 35 on the Billboard 200, number 19 on the Top R&B/Hip-Hop Albums chart and number 3 on the Top Soundtracks chart, and spawning two hit singles, "#1" by Nelly and "Put It on Me" by Dr. Dre, DJ Quik and Mimi. The soundtrack was A&R'd by Chuck Wilson. Coincidentally, the album was released on the same day as the September 11 attacks.

Track listing

  • "Keep Your Eyes Open (Film dialogue)" – :06
  • "W.O.L.V.E.S." – 3:57 (Krumbsnatcha & M.O.P.)
  • "Bounce, Rock, Golden State" – 4:05 (Xzibit, Ras Kass & Saafir)
  • "Put It on Me" – 5:04 (Dr. Dre, DJ Quik & Mimi)
  • "#1" – 4:23 (Nelly)
  • "Fuck You" – 3:54 (Pharoahe Monch)
  • "Watch the Police" – 2:49 (C-Murder & Trick Daddy)
  • "Dirty Ryders" – 4:20 (The Lox)
  • "Crooked Cop" – 3:57 (Napalm)
  • "American Dream" – 5:21 (P. Diddy & The Bad Boy Family featuring David Bowie)
  • Put It on Me

    Put It On Me or Put It on Me may refer to:

  • "Put It on Me" (Ja Rule song), a 2000 song by American rapper Ja Rule
  • "Put It On Me", a 2001 song by Dr. Dre, from the Training Day (soundtrack)
  • Put It on Me (Ja Rule song)

    "Put It on Me" is a song from Ja Rule's second album, Rule 3:36. The song also appeared on The Fast and The Furious soundtrack. The song features female Murder Inc. rapper Vita. The song was originally made with just Ja Rule and Vita, but then a remix version was made with vocals by Lil Mo on the chorus of the song. Ja Rule explained that the lyrics of the song were inspired by an argument he had with his wife to show how important she is to him. Vita's verse was written by Cadillac Tah. It peaked at number 8 on the Billboard Hot 100, making it Ja Rule's first top ten hit on the chart.

    Accolades

  • In 2001, the song's music video became the first to retire on BET's 106 & Park after spending more than 60 days on the countdown. The video also topped BET's Notarized: Top 100 Videos of 2001.
  • In September 2001, the video was nominated for "Best Rap Video" at the 2001 MTV VMA's.
  • In 2002, "Put It on Me" won two BMI Awards under "Urban Music" and "Pop Music". The song also attained an ASCAP Rhythm & Soul Music Award, alongside the honorary "Songwriter of the Year" award to Murder Inc. executive, Irv Gotti.
  • Put It On

    "Put It On" is a song recorded by American rapper Big L, and features American rapper Kid Capri. The track was produced by Buckwild for L's debut studio album, Lifestylez ov da Poor and Dangerous (1995). The song was written by Coleman, Roy Ayers and Anthony Best. The song was released on November 13, 1994 as the first single from the album through Columbia Records/Sony Music Entertainment.

    In an interview with HipHop DX, Lord Finesse described "Put It On":

    It was also sampled in dubstep artist Datsik's song "Firepower".

    Track listing

    Charts

    References

    Podcasts:

    • Dr. Dre feat. Snoop Dogg "Still Dre" Music Video

      to Training Day

      published: 17 Feb 2012
    • Cypress Hill - Rock Superstar (soundtrack of Training Day movie)

      published: 26 Jan 2013
    • Roscoe - Training Day (In My Hood)

      Roscoe - Training Day (In My Hood) [Film Dialogue] You think you can do this to me? You muthafuckas will be playin' basketball in pelican bay when i get finished wid' you .. SHU program nigga (whoo, whoo) 23-hour lockdown I'm the man up in this piece You'll never see the light of-who the fuck do you think you fuckin with? I'm the police, I run shit here, you just live here Yeah, that's right, you better walk away Go and walk away cus I'ma burn this muthafucka down King Kong aint got shit on me (whoo, whoo.. ) [Roscoe] From project to the projects Illegal substance and illegal objects I neva leave the house with out my Tech If you aint from the hood then get out my set We loco, I'ma waste a gizzle aint for livin Got me facin prison chasin the feelin ...

      published: 14 Nov 2007
    • DR. DRE (Feat. DJ Quik & Mimi) - Put It On Me - HQ

      Produced by DR. DRE From the soundtrack of "Training Day" (2001)

      published: 22 Apr 2011
    • KRUMB SNATCHA ft MOP - W.O.L.V.E.S.

      hip hop

      published: 05 Sep 2009
    • Training Day - Alonzo (Soundtrack OST HD)

      Training Day (2001) Complete Score Composed by: Mark Mancina Tracklist: CD1 01. Welcome To The Jungle (4:56) 02. Homes, Play With Us (5:40) 03. Life's A Trip (2:34) 04. Chase On The Roof / Fight With Alonso (alternate) (3:04) 05. Jake's Fatigue (1:43) 06. Crakin' Nuts (2:01) 07. Roger (3:16) 08. As The World Turns (1:56) 09. Drive To Smiley (1:20) 10. Car Surfing (1:04) 11. Going After Sandman (1:31) 12. Death Is Certain (alternate) (1:29) 13. The Appointment (1:17) 14. Death Is Certain (1:16) 15. Training Day (2:48) 16. A Little Ambush (2:27) 17. Wolf Against Dogs (3:43) 18. Wolf Against Dogs (alternate) (3:38) 19. End Titles (3:03) 20. Innterrupting A Ditch / Party (1:57) 21. Alonzo (2:48) CD2 01. Alonzo (reprise) (2:41) 02. Alonzo (reprise alternate) (2:37) 03. Father & Son (1:28) 04. ...

      published: 17 Jun 2013
    • Training Day - End Titles (Soundtrack OST HD)

      Training Day (2001) Complete Score Composed by: Mark Mancina Tracklist: CD1 01. Welcome To The Jungle (4:56) 02. Homes, Play With Us (5:40) 03. Life's A Trip (2:34) 04. Chase On The Roof / Fight With Alonso (alternate) (3:04) 05. Jake's Fatigue (1:43) 06. Crakin' Nuts (2:01) 07. Roger (3:16) 08. As The World Turns (1:56) 09. Drive To Smiley (1:20) 10. Car Surfing (1:04) 11. Going After Sandman (1:31) 12. Death Is Certain (alternate) (1:29) 13. The Appointment (1:17) 14. Death Is Certain (1:16) 15. Training Day (2:48) 16. A Little Ambush (2:27) 17. Wolf Against Dogs (3:43) 18. Wolf Against Dogs (alternate) (3:38) 19. End Titles (3:03) 20. Innterrupting A Ditch / Party (1:57) 21. Alonzo (2:48) CD2 01. Alonzo (reprise) (2:41) 02. Alonzo (reprise alternate) (2:37) 03. Father & Son (1:28) 04. ...

      published: 17 Jun 2013
    • Training Day - Main Theme (Soundtrack OST HD)

      Training Day (2001) Complete Score Composed by: Mark Mancina Tracklist: CD1 01. Welcome To The Jungle (4:56) 02. Homes, Play With Us (5:40) 03. Life's A Trip (2:34) 04. Chase On The Roof / Fight With Alonso (alternate) (3:04) 05. Jake's Fatigue (1:43) 06. Crakin' Nuts (2:01) 07. Roger (3:16) 08. As The World Turns (1:56) 09. Drive To Smiley (1:20) 10. Car Surfing (1:04) 11. Going After Sandman (1:31) 12. Death Is Certain (alternate) (1:29) 13. The Appointment (1:17) 14. Death Is Certain (1:16) 15. Training Day (2:48) 16. A Little Ambush (2:27) 17. Wolf Against Dogs (3:43) 18. Wolf Against Dogs (alternate) (3:38) 19. End Titles (3:03) 20. Innterrupting A Ditch / Party (1:57) 21. Alonzo (2:48) CD2 01. Alonzo (reprise) (2:41) 02. Alonzo (reprise alternate) (2:37) 03. Father & Son (1:28) 04. ...

      published: 17 Jun 2013
    • Training Day - This Is The Game (Soundtrack OST HD)

      Training Day (2001) Complete Score Composed by: Mark Mancina Tracklist: CD1 01. Welcome To The Jungle (4:56) 02. Homes, Play With Us (5:40) 03. Life's A Trip (2:34) 04. Chase On The Roof / Fight With Alonso (alternate) (3:04) 05. Jake's Fatigue (1:43) 06. Crakin' Nuts (2:01) 07. Roger (3:16) 08. As The World Turns (1:56) 09. Drive To Smiley (1:20) 10. Car Surfing (1:04) 11. Going After Sandman (1:31) 12. Death Is Certain (alternate) (1:29) 13. The Appointment (1:17) 14. Death Is Certain (1:16) 15. Training Day (2:48) 16. A Little Ambush (2:27) 17. Wolf Against Dogs (3:43) 18. Wolf Against Dogs (alternate) (3:38) 19. End Titles (3:03) 20. Innterrupting A Ditch / Party (1:57) 21. Alonzo (2:48) CD2 01. Alonzo (reprise) (2:41) 02. Alonzo (reprise alternate) (2:37) 03. Father & Son (1:28) 04. ...

      published: 17 Jun 2013
    • Krumbsnatcha (feat. M.O.P.) - W.O.L.V.E.S.

      © 2001 Priority Records

      published: 01 Jul 2014
    developed with YouTube
    Dr. Dre feat. Snoop Dogg "Still Dre" Music Video
    5:04

    Dr. Dre feat. Snoop Dogg "Still Dre" Music Video

    • Order:
    • Duration: 5:04
    • Uploaded Date: 17 Feb 2012
    • views: 2086382
    to Training Day
    https://wn.com/Dr._Dre_Feat._Snoop_Dogg_Still_Dre_Music_Video
    Cypress Hill - Rock Superstar (soundtrack of Training Day movie)
    4:38

    Cypress Hill - Rock Superstar (soundtrack of Training Day movie)

    • Order:
    • Duration: 4:38
    • Uploaded Date: 26 Jan 2013
    • views: 891448
    https://wn.com/Cypress_Hill_Rock_Superstar_(Soundtrack_Of_Training_Day_Movie)
    Roscoe - Training Day (In My Hood)
    4:22

    Roscoe - Training Day (In My Hood)

    • Order:
    • Duration: 4:22
    • Uploaded Date: 14 Nov 2007
    • views: 1049319
    Roscoe - Training Day (In My Hood) [Film Dialogue] You think you can do this to me? You muthafuckas will be playin' basketball in pelican bay when i get finished wid' you .. SHU program nigga (whoo, whoo) 23-hour lockdown I'm the man up in this piece You'll never see the light of-who the fuck do you think you fuckin with? I'm the police, I run shit here, you just live here Yeah, that's right, you better walk away Go and walk away cus I'ma burn this muthafucka down King Kong aint got shit on me (whoo, whoo.. ) [Roscoe] From project to the projects Illegal substance and illegal objects I neva leave the house with out my Tech If you aint from the hood then get out my set We loco, I'ma waste a gizzle aint for livin Got me facin prison chasin the feelin I give from the I taste of scrilla, to eighty children in the cold Before we can arrange a building, then lost in gold And all the police crooked To put a slug in me and I took it A minor, judge say I got no case He knows my face; he got a grudge from the old days He won't accept my apology, just don't feel it My brain on drugs like eggs on a skillet I come up in the courtroom smellin like killa It's cool I be freakin [Chorus] Now you don't wanna know about what happens around here (In my hood) You don't wanna see the way we live and die round here (My hood) Fo real, you wouldn't last a second around here (In my hood) If you aint down then blast your weapon around here (My hood) [Film Dialouge] I'm the police, I run shit here (In my hood) I'm the man up in this piece (My hood) [Roscoe] It's mayhem, in this hood I stayed in No safety, I keep the K waved in I'm the guard dog and the house alarm I leave a heat in the couch to protect my mom I got a pit bull named Luni, all white And it aint nobody that he wont bite I post on the stoop all night Getting toast of the flow with my troops all night Layin a foot down I keep hand on the swess tight around the fo pound I got a bulletproof vest to support now But some how I don't think it's gonna help when it goes down Man up, control your smiles and cries Stand up, and never lay down and die Cus the cops don't wanna help out They wanna see "The animals wipe themselves out" [Chorus] Now you don't wanna know about what happens around here (In my hood) You don't wanna see the way we live and die round here (My hood) Fo real, you wouldn't last a second around here (In my hood) If you aint down then blast your weapon around here (My hood) [Roscoe] Now it aint easy to live on my block Slugs fly through the sky like bugs Shells reing from the sky like hell It's Hell on Earth For homies to dwell on my turf The cops don't wanna help out Unless we sell out, so they stuff us in the YA jailhouse And good cops get fired and silenced More crooked cops hired for violence Assignments to investigate All profits being made in the Section 8 It's to the point where some brothers go to jail just to get off the streets and eat Undercovers try to take me under But I shake 'em off with my Schwin I can lose them narks in the projects They wont know what building I'm in C'mon [Chorus] Now you don't wanna know about what happens around here (In my hood) You don't wanna see the way we live and die right here (My hood) Fo real, you wouldn't last a second around here (In my hood) If you aint down then blast your weapon around here (My hood) [2x] In My Hood, My hood
    https://wn.com/Roscoe_Training_Day_(In_My_Hood)
    DR. DRE (Feat. DJ Quik & Mimi) - Put It On Me - HQ
    5:00

    DR. DRE (Feat. DJ Quik & Mimi) - Put It On Me - HQ

    • Order:
    • Duration: 5:00
    • Uploaded Date: 22 Apr 2011
    • views: 680904
    Produced by DR. DRE From the soundtrack of "Training Day" (2001)
    https://wn.com/Dr._Dre_(Feat._Dj_Quik_Mimi)_Put_It_On_Me_Hq
    KRUMB SNATCHA ft MOP - W.O.L.V.E.S.
    3:56

    KRUMB SNATCHA ft MOP - W.O.L.V.E.S.

    • Order:
    • Duration: 3:56
    • Uploaded Date: 05 Sep 2009
    • views: 893084
    hip hop
    https://wn.com/Krumb_Snatcha_Ft_Mop_W.O.L.V.E.S.
    Training Day - Alonzo (Soundtrack OST HD)
    2:32

    Training Day - Alonzo (Soundtrack OST HD)

    • Order:
    • Duration: 2:32
    • Uploaded Date: 17 Jun 2013
    • views: 89217
    Training Day (2001) Complete Score Composed by: Mark Mancina Tracklist: CD1 01. Welcome To The Jungle (4:56) 02. Homes, Play With Us (5:40) 03. Life's A Trip (2:34) 04. Chase On The Roof / Fight With Alonso (alternate) (3:04) 05. Jake's Fatigue (1:43) 06. Crakin' Nuts (2:01) 07. Roger (3:16) 08. As The World Turns (1:56) 09. Drive To Smiley (1:20) 10. Car Surfing (1:04) 11. Going After Sandman (1:31) 12. Death Is Certain (alternate) (1:29) 13. The Appointment (1:17) 14. Death Is Certain (1:16) 15. Training Day (2:48) 16. A Little Ambush (2:27) 17. Wolf Against Dogs (3:43) 18. Wolf Against Dogs (alternate) (3:38) 19. End Titles (3:03) 20. Innterrupting A Ditch / Party (1:57) 21. Alonzo (2:48) CD2 01. Alonzo (reprise) (2:41) 02. Alonzo (reprise alternate) (2:37) 03. Father & Son (1:28) 04. The Scenario (6:03) 05. Green Light (3:35) 06. Green Light (alternate) (3:27) 07. I'm Here For Alonzo (2:50) 08. Preserve Life (3:42) 09. This Is The Game (Fill-In) (0:28) 10. This Is The Game (Conclusion alternate) (0:30) 11. This Is The Game (Cinclusion) (0:32) 12. Death Is Certain (alternate II) (1:20) 13. Scoring Session I (1:41) 14. Scoring Session I (12 reprise) (0:32) 15. Scoring Session II (1:00) 16. The Office (0:55) 17. Smiles & Cries (2:05) 18. This Is The Game (4:03) 19. Traffic Jam (alternate) (0:56) 20. Money (2:58) 21. Timeless (0:41)
    https://wn.com/Training_Day_Alonzo_(Soundtrack_Ost_Hd)
    Training Day - End Titles (Soundtrack OST HD)
    2:57

    Training Day - End Titles (Soundtrack OST HD)

    • Order:
    • Duration: 2:57
    • Uploaded Date: 17 Jun 2013
    • views: 129250
    Training Day (2001) Complete Score Composed by: Mark Mancina Tracklist: CD1 01. Welcome To The Jungle (4:56) 02. Homes, Play With Us (5:40) 03. Life's A Trip (2:34) 04. Chase On The Roof / Fight With Alonso (alternate) (3:04) 05. Jake's Fatigue (1:43) 06. Crakin' Nuts (2:01) 07. Roger (3:16) 08. As The World Turns (1:56) 09. Drive To Smiley (1:20) 10. Car Surfing (1:04) 11. Going After Sandman (1:31) 12. Death Is Certain (alternate) (1:29) 13. The Appointment (1:17) 14. Death Is Certain (1:16) 15. Training Day (2:48) 16. A Little Ambush (2:27) 17. Wolf Against Dogs (3:43) 18. Wolf Against Dogs (alternate) (3:38) 19. End Titles (3:03) 20. Innterrupting A Ditch / Party (1:57) 21. Alonzo (2:48) CD2 01. Alonzo (reprise) (2:41) 02. Alonzo (reprise alternate) (2:37) 03. Father & Son (1:28) 04. The Scenario (6:03) 05. Green Light (3:35) 06. Green Light (alternate) (3:27) 07. I'm Here For Alonzo (2:50) 08. Preserve Life (3:42) 09. This Is The Game (Fill-In) (0:28) 10. This Is The Game (Conclusion alternate) (0:30) 11. This Is The Game (Cinclusion) (0:32) 12. Death Is Certain (alternate II) (1:20) 13. Scoring Session I (1:41) 14. Scoring Session I (12 reprise) (0:32) 15. Scoring Session II (1:00) 16. The Office (0:55) 17. Smiles & Cries (2:05) 18. This Is The Game (4:03) 19. Traffic Jam (alternate) (0:56) 20. Money (2:58) 21. Timeless (0:41)
    https://wn.com/Training_Day_End_Titles_(Soundtrack_Ost_Hd)
    Training Day - Main Theme (Soundtrack OST HD)
    2:41

    Training Day - Main Theme (Soundtrack OST HD)

    • Order:
    • Duration: 2:41
    • Uploaded Date: 17 Jun 2013
    • views: 143397
    Training Day (2001) Complete Score Composed by: Mark Mancina Tracklist: CD1 01. Welcome To The Jungle (4:56) 02. Homes, Play With Us (5:40) 03. Life's A Trip (2:34) 04. Chase On The Roof / Fight With Alonso (alternate) (3:04) 05. Jake's Fatigue (1:43) 06. Crakin' Nuts (2:01) 07. Roger (3:16) 08. As The World Turns (1:56) 09. Drive To Smiley (1:20) 10. Car Surfing (1:04) 11. Going After Sandman (1:31) 12. Death Is Certain (alternate) (1:29) 13. The Appointment (1:17) 14. Death Is Certain (1:16) 15. Training Day (2:48) 16. A Little Ambush (2:27) 17. Wolf Against Dogs (3:43) 18. Wolf Against Dogs (alternate) (3:38) 19. End Titles (3:03) 20. Innterrupting A Ditch / Party (1:57) 21. Alonzo (2:48) CD2 01. Alonzo (reprise) (2:41) 02. Alonzo (reprise alternate) (2:37) 03. Father & Son (1:28) 04. The Scenario (6:03) 05. Green Light (3:35) 06. Green Light (alternate) (3:27) 07. I'm Here For Alonzo (2:50) 08. Preserve Life (3:42) 09. This Is The Game (Fill-In) (0:28) 10. This Is The Game (Conclusion alternate) (0:30) 11. This Is The Game (Cinclusion) (0:32) 12. Death Is Certain (alternate II) (1:20) 13. Scoring Session I (1:41) 14. Scoring Session I (12 reprise) (0:32) 15. Scoring Session II (1:00) 16. The Office (0:55) 17. Smiles & Cries (2:05) 18. This Is The Game (4:03) 19. Traffic Jam (alternate) (0:56) 20. Money (2:58) 21. Timeless (0:41)
    https://wn.com/Training_Day_Main_Theme_(Soundtrack_Ost_Hd)
    Training Day - This Is The Game (Soundtrack OST HD)
    4:02

    Training Day - This Is The Game (Soundtrack OST HD)

    • Order:
    • Duration: 4:02
    • Uploaded Date: 17 Jun 2013
    • views: 83933
    Training Day (2001) Complete Score Composed by: Mark Mancina Tracklist: CD1 01. Welcome To The Jungle (4:56) 02. Homes, Play With Us (5:40) 03. Life's A Trip (2:34) 04. Chase On The Roof / Fight With Alonso (alternate) (3:04) 05. Jake's Fatigue (1:43) 06. Crakin' Nuts (2:01) 07. Roger (3:16) 08. As The World Turns (1:56) 09. Drive To Smiley (1:20) 10. Car Surfing (1:04) 11. Going After Sandman (1:31) 12. Death Is Certain (alternate) (1:29) 13. The Appointment (1:17) 14. Death Is Certain (1:16) 15. Training Day (2:48) 16. A Little Ambush (2:27) 17. Wolf Against Dogs (3:43) 18. Wolf Against Dogs (alternate) (3:38) 19. End Titles (3:03) 20. Innterrupting A Ditch / Party (1:57) 21. Alonzo (2:48) CD2 01. Alonzo (reprise) (2:41) 02. Alonzo (reprise alternate) (2:37) 03. Father & Son (1:28) 04. The Scenario (6:03) 05. Green Light (3:35) 06. Green Light (alternate) (3:27) 07. I'm Here For Alonzo (2:50) 08. Preserve Life (3:42) 09. This Is The Game (Fill-In) (0:28) 10. This Is The Game (Conclusion alternate) (0:30) 11. This Is The Game (Cinclusion) (0:32) 12. Death Is Certain (alternate II) (1:20) 13. Scoring Session I (1:41) 14. Scoring Session I (12 reprise) (0:32) 15. Scoring Session II (1:00) 16. The Office (0:55) 17. Smiles & Cries (2:05) 18. This Is The Game (4:03) 19. Traffic Jam (alternate) (0:56) 20. Money (2:58) 21. Timeless (0:41)
    https://wn.com/Training_Day_This_Is_The_Game_(Soundtrack_Ost_Hd)
    Krumbsnatcha (feat. M.O.P.) - W.O.L.V.E.S.
    4:00

    Krumbsnatcha (feat. M.O.P.) - W.O.L.V.E.S.

    • Order:
    • Duration: 4:00
    • Uploaded Date: 01 Jul 2014
    • views: 46377
    © 2001 Priority Records
    https://wn.com/Krumbsnatcha_(Feat._M.O.P.)_W.O.L.V.E.S.
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Roscoe - Training Day (In My Hood)
      4:22
      Roscoe - Training Day (In My Hood)remove from playlist
    • Training Day - Alonzo (Soundtrack OST HD)
      2:32
      Training Day - Alonzo (Soundtrack OST HD)remove from playlist
    • Training Day - End Titles (Soundtrack OST HD)
      2:57
      Training Day - End Titles (Soundtrack OST HD)remove from playlist
    • Training Day - Main Theme (Soundtrack OST HD)
      2:41
      Training Day - Main Theme (Soundtrack OST HD)remove from playlist
    • Training Day - This Is The Game (Soundtrack OST HD)
      4:02
      Training Day - This Is The Game (Soundtrack OST HD)remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Dr. Dre feat. Snoop Dogg "Still Dre" Music Video

    to Training Day
    5:04
    Dr. Dre feat. Snoop Dogg "Still Dre" Music Video
    to Training Day
    published: 17 Feb 2012
    Play in Full Screen
    4:38
    Cypress Hill - Rock Superstar (soundtrack of Training Day movie)
    published: 26 Jan 2013
    Play in Full Screen
    4:22
    Roscoe - Training Day (In My Hood)
    Roscoe - Training Day (In My Hood) [Film Dialogue] You think you can do this to me?...
    published: 14 Nov 2007
    Play in Full Screen
    5:00
    DR. DRE (Feat. DJ Quik & Mimi) - Put It On Me - HQ
    Produced by DR. DRE From the soundtrack of "Training Day" (2001)
    published: 22 Apr 2011
    Play in Full Screen
    3:56
    KRUMB SNATCHA ft MOP - W.O.L.V.E.S.
    hip hop
    published: 05 Sep 2009
    Play in Full Screen
    2:32
    Training Day - Alonzo (Soundtrack OST HD)
    Training Day (2001) Complete Score Composed by: Mark Mancina Tracklist: CD1 01. Welcome To...
    published: 17 Jun 2013
    Play in Full Screen
    2:57
    Training Day - End Titles (Soundtrack OST HD)
    Training Day (2001) Complete Score Composed by: Mark Mancina Tracklist: CD1 01. Welcome To...
    published: 17 Jun 2013
    Play in Full Screen
    2:41
    Training Day - Main Theme (Soundtrack OST HD)
    Training Day (2001) Complete Score Composed by: Mark Mancina Tracklist: CD1 01. Welcome To...
    published: 17 Jun 2013
    Play in Full Screen
    4:02
    Training Day - This Is The Game (Soundtrack OST HD)
    Training Day (2001) Complete Score Composed by: Mark Mancina Tracklist: CD1 01. Welcome To...
    published: 17 Jun 2013
    Play in Full Screen
    4:00
    Krumbsnatcha (feat. M.O.P.) - W.O.L.V.E.S.
    © 2001 Priority Records
    published: 01 Jul 2014
    Play in Full Screen

    Training Day (soundtrack)

    Training Day: The Soundtrack is the soundtrack to the 2001 crime film, Training Day. It was released on September 11, 2001, through Priority Records and contained mostly hip hop music. The album did fairly well on the Billboard charts, peaking at number 35 on the Billboard 200, number 19 on the Top R&B/Hip-Hop Albums chart and number 3 on the Top Soundtracks chart, and spawning two hit singles, "#1" by Nelly and "Put It on Me" by Dr. Dre, DJ Quik and Mimi. The soundtrack was A&R'd by Chuck Wilson. Coincidentally, the album was released on the same day as the September 11 attacks.

    Track listing

  • "Keep Your Eyes Open (Film dialogue)" – :06
  • "W.O.L.V.E.S." – 3:57 (Krumbsnatcha & M.O.P.)
  • "Bounce, Rock, Golden State" – 4:05 (Xzibit, Ras Kass & Saafir)
  • "Put It on Me" – 5:04 (Dr. Dre, DJ Quik & Mimi)
  • "#1" – 4:23 (Nelly)
  • "Fuck You" – 3:54 (Pharoahe Monch)
  • "Watch the Police" – 2:49 (C-Murder & Trick Daddy)
  • "Dirty Ryders" – 4:20 (The Lox)
  • "Crooked Cop" – 3:57 (Napalm)
  • "American Dream" – 5:21 (P. Diddy & The Bad Boy Family featuring David Bowie)
  • '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

    Latest News for: put it on me

    Edit

    Bears QB Justin Fields revisits coaching comment, says ‘Put it on me’

    Chicago Sun-Times 20 Sep 2023
    I forgot who asked the question, but I kinda knew that’s what they were trying to get out of me, but yeah, I said — I think, I saw a quote just showed me on Twitter ... But it was a quote ... Put it on me.
    Edit

    Browns’ Deshaun Watson shoulders blame following Pittsburgh loss: ‘You can put it on me’

    Fox News 19 Sep 2023
    Pittsburgh quickly jumped out to a 7-0 lead after Watson was intercepted on the first play of the game ... "As far as my part, it’s not good enough. I put that on me ... We’re not going to put it anyone else. You put it on me.
    Edit

    'Put it on me,' White Sox GM says of team’s worst start since 1986

    Journal Gazette 28 Apr 2023
    Rick Hahn made it clear. "Put it on me," the Chicago White Sox general manager said of the team’s rough start ... .
    Edit

    ‘Put it on me’: Chicago White Sox GM Rick Hahn takes responsibility for the team’s ...

    The Mercury News 28 Apr 2023
    “Put it on me,” the Chicago White Sox general manager said Thursday when asked about the team’s rough start ... “Put it on me,” Hahn continued ... on the line,” Hahn said.
    Edit

    White Sox GM Rick Hahn on bad start: ‘Put it on me.’ Not a problem

    Chicago Sun-Times 28 Apr 2023
    “Put it on me,” he said of the Sox’ worst start in 37 years ... Put it on me. Put it on me ... “I think that makes it clear that my job is potentially on the line,” he said ... It’s on everybody. It’s definitely on Hahn.
    Edit

    ‘Put It on Me’: New Lions DB Commands Added Responsibility

    The Charlotte Observer 24 Mar 2023
    C.J. Gardner-Johnson is ready to lead Detroit Lions secondary. New Detroit Lions defensive back C.J. Gardner-Johnson and defensive coordinator Aaron Glenn have reunited and are ready to get back to ... .
    • 1

    Most Viewed

    ×