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

The Strokes

The Strokes are an American rock band formed in New York City in 1998, consisting of Julian Casablancas (lead vocals), Nick Valensi (guitar, keyboard, backing vocals), Albert Hammond, Jr. (guitar, keyboard, backing vocals), Nikolai Fraiture (bass) and Fabrizio Moretti (drums, percussion).

The band met widespread critical acclaim upon the release of their debut album, Is This It in 2001. A number of members have embarked on a variety of side projects, though they regrouped for a fifth album, titled Comedown Machine, released on March 26, 2013. They have sold over 5 million albums.

They are one of the many garage rock bands to hail from the US at the dawn of the 21st century and helped augment the garage rock revival movement. Their debut album, Is This It, was ranked number 199 on Rolling Stone's 500 Greatest Albums of All Time, number 4 on NME's 500 greatest albums of all time, number 8 on Rolling Stone's 100 Best Debut Albums of All Time and number 2 on Rolling Stone's 100 Best Albums of the 2000s.

Podcasts:

  • The Strokes - The New Abnormal (Full Album)

    Described as The Strokes' "best work yet", here's the Best Rock Album of 2020. Set it to 480p for legible lyrics. Absolute Faves: The Adults Are Talking, Bad Decisions, At the Door, Why Are Sundays So Depressing, Ode to the Mets Track Listing: 00:00 The Adults Are Talking 05:09 Selfless 08:50 Brooklyn Bridge to Chorus 12:45 Bad Decisions 17:38 Eternal Summer 23:54 At the Door 29:04 Why Are Sundays So Depressing 33:38 Not the Same Anymore 39:15 Ode to the Mets

    published: 20 Mar 2021
  • The Strokes - Reptilia (Official HD Video)

    Official HD video for ”Reptilia” by The Strokes from the album "Room on Fire" Listen to The Strokes: https://thestrokes.lnk.to/listenYD Subscribe to The Strokes YouTube channel: https://TheStrokes.lnk.to/subscribeYD Watch more videos by The Strokes: https://thestrokes.lnk.to/listenYD/youtube Follow The Strokes: Facebook: https://TheStrokes.lnk.to/followFI Instagram: https://TheStrokes.lnk.to/followII Twitter: https://TheStrokes.lnk.to/followTI Website: https://TheStrokes.lnk.to/followWI Spotify: https://TheStrokes.lnk.to/followSI Lyrics: Yeah, the night's not over, you're not trying hard enough Our lives are changing lanes, you ran me off the road The wait is over, I'm now taking over You're no longer laughing, I'm not drowning fast enough #TheStrokes #Reptilia #Rock #FirstImpression...

    published: 03 Oct 2009
  • The Strokes - Last Nite (Official HD Video)

    Official HD video for "Last Nite" by The Strokes from the album "Is This It" Listen to The Strokes: https://TheStrokes.lnk.to/listenYD Watch more videos by The Strokes: https://thestrokes.lnk.to/listenYD/youtube Subscribe to The Strokes official YouTube channel: https://TheStrokes.lnk.to/subscribeYD Follow The Strokes: Facebook: https://TheStrokes.lnk.to/followFI Instagram: https://TheStrokes.lnk.to/followII Twitter: https://TheStrokes.lnk.to/followTI Website: https://TheStrokes.lnk.to/followWI Spotify: https://TheStrokes.lnk.to/followSI YouTube: https://TheStrokes.lnk.to/subscribeYD Lyrics: And say, people, they don't understand No, girlfriends, they can't understand Your grandsons, they won't understand On top of this, I ain't ever gonna understand #LastNite #TheStrokes #IsThisIt #HD...

    published: 03 Oct 2009
  • The Strokes - The Adults Are Talking (Official Video)

    Official Video for "The Adults Are Talking" by The Strokes (Rough Trade Version) Listen to The Strokes: https://TheStrokes.lnk.to/listenYD Watch more videos by The Strokes: https://thestrokes.lnk.to/listenYD Subscribe to The Strokes official YouTube channel: https://TheStrokes.lnk.to/subscribeYD Follow The Strokes: Facebook: https://TheStrokes.lnk.to/followFI Instagram: https://TheStrokes.lnk.to/followII Twitter: https://TheStrokes.lnk.to/followTI Website: https://TheStrokes.lnk.to/followWI Spotify: https://TheStrokes.lnk.to/followSI YouTube: https://TheStrokes.lnk.to/subscribeYD [Chorus]: Don't go there 'cause you'll never return I know you think of me when you think of her But then it don't make sense when you're trying hard To do the right thing, but without recompense And then you ...

    published: 01 Dec 2020
  • The Strokes - You Only Live Once (Official HD Video)

    Official HD video of ”You Only Live Once” by The Strokes from the album "First Impressions of Earth" Listen to The Strokes: https://thestrokes.lnk.to/listenYD Subscribe to The Strokes YouTube channel: https://TheStrokes.lnk.to/subscribeYD Watch more videos by The Strokes: https://thestrokes.lnk.to/listenYD/youtube Follow The Strokes: Facebook: https://TheStrokes.lnk.to/followFI Instagram: https://TheStrokes.lnk.to/followII Twitter: https://TheStrokes.lnk.to/followTI Website: https://TheStrokes.lnk.to/followWI Spotify: https://TheStrokes.lnk.to/followSI Lyrics: Oh, don't, don't, don't get up I can't see the sunshine I'll be waiting for you, baby 'Cause I'm through Sit me down Shut me up I'll calm down And I'll get along with you #TheStrokes #YouOnlyLiveOnce #FirstImpressionsofEarth #H...

    published: 03 Oct 2009
  • T̲he̲ S̲tro̲ke̲s 2022 Mix - The Best of The Strokes - Greatest Hits, Full Album - Rock Music

    T̲he̲ S̲tro̲ke̲s 2022 Mix - The Best of The Strokes - Greatest Hits, Full Album - Rock Music [00:00] - R̲e̲pti̲li̲a̲ [03:34] - U̲̲nde̲r C̲o̲ve̲r O̲̲f D̲a̲rkne̲ss [07:59] - S̲o̲me̲da̲y [11:04] - T̲he̲ A̲̲du̲lts A̲̲re̲ T̲a̲lki̲ng [16:14] - H̲a̲rd T̲o̲ E̲̲xpla̲i̲n [20:04] - O̲̲de̲ T̲o̲ T̲he̲ M̲e̲ts [26:52] - S̲e̲lfle̲ss [30:35] - W̲hy A̲̲re̲ S̲u̲nda̲ys S̲o̲ D̲e̲pre̲ssi̲ng [35:12] - L̲a̲st N̲i̲te̲ [38:25] - R̲e̲pti̲li̲a̲ Tags: T̲he̲ S̲tro̲ke̲s, T̲he̲ S̲tro̲ke̲s 2022, T̲he̲ S̲tro̲ke̲s songs, T̲he̲ S̲tro̲ke̲s full album, T̲he̲ S̲tro̲ke̲s album, T̲he̲ S̲tro̲ke̲s hits, T̲he̲ S̲tro̲ke̲s playlist, best songs of T̲he̲ S̲tro̲ke̲s, T̲he̲ S̲tro̲ke̲s greatest hits, nonstop, Rock Music, Rock Songs, Rock Music 2022, Rock Songs 2022

    published: 30 Jan 2022
  • The Strokes - Someday (Official HD Video)

    Official HD video for ”Someday” by The Strokes from the album "Is This It" Listen to The Strokes: https://thestrokes.lnk.to/listenYD Subscribe to The Strokes YouTube channel: https://TheStrokes.lnk.to/subscribeYD Watch more videos by The Strokes: https://thestrokes.lnk.to/listenYD/youtube Follow The Strokes: Facebook: https://TheStrokes.lnk.to/followFI Instagram: https://TheStrokes.lnk.to/followII Twitter: https://TheStrokes.lnk.to/followTI Website: https://TheStrokes.lnk.to/followWI Spotify: https://TheStrokes.lnk.to/followSI Lyrics: Oh, Maya says I'm lacking in depth I will do my best You say you wanna stand by my side Darling, your head's not right Ah, see, alone we stand, together we fall apart Yeah, I think I'll be alright I'm working so I won't have to try so hard Tables, they t...

    published: 03 Oct 2009
  • The Strokes - Ode To The Mets (Official Video)

    "Ode To The Mets” by The Strokes from the album "The New Abnormal" Listen to The Strokes: https://thestrokes.lnk.to/listenYD Subscribe to The Strokes YouTube channel: https://TheStrokes.lnk.to/subscribeYD Watch more videos by The Strokes: https://thestrokes.lnk.to/listenYD/youtube Follow The Strokes: Facebook: https://TheStrokes.lnk.to/followFI Instagram: https://TheStrokes.lnk.to/followII Twitter: https://TheStrokes.lnk.to/followTI Website: https://TheStrokes.lnk.to/followWI Spotify: https://TheStrokes.lnk.to/followSI Lyrics: Yeah, I'm under his thumb, I'm on his back I will not show my teeth too quick I needed you there, I needed you there But I didn't know, I didn't know Credits: Directed by Warren Fu A Partizan Entertainment Production Produced by Joel Kretschman Executive Produ...

    published: 24 Jul 2020
  • The Strokes - The Adults Are Talking (Official Audio)

    ”The Adults Are Talking” by The Strokes from "The New Abnormal" Listen to The Strokes: https://thestrokes.lnk.to/listenYD Subscribe to The Strokes YouTube channel: https://TheStrokes.lnk.to/subscribeYD Watch more videos by The Strokes: https://thestrokes.lnk.to/listenYD/youtube Follow The Strokes: Facebook: https://TheStrokes.lnk.to/followFI Instagram: https://TheStrokes.lnk.to/followII Twitter: https://TheStrokes.lnk.to/followTI Website: https://TheStrokes.lnk.to/followWI Spotify: https://TheStrokes.lnk.to/followSI Lyrics: Don't go there 'cause you'll never return I know you think of me when you think of her But then it don't make sense when you're trying hard To do the right thing, but without recompense And then you did something wrong and you said it was great And now you don't kn...

    published: 10 Apr 2020
  • THE STROKES GREATEST HITS (2015)

    Another comp I decided to make. TRACK LISTING 1. Last Nite (0:00) 2. I Can’t Win (3:14) 3. Tap Out (5:44) 4. Under Cover Of Darkness (9:26) 5. All The Time (13:22) 6. Barely Legal (The Modern Age EP Version) (16:05) 7. Hard To Explain (20:43) 8. You Talk Way Too Much (24:30) 9. Reptilla (27:28) 10. 12:51 (31:04) 11. Juicebox (33:31) 12. Heart In A Cage (36:45) 13. The Modern Age (40:15) 14. Machu Picchu (43:44) 15. You Only Live Once (47:14) 16. Someday (50:21) 17. The End Has No End (53:26) 18. Taken For A Fool (56:27)

    published: 09 Dec 2015
