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

Elvis Costello

Declan Patrick MacManus (born 25 August 1954), better known by his stage name Elvis Costello, is an English musician, singer-songwriter and record producer. He began his career as part of London's pub rock scene in the early 1970s and later became associated with the first wave of the British punk and new wave movement of the mid-to-late 1970s. His critically acclaimed debut album, My Aim Is True, was recorded in 1977. Shortly after recording it he formed the Attractions as his backing band. His second album, This Year's Model, was released in 1978, and was ranked number 11 by Rolling Stone on its list of the best albums from 1967–1987. His third album, Armed Forces, was released in 1979, and features his most successful single "Oliver's Army". His first three albums all appeared on Rolling Stone's list of the 500 Greatest Albums of All Time.

Costello and the Attractions toured and recorded together for the better part of a decade, though differences between them caused a split by 1986. Much of Costello's work since has been as a solo artist, though reunions with members of the Attractions have been credited to the group over the years. Steeped in wordplay, the vocabulary of Costello's lyrics is broader than that of most popular songs. His music has drawn on many diverse genres; one critic described him as a "pop encyclopaedia", able to "reinvent the past in his own image".

Podcasts:

Famous quotes by Elvis Costello:

"There's no such thing as an original sin."
"We have to speak up now,"
"I just hope we keep in our minds that an effort like this can never be too expensive."
"It would be a surprise if people thought I would be playing a lot of rock 'n' roll."
"Writing about music is like dancing about architecture - it's a really stupid thing to want to do"
"I used to be disgusted; now I try to be amused."
"The words that are being spoken are serious, whether you take them at face value or listen to them at all, ... I'm not a preacher, I'm a singer. I can sing about serious things, but I don't think I have to put on a pious face to do it."
"[Commercial radio] is owned by one or two corporations now, and they're not in the music business. They're in the advertising business, ... So let's not kid ourselves. If you want to hear music, go buy a guitar."
"Seems to me, that the worlds are moving closer together rather than one invading the other. I believe that music is connected by human passions and curiosities rather than by marketing strategies."
"The songs will tell a story that I have imagined existing between the lines of Andersen's biography and some of his most famous tales, ... They speak of a misfit's love for an unattainable woman and a struggle between a huckster and someone who composes music in secret."

Elvis Costello

