- published: 09 Jun 2017
- views: 192396125
'+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; })); }); -->
HIDDEN ERROR: Usage of "Parents" is not recognizedHIDDEN ERROR: Usage of "Children" is not recognized
Damian Robert Nesta "Jr. Gong" Marley (born 21 July 1978), is a Jamaican reggae artist. Damian is the youngest son of reggae legend Bob Marley. Damian was only 2 years old when his father died; he is the only child born to Marley and Cindy Breakspeare, Miss World 1976. Damian's nickname Junior Gong is derived from his father's nickname of Tuff Gong. Damian has been performing since the age of 13.
At age 13, he formed a musical group by the name of the Shephards, which included the daughter of Freddie McGregor and son of Third World's Cat Core. The group opened the 1992 Reggae Sunsplash festival. The band fell apart in the early 1990s and Damian started his solo career.
With the backing of his father’s label, Tuff Gong, he released his 1996 debut album Mr. Marley which surprised many who were unaccustomed to hearing a Marley deejaying rather than singing. Marley released his second studio album Halfway Tree. The name "Halfway Tree" comes from his mother, Cindy Breakspeare, being from the rich part of town, and his father, Bob Marley, coming from the poor part of town, thus him being "a tree halfway in between the 'rich' world and 'poor' world." Additionally, Halfway Tree is a well-known landmark that marks the cultural center of Half-Way-Tree, the clock tower that stands where the historical eponymous cotton tree once stood is featured prominently behind Marley on the cover of the album. The album was released on 11 September 2001 and received the 2002 Grammy Award for Best Reggae Album. It was co-produced by Damian Marley and his brother Stephen Marley.
Welcome to Jamrock is a Grammy-winning reggae album by Damian Marley. The album was released on September 12, 2005 in the United Kingdom and September 13, 2005 in the United States.
Marley won two 2006 Grammy Awards for the album, Best Reggae Album and Best Urban/Alternative Performance (for the track "Welcome to Jamrock"). Guests on the album include Stephen Marley, Black Thought, Bobby Brown and Nas. The executive producers of the album were Stephen Marley and Damian Marley.
"Welcome to Jamrock" is a song by Jamaican reggae artist Damian Marley. It was released in March 2005 as the lead single from his album of the same name. The song was listed at number 270 on Pitchfork Media's "Top 500 songs of the 2000s". The song is featured in FIFA 06 & Midnight Club 3: DUB Edition Remix
The song covers issues such as crime, poverty and political corruption as part of the harsh reality of "Jamrock", Marley's personification of Jamaica, as opposed to the Jamaica advertised as a popular tourist destination. Marley laments Jamaica's high crime rate and unceasing violence, demanding that those in charge do something about it. In this sense he carries on the legacy of his father before him, in inspiring Jamaicans to stand together.
Both the rhythm (known as World Jam) and the hook are sampled from the 1984 track "World-A-Music" by Ini Kamoze - the original rhythm from the Ini Kamoze album was provided by Sly and Robbie.
UK - CD: 1
Check out the official music video for "Medication" by Damian "Jr. Gong" ft. Stephen Marley (Official Video) Song Available Here: https://republic.lnk.to/MarleyMedicationYD For more Damian “Jr. Gong” Marley info https://www.facebook.com/damianmarley https://www.instagram.com/damianjrgongmarley https://twitter.com/damianmarley Directed by Nick Walker Produced by Christopher Salzgeber Executive Produced by Sheira Rees-Davies For Scheme Engine Music video by Damian “Jr. Gong” Marley performing Medication. © 2017 Republic Records, a division of UMG Recordings, Inc. http://vevo.ly/OUupxR #DamianMarley #Medication #Vevo #Reggae #VevoOfficial
Music video by Nas & Damian "Jr. Gong" Marley performing Patience. (C) 2010 Universal Republic Records, a division of UMG Recordings, Inc.
Music video by Damian Marley performing Welcome To Jamrock. (C) 2005 Universal Records, a Division of UMG Recordings, Inc. #DamianMarley #WelcomeToJamrock #Vevo #Reggae #VevoOfficial
Official Video for "Banner" by 4x GRAMMY AWARD® - Winning reggae artist, Damian “Jr. Gong” Marley. Pre-Save on All Platforms: https://onerpm.link/Banner Subscribe to Damian Marley: http://bit.ly/SUBdm Damian Marley “Banner” Produced by Scoop DeVille Ghetto Youths International Release Date: October 11, 2024 Track Credits: Written & Performed By: Damian “Jr. Gong Marley Produced by: Scoop DeVille Additional Percussions: Tycoon Mixed By: Ettore Grenci - Soundpark Recording Studio, Los Angeles, CA Mastered By: Mike Bozzi at Bernie Grundman Mastering Studio, Hollywood, CA Director: Ras Kassa Exec Producer: Yamani Watkins Producer: Ayanna Hynes DP: Chris Browne Editor: Ras Kassa Hynes Colorist: Twain Richardson Production Co: Production Island “Banner" Lyrics” Yea enuh… ey [Verse...
Music video by Damian Marley performing Beautiful. (C) 2006 Universal Records, a Division of UMG Recordings, Inc. Distributed by Universal Music & Video Distribution Corp.
Official music video for "Living It Up" by Damian "Jr. Gong" Marley, off the Stony Hill album. Listen on Tidal: http://tidal.com/us/damianmarley | Get it now: https://dmarley.me/StonyHill Subscribe: http://bit.ly/SUBdm | Next, "Speak Life" (Official Video): http://bit.ly/2GgqJ9p Follow Damian Marley: Facebook: https://facebook.com/damianmarley Twitter: https://twitter.com/damianmarley Instagram: https://instagram.com/damianmarley/ Watch More Damian Marley: Latest Uploads: https://youtube.com/playlist?list=PLC2750B505CA406BA Popular Videos: https://youtube.com/playlist?list=PLDB232B021E6F8D14 Music Videos: https://youtube.com/playlist?list=PLKuBGsZcw87KBf6FDVHFCpoo4ENQHPAYL Audio: https://youtube.com/playlist?list=PLKuBGsZcw87JkzAPBtXi5662TAOZERbYO Official Website: http://damianmarleymu...
I DO NOT OWN THE MUSIC OF THE FOLLOWING VIDEO. NO COPYRIGHT INFRINGEMENT INTENDED...
Official Video for "Wisemen" by 4x GRAMMY AWARD® - Winning reggae artist, Damian “Jr. Gong” Marley. Damian’s first official 2024 single “Wisemen,” a moving tribute to the strength and allure of women from a unique male perspective. Stream on All Platforms: https://gyi.lnk.to/Wisemen Subscribe to Damian Marley: http://bit.ly/SUBdm "Wisemen" Performed and Produced by: Damian Jr. Gong Marley Label: Ghetto Youths International Release Date: June 14 2024 Drum Programming: Damian Marley Percussions : Roy Morgan Jnr. Keyboards: Sean Deidrick. Bass : Shiah Coore Recorded and mixed by Marc Lee l Director: B+ Director of photography: Eric Coleman Producer: Pablo Aguilar Local Producers: J...
Music video by Damian "Jr. Gong" Marley performing Affairs Of The Heart. (C) 2012 Universal Republic Records, a division of UMG Recordings, Inc. Buy Now! iTunes - http://itunes.apple.com/us/album/affairs-of-the-heart-single/id500002248 Amazon - http://www.amazon.com/Affairs-Of-The-Heart/dp/B0075CR1TY/ref=sr_shvl_album_1?ie=UTF8&qid=1330627294&sr=301-1
Watch Damian 'Jr. Gong' Marley play "Slave Mill", "So a Child May Follow" and "Speak Life" at the Tiny Desk. More from NPR Music: Tiny Desk Concerts: https://www.npr.org/tinydesk Twitter: https://twitter.com/nprmusic Instagram: https://www.instagram.com/nprmusic Sept. 9, 2019 | Felix Contreras -- There was a distinct feeling of history in the air when Damian "Jr. Gong" Marley took his place in our office with his band, and it wasn't just the legend behind his surname. For fifteen minutes, we were treated to the same socially relevant reggae that his father, legendary Jamaican reggae icon Bob Marley, made popular when he put the genre on the international music map. With eyes shut, Marley dug deep into the healing power of music with songs from his 2017 album Stony Hill. "So A Child Ma...
Music video by Damian Marley performing Welcome To Jamrock. (C) 2005 Universal Records, a Division of UMG Recordings, Inc. #DamianMarley #WelcomeToJamrock #Vevo #Reggae #VevoOfficial
Released: September 12, 2005 Recorded: 2005 @ Lion's Den, Miami, Florida, USA Marley Music, Kingston, Jamaica Tuff Gong, Kingston, Jamaica Genre: Reggae/Hip Hop Label: Universal/Tuff Gong Producer: Stephen Marley, Damian Marley ---Important notice: I do NOT claim this video! This is only for entertainment and for sharing my favorite music with the people out there! Stop deleting my videos like u did with all the other vids i put on youtube months ago!!! TY!!
Damian marley the youngest son of bob Marley R.I.P BOB p.s - This is copyrighted in germany.
I've Uploaded & Remasterized, Just to Enjoy Better Quality Audio & Video. Follow Us 4 More Music & Remixes: https://soundcloud.com/santash
Music video by Damian Marley performing Welcome To Jamrock. (C) 2005 Universal Records, a Division of UMG Recordings, Inc. #DamianMarley #WelcomeToJamrock #Vevo #Reggae #VevoOfficial
Damian Marley: Welcome to Jamrock COMMENT AND SUBSCRIBE
Damian Marley performs "Welcome To Jamrock" http://vevo.ly/KFDvtj
Provided to YouTube by Universal Music Group Welcome To Jamrock · Damian Marley Easy Hip Hop ℗ 2005 UMG Recordings, Inc. Released on: 2019-10-25 Producer: Damian Marley Producer: Stephen Marley Studio Personnel, Recording Engineer: Unknown Studio Personnel, Mixer: Jim "Bonzai" Caruso Studio Personnel, Mixer: James "Bonzai" Caruso Associated Performer, Vocals: Damien Marley Composer Lyricist: Damian Marley Composer Lyricist: Stephen Marley Composer Lyricist: Ini Kamoze Auto-generated by YouTube.
#Reggae #Pinoyreggae #reggaecover Hi mga katrops! Maraming salamat po sa inyong pagfollow & Subcribe ng aming Social media accounts, at walang sawang suporta Youtube: https://youtube.com/@TROPAVIBES FB Page: https://www.facebook.com/tropavibes Tiktok: https://vt.tiktok.com/ZSdqV52kS/ Val Ortiz Yt acct: https://youtube.com/@VALTVValOrtiz For Booking and inquiries Contact no: 09056684705 Email us on: [email protected] #Tropavibes #valortizofficial JAH BLESS! 💚💛❤️👌🔥
HIDDEN ERROR: Usage of "Parents" is not recognizedHIDDEN ERROR: Usage of "Children" is not recognized
Damian Robert Nesta "Jr. Gong" Marley (born 21 July 1978), is a Jamaican reggae artist. Damian is the youngest son of reggae legend Bob Marley. Damian was only 2 years old when his father died; he is the only child born to Marley and Cindy Breakspeare, Miss World 1976. Damian's nickname Junior Gong is derived from his father's nickname of Tuff Gong. Damian has been performing since the age of 13.
At age 13, he formed a musical group by the name of the Shephards, which included the daughter of Freddie McGregor and son of Third World's Cat Core. The group opened the 1992 Reggae Sunsplash festival. The band fell apart in the early 1990s and Damian started his solo career.
With the backing of his father’s label, Tuff Gong, he released his 1996 debut album Mr. Marley which surprised many who were unaccustomed to hearing a Marley deejaying rather than singing. Marley released his second studio album Halfway Tree. The name "Halfway Tree" comes from his mother, Cindy Breakspeare, being from the rich part of town, and his father, Bob Marley, coming from the poor part of town, thus him being "a tree halfway in between the 'rich' world and 'poor' world." Additionally, Halfway Tree is a well-known landmark that marks the cultural center of Half-Way-Tree, the clock tower that stands where the historical eponymous cotton tree once stood is featured prominently behind Marley on the cover of the album. The album was released on 11 September 2001 and received the 2002 Grammy Award for Best Reggae Album. It was co-produced by Damian Marley and his brother Stephen Marley.
Out in the streets, they call it murder
Welcome to Jamrock, camp where the thugs dem camp at
Two pound ah weed inna van back
It inna your hand bag, your knapsack, it inna your backpack
The smell ah give your girlfriend contact
Some boy nuh know dis, dem only come around like tourist
On the beach with a few club sodas
Bedtime stories, and pose like dem name Chuck Norris
And don't know the real hardcore
'Cause Sandals ah nuh back too the thugs
Dem will do whe dem got to and won't think twice to shot you
Don't make dem spot you, unless you carry guns a lot too
A bare tuff tings come at you
When Trench Town man stop laugh and block off traffic
Then dem wheel and pop off and dem start clap it
With the pin file dung an it ah beat rapid
Police come inna jeep and dem can't stop it
Some say them ah playboy, ah playboy rabbit
Funny man ah get dropped like a bad habit
So nuh bodah pose tuff if you don't have it
Rastafari stands alone
Welcome to Jamrock, welcome to Jamrock
Out in the streets, they call it murder
Welcome to Jam down, poor people ah dead at random
Political violence, can't done, pure ghost and phantom
The youth dem get blind by stardom
Now the kings of kings ah call
Old man to Pickney, so wave unnuh hand if you with me
To see the sufferation sick me
Dem suit no fit me, to win election dem trick we
Then dem don't do nuttin' at all
C'mon let's face it, a ghetto education's basic
And most ah de youths them waste it
And when dem waste it, that's when dem take the guns replace it
Then dem don't stand a chance at all
And that's why ah nuff little youth have up some fat 'matic
With the extra magazine inna dem back pocket
And ah a bleach a night time inna some black jacket
All who nah lock glocks, ah dem a lock rocket
They will full you up ah current like ah shock socket
Dem a run ah road back which part the cops block it
And from now till a mornin' nuh stop clock it
If dem run outta rounds ah bruck back ratchet
Welcome to Jamrock
(Southside, Northside)
Welcome to Jamrock
(East Coast, West Coast, huh, yo)
Welcome to Jamrock
(Cornwall, Middlesex and Surrey, yah)
Hey, welcome to Jamrock
Out in the streets, they call it murder
Jamaica, Jamaica, Jamaica, Jamaica, now
Jamaica, Jamaica, yo, Jamaica, Jamaica