developed with YouTube
The Strokes - The New Abnormal (Full Album)
45:09

The Strokes - The New Abnormal (Full Album)

  • Order:
  • Duration: 45:09
  • Uploaded Date: 20 Mar 2021
  • views: 2309662
Described as The Strokes' "best work yet", here's the Best Rock Album of 2020. Set it to 480p for legible lyrics. Absolute Faves: The Adults Are Talking, Bad Decisions, At the Door, Why Are Sundays So Depressing, Ode to the Mets Track Listing: 00:00 The Adults Are Talking 05:09 Selfless 08:50 Brooklyn Bridge to Chorus 12:45 Bad Decisions 17:38 Eternal Summer 23:54 At the Door 29:04 Why Are Sundays So Depressing 33:38 Not the Same Anymore 39:15 Ode to the Mets
https://wn.com/The_Strokes_The_New_Abnormal_(Full_Album)
The Strokes - Reptilia (Official HD Video)
3:36

The Strokes - Reptilia (Official HD Video)

  • Order:
  • Duration: 3:36
  • Uploaded Date: 03 Oct 2009
  • views: 226109255
Official HD video for ”Reptilia” by The Strokes from the album "Room on Fire" Listen to The Strokes: https://thestrokes.lnk.to/listenYD Subscribe to The Strokes YouTube channel: https://TheStrokes.lnk.to/subscribeYD Watch more videos by The Strokes: https://thestrokes.lnk.to/listenYD/youtube Follow The Strokes: Facebook: https://TheStrokes.lnk.to/followFI Instagram: https://TheStrokes.lnk.to/followII Twitter: https://TheStrokes.lnk.to/followTI Website: https://TheStrokes.lnk.to/followWI Spotify: https://TheStrokes.lnk.to/followSI Lyrics: Yeah, the night's not over, you're not trying hard enough Our lives are changing lanes, you ran me off the road The wait is over, I'm now taking over You're no longer laughing, I'm not drowning fast enough #TheStrokes #Reptilia #Rock #FirstImpressionsofEarth #HDRemastered
https://wn.com/The_Strokes_Reptilia_(Official_Hd_Video)
The Strokes - Last Nite (Official HD Video)
3:22