ALBUMS

  • Elvis Costello & The Attractions - Oliver's Army

    REMASTERED IN HD! Official Music Video for Oliver's Army performed by Elvis Costello & The Attractions. Follow Elvis Costello Instagram: https://www.instagram.com/elviscostello Twitter: https://twitter.com/elviscostello Facebook: https://www.facebook.com/elviscostello Website: https://www.elviscostello.com (C) 1979 Elvis Costello under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc. #ElvisCostello #ElvisCostelloAndTheAttractions #OliversArmy #Remastered

    published: 04 Sep 2015
  • Elvis Costello 'She'

    Elvis Costello - She 'Notting Hill' ost ** Elvis Costello in Korea 2011. 2. 27 Seojong Arts Centre

    published: 10 Dec 2010
  • Elvis Costello & The Attractions - Pump It Up

    REMASTERED IN HD! Official Music Video for Pump It Up performed by Elvis Costello & The Attractions. Listen to the deluxe album ‘Look Now’ here: https://ElvisCostello.lnk.to/LookNow Follow Elvis Costello Instagram: https://www.instagram.com/elviscostello Twitter: https://twitter.com/elviscostello Facebook: https://www.facebook.com/elviscostello Website: https://www.elviscostello.com (C) 1978 Elvis Costello under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc. #ElvisCostello #ElvisCostelloAndTheAttractions #PumpItUp #Remastered

    published: 16 Sep 2015
  • Elvis Costello & The Attractions - Everyday I Write The Book

    REMASTERED IN HD! Official Music Video for Everyday I Write The Book performed by Elvis Costello & The Attractions performing. Follow Elvis Costello Instagram: https://www.instagram.com/elviscostello Twitter: https://twitter.com/elviscostello Facebook: https://www.facebook.com/elviscostello Website: https://www.elviscostello.com (C) 1983 Elvis Costello #ElvisCostello #ElvisCostelloAndTheAttractions #EverydayIWriteTheBook #Remastered

    published: 04 Sep 2015
  • Elvis Costello - 'She' (Lyrics)

    Pls. Like and Subscribe... And Comment...Thanks..... [Disclaimer] This lyric music video is crafted for entertainment and educational purposes, intending to enrich the listening experience of the song "She" by Elvis Costello. It is not an official representation endorsed by the artist or their affiliated record labels. All rights to the music and lyrics remain with their rightful owners. The visuals accompanying this video are designed for creative expression and do not claim ownership of any copyrighted material. We harbor no intention to infringe upon any copyrights. Should any concerns arise, kindly contact us directly to promptly address them. Viewers are encouraged to support the artist by accessing their music through legitimate channels. Thank you for indulging in this lyric mu...

    published: 27 Mar 2023
  • Elvis Costello - Watching the Detectives

    from My Aim is True (1977)

    published: 31 May 2011
  • Elvis Costello & The Attractions - (What's So Funny 'Bout) Peace, Love And Understanding

    REMASTERED IN HD! Official Music Video for (What's So Funny 'Bout) Peace, Love And Understanding performed by Elvis Costello & The Attractions. Listen to the deluxe album ‘Look Now’ here: https://ElvisCostello.lnk.to/LookNow Follow Elvis Costello Instagram: https://www.instagram.com/elviscostello Twitter: https://twitter.com/elviscostello Facebook: https://www.facebook.com/elviscostello Website: https://www.elviscostello.com (C) 1979 Elvis Costello #ElvisCostello #ElvisCostelloAndTheAttractions #PeaceLoveAndUnderstanding #Remastered

    published: 10 Jul 2015
  • Elvis Costello & The Attractions - Good Year For The Roses

    The new deluxe album ‘Look Now’ out now, order here: https://ElvisCostello.lnk.to/LookNow Explore more music from Elvis Costello: https://lnk.to/wWTFS Music video by Elvis Costello & The Attractions performing Good Year For The Roses. (C) 1981 Elvis Costello http://vevo.ly/Bm4fN1

    published: 10 Jul 2015
  • In Conversation: Rick and I talk Stranglers, Costello & a lil’ bit o’ Dylan

    I met Rick through work over 20 years ago. His passion and knowledge for an eclectic mix of musical artists and genres has made for some animated conversations over the years. On this video I wanted to introduce Rick to this channel. In upcoming videos Rick will share some favourites from his collection. Enjoy! Correction: Rick later noted that in fact Radio Radio was on the Canadian album release but not on the UK album release of This Year’s Model. Elvis Costello’s Vanity Fair Favourite 500 https://www.vanityfair.com/culture/2000/11/elvis-costello-500-favorite-albums?srsltid=AfmBOorXwHyYjQWjFbo0dqTFsPzJ6USKYmtf8OvO3H78h86K8agigeqv

    published: 18 Jan 2025
  • Alison

    Provided to YouTube by Universal Music Group Alison · Elvis Costello My Aim Is True ℗ 1977 Elvis Costello, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc. Released on: 2007-01-01 Producer: Nick Lowe Studio Personnel, Engineer: Bazza Associated Performer, Vocals, Guitar, Background Vocalist: Elvis Costello Associated Performer, Guitar, Pedal Steel: John McFee Associated Performer, Piano, Organ, Background Vocalist: Sean Hopper Associated Performer, Bass Guitar: Johnny Ciambotti Associated Performer, Drums: Michael Shine Composer Lyricist: Elvis Costello Auto-generated by YouTube.

    published: 28 Feb 2020
Elvis Costello & The Attractions - Oliver's Army
2:57

Elvis Costello & The Attractions - Oliver's Army

  • Order:
  • Duration: 2:57
  • Uploaded Date: 04 Sep 2015
  • views: 12061452
REMASTERED IN HD! Official Music Video for Oliver's Army performed by Elvis Costello & The Attractions. Follow Elvis Costello Instagram: https://www.instagram.com/elviscostello Twitter: https://twitter.com/elviscostello Facebook: https://www.facebook.com/elviscostello Website: https://www.elviscostello.com (C) 1979 Elvis Costello under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc. #ElvisCostello #ElvisCostelloAndTheAttractions #OliversArmy #Remastered
https://wn.com/Elvis_Costello_The_Attractions_Oliver's_Army
Elvis Costello 'She'
3:09

