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

Nirvana (band)

Nirvana was an American rock band that was formed by singer and guitarist Kurt Cobain and bassist Krist Novoselic in Aberdeen, Washington, in 1987. Nirvana went through a succession of drummers, the longest-lasting being Dave Grohl, who joined the band in 1990. Despite releasing only three full-length studio albums in their seven-year career, Nirvana has come to be regarded as one of the most influential and important rock bands of the modern era.

In the late 1980s Nirvana established itself as part of the Seattle grunge scene, releasing its first album Bleach for the independent record label Sub Pop in 1989. The band eventually came to develop a sound that relied on dynamic contrasts, often between quiet verses and loud, heavy choruses. After signing to major label DGC Records, Nirvana found unexpected success with "Smells Like Teen Spirit", the first single from the band's second album Nevermind (1991). Nirvana's sudden success widely popularized alternative rock as a whole, and the band's frontman Cobain found himself referred to in the media as the "spokesman of a generation", with Nirvana being considered the "flagship band" of Generation X. In response, Nirvana's third studio album, In Utero (1993), featured an abrasive, less-mainstream sound and challenged the group's audience. The album did not match the sales figures of Nevermind, but was still a commercial success and critically acclaimed.

Podcasts:

  • Nirvana - Smells Like Teen Spirit (Official Music Video)

    Official Music Video for Smells Like Teen Spirit performed by Nirvana. Nevermind (30th Anniversary Edition) is available now: https://Nirvana.lnk.to/Nevermind30thID Find Nirvana in any corner of the world: https://nirvana.lnk.to/Nevermind30thMapID Commemorate 30 years of ‘Nevermind’ with the album newly remastered from the original half-inch stereo analog tapes plus four previously unreleased international live shows from Amsterdam, Netherlands; Del Mar, California; Melbourne, Australia and Tokyo, Japan. Follow Nirvana: Website: https://www.nirvana.com/ Facebook: https://www.facebook.com/Nirvana Twitter: https://twitter.com/Nirvana Subscribe on YouTube: https://Nirvana.lnk.to/YTSubscribeID #Nirvana #Breed #Nevermind30 #Nevermind

    published: 16 Jun 2009
  • Nirvana - The Man Who Sold The World (MTV Unplugged)

    REMASTERED IN HD! Taken from the 25th Anniversary Editions of Nirvana – MTV Unplugged in New York Order Now: https://Nirvana.lnk.to/Unplugged25 Listen to more from Nirvana: https://Nirvana.lnk.to/essentials Subscribe for more videos: https://goo.gl/DS7Geg Facebook: https://www.facebook.com/Nirvana/ Twitter: https://twitter.com/Nirvana Instagram: https://www.instagram.com/nirvana.official.band/ Website and store: https://www.nirvana.com Music video by Nirvana performing The Man Who Sold The World (Unplugged). (C) 1994 Geffen Records #Nirvana #TheManWhoSoldTheWorld #Remastered #MTVUnplugged #VEVO

    published: 16 Jun 2009
  • Nirvana Greatest Hits - The Best Of Nirvana

    Nirvana Greatest Hits - The Best Of Nirvana Nirvana Greatest Hits - The Best Of Nirvana Nirvana Greatest Hits - The Best Of Nirvana

    published: 06 May 2022
  • Nirvana - Come As You Are (Official Music Video)

    REMASTERED IN HD!! Official Music Video for Come As You Are performed by Nirvana. ‘Nevermind (30th Anniversary Edition)’ is available now: https://Nirvana.lnk.to/Nevermind30thID Commemorating the 30th anniversary of Nirvana’s seminal 1991 release, ‘Nevermind’ is celebrated with the newly remastered album from the original analog tapes and 4 concerts from Amsterdam, Netherlands; Del Mar, California; Melbourne, Australia and Tokyo, Japan. Follow Nirvana: Website: https://www.nirvana.com Facebook: https://www.facebook.com/Nirvana Twitter: https://twitter.com/Nirvana Subscribe on YouTube: https://Nirvana.lnk.to/YTSubscribeID #Nirvana #ComeAsYouAre #Nevermind

    published: 16 Jun 2009
  • Best Songs Of Nirvana - Nirvana Greatest Hits Full Album

    Best Songs Of Nirvana - Nirvana Greatest Hits Full Album Best Songs Of Nirvana - Nirvana Greatest Hits Full Album Best Songs Of Nirvana - Nirvana Greatest Hits Full Album

    published: 26 Sep 2021
  • Nirvana - Lithium (Official Music Video)

    REMASTERED IN HD!! Official Music Video for Lithium performed by Nirvana. Nevermind (30th Anniversary Edition) is available now: https://Nirvana.lnk.to/Nevermind30thID Commemorating the 30th anniversary of Nirvana’s seminal 1991 release, Nevermind is celebrated with the newly remastered album from the original analog tapes and 4 concerts from Amsterdam, Netherlands; Del Mar, California; Melbourne, Australia and Tokyo, Japan. Follow Nirvana: Website: https://www.nirvana.com Facebook: https://www.facebook.com/Nirvana Twitter: https://twitter.com/Nirvana Subscribe on YouTube: https://Nirvana.lnk.to/YTSubscribeID #Nirvana #Lithium #Nevermind30 (C) 1992 Geffen Records

    published: 16 Jun 2009
  • Nirvana Best Best Songs - Nirvana Greatest Hits Full Album

    Nirvana Best Best Songs - Nirvana Greatest Hits Full Album

    published: 25 Jun 2018
  • Nirvana - Where Did You Sleep Last Night (Live On MTV Unplugged Unedited)

    REMASTERED IN HD! Official Music Video for Where Did You Sleep Last Night (MTV Unplugged) performed by Nirvana. Taken from the 25th Anniversary Editions of Nirvana – MTV Unplugged in New York Order Now: https://Nirvana.lnk.to/Unplugged25 Listen to more from Nirvana: https://Nirvana.lnk.to/essentials Follow Nirvana Facebook: https://www.facebook.com/Nirvana Twitter: https://twitter.com/Nirvana Website: https://www.Nirvana.com Subscribe for more videos: https://goo.gl/DS7Geg (C) 1993 Geffen Records #Nirvana #WhereDidYouSleepLastNight #Remastered #MTVUnplugged

    published: 21 Dec 2019
  • Nirvana - In Bloom (Official Music Video)

    Official Music Video for In Bloom performed by Nirvana. Nevermind (30th Anniversary Edition) is available now: https://Nirvana.lnk.to/Nevermind30thID Find Nirvana in any corner of the world: https://nirvana.lnk.to/Nevermind30thMapID Commemorate 30 years of ‘Nevermind’ with the album newly remastered from the original half-inch stereo analog tapes plus four previously unreleased international live shows from Amsterdam, Netherlands; Del Mar, California; Melbourne, Australia and Tokyo, Japan. Follow Nirvana: Website: https://www.nirvana.com/ Facebook: https://www.facebook.com/Nirvana Twitter: https://twitter.com/Nirvana Subscribe on YouTube: https://Nirvana.lnk.to/YTSubscribeID #Nirvana #Breed #Nevermind30 #Nevermind

    published: 16 Jun 2009
  • Nirvana - Something In The Way (Audio)

    Official Audio for “Something In The Way” by Nirvana from the ‘Nevermind’ 30th anniversary release. Nevermind (30th Anniversary Edition) is available now: https://Nirvana.lnk.to/Nevermind30thID Commemorating the 30th anniversary of Nirvana’s seminal 1991 release, Nevermind is celebrated with the newly remastered album from the original analog tapes and 4 concerts from Amsterdam, Netherlands; Del Mar, California; Melbourne, Australia and Tokyo, Japan. Follow Nirvana: Website: https://www.nirvana.com Facebook: https://www.facebook.com/Nirvana Twitter: https://twitter.com/Nirvana Subscribe on YouTube: https://Nirvana.lnk.to/YTSubscribeID #Nirvana #SomethingInTheWay #Nevermind

    published: 12 Nov 2021