The Strokes - Last Nite (Official HD Video)

  • Order:
  • Duration: 3:22
  • Uploaded Date: 03 Oct 2009
  • views: 128672071
Official HD video for "Last Nite" by The Strokes from the album "Is This It" Listen to The Strokes: https://TheStrokes.lnk.to/listenYD Watch more videos by The Strokes: https://thestrokes.lnk.to/listenYD/youtube Subscribe to The Strokes official YouTube channel: https://TheStrokes.lnk.to/subscribeYD Follow The Strokes: Facebook: https://TheStrokes.lnk.to/followFI Instagram: https://TheStrokes.lnk.to/followII Twitter: https://TheStrokes.lnk.to/followTI Website: https://TheStrokes.lnk.to/followWI Spotify: https://TheStrokes.lnk.to/followSI YouTube: https://TheStrokes.lnk.to/subscribeYD Lyrics: And say, people, they don't understand No, girlfriends, they can't understand Your grandsons, they won't understand On top of this, I ain't ever gonna understand #LastNite #TheStrokes #IsThisIt #HDRemastered
https://wn.com/The_Strokes_Last_Nite_(Official_Hd_Video)
The Strokes - The Adults Are Talking (Official Video)
4:48

The Strokes - The Adults Are Talking (Official Video)

  • Order:
  • Duration: 4:48
  • Uploaded Date: 01 Dec 2020
  • views: 51596471