Elvis Costello 'She'

  • Order:
  • Duration: 3:09
  • Uploaded Date: 10 Dec 2010
  • views: 35411509
Elvis Costello - She 'Notting Hill' ost ** Elvis Costello in Korea 2011. 2. 27 Seojong Arts Centre
https://wn.com/Elvis_Costello_'She'
Elvis Costello & The Attractions - Pump It Up
3:14

Elvis Costello & The Attractions - Pump It Up

  • Order:
  • Duration: 3:14
  • Uploaded Date: 16 Sep 2015
  • views: 8066281
REMASTERED IN HD! Official Music Video for Pump It Up performed by Elvis Costello & The Attractions. Listen to the deluxe album ‘Look Now’ here: https://ElvisCostello.lnk.to/LookNow Follow Elvis Costello Instagram: https://www.instagram.com/elviscostello Twitter: https://twitter.com/elviscostello Facebook: https://www.facebook.com/elviscostello Website: https://www.elviscostello.com (C) 1978 Elvis Costello under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc. #ElvisCostello #ElvisCostelloAndTheAttractions #PumpItUp #Remastered
https://wn.com/Elvis_Costello_The_Attractions_Pump_It_Up
Elvis Costello & The Attractions - Everyday I Write The Book
3:59

Elvis Costello & The Attractions - Everyday I Write The Book

  • Order:
  • Duration: 3:59
  • Uploaded Date: 04 Sep 2015
  • views: 4701283
REMASTERED IN HD! Official Music Video for Everyday I Write The Book performed by Elvis Costello & The Attractions performing. Follow Elvis Costello Instagram: https://www.instagram.com/elviscostello Twitter: https://twitter.com/elviscostello Facebook: https://www.facebook.com/elviscostello Website: https://www.elviscostello.com (C) 1983 Elvis Costello #ElvisCostello #ElvisCostelloAndTheAttractions #EverydayIWriteTheBook #Remastered
https://wn.com/Elvis_Costello_The_Attractions_Everyday_I_Write_The_Book
Elvis Costello - 'She' (Lyrics)
3:08

Elvis Costello - 'She' (Lyrics)

  • Order:
  • Duration: 3:08
  • Uploaded Date: 27 Mar 2023
  • views: 534698
Pls. Like and Subscribe... And Comment...Thanks..... [Disclaimer] This lyric music video is crafted for entertainment and educational purposes, intending to enrich the listening experience of the song "She" by Elvis Costello. It is not an official representation endorsed by the artist or their affiliated record labels. All rights to the music and lyrics remain with their rightful owners. The visuals accompanying this video are designed for creative expression and do not claim ownership of any copyrighted material. We harbor no intention to infringe upon any copyrights. Should any concerns arise, kindly contact us directly to promptly address them. Viewers are encouraged to support the artist by accessing their music through legitimate channels. Thank you for indulging in this lyric music video experience. Youtube Video: https://www.youtube.com/watch?v=O040xuq2FR0 Lyrics: She may be the face I can't forget A trace of pleasure or regret May be my treasure or the price I have to pay She may be the song that summer sings May be the chill that autumn brings May be a hundred different things Within the measure of a day She may be the beauty or the beast May be the famine or the feast May turn each day into a Heaven or a Hell She may be the mirror of my dreams A smile reflected in a stream She may not be what she may seem Inside her shell She, who always seems so happy in a crowd Whose eyes can be so private and so proud No one's allowed to see them when they cry She may be the love that cannot hope to last May come to me from shadows of the past That I remember 'til the day I die She may be the reason I survive The why and wherefore I'm alive The one I'll care for through the rough and rainy years Me, I'll take her laughter and her tears And make them all my souvenirs For where she goes I've got to be The meaning of my life is She, she Oh, she Elvis Costello recorded a cover version of the song in 1999. This version, produced by Trevor Jones, was featured over the opening credits and the final sequence of the film Notting Hill, and charted throughout Europe. #lyrics #90s #elviscostello #she
https://wn.com/Elvis_Costello_'She'_(Lyrics)
Elvis Costello - Watching the Detectives
3:58

