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

Song 2

"Song 2" is a song by English rock band Blur, the second track from their 1997 eponymous fifth studio album. The hook features Damon Albarn yelling "woo-hoo!" as the distorted bass comes in. Released in April 1997, "Song 2" appropriately reached number two in the UK Singles Chart, number four on the Australian ARIA Charts, and number six on US Billboard Alternative Songs (previously called Billboard Modern Rock Tracks).

At the 1997 MTV Video Music Awards, "Song 2" was nominated for Best Group Video, and Best Alternative Video. At the 1998 Brit Awards the song was nominated for Best British Single, and Best British Video. In December 1998, BBC Radio 1 listeners voted "Song 2" the 15th Best Track Ever. In October 2011, NME placed it No. 79 on its list "150 Best Tracks of the Past 15 Years".

Blur intended "Song 2" to be a satire of grunge. The song was nonetheless their biggest hit in the United States. The song has often featured in popular culture, and first appeared in the hit video game FIFA: Road to World Cup 98.

Podcasts:

  • Blur - Song 2 (Official Music Video)

    The official music video for Blur - Song 2 Taken from Blur’s 5th studio album ‘Blur’ released in 1997, which featured the hit singles ‘Beetlebum’, ‘Song 2’, ‘On Your Own’ and ‘M.O.R.’ Subscribe to the Blur official channel for all the best and latest official music videos, behind the scenes and live performances.  https://www.youtube.com/blur?sub_confirmation=1 See more official videos from Blur here: https://www.youtube.com/playlist?list=PLETB5bOsgcnI73WMhyN8HN7OUT9AKAqas Listen to more from the album ‘Blur’: https://www.youtube.com/playlist?list=PLETB5bOsgcnK6CiNvbJWJfXmhSfzKMB1f Follow Blur Website - http://www.blur.co.uk Facebook - https://www.facebook.com/blur Twitter - https://twitter.com/blurofficial Instagram -http://instagram.com/blurofficial About Blur: B...

    published: 15 Apr 2009
  • Blur - Song 2 (with lyrics)

    Blur Song 2 With lyrics You need to wait a while before the words come in. if it's a black screen that means it's working. It's just waiting for the words to start. enjoy

    published: 13 Jul 2008
  • Imagine Dragons - "Song 2" Live (Blur Cover)

    -------------------------------------------------------------------------------------------------- Follow the band on social media: Facebook: https://www.facebook.com/ImagineDragons Twitter: https://twitter.com/Imaginedragons Instagram: https://www.instagram.com/imaginedragons All rights go to IMAGINE DRAGONS and respective owners.

    published: 25 May 2018
  • Joker Music Video | Rock & Roll Part 2 - Gary Glitter

    Rock & Roll Part 2 Joker Stairway Dance Music Video Music: https://youtu.be/6sjGBXckGB4 Footage: https://youtu.be/zAGVQLHvwOY Joker is finally out! Hope you all enjoy this music video/tribute using the song he dances to on the stairway! SUPPORT ME ON PATREON: https://www.patreon.com/batjax Follow Me Elsewhere: Vlog Channel - https://www.youtube.com/channel/UCmwiFnD1lKi4ah62kmv79Fg Instagram - https://www.instagram.com/batjaxproductions/ Twitter - https://mobile.twitter.com/PaperJax117 Patreon - https://www.patreon.com/batjax Discord - https://discord.gg/qYZMezX Story Fire - https://storyfire.app.link/Lc6QvfiXW1 LetterboxD - https://letterboxd.com/batjax/ VSCO - https://vs.co/t0EM9c0QE3 GG Page - https://ggapp.io/batjax Twitch - https://www.twitch.tv/clownprinceofcrime1989 ...

    published: 03 Oct 2019
  • Phonics Song 2

    It's a phonics song with a picture for each letter. This is designed to help children learn the sounds of the letters in the English alphabet. Written and performed by A.J.Jenkins Copyright 2009 A.J.Jenkins/KidsTV123. All rights reserved. This is an ORIGINAL song written in 2009 - any copying is illegal. For MP3s, worksheets and much more: http://www.KidsTV123.com Kids songs song for children Chords for this song: GDG GDG GDG GDG CDG https://open.spotify.com/artist/0zC8dOCRSyLAqsBq99du1f https://music.youtube.com/channel/UC0EqNhs_ejTB7_EgTZzpixA https://music.apple.com/gb/artist/kids-tv-123/1439675517 https://music.amazon.com/artists/B07JN5GWJC/kids-tv-123

    published: 22 Sep 2009
  • Blur - Song 2 (metal cover by Leo & Stine Moracchioli)

    You can buy my albums or singles here: DIRECT FROM ME (LOSSLESS) ► http://bit.ly/2usJ3lq ITUNES ► http://apple.co/1Lni4PR AMAZON ► http://amzn.to/1U2rqUa GOOGLE PLAY ► http://bit.ly/1SOd6Nx Frog Leap Studios Merchandise here: US ► http://bit.ly/1qZ64KP EU ► http://bit.ly/1NXI3Zz Become a Patreon and get all the songs and support me doing more music covers: http://www.patreon.com/frogleapstudios ►Gear I use: Chapman Guitars: http://www.chapmanguitars.co.uk Microphone: http://amzn.to/2s4GTGY Studio Guitar Amp: http://amzn.to/2t3WifM Guitar Strings: http://amzn.to/2sKOXyC Main Camera: http://amzn.to/2sKGLyh Camera Lens: http://amzn.to/2s4VD8S Camera Lens Wide: http://amzn.to/2rLAwZP Guitar & drum camera: http://amzn.to/2s4YbE3 Attach it with this: http://amzn.to/2s4YkHr Drone: http://amz...

    published: 27 Nov 2015
  • 🏰THE ROYALE HIGH SONG 2

    Thank 𝗬𝗢𝗨 for watching 𝗠𝗬 𝗩𝗜𝗗𝗘𝗢! I upload 𝗥𝗢𝗕𝗟𝗢𝗫 videos. Mostly 𝗠𝗨𝗦𝗜𝗖 videos. I'm also a proud 𝗚𝗥𝗢𝗨𝗣 𝗢𝗪𝗡𝗘𝗥, 𝗙𝗔𝗦𝗛𝗜𝗢𝗡 𝗗𝗘𝗦𝗜𝗚𝗡𝗘𝗥, & 𝗚𝗔𝗠𝗘 𝗖𝗥𝗘𝗔𝗧𝗢𝗥. ‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒ 𝗥𝗢𝗕𝗟𝗢𝗫: https://www.roblox.com/users/10055563... 𝗧𝗪𝗜𝗧𝗧𝗘𝗥: https://twitter.com/TheMaislie 𝗗𝗜𝗦𝗖𝗢𝗥𝗗: Maislie#5634 𝗜𝗡𝗦𝗧𝗔𝗚𝗥𝗔𝗠: https://www.instagram.com/seabekka/ 𝗠𝗔𝗜𝗟: seabekka@gmail.com ‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒ 𝗚𝗔𝗠𝗘𝗦 ROBLOX Royale High Earth 𝗧𝗛𝗨𝗠𝗕𝗡𝗔𝗜𝗟 BiancaV13 𝗖𝗔𝗦𝗧 (random order) PrincessLeah34505 cutesquishylove uhRhia Reletriin BiancaV13 CherryColaCher MonaMeow elizabeth_elizechea iiSaturdayDream dorina0619 VixellaXxX5 babycookie32022 lara0619 MoontheglaxygirlXXX unicorngirloctober stellap aleeshacat12 2miraculus2 Campbell02 CutePigStar kitty_gamet NinoLovesRoblox_2 Noobfani...

    published: 04 Nov 2019
  • Pennywise Sings A Song IT CHAPTER TWO Parody

    #pennywise #it #chapter2 Soooooooo excited, im about to see IT!!!! Thank you to CC Karaoke for the House Of Memories instrumental - https://www.youtube.com/watch?v=NYN8Uwp98us Bro Thor Sings Old Town Road tmoro, its funny + Connect with the Don + + iTunes - https://itun.es/gb/SeEadb + Spotify - https://open.spotify.com/artist/4p8Bt7SQvRh11dl9caLNNK + Instagram - https://www.instagram.com/frasernash + Twitter - https://twitter.com/frasernash + Snapchat - fraser-nash + PS4 - DonFraserNash Here's the lyrics -Pennywise chapter 2 Billy I’m really, happy now, I heard you were in town, And I just gotta know, Did you bring your friends with you? I’ve missed the loser club soo, God damn much it hurts, The last we spoke, I was on the ropes, You kiddies had me beat, I lost hope, but ...

    published: 06 Sep 2019
  • Blur - Song 2 live at Wembley Arena 1999

    published: 27 Jun 2016