Official Video for "The Adults Are Talking" by The Strokes (Rough Trade Version) Listen to The Strokes: https://TheStrokes.lnk.to/listenYD Watch more videos by The Strokes: https://thestrokes.lnk.to/listenYD Subscribe to The Strokes official YouTube channel: https://TheStrokes.lnk.to/subscribeYD Follow The Strokes: Facebook: https://TheStrokes.lnk.to/followFI Instagram: https://TheStrokes.lnk.to/followII Twitter: https://TheStrokes.lnk.to/followTI Website: https://TheStrokes.lnk.to/followWI Spotify: https://TheStrokes.lnk.to/followSI YouTube: https://TheStrokes.lnk.to/subscribeYD [Chorus]: Don't go there 'cause you'll never return I know you think of me when you think of her But then it don't make sense when you're trying hard To do the right thing, but without recompense And then you did something wrong and you said it was great And now you don't know how you could ever complain Because you're all confused 'cause you want me to But then you want me to do it the same as you #TheStrokes #TheAdultsAreTalking #OfficialVideo
https://wn.com/The_Strokes_The_Adults_Are_Talking_(Official_Video)
The Strokes - You Only Live Once (Official HD Video)
3:10

The Strokes - You Only Live Once (Official HD Video)

  • Order:
  • Duration: 3:10
  • Uploaded Date: 03 Oct 2009
  • views: 207092533
Official HD video of ”You Only Live Once” by The Strokes from the album "First Impressions of Earth" Listen to The Strokes: https://thestrokes.lnk.to/listenYD Subscribe to The Strokes YouTube channel: https://TheStrokes.lnk.to/subscribeYD Watch more videos by The Strokes: https://thestrokes.lnk.to/listenYD/youtube Follow The Strokes: Facebook: https://TheStrokes.lnk.to/followFI Instagram: https://TheStrokes.lnk.to/followII Twitter: https://TheStrokes.lnk.to/followTI Website: https://TheStrokes.lnk.to/followWI Spotify: https://TheStrokes.lnk.to/followSI Lyrics: Oh, don't, don't, don't get up I can't see the sunshine I'll be waiting for you, baby 'Cause I'm through Sit me down Shut me up I'll calm down And I'll get along with you #TheStrokes #YouOnlyLiveOnce #FirstImpressionsofEarth #HDRemastered
https://wn.com/The_Strokes_You_Only_Live_Once_(Official_Hd_Video)
T̲he̲ S̲tro̲ke̲s 2022 Mix - The Best of The Strokes - Greatest Hits, Full Album - Rock Music
42:14