Elvis Costello - Watching the Detectives

  • Order:
  • Duration: 3:58
  • Uploaded Date: 31 May 2011
  • views: 1454333
from My Aim is True (1977)
https://wn.com/Elvis_Costello_Watching_The_Detectives
Elvis Costello & The Attractions - (What's So Funny 'Bout) Peace, Love And Understanding
3:31

Elvis Costello & The Attractions - (What's So Funny 'Bout) Peace, Love And Understanding

  • Order:
  • Duration: 3:31
  • Uploaded Date: 10 Jul 2015
  • views: 3521887
REMASTERED IN HD! Official Music Video for (What's So Funny 'Bout) Peace, Love And Understanding performed by Elvis Costello & The Attractions. Listen to the deluxe album ‘Look Now’ here: https://ElvisCostello.lnk.to/LookNow Follow Elvis Costello Instagram: https://www.instagram.com/elviscostello Twitter: https://twitter.com/elviscostello Facebook: https://www.facebook.com/elviscostello Website: https://www.elviscostello.com (C) 1979 Elvis Costello #ElvisCostello #ElvisCostelloAndTheAttractions #PeaceLoveAndUnderstanding #Remastered
https://wn.com/Elvis_Costello_The_Attractions_(What's_So_Funny_'Bout)_Peace,_Love_And_Understanding
Elvis Costello & The Attractions - Good Year For The Roses
3:13

Elvis Costello & The Attractions - Good Year For The Roses

  • Order:
  • Duration: 3:13
  • Uploaded Date: 10 Jul 2015
  • views: 2395291
The new deluxe album ‘Look Now’ out now, order here: https://ElvisCostello.lnk.to/LookNow Explore more music from Elvis Costello: https://lnk.to/wWTFS Music video by Elvis Costello & The Attractions performing Good Year For The Roses. (C) 1981 Elvis Costello http://vevo.ly/Bm4fN1
https://wn.com/Elvis_Costello_The_Attractions_Good_Year_For_The_Roses
In Conversation: Rick and I talk Stranglers, Costello & a lil’ bit o’ Dylan
7:10

In Conversation: Rick and I talk Stranglers, Costello & a lil’ bit o’ Dylan

  • Order:
  • Duration: 7:10
  • Uploaded Date: 18 Jan 2025
  • views: 60
I met Rick through work over 20 years ago. His passion and knowledge for an eclectic mix of musical artists and genres has made for some animated conversations over the years. On this video I wanted to introduce Rick to this channel. In upcoming videos Rick will share some favourites from his collection. Enjoy! Correction: Rick later noted that in fact Radio Radio was on the Canadian album release but not on the UK album release of This Year’s Model. Elvis Costello’s Vanity Fair Favourite 500 https://www.vanityfair.com/culture/2000/11/elvis-costello-500-favorite-albums?srsltid=AfmBOorXwHyYjQWjFbo0dqTFsPzJ6USKYmtf8OvO3H78h86K8agigeqv
https://wn.com/In_Conversation_Rick_And_I_Talk_Stranglers,_Costello_A_Lil’_Bit_O’_Dylan
Alison
3:25

Alison

  • Order:
  • Duration: 3:25
  • Uploaded Date: 28 Feb 2020
  • views: 1614717
Provided to YouTube by Universal Music Group Alison · Elvis Costello My Aim Is True ℗ 1977 Elvis Costello, under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc. Released on: 2007-01-01 Producer: Nick Lowe Studio Personnel, Engineer: Bazza Associated Performer, Vocals, Guitar, Background Vocalist: Elvis Costello Associated Performer, Guitar, Pedal Steel: John McFee Associated Performer, Piano, Organ, Background Vocalist: Sean Hopper Associated Performer, Bass Guitar: Johnny Ciambotti Associated Performer, Drums: Michael Shine Composer Lyricist: Elvis Costello Auto-generated by YouTube.
https://wn.com/Alison
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME: 0:00 / 37:44