Blur - Song 2 (Official Music Video)
2:03

Blur - Song 2 (Official Music Video)

  • Order:
  • Duration: 2:03
  • Uploaded Date: 15 Apr 2009
  • views: 203262107
The official music video for Blur - Song 2 Taken from Blur’s 5th studio album ‘Blur’ released in 1997, which featured the hit singles ‘Beetlebum’, ‘Song 2’, ‘On Your Own’ and ‘M.O.R.’ Subscribe to the Blur official channel for all the best and latest official music videos, behind the scenes and live performances.  https://www.youtube.com/blur?sub_confirmation=1 See more official videos from Blur here: https://www.youtube.com/playlist?list=PLETB5bOsgcnI73WMhyN8HN7OUT9AKAqas Listen to more from the album ‘Blur’: https://www.youtube.com/playlist?list=PLETB5bOsgcnK6CiNvbJWJfXmhSfzKMB1f Follow Blur Website - http://www.blur.co.uk Facebook - https://www.facebook.com/blur Twitter - https://twitter.com/blurofficial Instagram -http://instagram.com/blurofficial About Blur: Blur were formed in 1989 by Damon Albarn, Graham Coxon, Alex James and Dave Rowntree and signed with Food/EMI the same year. Announcing their arrival with debut album Leisure in 1991, Blur continued to revolutionise the sound of English popular music with second release Modern Life Is Rubbish (1993). Five successive UK #1 albums followed - with Parklife (1994) and The Great Escape (1995) helping to propel the band to mass popularity in the UK and beyond. The eponymous Blur was released in 1997 and seventh album Think Tank (2003) was Blur’s first as a three-piece after the temporary departure of founding guitarist Graham Coxon. Twenty one years after the release of their debut album, 2012 saw Blur 21: The Box, the band's body of work compiled and gathered together into one box. Their most recent release as a four-piece, the critically acclaimed chart-topping album The Magic Whip (2015), started life in Hong Kong when the band had an unexpected break in touring in May 2013. #Blur #Song2 #BlurAlbum
https://wn.com/Blur_Song_2_(Official_Music_Video)
Blur - Song 2 (with lyrics)
2:05