T̲he̲ S̲tro̲ke̲s 2022 Mix - The Best of The Strokes - Greatest Hits, Full Album - Rock Music

  • Order:
  • Duration: 42:14
  • Uploaded Date: 30 Jan 2022
  • views: 249079
T̲he̲ S̲tro̲ke̲s 2022 Mix - The Best of The Strokes - Greatest Hits, Full Album - Rock Music [00:00] - R̲e̲pti̲li̲a̲ [03:34] - U̲̲nde̲r C̲o̲ve̲r O̲̲f D̲a̲rkne̲ss [07:59] - S̲o̲me̲da̲y [11:04] - T̲he̲ A̲̲du̲lts A̲̲re̲ T̲a̲lki̲ng [16:14] - H̲a̲rd T̲o̲ E̲̲xpla̲i̲n [20:04] - O̲̲de̲ T̲o̲ T̲he̲ M̲e̲ts [26:52] - S̲e̲lfle̲ss [30:35] - W̲hy A̲̲re̲ S̲u̲nda̲ys S̲o̲ D̲e̲pre̲ssi̲ng [35:12] - L̲a̲st N̲i̲te̲ [38:25] - R̲e̲pti̲li̲a̲ Tags: T̲he̲ S̲tro̲ke̲s, T̲he̲ S̲tro̲ke̲s 2022, T̲he̲ S̲tro̲ke̲s songs, T̲he̲ S̲tro̲ke̲s full album, T̲he̲ S̲tro̲ke̲s album, T̲he̲ S̲tro̲ke̲s hits, T̲he̲ S̲tro̲ke̲s playlist, best songs of T̲he̲ S̲tro̲ke̲s, T̲he̲ S̲tro̲ke̲s greatest hits, nonstop, Rock Music, Rock Songs, Rock Music 2022, Rock Songs 2022
https://wn.com/T̲He̲_S̲Tro̲Ke̲S_2022_Mix_The_Best_Of_The_Strokes_Greatest_Hits,_Full_Album_Rock_Music
The Strokes - Someday (Official HD Video)
3:07

The Strokes - Someday (Official HD Video)

  • Order:
  • Duration: 3:07
  • Uploaded Date: 03 Oct 2009
  • views: 90782010
Official HD video for ”Someday” by The Strokes from the album "Is This It" Listen to The Strokes: https://thestrokes.lnk.to/listenYD Subscribe to The Strokes YouTube channel: https://TheStrokes.lnk.to/subscribeYD Watch more videos by The Strokes: https://thestrokes.lnk.to/listenYD/youtube Follow The Strokes: Facebook: https://TheStrokes.lnk.to/followFI Instagram: https://TheStrokes.lnk.to/followII Twitter: https://TheStrokes.lnk.to/followTI Website: https://TheStrokes.lnk.to/followWI Spotify: https://TheStrokes.lnk.to/followSI Lyrics: Oh, Maya says I'm lacking in depth I will do my best You say you wanna stand by my side Darling, your head's not right Ah, see, alone we stand, together we fall apart Yeah, I think I'll be alright I'm working so I won't have to try so hard Tables, they turn sometimes Oh, someday No, I ain't wasting no more time #TheStrokes #Someday #IsThisIt #HDremastered
https://wn.com/The_Strokes_Someday_(Official_Hd_Video)
The Strokes - Ode To The Mets (Official Video)
6:49

The Strokes - Ode To The Mets (Official Video)

  • Order:
  • Duration: 6:49
  • Uploaded Date: 24 Jul 2020
  • views: 23748420