Elvis Costello & The Attractions - Oliver's Army

REMASTERED IN HD! Official Music Video for Oliver's Army performed by Elvis Costello & The Attractions. Follow Elvis Costello Instagram: https://www.instagram.com/elviscostello Twitter: https://twitter.com/elviscostello Facebook: https://www.facebook.com/elviscostello Website: https://www.elviscostello.com (C) 1979 Elvis Costello under exclusive license to Universal Music Enterprises, a Division of UMG Recordings, Inc. #ElvisCostello #ElvisCostelloAndTheAttractions #OliversArmy #Remastered
2:57
Elvis Costello & The Attractions - Oliver's Army
REMASTERED IN HD! Official Music Video for Oliver's Army performed by Elvis Costello & The...
published: 04 Sep 2015
Play in Full Screen
3:09
Elvis Costello 'She'
Elvis Costello - She 'Notting Hill' ost ** Elvis Costello in Korea 2011. 2. 27 Seojong A...
published: 10 Dec 2010
Play in Full Screen
3:14
Elvis Costello & The Attractions - Pump It Up
REMASTERED IN HD! Official Music Video for Pump It Up performed by Elvis Costello & The At...
published: 16 Sep 2015
Play in Full Screen
3:59
Elvis Costello & The Attractions - Everyday I Write The Book
REMASTERED IN HD! Official Music Video for Everyday I Write The Book performed by Elvis Co...
published: 04 Sep 2015
Play in Full Screen
3:08
Elvis Costello - 'She' (Lyrics)
Pls. Like and Subscribe... And Comment...Thanks..... [Disclaimer] This lyric music video...
published: 27 Mar 2023
Play in Full Screen
3:58
Elvis Costello - Watching the Detectives
from My Aim is True (1977)
published: 31 May 2011
Play in Full Screen
3:31
Elvis Costello & The Attractions - (What's So Funny 'Bout) Peace, Love And Understanding
REMASTERED IN HD! Official Music Video for (What's So Funny 'Bout) Peace, Love And Underst...
published: 10 Jul 2015
Play in Full Screen
3:13
Elvis Costello & The Attractions - Good Year For The Roses
The new deluxe album ‘Look Now’ out now, order here: https://ElvisCostello.lnk.to/LookNow ...
published: 10 Jul 2015
Play in Full Screen
7:10
In Conversation: Rick and I talk Stranglers, Costello & a lil’ bit o’ Dylan
I met Rick through work over 20 years ago. His passion and knowledge for an eclectic mix o...
published: 18 Jan 2025
Play in Full Screen
3:25
Alison
Provided to YouTube by Universal Music Group Alison · Elvis Costello My Aim Is True ℗ 1...
published: 28 Feb 2020
Play in Full Screen

Elvis Costello

Declan Patrick MacManus (born 25 August 1954), better known by his stage name Elvis Costello, is an English musician, singer-songwriter and record producer. He began his career as part of London's pub rock scene in the early 1970s and later became associated with the first wave of the British punk and new wave movement of the mid-to-late 1970s. His critically acclaimed debut album, My Aim Is True, was recorded in 1977. Shortly after recording it he formed the Attractions as his backing band. His second album, This Year's Model, was released in 1978, and was ranked number 11 by Rolling Stone on its list of the best albums from 1967–1987. His third album, Armed Forces, was released in 1979, and features his most successful single "Oliver's Army". His first three albums all appeared on Rolling Stone's list of the 500 Greatest Albums of All Time.

Costello and the Attractions toured and recorded together for the better part of a decade, though differences between them caused a split by 1986. Much of Costello's work since has been as a solo artist, though reunions with members of the Attractions have been credited to the group over the years. Steeped in wordplay, the vocabulary of Costello's lyrics is broader than that of most popular songs. His music has drawn on many diverse genres; one critic described him as a "pop encyclopaedia", able to "reinvent the past in his own image".

'); } 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: Elvis Costello

Edit

8 of our top concert picks for San Diego County this week

San Diego Union-Tribune 03 Apr 2025
In January, the husband-and-wife duo issued its first full-length album ... Spring Songs” on March 21 ... Frisell’s career has spanned more than 40 years and he has worked with fellow musicians such as Elvis Costello, Bono and the Los Angeles Philharmonic.
Edit