Nirvana - Smells Like Teen Spirit (Official Music Video)
4:39

Nirvana - Smells Like Teen Spirit (Official Music Video)

  • Order:
  • Duration: 4:39
  • Uploaded Date: 16 Jun 2009
  • views: 1967238321
Official Music Video for Smells Like Teen Spirit performed by Nirvana. Nevermind (30th Anniversary Edition) is available now: https://Nirvana.lnk.to/Nevermind30thID Find Nirvana in any corner of the world: https://nirvana.lnk.to/Nevermind30thMapID Commemorate 30 years of ‘Nevermind’ with the album newly remastered from the original half-inch stereo analog tapes plus four previously unreleased international live shows from Amsterdam, Netherlands; Del Mar, California; Melbourne, Australia and Tokyo, Japan. Follow Nirvana: Website: https://www.nirvana.com/ Facebook: https://www.facebook.com/Nirvana Twitter: https://twitter.com/Nirvana Subscribe on YouTube: https://Nirvana.lnk.to/YTSubscribeID #Nirvana #Breed #Nevermind30 #Nevermind
https://wn.com/Nirvana_Smells_Like_Teen_Spirit_(Official_Music_Video)
Nirvana - The Man Who Sold The World (MTV Unplugged)
3:38

Nirvana - The Man Who Sold The World (MTV Unplugged)

  • Order:
  • Duration: 3:38
  • Uploaded Date: 16 Jun 2009
  • views: 585550795
