- published: 26 Jan 2021
- views: 113749
'+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; })); }); -->
William Whitfield "Whit" Crane IV (born January 19, 1968) is a founding member and lead singer of the rock band Ugly Kid Joe, which formed in 1989 and disbanded in 1997, reforming in 2010.
During Ugly Kid Joe's inactivity, Crane went on a year-long tour with New York hard rock band Life of Agony before forming Medication with ex-Machine Head guitarist, Logan Mader. Due to a series of internal issues, Medication disbanded in February 2003.
Over the years, Crane has performed guest vocals on several songs, including "Reaching Out" with Mark McGrath of Sugar Ray (from the Lynn Strait tribute album Strait Up), "Born to Raise Hell" by Motörhead (also featuring rapper Ice-T) and "Voodoo Brother" by Glenn Tipton of Judas Priest.
Crane's filmography includes Ellie Parker, in which he has a cameo appearance as an acting student, and Motörhead's 25 & Alive Boneshaker, where he appears as himself.
In 2006, former Ugly Kid Joe bandmate Shannon Larkin asked Crane to join a side project he formed with members of Godsmack (minus Sully Erna) called Another Animal, as primary vocalist. Crane accepted, and the band released its self-titled debut album in 2007. In support of their debut, the band went out on tour, opening for labelmates Alter Bridge. However, they have suffered poor record sales, and the future of the band is currently unknown.
AC/DC are an Australian hard rock band, formed in November 1973 by brothers Malcolm and Angus Young, who continued as members until Malcolm's illness and departure in 2014. Commonly referred to as a hard rock or blues rock band, they are also considered pioneers of heavy metal and are sometimes classified as such, though they have always dubbed their music as simply "rock and roll".
AC/DC underwent several line-up changes before releasing their first album, High Voltage, on 17 February 1975; Malcolm and Angus were the only original members left in the band. Membership subsequently stabilised until bassist Mark Evans was replaced by Cliff Williams in 1977 for the album Powerage. Within months of recording the album Highway to Hell, lead singer and co-songwriter Bon Scott died on 19 February 1980 after a night of heavy alcohol consumption. The group considered disbanding, but buoyed by support from Scott's parents, decided to continue and set about finding a new vocalist. Ex-Geordie singer Brian Johnson was auditioned and selected to replace Scott. Later that year, the band released the new album, Back in Black, which was made as a tribute to Bon Scott. The album launched them to new heights of success and became their all-time best-seller.
AC/DC is an Australian hard rock band.
AC/DC may also refer to:
AC/DC is a pinball machine manufactured by Stern Pinball based on the Australian band of the same name. Designed by Steve Ritchie, it was released on March 1, 2012.
The machine was confirmed in January 2012 with the release of a teaser video showcasing the game, along with the twelve songs involved in its soundtrack. Each song is the subject of a mode, from which players can work towards a multi-ball for additional points.
It features a swinging bell involved in the Hells Bells mode and a lower playfield in the Premium/LE editions.
Another epic performance from this mind-blowing day. The Wedding Band (Kirk Hammett, Robert Trujillo, Joey Castillo, Whitfield Crane, and Doc Coyle) is a relaxed project put together by Kirk Hammett after being hired to play at a wedding. Kirk brought his legendary friends for an exclusive performance at Cosmo Music. Watch as they absolutely shred their take on a timeless Billy Idol classic. Kirk Hammett spent the day with us at Cosmo Music - we had a conversation with him in our latest Rockstars In Cars series, he toured our music store, had a meet and greet with fans, left us some handprints, and brought his Greeny Les Paul and some friends for an incredible performance. The Wedding Band is not just your typical cover band. Actually maybe they are... But the band members are certainly ...
Now available on iTunes: http://bit.ly/richardscrane The official video for "Black & White", the debut single from Richards/Crane. You can get this track instantly for free, when you preorder our debut album, exclusively from Pledgemusic at this link: http://bit.ly/UKJRC Richards/Crane on the web http://www.twitter.com/richardscrane http://www.facebook.com/richardscraneofficial This video features cameos from.. Snake (Skid Row) Ginger Wildheart Andy Copping Chris Jericho (Fozzy) Chris Catalyst (Eureka Machines) Michael Starr & Satchel (Steel Panther) Benji Webbe (Skindred) Phil Anselmo (Down) Dee Snider (Twisted Sister) Crossfaith Myles Kennedy (Alter Bridge/Slash) CJ Wildheart Mikey Demus (Skindred) Dan Devita (TKO) Video filmed and edited by www.dansturgessmedia.com
Official Music Video
In Rockstars In Cars, Kirk Hammett talks to Neil Shukla, Paul Luis, and Mark Hebert about playing with Whitfield Crane as a frontman versus James Hetfield, playing with Doc Coyle, potentially expanding The Wedding Band, and more. Watch more in our Rockstars In Cars (visiting Cosmo Music) web series featuring Kirk Hammett here: http://bit.ly/rockstarsincarskirkhammett Recorded at Cosmo Music - The Musical Instrument Superstore http://cosmomusic.ca @CosmoMusic
March 8, 1997
© 2019 Heavy1 Directed by Christian Lamet with Jean-Baptiste Lamet & Talia Soghomonian #whitfieldcrane #lzzyhale #halestorm #uglykidjoe
Ugly Kid Joe's Whitfield Crane took over lead vocal duties for Life of Agony in 1998 and performed with the band for a year, including tours on the Ozzfest and with Megadeth. Here is an excerpt from The Sound of Scars documentary. See the film at https://www.soundofscars.com
Official HD Music Video for “Thunderstruck” by AC/DC Listen to AC/DC: https://ACDC.lnk.to/listenYD Subscribe to AC/DC on YouTube: https://ACDC.lnk.to/subscribeYD Watch more AC/DC videos: https://ACDC.lnk.to/listen_YC/youtube Follow AC/DC: Facebook: https://ACDC.lnk.to/followFI Twitter: https://ACDC.lnk.to/followTI Instagram: https://ACDC.lnk.to/followII Website: https://ACDC.lnk.to/followWI Spotify: https://ACDC.lnk.to/followSI YouTube: https://ACDC.lnk.to/subscribeYD About the The Razor's Edge: AC/DC cracked the seal on the '90s with one of the best riffs of their career. That would be "Thunderstruck," the opening track on The Razors Edge. In addition to "Thunderstruck," the band brought out "Moneytalks," probably the closest they ever came to writing a pop song. Then there was ...
"Highway to Hell" Live At River Plate, December 2009 by AC/DC Listen to AC/DC: https://ACDC.lnk.to/listen_YD Subscribe to the official AC/DC YouTube channel: https://ACDC.lnk.to/subscribeYD Watch more AC/DC videos: https://ACDC.lnk.to/listen_YC/youtube Follow AC/DC: Facebook: https://ACDC.lnk.to/followFI Instagram: https://ACDC.lnk.to/followII Twitter: https://ACDC.lnk.to/followTI Website: https://ACDC.lnk.to/followWI Spotify: https://ACDC.lnk.to/followSI YouTube: https://ACDC.lnk.to/subscribeYD Lyrics: I'm on the highway to hell On the highway to hell Highway to hell I'm on the highway to hell #ACDC #HighwaytoHell #Live #Rock
Official 4K video for "You Shook Me All Night Long" by AC/DC Listen to AC/DC: https://ACDC.lnk.to/listen_YD Subscribe to the official AC/DC YouTube channel: https://ACDC.lnk.to/subscribeYD Watch more AC/DC videos: https://ACDC.lnk.to/listen_YC/youtube Follow AC/DC: Facebook: https://ACDC.lnk.to/followFI Instagram: https://ACDC.lnk.to/followII Twitter: https://ACDC.lnk.to/followTI Website: https://ACDC.lnk.to/followWI Spotify: https://ACDC.lnk.to/followSI YouTube: https://ACDC.lnk.to/subscribeYD Chorus: And you shook me all night long Yeah, you shook me all night long #ACDC #YouShookMeAllNightLong #Rock #HD #Remastered
AC/DC performing “Thunderstruck” live at River Plate Listen to AC/DC: https://ACDC.lnk.to/listenYD Subscribe to AC/DC on YouTube: https://ACDC.lnk.to/subscribeYD Follow AC/DC: Facebook: https://ACDC.lnk.to/followFI Twitter: https://ACDC.lnk.to/followTI Instagram: https://ACDC.lnk.to/followII Website: https://ACDC.lnk.to/followWI Spotify: https://ACDC.lnk.to/followSI YouTube: https://ACDC.lnk.to/subscribeYD About The Razor's Edge: The Razors Edge is an album by Australian hard rock band AC/DC. It was the band's eleventh internationally released studio album and the twelfth to be released in Australia. The Razors Edge features hits "Thunderstruck" and "Are You Ready, which reached #5 and #16 respectively on Billboard's Mainstream Rock Tracks Chart and "Moneytalks, which peaked at #...
Official 4K Video for "Back In Black" by AC/DC Listen to AC/DC: https://ACDC.lnk.to/listen_YD Subscribe to the official AC/DC YouTube channel: https://ACDC.lnk.to/subscribeYD Watch more AC/DC videos: https://ACDC.lnk.to/listen_YC/youtube Follow AC/DC: Facebook: https://ACDC.lnk.to/followFI Instagram: https://ACDC.lnk.to/followII Twitter: https://ACDC.lnk.to/followTI Website: https://ACDC.lnk.to/followWI Spotify: https://ACDC.lnk.to/followSI YouTube: https://ACDC.lnk.to/subscribeYD Chorus: 'Cause I'm back, yes I'm back Well, I'm back, yes I'm back Well, I'm back, back Well, I'm back in black Yes, I'm back in black #ACDC #BackInBlack #Rock #HD #Remastered
Strap yourself in for the most thundering AC/DC tracks! Listen to the playlist now: https://ACDC.lnk.to/AreYouReadyYA!wlr Let There Be Rock Buy/Listen - https://LegacyRecordings.lnk.to/acdc_ltbr!wlr About the album: Released at a time when disco and punk were polarizing, dominating forces, Let There Be Rock sounded like the work of rock 'n' roll primitives locked away in their own world. Riffs were fast and laced with fuzz on "Bad Boy Boogie" and the salacious "Whole Lotta Rosie." Follow AC/DC: Spotify - https://LegacyRecordings.lnk.to/acdc_ltbrSI!wlr Facebook - https://LegacyRecordings.lnk.to/acdc_ltbrFI!wlr Twitter - https://LegacyRecordings.lnk.to/acdc_ltbrTI!wlr Instagram - https://LegacyRecordings.lnk.to/acdc_ltbrII!wlr Website - https://LegacyRecordings.lnk.to/acdc_ltbrWI!wlr
Official HD Video for "Hells Bells" by AC/DC Listen to AC/DC: https://ACDC.lnk.to/listen_YD Subscribe to the official AC/DC YouTube channel: https://ACDC.lnk.to/subscribeYD Watch more AC/DC videos: https://ACDC.lnk.to/listen_YC/youtube Follow AC/DC: Facebook: https://ACDC.lnk.to/followFI Instagram: https://ACDC.lnk.to/followII Twitter: https://ACDC.lnk.to/followTI Website: https://ACDC.lnk.to/followWI Spotify: https://ACDC.lnk.to/followSI YouTube: https://ACDC.lnk.to/subscribeYD Lyrics: Hell's bells Yeah, hell's bells You got me ringing Hell's bells My temperature's high Hell's bells #ACDC #HellsBells #OfficialHDVideo #Rock
"Shoot to Thrill" by AC/DC (Iron Man 2 Version) Listen to AC/DC: https://ACDC.lnk.to/listenYD Subscribe to AC/DC on YouTube: https://ACDC.lnk.to/subscribeYD Follow AC/DC: Facebook: https://ACDC.lnk.to/followFI Twitter: https://ACDC.lnk.to/followTI Instagram: https://ACDC.lnk.to/followII Website: https://ACDC.lnk.to/followWI Spotify: https://ACDC.lnk.to/followSI YouTube: https://ACDC.lnk.to/subscribeYD Lyrics: All you women who want a man of the street Don't know which way you wanna turn Just keep coming And put your hand out to me Cause I'm the one who's gonna make you burn I'm gonna take you down Down down down So don't you fool around I'm gonna pull it pull it Pull the trigger Shoot to thrill play to kill Too many women too many pills, yeah Shoot to thrill play to kill I got my...
Official HD Video for "Thunderstruck" by AC/DC from Live at Donington, 8/17/91 Listen to AC/DC: https://ACDC.lnk.to/listen_YD Subscribe to the official AC/DC YouTube channel: https://ACDC.lnk.to/subscribeYD Watch more AC/DC videos: https://ACDC.lnk.to/listen_YC/youtube Follow AC/DC: Facebook: https://ACDC.lnk.to/followFI Instagram: https://ACDC.lnk.to/followII Twitter: https://ACDC.lnk.to/followTI Website: https://ACDC.lnk.to/followWI Spotify: https://ACDC.lnk.to/followSI YouTube: https://ACDC.lnk.to/subscribeYD Chorus: You've been - thunderstruck #ACDC #Thunderstruck #LiveatDonington#HDRemaastered
Official audio for "T.N.T." by AC/DC Listen to AC/DC: https://ACDC.lnk.to/listen_YD Subscribe to the official AC/DC YouTube channel: https://ACDC.lnk.to/subscribeYD Watch more AC/DC videos: https://ACDC.lnk.to/listen_YC/youtube Follow AC/DC: Facebook: https://ACDC.lnk.to/followFI Instagram: https://ACDC.lnk.to/followII Twitter: https://ACDC.lnk.to/followTI Website: https://ACDC.lnk.to/followWI Spotify: https://ACDC.lnk.to/followSI YouTube: https://ACDC.lnk.to/subscribeYD [Chorus] 'Cause I'm T.N.T., I'm dynamite T.N.T., and I'll win the fight T.N.T., I'm a power load T.N.T., watch me explode #ACDC #TNT #Rock
William Whitfield "Whit" Crane IV (born January 19, 1968) is a founding member and lead singer of the rock band Ugly Kid Joe, which formed in 1989 and disbanded in 1997, reforming in 2010.
During Ugly Kid Joe's inactivity, Crane went on a year-long tour with New York hard rock band Life of Agony before forming Medication with ex-Machine Head guitarist, Logan Mader. Due to a series of internal issues, Medication disbanded in February 2003.
Over the years, Crane has performed guest vocals on several songs, including "Reaching Out" with Mark McGrath of Sugar Ray (from the Lynn Strait tribute album Strait Up), "Born to Raise Hell" by Motörhead (also featuring rapper Ice-T) and "Voodoo Brother" by Glenn Tipton of Judas Priest.
Crane's filmography includes Ellie Parker, in which he has a cameo appearance as an acting student, and Motörhead's 25 & Alive Boneshaker, where he appears as himself.
In 2006, former Ugly Kid Joe bandmate Shannon Larkin asked Crane to join a side project he formed with members of Godsmack (minus Sully Erna) called Another Animal, as primary vocalist. Crane accepted, and the band released its self-titled debut album in 2007. In support of their debut, the band went out on tour, opening for labelmates Alter Bridge. However, they have suffered poor record sales, and the future of the band is currently unknown.
Party gonna happen at the union hall
Shakin to the rhythm till everybody fall
Pickin up my woman in my Chevorlet
Glory hallelujah gonna rock the night away
I'm gonna roll roll roll
I'm gonna roll roll roll
I'm gonna take this town, turn it around
I'm gonna roll roll roll
Now theres a blue suede boppin on her high heel shoe
Rollin round together like a wreckin crew
Be bop a lula baby what I say
Ya gotta get a dose of rock n rollin each and every day
We're gonna roll roll roll
We're gonna roll roll roll
We're gonna take this town, turn it around
We're gonna roll roll roll
I'm gonna blow up my video
Shut down by radio
Told boss man where to go
Turned off my brain control
Thats the way I wanna rock n roll
Thats the way I wanna rock n roll
Thats the way
Thats the way I wanna rock n roll
Thats the way I wanna rock n roll
Thats the way, thats the way
Thats the way I wanna rock n roll
Thats the way, thats the way
Thats the way I wanna rock n roll
Thats the way, thats the way
To rock n roll
Roll roll roll, I got to roll roll roll roll
I'm gonna take this town, turn it around
I'm gonna roll roll roll
I gotta roll, thats the way I want it
Roll roll roll gotta hear it now
I'm gonna take this town, turn it around
I'm gonna roll roll roll
I'm gonna blow up my video
Shut down by radio
Told boss man where to go
Turned off my brain control
Thats the way I wanna rock n roll
Thats the way I wanna rock n roll