Burt Bacharach tribute does the man proud at Sound Board

Press & Guide 03 Apr 2025
You could drop a metaphorical needle anywhere in the show and find a highlight, whether it was Rundgren’s emotive renditions of “A House is Not A Home,” “Anyone Who Had a ...
Edit

The love song to Liverpool that moved Radio 1 DJ John Peel to tears

BBC News 01 Apr 2025
For Elvis Costello, some of the song's charm lies in Prowse's "acute sense of the history of the city".
Edit

The big list: 158 Reno-Tahoe concerts and shows, now through June

Reno Gazette Journal 01 Apr 2025
This show is April 1 ... 775-742-1858 or hollandreno.org.Elvis Costello and the Imposters. For their latest tour, Costello and his crew — which includes ace lead guitarist Charlie Sexton as a guest — will be playing only songs from his first decade or so.
Edit

Status Quo's FRANCIS ROSSI on sipping margaritas with Queen and why he won't buy wine ...

The Daily Mail 29 Mar 2025
I’d come in from playing badminton with my younger brother Dominic to drink straight from the tap. My mother got annoyed and smacked me round the lips once for doing that ... It tasted sweet to me, like fruit juice ... ... Elvis Costello looked the other way ... ... ... .
Edit

All-star tribute tour salutes Burt Bacharach’s legendary catalog

Press & Guide 29 Mar 2025
And he’s not alone ... Bacharach’s songs, with and without David, have been recorded by more than 1,000 artists — including Warwick and also Elvis Costello, who wrote and recorded an entire album, 1998’s “Painted From Memory,” with Bacharach.
Edit

Acclaimed Guitarist Marc Ribot (Tom Waits, Elvis Costello) Announces First-Ever Vocal Album

Stereogum 26 Mar 2025
... of the Italian revolutionary folk song “Bella Ciao (Goodbye Beautiful).” Ribot has also famously backed up artists like Elvis Costello and John Zorn, among way too many others to list.
Edit

Lonnie Holley Never Plays a Song Twice. (Even His Own.)

The Philadelphia Tribune 25 Mar 2025
ATLANTA — In late January, Lonnie Holley was scheduled to perform at a concert in Tulsa celebrating the 50th anniversary of Bob Dylan’s “Blood on the Tracks” as part of a lineup that included Elvis Costello and Lucinda Williams. Holley, ....
Edit

Elvis Costello, Keb’ Mo’, Shawn Colvin and more to play Beaver Creek’s Vilar Performing Arts ...

Vail Daily 20 Mar 2025
Elvis Costello will kick off the summer season with his band, the Imposters ... The Early Songs of Elvis Costello Tour, which will be traveling the country this summer and making a one-night stop in Beaver Creek on June 18.
Edit

Why Todd Rundgren would — and does — rate Burt Bacharach over the Beatles

Azcentral 19 Mar 2025
Do you think you guys could have worked collaborating, like when he did that album with Elvis Costello? ... with another songwriter.Why Elvis Costello collab 'God Give Me Strength' is a challenge.
Edit

From punk to poetry: Cynthia Ross’ emotional journey revealed through ‘The Secret Door’ and Lower ...

AM New York 19 Mar 2025
... deal, but the all-female late-70s pop/punk combo “The ‘B’ Girls” managed to open for The Clash, Blondie, Ramones, Dead Boys, Elvis Costello and more while only releasing one single, on Bomp! Records.
Edit

Something I Need

Quillette 19 Mar 2025
But he wasn’t wrong about the general principle ... It was the first recorded instance of a practice that would become a convention at concerts ... History is written by the winners. Everyone knows who Bob Dylan is ... Elvis Costello at three score and ten.
Edit

St. Cloud favorites, new names part of Summertime by George! lineup

SC Times 17 Mar 2025
June 25, central Minnesota duo Mel & Glen will open for Minneapolis-based Elvis tribute artist Anthony Shore, who has previously performed in St ... St ... Collective Unconscious has covered artists like Elvis Costello, the Beatles and Simon and Garfunkel.
×