REMASTERED IN HD! Taken from the 25th Anniversary Editions of Nirvana – MTV Unplugged in New York Order Now: https://Nirvana.lnk.to/Unplugged25 Listen to more from Nirvana: https://Nirvana.lnk.to/essentials Subscribe for more videos: https://goo.gl/DS7Geg Facebook: https://www.facebook.com/Nirvana/ Twitter: https://twitter.com/Nirvana Instagram: https://www.instagram.com/nirvana.official.band/ Website and store: https://www.nirvana.com Music video by Nirvana performing The Man Who Sold The World (Unplugged). (C) 1994 Geffen Records #Nirvana #TheManWhoSoldTheWorld #Remastered #MTVUnplugged #VEVO
https://wn.com/Nirvana_The_Man_Who_Sold_The_World_(Mtv_Unplugged)
Nirvana Greatest Hits - The Best Of Nirvana
1:29:46

Nirvana Greatest Hits - The Best Of Nirvana

  • Order:
  • Duration: 1:29:46
  • Uploaded Date: 06 May 2022
  • views: 2240003
Nirvana Greatest Hits - The Best Of Nirvana Nirvana Greatest Hits - The Best Of Nirvana Nirvana Greatest Hits - The Best Of Nirvana
https://wn.com/Nirvana_Greatest_Hits_The_Best_Of_Nirvana
Nirvana - Come As You Are (Official Music Video)
3:45

Nirvana - Come As You Are (Official Music Video)

  • Order:
  • Duration: 3:45
  • Uploaded Date: 16 Jun 2009
  • views: 593404305
REMASTERED IN HD!! Official Music Video for Come As You Are performed by Nirvana. ‘Nevermind (30th Anniversary Edition)’ is available now: https://Nirvana.lnk.to/Nevermind30thID Commemorating the 30th anniversary of Nirvana’s seminal 1991 release, ‘Nevermind’ is celebrated with the newly remastered album from the original analog tapes and 4 concerts from Amsterdam, Netherlands; Del Mar, California; Melbourne, Australia and Tokyo, Japan. Follow Nirvana: Website: https://www.nirvana.com Facebook: https://www.facebook.com/Nirvana Twitter: https://twitter.com/Nirvana Subscribe on YouTube: https://Nirvana.lnk.to/YTSubscribeID #Nirvana #ComeAsYouAre #Nevermind
https://wn.com/Nirvana_Come_As_You_Are_(Official_Music_Video)
Best Songs Of Nirvana - Nirvana Greatest Hits Full Album
1:25:10

Best Songs Of Nirvana - Nirvana Greatest Hits Full Album

  • Order:
  • Duration: 1:25:10
  • Uploaded Date: 26 Sep 2021
  • views: 1082830
Best Songs Of Nirvana - Nirvana Greatest Hits Full Album Best Songs Of Nirvana - Nirvana Greatest Hits Full Album Best Songs Of Nirvana - Nirvana Greatest Hits Full Album
https://wn.com/Best_Songs_Of_Nirvana_Nirvana_Greatest_Hits_Full_Album
Nirvana - Lithium (Official Music Video)
4:16

Nirvana - Lithium (Official Music Video)

  • Order:
  • Duration: 4:16
  • Uploaded Date: 16 Jun 2009
  • views: 294999363
REMASTERED IN HD!! Official Music Video for Lithium performed by Nirvana. Nevermind (30th Anniversary Edition) is available now: https://Nirvana.lnk.to/Nevermind30thID Commemorating the 30th anniversary of Nirvana’s seminal 1991 release, Nevermind is celebrated with the newly remastered album from the original analog tapes and 4 concerts from Amsterdam, Netherlands; Del Mar, California; Melbourne, Australia and Tokyo, Japan. Follow Nirvana: Website: https://www.nirvana.com Facebook: https://www.facebook.com/Nirvana Twitter: https://twitter.com/Nirvana Subscribe on YouTube: https://Nirvana.lnk.to/YTSubscribeID #Nirvana #Lithium #Nevermind30 (C) 1992 Geffen Records
https://wn.com/Nirvana_Lithium_(Official_Music_Video)
Nirvana Best Best Songs - Nirvana Greatest Hits Full Album
1:07:24