Blur - Song 2 (with lyrics)

  • Order:
  • Duration: 2:05
  • Uploaded Date: 13 Jul 2008
  • views: 3275159
Blur Song 2 With lyrics You need to wait a while before the words come in. if it's a black screen that means it's working. It's just waiting for the words to start. enjoy
https://wn.com/Blur_Song_2_(With_Lyrics)
Imagine Dragons - "Song 2" Live (Blur Cover)
3:14

Imagine Dragons - "Song 2" Live (Blur Cover)

  • Order:
  • Duration: 3:14
  • Uploaded Date: 25 May 2018
  • views: 698129
-------------------------------------------------------------------------------------------------- Follow the band on social media: Facebook: https://www.facebook.com/ImagineDragons Twitter: https://twitter.com/Imaginedragons Instagram: https://www.instagram.com/imaginedragons All rights go to IMAGINE DRAGONS and respective owners.
https://wn.com/Imagine_Dragons_Song_2_Live_(Blur_Cover)
Joker Music Video | Rock & Roll Part 2 - Gary Glitter
2:53

Joker Music Video | Rock & Roll Part 2 - Gary Glitter

  • Order:
  • Duration: 2:53
  • Uploaded Date: 03 Oct 2019
  • views: 85808722
Rock & Roll Part 2 Joker Stairway Dance Music Video Music: https://youtu.be/6sjGBXckGB4 Footage: https://youtu.be/zAGVQLHvwOY Joker is finally out! Hope you all enjoy this music video/tribute using the song he dances to on the stairway! SUPPORT ME ON PATREON: https://www.patreon.com/batjax Follow Me Elsewhere: Vlog Channel - https://www.youtube.com/channel/UCmwiFnD1lKi4ah62kmv79Fg Instagram - https://www.instagram.com/batjaxproductions/ Twitter - https://mobile.twitter.com/PaperJax117 Patreon - https://www.patreon.com/batjax Discord - https://discord.gg/qYZMezX Story Fire - https://storyfire.app.link/Lc6QvfiXW1 LetterboxD - https://letterboxd.com/batjax/ VSCO - https://vs.co/t0EM9c0QE3 GG Page - https://ggapp.io/batjax Twitch - https://www.twitch.tv/clownprinceofcrime1989 Drawing Page - https://instagram.com/paperprimedrawings?r=nametag DCEU Fan Page - https://instagram.com/until_it_wasnt?r=nametag Playlists: DC Videos: https://www.youtube.com/playlist?list=PLEvQPXygP3-GGYYwy3iz7DI-_whfcRfoa Marvel Videos: https://www.youtube.com/playlist?list=PLEvQPXygP3-HdH6_iq4QH1rR03l1-_e62 Star Wars Videos: https://www.youtube.com/playlist?list=PLEvQPXygP3-FWfurge2uxYxiBZr9WxfF- Fan Films: https://www.youtube.com/playlist?list=PLEvQPXygP3-GrJebE_CJ_-FZMgP2c98ON "Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use."
https://wn.com/Joker_Music_Video_|_Rock_Roll_Part_2_Gary_Glitter
Phonics Song 2
3:00