"Ode To The Mets” by The Strokes from the album "The New Abnormal" Listen to The Strokes: https://thestrokes.lnk.to/listenYD Subscribe to The Strokes YouTube channel: https://TheStrokes.lnk.to/subscribeYD Watch more videos by The Strokes: https://thestrokes.lnk.to/listenYD/youtube Follow The Strokes: Facebook: https://TheStrokes.lnk.to/followFI Instagram: https://TheStrokes.lnk.to/followII Twitter: https://TheStrokes.lnk.to/followTI Website: https://TheStrokes.lnk.to/followWI Spotify: https://TheStrokes.lnk.to/followSI Lyrics: Yeah, I'm under his thumb, I'm on his back I will not show my teeth too quick I needed you there, I needed you there But I didn't know, I didn't know Credits: Directed by Warren Fu A Partizan Entertainment Production Produced by Joel Kretschman Executive Producer Sara Nix Chapter 1 - Ancient Era Artist: Ratha Nou & Aaron Baker Chapter 2 - Street Artist: Wesley Kandel Produced by Brian Covalt at Moving Colour Chapter 3 - School Artist: Aaron Baker Chapter 4 - Toys Directed by Sam Mason Chapter 5 - Circuitry Artist: Anthony Scheppard Chapter 6 - Speakeasy Artist: Wesley Kandel Produced by Brian Covalt at Moving Colour Chapter 7 - Underwater Artist: Aaron Baker Chapter 8 - Moon Artist: James Morr at Arcade Graphics by James Morr Additional Story Development & Research: Elissa Nechamkin #TheStrokes #OdeToTheMets #Rock #TheNewAbnormal
https://wn.com/The_Strokes_Ode_To_The_Mets_(Official_Video)
The Strokes - The Adults Are Talking (Official Audio)
5:11

The Strokes - The Adults Are Talking (Official Audio)

  • Order:
  • Duration: 5:11
  • Uploaded Date: 10 Apr 2020
  • views: 65701832
”The Adults Are Talking” by The Strokes from "The New Abnormal" Listen to The Strokes: https://thestrokes.lnk.to/listenYD Subscribe to The Strokes YouTube channel: https://TheStrokes.lnk.to/subscribeYD Watch more videos by The Strokes: https://thestrokes.lnk.to/listenYD/youtube Follow The Strokes: Facebook: https://TheStrokes.lnk.to/followFI Instagram: https://TheStrokes.lnk.to/followII Twitter: https://TheStrokes.lnk.to/followTI Website: https://TheStrokes.lnk.to/followWI Spotify: https://TheStrokes.lnk.to/followSI Lyrics: Don't go there 'cause you'll never return I know you think of me when you think of her But then it don't make sense when you're trying hard To do the right thing, but without recompense And then you did something wrong and you said it was great And now you don't know how you could ever complain Because you're all confused 'cause you want me to But then you want me to do it the same as you #TheStrokes #TheAdultsAreTalking #Rock #IsThisIt
https://wn.com/The_Strokes_The_Adults_Are_Talking_(Official_Audio)
THE STROKES GREATEST HITS (2015)
59:55

THE STROKES GREATEST HITS (2015)

  • Order:
  • Duration: 59:55
  • Uploaded Date: 09 Dec 2015
  • views: 3036418
Another comp I decided to make. TRACK LISTING 1. Last Nite (0:00) 2. I Can’t Win (3:14) 3. Tap Out (5:44) 4. Under Cover Of Darkness (9:26) 5. All The Time (13:22) 6. Barely Legal (The Modern Age EP Version) (16:05) 7. Hard To Explain (20:43) 8. You Talk Way Too Much (24:30) 9. Reptilla (27:28) 10. 12:51 (31:04) 11. Juicebox (33:31) 12. Heart In A Cage (36:45) 13. The Modern Age (40:15) 14. Machu Picchu (43:44) 15. You Only Live Once (47:14) 16. Someday (50:21) 17. The End Has No End (53:26) 18. Taken For A Fool (56:27)
https://wn.com/The_Strokes_Greatest_Hits_(2015)
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • The Strokes - The New Abnormal (Full Album)
    45:09
    The Strokes - The New Abnormal (Full Album)remove from playlist
  • The Strokes - Reptilia (Official HD Video)
    3:36
    The Strokes - Reptilia (Official HD Video)remove from playlist
  • The Strokes - Last Nite (Official HD Video)
    3:22
    The Strokes - Last Nite (Official HD Video)remove from playlist
  • The Strokes - The Adults Are Talking (Official Video)
    4:48
    The Strokes - The Adults Are Talking (Official Video)remove from playlist
  • The Strokes - You Only Live Once (Official HD Video)
    3:10
    The Strokes - You Only Live Once (Official HD Video)remove from playlist
  • T̲he̲ S̲tro̲ke̲s 2022 Mix - The Best of The Strokes - Greatest Hits, Full Album - Rock Music
    42:14
    T̲he̲ S̲tro̲ke̲s 2022 Mix - The Best of The Strokes - Greatest Hits, Full Album - Rock Musicremove from playlist
  • The Strokes - Someday (Official HD Video)
    3:07
    The Strokes - Someday (Official HD Video)remove from playlist
  • The Strokes - Ode To The Mets (Official Video)
    6:49
    The Strokes - Ode To The Mets (Official Video)remove from playlist
  • The Strokes - The Adults Are Talking (Official Audio)
    5:11
    The Strokes - The Adults Are Talking (Official Audio)remove from playlist
  • THE STROKES GREATEST HITS (2015)
    59:55
    THE STROKES GREATEST HITS (2015)remove from playlist