Nirvana Best Best Songs - Nirvana Greatest Hits Full Album

  • Order:
  • Duration: 1:07:24
  • Uploaded Date: 25 Jun 2018
  • views: 6596414
Nirvana Best Best Songs - Nirvana Greatest Hits Full Album
https://wn.com/Nirvana_Best_Best_Songs_Nirvana_Greatest_Hits_Full_Album
Nirvana - Where Did You Sleep Last Night (Live On MTV Unplugged Unedited)
6:52

Nirvana - Where Did You Sleep Last Night (Live On MTV Unplugged Unedited)

  • Order:
  • Duration: 6:52
  • Uploaded Date: 21 Dec 2019
  • views: 88932617
REMASTERED IN HD! Official Music Video for Where Did You Sleep Last Night (MTV Unplugged) performed by Nirvana. Taken from the 25th Anniversary Editions of Nirvana – MTV Unplugged in New York Order Now: https://Nirvana.lnk.to/Unplugged25 Listen to more from Nirvana: https://Nirvana.lnk.to/essentials Follow Nirvana Facebook: https://www.facebook.com/Nirvana Twitter: https://twitter.com/Nirvana Website: https://www.Nirvana.com Subscribe for more videos: https://goo.gl/DS7Geg (C) 1993 Geffen Records #Nirvana #WhereDidYouSleepLastNight #Remastered #MTVUnplugged
https://wn.com/Nirvana_Where_Did_You_Sleep_Last_Night_(Live_On_Mtv_Unplugged_Unedited)
Nirvana - In Bloom (Official Music Video)
4:58

Nirvana - In Bloom (Official Music Video)

  • Order:
  • Duration: 4:58
  • Uploaded Date: 16 Jun 2009
  • views: 174890016
Official Music Video for In Bloom performed by Nirvana. Nevermind (30th Anniversary Edition) is available now: https://Nirvana.lnk.to/Nevermind30thID Find Nirvana in any corner of the world: https://nirvana.lnk.to/Nevermind30thMapID Commemorate 30 years of ‘Nevermind’ with the album newly remastered from the original half-inch stereo analog tapes plus four previously unreleased international live shows from Amsterdam, Netherlands; Del Mar, California; Melbourne, Australia and Tokyo, Japan. Follow Nirvana: Website: https://www.nirvana.com/ Facebook: https://www.facebook.com/Nirvana Twitter: https://twitter.com/Nirvana Subscribe on YouTube: https://Nirvana.lnk.to/YTSubscribeID #Nirvana #Breed #Nevermind30 #Nevermind
https://wn.com/Nirvana_In_Bloom_(Official_Music_Video)
Nirvana - Something In The Way (Audio)
3:51

Nirvana - Something In The Way (Audio)

  • Order:
  • Duration: 3:51
  • Uploaded Date: 12 Nov 2021
  • views: 72830403
Official Audio for “Something In The Way” by Nirvana from the ‘Nevermind’ 30th anniversary release. Nevermind (30th Anniversary Edition) is available now: https://Nirvana.lnk.to/Nevermind30thID Commemorating the 30th anniversary of Nirvana’s seminal 1991 release, Nevermind is celebrated with the newly remastered album from the original analog tapes and 4 concerts from Amsterdam, Netherlands; Del Mar, California; Melbourne, Australia and Tokyo, Japan. Follow Nirvana: Website: https://www.nirvana.com Facebook: https://www.facebook.com/Nirvana Twitter: https://twitter.com/Nirvana Subscribe on YouTube: https://Nirvana.lnk.to/YTSubscribeID #Nirvana #SomethingInTheWay #Nevermind
https://wn.com/Nirvana_Something_In_The_Way_(Audio)
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME: 0:00 / 4:34:19

Nirvana - Smells Like Teen Spirit (Official Music Video)