Phonics Song 2

  • Order:
  • Duration: 3:00
  • Uploaded Date: 22 Sep 2009
  • views: 913140420
It's a phonics song with a picture for each letter. This is designed to help children learn the sounds of the letters in the English alphabet. Written and performed by A.J.Jenkins Copyright 2009 A.J.Jenkins/KidsTV123. All rights reserved. This is an ORIGINAL song written in 2009 - any copying is illegal. For MP3s, worksheets and much more: http://www.KidsTV123.com Kids songs song for children Chords for this song: GDG GDG GDG GDG CDG https://open.spotify.com/artist/0zC8dOCRSyLAqsBq99du1f https://music.youtube.com/channel/UC0EqNhs_ejTB7_EgTZzpixA https://music.apple.com/gb/artist/kids-tv-123/1439675517 https://music.amazon.com/artists/B07JN5GWJC/kids-tv-123
https://wn.com/Phonics_Song_2
Blur - Song 2 (metal cover by Leo & Stine Moracchioli)
4:01

Blur - Song 2 (metal cover by Leo & Stine Moracchioli)

  • Order:
  • Duration: 4:01
  • Uploaded Date: 27 Nov 2015
  • views: 6263203
You can buy my albums or singles here: DIRECT FROM ME (LOSSLESS) ► http://bit.ly/2usJ3lq ITUNES ► http://apple.co/1Lni4PR AMAZON ► http://amzn.to/1U2rqUa GOOGLE PLAY ► http://bit.ly/1SOd6Nx Frog Leap Studios Merchandise here: US ► http://bit.ly/1qZ64KP EU ► http://bit.ly/1NXI3Zz Become a Patreon and get all the songs and support me doing more music covers: http://www.patreon.com/frogleapstudios ►Gear I use: Chapman Guitars: http://www.chapmanguitars.co.uk Microphone: http://amzn.to/2s4GTGY Studio Guitar Amp: http://amzn.to/2t3WifM Guitar Strings: http://amzn.to/2sKOXyC Main Camera: http://amzn.to/2sKGLyh Camera Lens: http://amzn.to/2s4VD8S Camera Lens Wide: http://amzn.to/2rLAwZP Guitar & drum camera: http://amzn.to/2s4YbE3 Attach it with this: http://amzn.to/2s4YkHr Drone: http://amzn.to/2t44z32 Toontrack: https://www.toontrack.com Ortega Guitars: http://ortegaguitars.com Hi there, my name is Leo and I run a studio on the westside of Norway where I record and produce bands, do video work and play live shows. On my youtube channel there is lots of videos with covers, gear reviews , studio updates and other shenaningans. For my covers I play everything myself as well as record, mix, master, shoot and edit the music & videos. Please subscribe if you like what you see/hear and I am forever gratefull to everyone who buys songs so I can keep doing this as a living. I do not add people I dont know on my personal facebook page, so please follow these links which are my "fan" pages: Youtube ► http://youtube.com/leolego Facebook ► https://www.facebook.com/FrogLeapStudios Twitter ► https://twitter.com/FrogLeapStudios Instagram ► https://instagram.com/frogleapstudios Website ► http://frogleapstudios.com For business Inquiries: frogleapstudios@gmail.com
https://wn.com/Blur_Song_2_(Metal_Cover_By_Leo_Stine_Moracchioli)
🏰THE ROYALE HIGH SONG 2
0:55