developed with YouTube
PLAYLIST TIME:

The Strokes - The New Abnormal (Full Album)

Described as The Strokes' "best work yet", here's the Best Rock Album of 2020. Set it to 480p for legible lyrics. Absolute Faves: The Adults Are Talking, Bad Decisions, At the Door, Why Are Sundays So Depressing, Ode to the Mets Track Listing: 00:00 The Adults Are Talking 05:09 Selfless 08:50 Brooklyn Bridge to Chorus 12:45 Bad Decisions 17:38 Eternal Summer 23:54 At the Door 29:04 Why Are Sundays So Depressing 33:38 Not the Same Anymore 39:15 Ode to the Mets
45:09
The Strokes - The New Abnormal (Full Album)
Described as The Strokes' "best work yet", here's the Best Rock Album of 2020. Set it to 4...
published: 20 Mar 2021
Play in Full Screen
3:36
The Strokes - Reptilia (Official HD Video)
Official HD video for ”Reptilia” by The Strokes from the album "Room on Fire" Listen to Th...
published: 03 Oct 2009
Play in Full Screen
3:22
The Strokes - Last Nite (Official HD Video)
Official HD video for "Last Nite" by The Strokes from the album "Is This It" Listen to The...
published: 03 Oct 2009
Play in Full Screen
4:48
The Strokes - The Adults Are Talking (Official Video)
Official Video for "The Adults Are Talking" by The Strokes (Rough Trade Version) Listen t...
published: 01 Dec 2020
Play in Full Screen
3:10
The Strokes - You Only Live Once (Official HD Video)
Official HD video of ”You Only Live Once” by The Strokes from the album "First Impressions...
published: 03 Oct 2009
Play in Full Screen
42:14
T̲he̲ S̲tro̲ke̲s 2022 Mix - The Best of The Strokes - Greatest Hits, Full Album - Rock Music
T̲he̲ S̲tro̲ke̲s 2022 Mix - The Best of The Strokes - Greatest Hits, Full Album - Rock Mus...
published: 30 Jan 2022
Play in Full Screen
3:07
The Strokes - Someday (Official HD Video)
Official HD video for ”Someday” by The Strokes from the album "Is This It" Listen to The S...
published: 03 Oct 2009
Play in Full Screen
6:49
The Strokes - Ode To The Mets (Official Video)
"Ode To The Mets” by The Strokes from the album "The New Abnormal" Listen to The Strokes: ...
published: 24 Jul 2020
Play in Full Screen
5:11
The Strokes - The Adults Are Talking (Official Audio)
”The Adults Are Talking” by The Strokes from "The New Abnormal" Listen to The Strokes: htt...
published: 10 Apr 2020
Play in Full Screen
59:55
THE STROKES GREATEST HITS (2015)
Another comp I decided to make. TRACK LISTING 1. Last Nite (0:00) 2. I Can’t Win (3:14) 3...
published: 09 Dec 2015
Play in Full Screen

The Strokes

The Strokes are an American rock band formed in New York City in 1998, consisting of Julian Casablancas (lead vocals), Nick Valensi (guitar, keyboard, backing vocals), Albert Hammond, Jr. (guitar, keyboard, backing vocals), Nikolai Fraiture (bass) and Fabrizio Moretti (drums, percussion).

The band met widespread critical acclaim upon the release of their debut album, Is This It in 2001. A number of members have embarked on a variety of side projects, though they regrouped for a fifth album, titled Comedown Machine, released on March 26, 2013. They have sold over 5 million albums.

They are one of the many garage rock bands to hail from the US at the dawn of the 21st century and helped augment the garage rock revival movement. Their debut album, Is This It, was ranked number 199 on Rolling Stone's 500 Greatest Albums of All Time, number 4 on NME's 500 greatest albums of all time, number 8 on Rolling Stone's 100 Best Debut Albums of All Time and number 2 on Rolling Stone's 100 Best Albums of the 2000s.

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