Official Music Video for Smells Like Teen Spirit performed by Nirvana. Nevermind (30th Anniversary Edition) is available now: https://Nirvana.lnk.to/Nevermind30thID Find Nirvana in any corner of the world: https://nirvana.lnk.to/Nevermind30thMapID Commemorate 30 years of ‘Nevermind’ with the album newly remastered from the original half-inch stereo analog tapes plus four previously unreleased international live shows from Amsterdam, Netherlands; Del Mar, California; Melbourne, Australia and Tokyo, Japan. Follow Nirvana: Website: https://www.nirvana.com/ Facebook: https://www.facebook.com/Nirvana Twitter: https://twitter.com/Nirvana Subscribe on YouTube: https://Nirvana.lnk.to/YTSubscribeID #Nirvana #Breed #Nevermind30 #Nevermind
4:39
Nirvana - Smells Like Teen Spirit (Official Music Video)
Official Music Video for Smells Like Teen Spirit performed by Nirvana. Nevermind (30th An...
published: 16 Jun 2009
Play in Full Screen
3:38
Nirvana - The Man Who Sold The World (MTV Unplugged)
REMASTERED IN HD! Taken from the 25th Anniversary Editions of Nirvana – MTV Unplugged in N...
published: 16 Jun 2009
Play in Full Screen
1:29:46
Nirvana Greatest Hits - The Best Of Nirvana
Nirvana Greatest Hits - The Best Of Nirvana Nirvana Greatest Hits - The Best Of Nirvana Ni...
published: 06 May 2022
Play in Full Screen
3:45
Nirvana - Come As You Are (Official Music Video)
REMASTERED IN HD!! Official Music Video for Come As You Are performed by Nirvana. ‘Never...
published: 16 Jun 2009
Play in Full Screen
1:25:10
Best Songs Of Nirvana - Nirvana Greatest Hits Full Album
Best Songs Of Nirvana - Nirvana Greatest Hits Full Album Best Songs Of Nirvana - Nirvana G...
published: 26 Sep 2021
Play in Full Screen
4:16
Nirvana - Lithium (Official Music Video)
REMASTERED IN HD!! Official Music Video for Lithium performed by Nirvana. Nevermind (30t...
published: 16 Jun 2009
Play in Full Screen
1:07:24
Nirvana Best Best Songs - Nirvana Greatest Hits Full Album
Nirvana Best Best Songs - Nirvana Greatest Hits Full Album
published: 25 Jun 2018
Play in Full Screen
6:52
Nirvana - Where Did You Sleep Last Night (Live On MTV Unplugged Unedited)
REMASTERED IN HD! Official Music Video for Where Did You Sleep Last Night (MTV Unplugged) ...
published: 21 Dec 2019
Play in Full Screen
4:58
Nirvana - In Bloom (Official Music Video)
Official Music Video for In Bloom performed by Nirvana. Nevermind (30th Anniversary Editi...
published: 16 Jun 2009
Play in Full Screen
3:51
Nirvana - Something In The Way (Audio)
Official Audio for “Something In The Way” by Nirvana from the ‘Nevermind’ 30th anniversary...
published: 12 Nov 2021
Play in Full Screen

Nirvana (band)

Nirvana was an American rock band that was formed by singer and guitarist Kurt Cobain and bassist Krist Novoselic in Aberdeen, Washington, in 1987. Nirvana went through a succession of drummers, the longest-lasting being Dave Grohl, who joined the band in 1990. Despite releasing only three full-length studio albums in their seven-year career, Nirvana has come to be regarded as one of the most influential and important rock bands of the modern era.

In the late 1980s Nirvana established itself as part of the Seattle grunge scene, releasing its first album Bleach for the independent record label Sub Pop in 1989. The band eventually came to develop a sound that relied on dynamic contrasts, often between quiet verses and loud, heavy choruses. After signing to major label DGC Records, Nirvana found unexpected success with "Smells Like Teen Spirit", the first single from the band's second album Nevermind (1991). Nirvana's sudden success widely popularized alternative rock as a whole, and the band's frontman Cobain found himself referred to in the media as the "spokesman of a generation", with Nirvana being considered the "flagship band" of Generation X. In response, Nirvana's third studio album, In Utero (1993), featured an abrasive, less-mainstream sound and challenged the group's audience. The album did not match the sales figures of Nevermind, but was still a commercial success and critically acclaimed.

'); } 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: nirvana (band)

Edit

Old 97’s to bring it back with show at Felton Music Hall

Santa Cruz Sentinel 02 Apr 2025
That’s what Rhett Miller and his band Old 97’s will be doing this Saturday at Felton Music Hall ... The band evolved in Dallas in the early ‘90s right at the tail-end of grunge ... None of them ever felt authentic.” Then Nirvana came along.
Edit

How grunge music brought honesty back to music

The Hofstra Chronicle 02 Apr 2025
Nirvana’s Kurt Cobain and Alice In Chains’s Layne Staley ... Bands like Nirvana, Alice In Chains and Pearl Jam brought grunge to the big stage, showcasing the brooding themes that revolve around the genre.
Edit

Kurt Cobain’s MTV Unplugged guitar to feature at upcoming London exhibition

NME 31 Mar 2025
Kurt Cobain and Nirvana during the taping of MTV Unplugged in 1993 ... As for Nirvana, the band’s surviving members reunited for Saturday Night Live‘s 50th anniversary television special, with Post Malone handling vocals.
Edit

Inside track: Dancing all weekend at the Dairy, Mont Alto scores a set of silent ...

Daily Camera 28 Mar 2025
TODAY. Dance ... Friday and 3 and 7 p.m. Saturday ($17-$34) ... Tribute tunes. Harken back three decades to the ‘90s (yes, it’s been that long) and get nostalgic to the music of Pearl Jam, Nirvana, Green Day and more when cover band The B Sides play at 6 p.m ... .
Edit

Watch Fontaines D.C. Combine Bring Me The Horizon And Nirvana For Triple J

Stereogum 21 Mar 2025
Mixing together Bring Me The Horizon and Nirvana isn’t something most people could get away with, but Fontaines D.C ... The Irish band performed a haunting rendition of the TikTok viral 2013 emo hit ...
Edit

Rock Music Menu: Tina Turner’s comeback ‘Private Dancer’ marks 40 years with special editions

The Trentonian 20 Mar 2025
... the Pixies, he flipped his stage moniker around and went solo following the early ’90s dissolution of that band, which shaped the sound of everyone from Nirvana to Weezer to TV on the Radio.
Edit

Watch Redd Kross Give Their First Late-Night Performance In Decades

Stereogum 19 Mar 2025
Redd Kross have been a band for about 45 years, and they’ve had a fascinating run ... other bands. Redd Kross had a brief major-label run in the post-Nirvana ’90s era, but they never blew up.
Edit

Outrageous ’90s rocker who once called Portland home leaves U.S. in Trump rebuke

The Oregonian 19 Mar 2025
She later relentlessly pursued a feud with Dave Grohl, the drummer for her late husband Kurt Cobain’s band Nirvana, claiming he hit on Love and Cobain’s teen daughter and accusing him of “gorging on Kurt’s fortune and Kurt’s goodwill.”.
Edit

Things to do this weekend in Fort Myers: Vintage baseball, rocking tribute-band festival

News-Press - Fort Myers 19 Mar 2025
The third-annual music fest returns for another day packed with tribute bands, including Diary of an Ozzman (Ozzy Osbourne), Nirvanna (Nirvana), Noise Pollution (AC/DC) and Erasmith (Aerosmith).
Edit

Calendar of Events | DNA, Karin Babbitt record first comedy album at Kuumbwa Jazz

Santa Cruz Sentinel 19 Mar 2025
... format exemplified by many bands throughout the ’90s. Kurt Cobain from Nirvana even admitted that “Smells Like Teen Spirit” was his band’s attempt at a Pixies-style song.
Edit

The guitar gear used on The Stooges’ Raw Power album

Guitar.com 18 Mar 2025
As much has been cited by bands like the Sex Pistols, Black Flag, Nirvana, Guns N’ Roses, Mötley Crüe, the Red Hot Chili Peppers, and even CeeLo Green ... He had a very different style than the band’s ...
Edit

Comic Exhibition Opens Showing Untold Stories of Musicians

Hungary Today 17 Mar 2025
The spectacle will give an insight into the real and fictional adventures of musicians and bands of international (The Beatles, Nirvana) and Hungarian origin (Ganxsta Zolee and Kartel, Kispál és a Borz, Hooligans, Road).
Edit

Tina Bell: The Godmother of Grunge

The Tennessee Tribune 16 Mar 2025
Grunge” and “The Queen of Grunge,” Bell’s rock band Bam Bam is often cited as one of the ... as well as a brief period where Kurt Cobain of Nirvana was both a fan and roadie for the band ... when the band tried their luck in taking up residence in London.
Edit

Snow Patrol’s Gary Lightbody: ‘It made me sad to think about what I was missing’

The Times/The Sunday Times 16 Mar 2025
Without Kurt Cobain and Nirvana I wouldn’t have been in a band.” In I Think of Home, his song from 2019, Lightbody sings about “trips to Belfast on a train that hugs the coast” ... Performing with his band.
×