🏰THE ROYALE HIGH SONG 2

  • Order:
  • Duration: 0:55
  • Uploaded Date: 04 Nov 2019
  • views: 114668
Thank 𝗬𝗢𝗨 for watching 𝗠𝗬 𝗩𝗜𝗗𝗘𝗢! I upload 𝗥𝗢𝗕𝗟𝗢𝗫 videos. Mostly 𝗠𝗨𝗦𝗜𝗖 videos. I'm also a proud 𝗚𝗥𝗢𝗨𝗣 𝗢𝗪𝗡𝗘𝗥, 𝗙𝗔𝗦𝗛𝗜𝗢𝗡 𝗗𝗘𝗦𝗜𝗚𝗡𝗘𝗥, & 𝗚𝗔𝗠𝗘 𝗖𝗥𝗘𝗔𝗧𝗢𝗥. ‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒ 𝗥𝗢𝗕𝗟𝗢𝗫: https://www.roblox.com/users/10055563... 𝗧𝗪𝗜𝗧𝗧𝗘𝗥: https://twitter.com/TheMaislie 𝗗𝗜𝗦𝗖𝗢𝗥𝗗: Maislie#5634 𝗜𝗡𝗦𝗧𝗔𝗚𝗥𝗔𝗠: https://www.instagram.com/seabekka/ 𝗠𝗔𝗜𝗟: seabekka@gmail.com ‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒ 𝗚𝗔𝗠𝗘𝗦 ROBLOX Royale High Earth 𝗧𝗛𝗨𝗠𝗕𝗡𝗔𝗜𝗟 BiancaV13 𝗖𝗔𝗦𝗧 (random order) PrincessLeah34505 cutesquishylove uhRhia Reletriin BiancaV13 CherryColaCher MonaMeow elizabeth_elizechea iiSaturdayDream dorina0619 VixellaXxX5 babycookie32022 lara0619 MoontheglaxygirlXXX unicorngirloctober stellap aleeshacat12 2miraculus2 Campbell02 CutePigStar kitty_gamet NinoLovesRoblox_2 Noobfanity PumpkinKitty7 stormyiscuteee torriben11 iicupcake_party saltypanda44 Denisa_DenyRO spudmonkey14 Maislie 𝗠𝗨𝗦𝗜𝗖 made by maislie lol
https://wn.com/🏰The_Royale_High_Song_2
Pennywise Sings A Song IT CHAPTER TWO Parody
5:28

