- published: 18 Oct 2017
- views: 258634
'+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; })); }); -->
Phalon Alexander, professionally known as Jazze Pha (/ˌdʒæzi ˈfeɪ/ JAZ-ee FAY), is an American record producer, songwriter and rapper from Atlanta, Georgia. He is the founder and chief executive officer of Sho'nuff Records, which American R&B singer-songwriter Ciara was signed to.
Jazze Pha was born and raised in Memphis, Tennessee. His father is James Alexander, bassist for the Bar-Kays, an influential group on the Memphis soul scene in the 1960s. His mother is a singer named Denise Williams (not to be confused with chart-topping R&B and gospel singer Deniece "Niecy" Williams). Pha was named after the late Phalon Jones, another member of the Bar-Kays, who died in the December 10, 1967 plane crash that also killed three other Bar-Kays members and Otis Redding.
Pha is known for announcing "Ladies and gentlemen" or "This is a Jazze Phizzle production!", both at the beginning and, occasionally, at the end of songs on which he is featured. In 1990, Pha was signed to Elektra Records.
Album: Murphy's Law 2003 Label: Derrty Ent./Universal Records Producer: Jason "Jay E" Epperson https://en.wikipedia.org/wiki/Murphy%27s_Law_(Murphy_Lee_album)
Music video by Field Mob performing So What. (C) 2006 Geffen Records
Official Music Video for Na-NaNa-Na performed by Nelly ft. Jazze Pha. Follow Nelly: Instagram: https://lnk.to/NellyIGID Twitter: https://lnk.to/NellyTWID #Nelly #NaNaNaNa
Provided to YouTube by Bad Boy Records Felonies · Boyz N Da Hood Boyz N Da Hood ℗ 2005 Bad Boy Records LLC for the United States and WEA International Inc. for the world excluding the United States, South America and Central America. Executive Producer: Block Associate Executive Producer: Harve Pierre Recorded by: Horace Mitchell Producer: Jazze Pha Mixer: Leslie Brathwaite Assistant Mix Engineer: Nico Solis Executive Producer: Sean Combs Writer: J. Jenkins Writer: J. White Writer: L. Dixon Writer: M. Scott Writer: P. Alexander Writer: Z. Wallace Auto-generated by YouTube.
I Love R&B!
II Trill is the second solo studio album by UGK member Bun B. It is the follow-up to his highly successful debut album, Trill. It was mentioned that after the death of his life-long friend and companion Pimp C, due in part to an accidental overdose, he is likely to "ban the syrup talk on his new CD." The album was originally set to be released on April 29, 2008 but was pushed back to May 20. The album features lyrics pertaining to political and social issues, as well as a tribute track to Pimp C. Some of the featuring artists on the album include: Sean Kingston, Pimp C, Young Buck, Lupe Fiasco, Lil Wayne, David Banner, Rick Ross, Mýa, Chamillionaire, Slim Thug, Webbie, Mike Jones, 8Ball & MJG, Z-Ro, Junior Reid, and Juvenile. The first single "That's Gangsta," featuring Sean Kingston and ...
(ft. Diddy, Murphy Lee, Snoop Dogg & Ludacris) After the party it's the Waffle House If you ever been here you know what I'm talkin about Where people don't dance all they do is this And after the original you know what it is [Ludacris] Welcome to Atlanta [Jermaine Dupri] Remix it had to go down I got somethin else to tell you 'bout the new Motown Where people don't visit, they move out here And ain't no tellin who you might see up in Lennox Square I don't know about you but I miss the freaknik Cause that's where my city use to be real slick People from other cities use to drive from miles Just to come to get a taste of this A.T.L style I'm the M.B.P., Most Ballin-ist Player Make my own moves, call me the mayor Monday night you know things change with time Magic Ci...
The official video for "Rubber Band Man" by T.I. from his album 'Trap Muzik' - available now! Watch the official video for T.I. - Rubber Band Man from the album Trap Muzik. David Banner, Lil Duval, Michael Vick, Usher, Nelly, Lil Bow Wow, Jagged Edge, P. Diddy, and Jazze Pha all make cameo appearances in the video. Subscribe for more official content from Atlantic Records: https://Atlantic.lnk.to/subscribe Follow T.I. http://facebook.com/TI https://instagram.com/troubleman31 http://twitter.com/TIP http://trapmuzik.com Follow Atlantic Records https://facebook.com/atlanticrecords https://instagram.com/atlanticrecords https://twitter.com/AtlanticRecords http://atlanticrecords.com The official Atlantic Records YouTube Channel is home to the hottest in hip-hop, rock, pop, R&B, indie, music...
Music video by Young Buck performing Get Buck. YouTube view counts pre-VEVO: 1,887,108. (C) 2007 G Unit/Interscope Records
Phalon Alexander, professionally known as Jazze Pha (/ˌdʒæzi ˈfeɪ/ JAZ-ee FAY), is an American record producer, songwriter and rapper from Atlanta, Georgia. He is the founder and chief executive officer of Sho'nuff Records, which American R&B singer-songwriter Ciara was signed to.
Jazze Pha was born and raised in Memphis, Tennessee. His father is James Alexander, bassist for the Bar-Kays, an influential group on the Memphis soul scene in the 1960s. His mother is a singer named Denise Williams (not to be confused with chart-topping R&B and gospel singer Deniece "Niecy" Williams). Pha was named after the late Phalon Jones, another member of the Bar-Kays, who died in the December 10, 1967 plane crash that also killed three other Bar-Kays members and Otis Redding.
Pha is known for announcing "Ladies and gentlemen" or "This is a Jazze Phizzle production!", both at the beginning and, occasionally, at the end of songs on which he is featured. In 1990, Pha was signed to Elektra Records.
[Verse 1]
[Bun B]
Now all my hustlers, grinders and ballas
Open up your mind
A lot of niggas hustlin backwards
Need to press rewind
Theres some niggas playin dirty pool
Bad cali bandits
They crossin up the trill
And man ya boy just can't stand it
Mothafuckas need to be repremanded and straight jacked
These boys is givin the wrong niggas out here respect
Break ya neck to fuck wit a nigga to come from out ya hood
Ya doin shit you know it cool
Until the good
Got kids movin work, hustlin by the school
Using ?? they hits stages, whole shit on the cool
Matter fact, fuck the cool
You niggas need to hear me
Breakin bread with certified snitches
Don't come near me (don't come near me)
You niggas givin these canaries all these passes
Fuckin gettin dough wit a snitch
Get in they asses
I'm teachin classes, dope slangin 101
These hoe ass niggas
Don't want nuttin but im takin they hood back
[Chorus]
[Slim Thug]
Niggas get in, not goin fed
In 6 months your back?
I put his head
We takin the hood back
Damn, i coulda swore they gave yo ass 10 flat
Now your home, somethin wrong
We takin the hood back
You liar aight, but he aint got it like that
Hell naw, we takin the hood back
In the club like its good
In the hood and you a rat
Click clack mothafucka
We takin the hood back
[Verse 2]
I'm a G hell yea, oh boy
Got ya bitch lookin mad
While them fingas so full
I drink all while you niggas drink bull
But the boy like ?? bam got pool
And I was taught to hold my own
Picture spider lock ya down
Brotha burna zone, nigga
Hell yea im bout dat
Shirt slacks all black
Come through sunny side
Leave yo house flat
[Verse 3]
For the paper
Fuck small towns, go major
Fuck a cell phone go pagers
Young low frazier
Shoot good with no lasers
And every shot hit, I don't throw no graza
Some killa talk nigga
Some real talk nigga
We tha fingaz around whoever killed off nigga
And I put that on ? steve
Young low bitch, I clap you and leave
Cuz i'm takin the hood back
[Chorus]
[Slim Thug]
Niggas get in, not goin fed
In 6 months your back?
I put his head
We takin the hood back
Damn, i coulda swore they gave yo ass 10 flat
Now your home, somethin wrong
We takin the hood back
You liar aight, but he aint got it like that
Hell naw, we takin the hood back
In the club like its good
In the hood and you a rat
Click clack mothafucka
We takin the hood back
[Verse 4]
An ounce and 8 grams
Enough to get yo ass right
Ya smart wit it, get caught wit it
Enough to get yo ass life
From out here in these trenches
Aint no fuckin love or second chances
Long time offender
Lose yo ass, get enhanced
Speak not, yo mouth shut
Investigate the whole place
Make em think its cool
While that nigga round the whole day
The game ain't the same
It all changed for the worst
Nigga got the less time cuz he came wit it first
See I disperse to dope the most convicted felons
Strictly Gs, no more glock shit, rock shit
Strictly keys
I kiss my paper
I was taught to hold a niggas (own)
Cold blooded killas, dope dealers
Sorry niggas, I'm alert
I'm aware, I'm focused, I'm on top and shit
I show you how to stop that bitch
Get ignit wit this choppa bitch
Tomorrow aint promised
Snitch today, die tonight
We know your spot, me and my niggas gon ride tonight
[Chorus]
[Slim Thug]
Niggas get in, not goin fed
In 6 months your back?
I put his head
We takin the hood back
Damn, i coulda swore they gave yo ass 10 flat
Now your home, somethin wrong
We takin the hood back
You liar aight, but he aint got it like that
Hell naw, we takin the hood back
In the club like its good
In the hood and you a rat
Click clack mothafucka
We takin the hood back
[Verse 5]
[Pimp C]
I'm takin back the streets
Thang on the C
On parole but I'm cold wit the heat
Candy coated rock balla
20 chop crawla
Bitches tryna steal my dick
I ain't bout to call her
Theres a lot of niggas rappin, playin games
I don't see none of the shit
That you name
Where the car at (uh)
Where the bread at (uh)
Where the girl you say ya got the 5 head at (uh)
Where the rocks at (uh)
Where the glocks at (uh)
In yo mind and on the mic
The only place is at
Thats my lifestyle im rappin bout
I'm havin everything you pussy niggas laughin bout
When you see some cocaine
You say you got it nigga
Bring me 10 thangs
He gotta call his connect and shit
And he ain't got you con-vict
Nigga i'm takin my hood back
[Chorus]
[Slim Thug]
Niggas get in, not goin fed
In 6 months your back?
I put his head
We takin the hood back
Damn, i coulda swore they gave yo ass 10 flat
Now your home, somethin wrong
We takin the hood back
You liar aight, but he aint got it like that
Hell naw, we takin the hood back
In the club like its good
In the hood and you a rat
Click clack mothafucka