Pennywise Sings A Song IT CHAPTER TWO Parody

  • Order:
  • Duration: 5:28
  • Uploaded Date: 06 Sep 2019
  • views: 9249109
#pennywise #it #chapter2 Soooooooo excited, im about to see IT!!!! Thank you to CC Karaoke for the House Of Memories instrumental - https://www.youtube.com/watch?v=NYN8Uwp98us Bro Thor Sings Old Town Road tmoro, its funny + Connect with the Don + + iTunes - https://itun.es/gb/SeEadb + Spotify - https://open.spotify.com/artist/4p8Bt7SQvRh11dl9caLNNK + Instagram - https://www.instagram.com/frasernash + Twitter - https://twitter.com/frasernash + Snapchat - fraser-nash + PS4 - DonFraserNash Here's the lyrics -Pennywise chapter 2 Billy I’m really, happy now, I heard you were in town, And I just gotta know, Did you bring your friends with you? I’ve missed the loser club soo, God damn much it hurts, The last we spoke, I was on the ropes, You kiddies had me beat, I lost hope, but then awoke, Now I’m back to eating meat, What’s better child’s fear or the losers? This is gonna hurt, Billy you remember how, I took your Georgie, I still do it now, With all the kids I meet, So come be a hero, And I will let them go, Just take my red balloon, And together we will float, Beverly I’ll give you the creeps, If not with your daddy, Then with little old ladies, They’ll run at you nude full speed, I’m so sick and twisted you love it, Droopy boobies swing at ya, As I recall all those years ago, Bill and Ben they fancied you, I have no idea why, I got a feeling one will die, And how fun would it be if you had to decide? Fear and tears from ya, (please) Bev do you remember how, I became daddy, I still do it now, With all the kids I meet, So come be a hero, And I will let them go, Just take my red balloon, And together we will float, billy, where have you been? i've missed you You’ve all grown, So ugly, You used to be cuties, I remember, The first encounter, With Eddie, he nearly peed, Now will you, Let me do, What I’ve been planning to, For 27 years, Losers you remember how, I scared you silly, I still do it now, With all the kids I meet, So come be a hero, And I will let them go, Just take my red balloon, Losers you remember how, I scared you silly, I still do it now, With all the kids I meet, So come be a hero, And I will let them go, Just take my red balloon, And together we will float, And together we will float, Just take my red balloon,
https://wn.com/Pennywise_Sings_A_Song_It_Chapter_Two_Parody
Blur - Song 2 live at Wembley Arena 1999
2:11

Blur - Song 2 live at Wembley Arena 1999

  • Order:
  • Duration: 2:11
  • Uploaded Date: 27 Jun 2016
  • views: 725069
https://wn.com/Blur_Song_2_Live_At_Wembley_Arena_1999
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Blur - Song 2 (Official Music Video)
    2:03
    Blur - Song 2 (Official Music Video)remove from playlist
  • Blur - Song 2 (with lyrics)
    2:05
    Blur - Song 2 (with lyrics)remove from playlist
  • Imagine Dragons -
    3:14
    Imagine Dragons - "Song 2" Live (Blur Cover)remove from playlist
  • Joker Music Video | Rock & Roll Part 2 - Gary Glitter
    2:53
    Joker Music Video | Rock & Roll Part 2 - Gary Glitterremove from playlist
  • Phonics Song 2
    3:00
    Phonics Song 2remove from playlist
  • Blur - Song 2 (metal cover by Leo & Stine Moracchioli)
    4:01
    Blur - Song 2 (metal cover by Leo & Stine Moracchioli)remove from playlist
  • 🏰THE ROYALE HIGH SONG 2
    0:55
    🏰THE ROYALE HIGH SONG 2remove from playlist
  • Pennywise Sings A Song IT CHAPTER TWO Parody
    5:28
    Pennywise Sings A Song IT CHAPTER TWO Parodyremove from playlist
PLAYLIST TIME: 0:00 / 25:50

Blur - Song 2 (Official Music Video)

The official music video for Blur - Song 2 Taken from Blur’s 5th studio album ‘Blur’ released in 1997, which featured the hit singles ‘Beetlebum’, ‘Song 2’, ‘On Your Own’ and ‘M.O.R.’ Subscribe to the Blur official channel for all the best and latest official music videos, behind the scenes and live performances.  https://www.youtube.com/blur?sub_confirmation=1 See more official videos from Blur here: https://www.youtube.com/playlist?list=PLETB5bOsgcnI73WMhyN8HN7OUT9AKAqas Listen to more from the album ‘Blur’: https://www.youtube.com/playlist?list=PLETB5bOsgcnK6CiNvbJWJfXmhSfzKMB1f Follow Blur Website - http://www.blur.co.uk Facebook - https://www.facebook.com/blur Twitter - https://twitter.com/blurofficial Instagram -http://instagram.com/blurofficial About Blur: Blur were formed in 1989 by Damon Albarn, Graham Coxon, Alex James and Dave Rowntree and signed with Food/EMI the same year. Announcing their arrival with debut album Leisure in 1991, Blur continued to revolutionise the sound of English popular music with second release Modern Life Is Rubbish (1993). Five successive UK #1 albums followed - with Parklife (1994) and The Great Escape (1995) helping to propel the band to mass popularity in the UK and beyond. The eponymous Blur was released in 1997 and seventh album Think Tank (2003) was Blur’s first as a three-piece after the temporary departure of founding guitarist Graham Coxon. Twenty one years after the release of their debut album, 2012 saw Blur 21: The Box, the band's body of work compiled and gathered together into one box. Their most recent release as a four-piece, the critically acclaimed chart-topping album The Magic Whip (2015), started life in Hong Kong when the band had an unexpected break in touring in May 2013. #Blur #Song2 #BlurAlbum
2:03
Blur - Song 2 (Official Music Video)
The official music video for Blur - Song 2 Taken from Blur’s 5th studio album ‘Blur’ re...
published: 15 Apr 2009
Play in Full Screen
2:05
Blur - Song 2 (with lyrics)
Blur Song 2 With lyrics You need to wait a while before the words come in. if it's a blac...
published: 13 Jul 2008
Play in Full Screen
3:14
Imagine Dragons - "Song 2" Live (Blur Cover)
------------------------------------------------------------------------------------------...
published: 25 May 2018
Play in Full Screen
2:53
Joker Music Video | Rock & Roll Part 2 - Gary Glitter
Rock & Roll Part 2 Joker Stairway Dance Music Video Music: https://youtu.be/6sjGBXckGB4 ...
published: 03 Oct 2019
Play in Full Screen
3:00
Phonics Song 2
It's a phonics song with a picture for each letter. This is designed to help children lear...
published: 22 Sep 2009
Play in Full Screen
4:01
Blur - Song 2 (metal cover by Leo & Stine Moracchioli)
You can buy my albums or singles here: DIRECT FROM ME (LOSSLESS) ► http://bit.ly/2usJ3lq ...
published: 27 Nov 2015
Play in Full Screen
0:55
🏰THE ROYALE HIGH SONG 2
Thank 𝗬𝗢𝗨 for watching 𝗠𝗬 𝗩𝗜𝗗𝗘𝗢! I upload 𝗥𝗢𝗕𝗟𝗢𝗫 videos. Mostly 𝗠𝗨𝗦𝗜𝗖 videos. I'm also a p...
published: 04 Nov 2019
Play in Full Screen
5:28
Pennywise Sings A Song IT CHAPTER TWO Parody
#pennywise #it #chapter2 Soooooooo excited, im about to see IT!!!! Thank you to CC Karaok...
published: 06 Sep 2019
Play in Full Screen
2:11
Blur - Song 2 live at Wembley Arena 1999
published: 27 Jun 2016
Play in Full Screen

Song 2

"Song 2" is a song by English rock band Blur, the second track from their 1997 eponymous fifth studio album. The hook features Damon Albarn yelling "woo-hoo!" as the distorted bass comes in. Released in April 1997, "Song 2" appropriately reached number two in the UK Singles Chart, number four on the Australian ARIA Charts, and number six on US Billboard Alternative Songs (previously called Billboard Modern Rock Tracks).

At the 1997 MTV Video Music Awards, "Song 2" was nominated for Best Group Video, and Best Alternative Video. At the 1998 Brit Awards the song was nominated for Best British Single, and Best British Video. In December 1998, BBC Radio 1 listeners voted "Song 2" the 15th Best Track Ever. In October 2011, NME placed it No. 79 on its list "150 Best Tracks of the Past 15 Years".

Blur intended "Song 2" to be a satire of grunge. The song was nonetheless their biggest hit in the United States. The song has often featured in popular culture, and first appeared in the hit video game FIFA: Road to World Cup 98.

'); } 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: song 2

Edit

Sonu Nigam Faces Police Complaint For Linking Kannada Song Request To Pahalgam Attack

News18 03 May 2025
Sonu Nigam faces police complaint from a Pro-Kannada group for remarks made during a concert, linking a fan's demand to sing Kannada song to Pahalgam terror attack ... .
Edit

Songs, tears at Winnipeg council meeting after death of Coun. Jason Schreyer

CBC 03 May 2025
Winnipeg city councillors began the process of moving on without Jason Schreyer, resuming a council meeting postponed in the wake of the councillor's death ... .
Edit

Turkish students shine in Chinese poetry, song contest in Istanbul

People Daily 03 May 2025
ISTANBUL, May 2 (Xinhua) -- University students from across Türkiye gathered in Istanbul on Friday to showcase their Chinese language skills at the 4th Chinese poetry recitation and karaoke competition ... (Web editor. Tian Yi, Wu Chaolan). .
Edit

R.E.M. Makes Bold Political Statement With New Release of Iconic Song

The Capital Journal 03 May 2025
The band still is occasionally reissuing songs from its extensive catalog to benefit causes its members support ....
Edit

Cobhams Asuquo Set to Thrill Fans with ’Songs and Stories’

This Day 03 May 2025
Fans can expect a dynamic performance with some of his greatest hits, as well as new material from his upcoming projects and the hilarious, adventurous and little known facts and stories about his songs and musical journey.
Edit

'The Kardashians used a song we wrote in a cupboard'

BBC News 03 May 2025
The Eves saw their track Brand New Day appear on the reality programme ... .
Edit

Wiltshire teenager Mia releases song in memory of her mum

BBC News 03 May 2025
A 17-year-old has released an original song in memory of her mother who died of brain cancer six years ago ... "[The song] has had really nice responses from other people who have also lost people that they love.
Edit

Dalit wedding procession attacked over Dr Ambedkar songs in Uttar Pradesh, 4 arrested

The Times of India 03 May 2025
Two days after a Dalit community wedding procession was allegedly attacked after a dispute erupted over songs related to Dr Bhimrao Ambedkar being played, police arrested four men belonging to OBC on Friday evening and sent them to jail.
Edit

6 Songs We’d Love To See Added To Beyonc�’s Cowboy Carter Tour

Vibe Magazine 03 May 2025
By Mya Abraham Plus Icon Mya Abraham. R&B Reporter ... Follow ... While fans collectively await to see what Bey has up her sleeve for the next show, VIBE pulled six songs from her lengthy discography that we hope are woven into the set at some point ... ....
Edit

‘Friends’ theme song gets a hilarious ‘Simpsons’ makeover from star

The Post-Standard 03 May 2025
Azaria, who starred in both series, posted a 50-second video to X on May 1 of him singing “I’ll Be There for You” by The Rembrandts (aka the “Friends” theme song) in the voices of several “Simpsons” characters.
Edit

Mike Peters, Frontman of the Alarm, Is Dead at 66

New York Times 03 May 2025
Leading the Welsh band known for 1980s anthems like “Sixty Eight Guns,” he later became a strong voice in the fight against cancer, which he battled for decades ... .
×