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

Ernie Graham

Ernie Graham (born Ernest Harold Graham; 14 June 1946 27 April 2001) was a singer, guitarist and songwriter, active from the mid-1960s to the early 1980s

Early life

Ernie Graham was born in Belfast, and was training to be a mechanic, when he joined his first band Tony & the Telstars in 1965, as rhythm guitarist. When the band split Graham and two other members moved to England, where Graham met Henry McCullough. Graham and McCullough returned to Belfast and formed The People, with George O'Hara, Davey Lutton and Chris Stewart.

Eire Apparent

In 1967 the band moved back to London where they came to the attention of Michael Jeffery and were signed by him and Chas Chandler. In 1968 they changed their name to Eire Apparent and toured with Soft Machine, Pink Floyd and Jimi Hendrix.

Eire Apparent only recorded one album Sunrise (1969), which was produced by Hendrix, who also played on the album. Shortly after McCullough left, to tour with The Grease Band, Eire Apparent disbanded. Graham moved in with McCullough and recorded four songs with The Grease Band, but these were never issued.

Only Love

Only Love may refer to:

  • "Only Love" (Nana Mouskouri song) (1986)
  • "Only Love" (Wynonna Judd song) (1993)
  • "Only Love" (The Braxtons song) (1997)
  • "Only Love" (Anggun song) (2011)
  • "Only Love" (Ben Howard song) (2012)
  • "Only Love", Brotherhood of Man song from the album Singing a Song (1979)
  • "Only Love", a song by Alkaline Trio from the album My Shame Is True (2013)
  • Only Love, a 1997 novel by Erich Segal
  • Only Love, a novel by Ann Maxwell writing as Elizabeth Lowell
  • Only Love (film), 1998 made-for-TV film starring Marisa Tomei.
  • Only Love (Wynonna Judd song)

    "Only Love" is a song written by Roger Murrah and Marcus Hummon, and recorded by American country music artist Wynonna Judd. It was released in July 1993 as the second single from the album Tell Me Why. The song reached number 3 on the Billboard Hot Country Singles & Tracks chart.

    Chart performance

    Year-end charts

    References

    Only Love (Engelbert Humperdinck/Selena song)

    "Only Love" is a song written by Robbie Buchanan and Mark Spiro and it was first recorded by Englebert Humperdinck sometime in between the 1970s and 1980s, and was then recorded by the late tejano singer Selena in 1989 and was not released until 1996, when it was released for the first time on her 1996 tribute album Siempre Selena and then again on the Selena movie soundtrack a year later in 1997 following Selena's death in 1995. The song was to be developed for her English crossover album or remain a simple unreleased song.

    Covers

  • Selena recorded this song in 1989, and presumably performed the song during her Ven Conmigo Tour but no live performances of this song cannot be found on YouTube.
  • Tribute Covers

    Millie Corretjer recorded a slight Spanish cover of Selena's rendition of the song called "Solo Tu" and released it on her 1995 album Sola.

    References

    Podcasts:

    Ernie Graham

    • Ernie Graham - For A Little While

      Ernie Graham began his musical career in the 1960s, when he formed Eire Apparent with Henry McCullogh. The band toured extensively, supporting Jimi Hendrix, Pink Floyd & Soft Machine. Eire Apparent disbanded at the end of the 60s and Henry McCullogh went on to form The Grease Band. Ernie then recorded his eponymous debut album in 1971, recruiting the members of Brinsley Schwarz (including Nick Lowe) and Help Yourself as his backing band. At the time of it's original release, this album drew comparisons with Dylan, The Band and Crosby, Stills, Nash & Young. After joining Help Yourself for a brief period, including their performance at the first Glastonbury Festival, Ernie then formed his new band Clancy. Ernie's only other solo recording was a single released on Stiff Records ...

      published: 10 Jan 2011
    • Ernie Graham - The Girl That Turned The Lever

      "... spend all my days in Detroit city..."

      published: 26 Oct 2009
    • Ernie Graham - Belfast

      Track number: 8 Album: Ernie Graham Year: 1971 Genre: Folk Rock, Singer/Songwriter Label: Hux Records Country: UK Discogs: https://www.discogs.com/release/3304969-Ernie-Graham-Ernie-Graham I do not own any of the content in this video, for promotional purposes only. Will be removed upon request of the copyright holder.

      published: 01 Jan 2022
    • Ernie Graham - Sebastian

      published: 17 Feb 2011
    • Ernie Graham - Romeo & the Lonely Girl [HQ Audio]

      On Stiff Records 1978. Produced by Larry Wallis.

      published: 20 May 2010
    • Ernie Graham - Sebastian

      Track number: 1 Album: Ernie Graham Year: 1971 Genre: Folk Rock, Singer/Songwriter Label: Hux Records Country: UK Discogs: https://www.discogs.com/release/3304969-Ernie-Graham-Ernie-Graham I do not own any of the content in this video, for promotional purposes only. Will be removed upon request of the copyright holder.

      published: 01 Jan 2022
    • #Terps100 - Dec. 20, 1978 - Ernie Graham Scores School-Record 44 Points

      Ernie Graham scored a school-record 44 points in a 124-110 win over NC Stateon December 20, 1978

      published: 29 Nov 2018
    • ERNIE GRAHAM with CLANCY Long Time Comin' 1974

      From the album Seriously Speaking by Clancy (1974) Song written and sung by Ernie Graham

      published: 07 Jan 2022
    • Nicky Grist Stages 2024 SS4 | Will Graham & Kenny Owen | Ford Escort RS1600

      In-Car Video of ‪@FlexiFlyRallyTeam Will Graham & Kenny Owen during SS4 (Bowlsey) of Nicky Grist Stages 2024.

      published: 14 Jul 2024
    • Ernie Graham - Sea Fever (1971) Rock Ballad

      This is one of the most hauntingly beautiful solo albums to come out of the whole English pub rock scene, and references to Bob Dylan and the Band are appropriate because the rootsy/folk-like intersections with their work are here. It's also a rival to the best work of Brinsley Schwarz, Ducks Deluxe, Eggs Over Easy, et al. (and no surprise -- the Brinsleys played on this album). Opening with the gorgeous, Dylanesque "Sebastian," built on a lyrical acoustic guitar part, Graham reveals himself a songwriter and player of extraordinary sensitivity -- he might easily have been another Alan Hull, or even bigger than that, had he been able to join a band with legs or hold his own career together. As it is, from that Dylan-like start, he and the Brinsleys deliver a brace of full electric numbers t...

      published: 14 Dec 2013
    Ernie Graham - For A Little While
    6:38

    Ernie Graham - For A Little While

    • Order:
    • Duration: 6:38
    • Uploaded Date: 10 Jan 2011
    • views: 114898
    Ernie Graham began his musical career in the 1960s, when he formed Eire Apparent with Henry McCullogh. The band toured extensively, supporting Jimi Hendrix, Pink Floyd & Soft Machine. Eire Apparent disbanded at the end of the 60s and Henry McCullogh went on to form The Grease Band. Ernie then recorded his eponymous debut album in 1971, recruiting the members of Brinsley Schwarz (including Nick Lowe) and Help Yourself as his backing band. At the time of it's original release, this album drew comparisons with Dylan, The Band and Crosby, Stills, Nash & Young. After joining Help Yourself for a brief period, including their performance at the first Glastonbury Festival, Ernie then formed his new band Clancy. Ernie's only other solo recording was a single released on Stiff Records in 1979. This was a cover of the Phil Lynott song, 'Romeo (And The Lonely Girl)', backed with the self-penned 'Only Time Will Tell'. Ernie's complete solo recordings are now released here on CD for the first time; The 1971 album and both sides of the 1979 Stiff single. The accompanying 8 page booklet features extensive liner notes and several rare photographs, from the private collection of Ernie's family. Ernie Graham (guitar,vocals), Bob Andrews (organ,accordion,guitar,piano,harmonies)­, Ian Gomm (guitar, harmonies), Nick Lowe (bass, harmonies), Billy Rankin (drums), Brinsley Schwarz (guitar), Ken Whaley (bass)
    https://wn.com/Ernie_Graham_For_A_Little_While
    Ernie Graham - The Girl That Turned The Lever
    6:19

    Ernie Graham - The Girl That Turned The Lever

    • Order:
    • Duration: 6:19
    • Uploaded Date: 26 Oct 2009
    • views: 64863
    "... spend all my days in Detroit city..."
    https://wn.com/Ernie_Graham_The_Girl_That_Turned_The_Lever
    Ernie Graham - Belfast
    5:40

    Ernie Graham - Belfast

    • Order:
    • Duration: 5:40
    • Uploaded Date: 01 Jan 2022
    • views: 2072
    Track number: 8 Album: Ernie Graham Year: 1971 Genre: Folk Rock, Singer/Songwriter Label: Hux Records Country: UK Discogs: https://www.discogs.com/release/3304969-Ernie-Graham-Ernie-Graham I do not own any of the content in this video, for promotional purposes only. Will be removed upon request of the copyright holder.
    https://wn.com/Ernie_Graham_Belfast
    Ernie Graham - Sebastian
    5:05

    Ernie Graham - Sebastian

    • Order:
    • Duration: 5:05
    • Uploaded Date: 17 Feb 2011
    • views: 32630
    https://wn.com/Ernie_Graham_Sebastian
    Ernie Graham - Romeo & the Lonely Girl [HQ Audio]
    2:33

    Ernie Graham - Romeo & the Lonely Girl [HQ Audio]

    • Order:
    • Duration: 2:33
    • Uploaded Date: 20 May 2010
    • views: 14092
    On Stiff Records 1978. Produced by Larry Wallis.
    https://wn.com/Ernie_Graham_Romeo_The_Lonely_Girl_Hq_Audio
    Ernie Graham - Sebastian
    5:35

    Ernie Graham - Sebastian

    • Order:
    • Duration: 5:35
    • Uploaded Date: 01 Jan 2022
    • views: 4519
    Track number: 1 Album: Ernie Graham Year: 1971 Genre: Folk Rock, Singer/Songwriter Label: Hux Records Country: UK Discogs: https://www.discogs.com/release/3304969-Ernie-Graham-Ernie-Graham I do not own any of the content in this video, for promotional purposes only. Will be removed upon request of the copyright holder.
    https://wn.com/Ernie_Graham_Sebastian
    #Terps100 - Dec. 20, 1978 - Ernie Graham Scores School-Record 44  Points
    3:50

    #Terps100 - Dec. 20, 1978 - Ernie Graham Scores School-Record 44 Points

    • Order:
    • Duration: 3:50
    • Uploaded Date: 29 Nov 2018
    • views: 4832
    Ernie Graham scored a school-record 44 points in a 124-110 win over NC Stateon December 20, 1978
    https://wn.com/Terps100_Dec._20,_1978_Ernie_Graham_Scores_School_Record_44_Points
    ERNIE GRAHAM with CLANCY Long Time Comin' 1974
    3:26

    ERNIE GRAHAM with CLANCY Long Time Comin' 1974

    • Order:
    • Duration: 3:26
    • Uploaded Date: 07 Jan 2022
    • views: 522
    From the album Seriously Speaking by Clancy (1974) Song written and sung by Ernie Graham
    https://wn.com/Ernie_Graham_With_Clancy_Long_Time_Comin'_1974
    Nicky Grist Stages 2024 SS4 | Will Graham & Kenny Owen | Ford Escort RS1600
    7:37

    Nicky Grist Stages 2024 SS4 | Will Graham & Kenny Owen | Ford Escort RS1600

    • Order:
    • Duration: 7:37
    • Uploaded Date: 14 Jul 2024
    • views: 712
    In-Car Video of ‪@FlexiFlyRallyTeam Will Graham & Kenny Owen during SS4 (Bowlsey) of Nicky Grist Stages 2024.
    https://wn.com/Nicky_Grist_Stages_2024_Ss4_|_Will_Graham_Kenny_Owen_|_Ford_Escort_Rs1600
    Ernie Graham - Sea Fever (1971)  Rock Ballad
    4:50

    Ernie Graham - Sea Fever (1971) Rock Ballad

    • Order:
    • Duration: 4:50
    • Uploaded Date: 14 Dec 2013
    • views: 7425
    This is one of the most hauntingly beautiful solo albums to come out of the whole English pub rock scene, and references to Bob Dylan and the Band are appropriate because the rootsy/folk-like intersections with their work are here. It's also a rival to the best work of Brinsley Schwarz, Ducks Deluxe, Eggs Over Easy, et al. (and no surprise -- the Brinsleys played on this album). Opening with the gorgeous, Dylanesque "Sebastian," built on a lyrical acoustic guitar part, Graham reveals himself a songwriter and player of extraordinary sensitivity -- he might easily have been another Alan Hull, or even bigger than that, had he been able to join a band with legs or hold his own career together. As it is, from that Dylan-like start, he and the Brinsleys deliver a brace of full electric numbers that rival the classic sound of the Band, starting with "So Lonely" -- the roots rock sound here is so authentically American that it will fool lots of listeners about its origins and source. For this album, "The Girl That Turned the Lever" and "For a Little While" are two of the finest working-class/folk-style compositions this side of "The Night They Drove Old Dixie Down," and "Blues to Snowy" takes Graham into Lynyrd Skynyrd territory. "Belfast" finally takes listeners to Graham's real roots, in a bracing, fiddle-driven folk-based piece from that side of the Atlantic.
    https://wn.com/Ernie_Graham_Sea_Fever_(1971)_Rock_Ballad
    • Only Love - Trademark

      Only Love.. True love.. Love... in our life there's this only love that we never forget..

      published: 21 Dec 2009
    • Ben Howard - Only Love

      Official music video for Only Love TAKEN FROM THE 2012 MERCURY PRIZE-NOMINATED ALBUM BY BEN HOWARD ‘Every Kingdom’ Stream here: https://benhoward.lnk.to/SelectionID album 'Collections From The Whiteout' out now: https://benhoward.lnk.to/cftwVD Explore https://www.benhowardmusic.co.uk/ Subscribe https://www.youtube.com/user/benhowardmusic?sub_confirmation=1 Watch more https://benhoward.lnk.to/SelectionYouTubeID Follow artist on Instagram: https://instagram.com/benhoward_ twitter: https://twitter.com/benhowardmusic facebook: https://www.facebook.com/benhowardmusic Join the mailer https://benhoward.lnk.to/signupID Lyrics: Darling, you're with me, always around me Only love, only love Darling, I feel you, under my body Only love, only love Give me shelter, or show me heart...

      published: 08 May 2012
    • Jordan Smith - Only Love

      Only Love (Official Video) Listen and Download the new album Only Love here: https://JordanSmith.lnk.to/OnlyLoveYD Connect with Jordan: http://www.jordansmithofficial.com/ https://twitter.com/JordanSmithLive https://www.facebook.com/jordansmithl... https://www.instagram.com/jordansmith... Video Director: Ivanna Borin Video Producer: Frank Borin for Under Wonder Music video by Jordan Smith performing Only Love. © 2018 Republic Records, a division of UMG Recordings, Inc. http://vevo.ly/TnbVJp

      published: 29 Aug 2018
    • Only Love

      Provided to YouTube by Universal Music Group Only Love · Katy Perry Smile ℗ 2020 Capitol Records, LLC Released on: 2020-08-28 Producer, Associated Performer, Vocal Producer, Additional Vocals, Drum Programming, Guitar, Clapping, Percussion, Programming, Synthesizer, Synthesizer Programming, String Arranger, Film Director, Co- Director, Studio Personnel, Vocal Editing, Engineer: John DeBold Producer, Additional Producer, Associated Performer, Background Vocalist: Sophie Frances Cooke Associated Performer, Vocal Producer: Svend Lerche Studio Personnel, Mix Engineer: John Hanes Studio Personnel, Mixer: Serban Ghenea Associated Performer, Vocals: Katy Perry Associated Performer, Organ, Piano, Rhodes: Brad Oberhofer Associated Performer, Additional Vocals, Clapping, Pe...

      published: 27 Aug 2020
    • Nana Mouskouri 'Only Love'

      LA HIJA DE MISTRAL

      published: 09 Apr 2010
    • Trademark - Only Love - (Official Video)

      Trademark - Only Love - Official Video Lyrics: Two am and the rain is falling Here we are at the crossroads once again You're telling me you're so confused You can't make up your mind Is this meant to be You're asking me But only love can say Try again or walk away But I believe for you and me The sun will shine one day So I just play my part Pray you'll have a change of heart But I can't make you see it through That's something only love can do In your arms as the dawn is breaking Face to face and a thousand miles apart I've tried my best to make you see There's hope beyond the pain If we give enough If we learn to trust But only love can say Try again or walk away But I believe for you and me The sun will shine one day So I just play my part Pray you'll have a change of heart Bu...

      published: 30 Sep 2016
    • Only Love | Trademark | Lyrics [Kara + Vietsub HD]

      ♩ Only Love | Trademark | Lyrics [Kara + Vietsub HD] ♩ » Ask me?: http://ask.fm/nguyenthanh269 ● "J.K" - Joker ● » Channel 1: http://goo.gl/qwQNAs » Channel 2: http://goo.gl/sTu1QH » We Love Proshow: http://goo.gl/Kz38Xq » I Love Music: http://goo.gl/uDDcHv » Images Of PSP: http://goo.gl/i0hzda » Contact Us: jkvevolution@gmail.com » Chúc các bạn có những giây phút vui vẻ ♥ » Software Support: Proshow Producer v5.1 & Aegisub v3.02 Don't forget to LIKE, SUBSCRIBE, COMMENT and RATE. Hope you all enjoy! =================================== ♦ Video Editor: "J.K" ♦ Timer: "J.K" ♦ Translator: Thungan ♦ Encode & Upload: Ut ♦ Effect: NguyenLamTruong & Galovejiro ♦ Song: Only Love ♦ Singer: Trademark =================================== ♩ Only Love | Trademark | Lyrics [Kara + Vietsub HD] ♩ 2 a.m....

      published: 23 May 2014
    • Trademark - Only Love With Lyrics

      Enjoy,I Hope It's Not A Disappointment.

      published: 05 Apr 2008
    Only Love - Trademark
    4:05

    Only Love - Trademark

    • Order:
    • Duration: 4:05
    • Uploaded Date: 21 Dec 2009
    • views: 34394604
    Only Love.. True love.. Love... in our life there's this only love that we never forget..
    https://wn.com/Only_Love_Trademark
    Ben Howard - Only Love
    3:53

    Ben Howard - Only Love

    • Order:
    • Duration: 3:53
    • Uploaded Date: 08 May 2012
    • views: 25884743
    Official music video for Only Love TAKEN FROM THE 2012 MERCURY PRIZE-NOMINATED ALBUM BY BEN HOWARD ‘Every Kingdom’ Stream here: https://benhoward.lnk.to/SelectionID album 'Collections From The Whiteout' out now: https://benhoward.lnk.to/cftwVD Explore https://www.benhowardmusic.co.uk/ Subscribe https://www.youtube.com/user/benhowardmusic?sub_confirmation=1 Watch more https://benhoward.lnk.to/SelectionYouTubeID Follow artist on Instagram: https://instagram.com/benhoward_ twitter: https://twitter.com/benhowardmusic facebook: https://www.facebook.com/benhowardmusic Join the mailer https://benhoward.lnk.to/signupID Lyrics: Darling, you're with me, always around me Only love, only love Darling, I feel you, under my body Only love, only love Give me shelter, or show me heart Come on love, come on love Watch me fall apart, watch me fall apart And I'll be yours to keep Wind in the shadows, whale song in the deep Wind in the shadows, whale song in the deep Darling, you're with me, always around me Only love, only love Darling, I feel you, under my body Only love, only love Give me shelter, or show me heart Come on love, come on love Watch me fall apart, watch me fall apart And I'll be yours to keep Wind in the shadows, whale song in the deep Wind in the shadows, whale song Darling, you're with me, always around me Only love, only love Darling, I feel you, under my body Only love, only love Give me shelter, or show me heart Come on love, come on love Watch me fall apart, watch me fall apart Watch me fall apart, watch me fall apart Watch me fall apart Fall apart Only love, love, love Only love, love, love Only love, love, love Girl, show me heart Come on love, love, love Come on love, love, love Come on love, love, love Watch me fall apart Come on love, love, love Come on love, love, love Come on love, love, love Girl, show me heart Show me love, love, love Show me love, love, love Show me love, love, love Watch me fall apart Watch me fall apart Darling, I feel you, under my body Darling, you're with me, forever and always Give me shelter, or show me heart And watch me fall apart, watch me fall apart
    https://wn.com/Ben_Howard_Only_Love
    Jordan Smith - Only Love
    4:06

    Jordan Smith - Only Love

    • Order:
    • Duration: 4:06
    • Uploaded Date: 29 Aug 2018
    • views: 18135905
    Only Love (Official Video) Listen and Download the new album Only Love here: https://JordanSmith.lnk.to/OnlyLoveYD Connect with Jordan: http://www.jordansmithofficial.com/ https://twitter.com/JordanSmithLive https://www.facebook.com/jordansmithl... https://www.instagram.com/jordansmith... Video Director: Ivanna Borin Video Producer: Frank Borin for Under Wonder Music video by Jordan Smith performing Only Love. © 2018 Republic Records, a division of UMG Recordings, Inc. http://vevo.ly/TnbVJp
    https://wn.com/Jordan_Smith_Only_Love
    Only Love
    3:19

    Only Love

    • Order:
    • Duration: 3:19
    • Uploaded Date: 27 Aug 2020
    • views: 1196434
    Provided to YouTube by Universal Music Group Only Love · Katy Perry Smile ℗ 2020 Capitol Records, LLC Released on: 2020-08-28 Producer, Associated Performer, Vocal Producer, Additional Vocals, Drum Programming, Guitar, Clapping, Percussion, Programming, Synthesizer, Synthesizer Programming, String Arranger, Film Director, Co- Director, Studio Personnel, Vocal Editing, Engineer: John DeBold Producer, Additional Producer, Associated Performer, Background Vocalist: Sophie Frances Cooke Associated Performer, Vocal Producer: Svend Lerche Studio Personnel, Mix Engineer: John Hanes Studio Personnel, Mixer: Serban Ghenea Associated Performer, Vocals: Katy Perry Associated Performer, Organ, Piano, Rhodes: Brad Oberhofer Associated Performer, Additional Vocals, Clapping, Percussion: Sachi DiSerafino Associated Performer, Additional Vocals, Clapping, Percussion: Lila Drew Associated Performer, Additional Vocals: Karissa Reynafarje A& R: Chris Anokute A& R: Lauren Glucksman Studio Personnel, Mastering Engineer: Dave Kutch Composer Lyricist: Katy Perry Composer Lyricist: Andrew Jackson Composer Lyricist: Sophie Cooke Auto-generated by YouTube.
    https://wn.com/Only_Love
    Nana Mouskouri 'Only Love'
    4:23

    Nana Mouskouri 'Only Love'

    • Order:
    • Duration: 4:23
    • Uploaded Date: 09 Apr 2010
    • views: 741271
    LA HIJA DE MISTRAL
    https://wn.com/Nana_Mouskouri_'Only_Love'
    Trademark  - Only Love - (Official Video)
    3:40

    Trademark - Only Love - (Official Video)

    • Order:
    • Duration: 3:40
    • Uploaded Date: 30 Sep 2016
    • views: 13265923
    Trademark - Only Love - Official Video Lyrics: Two am and the rain is falling Here we are at the crossroads once again You're telling me you're so confused You can't make up your mind Is this meant to be You're asking me But only love can say Try again or walk away But I believe for you and me The sun will shine one day So I just play my part Pray you'll have a change of heart But I can't make you see it through That's something only love can do In your arms as the dawn is breaking Face to face and a thousand miles apart I've tried my best to make you see There's hope beyond the pain If we give enough If we learn to trust But only love can say Try again or walk away But I believe for you and me The sun will shine one day So I just play my part Pray you'll have a change of heart But I can't make you see it through That's something only love can do I know if I could find the words To touch you deep inside You'll give my dreams just one more chance To let this be our last goodbye But only love can say Try again or walk away But I believe for you and me The sun will shine one day So I just play my part Pray you'll have a change of heart But I can't make you see it through That's something only love can do That's something only love can do
    https://wn.com/Trademark_Only_Love_(Official_Video)
    Only Love | Trademark | Lyrics [Kara + Vietsub HD]
    4:07

    Only Love | Trademark | Lyrics [Kara + Vietsub HD]

    • Order:
    • Duration: 4:07
    • Uploaded Date: 23 May 2014
    • views: 5933064
    ♩ Only Love | Trademark | Lyrics [Kara + Vietsub HD] ♩ » Ask me?: http://ask.fm/nguyenthanh269 ● "J.K" - Joker ● » Channel 1: http://goo.gl/qwQNAs » Channel 2: http://goo.gl/sTu1QH » We Love Proshow: http://goo.gl/Kz38Xq » I Love Music: http://goo.gl/uDDcHv » Images Of PSP: http://goo.gl/i0hzda » Contact Us: jkvevolution@gmail.com » Chúc các bạn có những giây phút vui vẻ ♥ » Software Support: Proshow Producer v5.1 & Aegisub v3.02 Don't forget to LIKE, SUBSCRIBE, COMMENT and RATE. Hope you all enjoy! =================================== ♦ Video Editor: "J.K" ♦ Timer: "J.K" ♦ Translator: Thungan ♦ Encode & Upload: Ut ♦ Effect: NguyenLamTruong & Galovejiro ♦ Song: Only Love ♦ Singer: Trademark =================================== ♩ Only Love | Trademark | Lyrics [Kara + Vietsub HD] ♩ 2 a.m. and the rain is falling Here we are at the crossroads once again You're telling me you're so confused You can't make up your mind Is this meant to be You're asking me But only love can say Try again or walk away But I believe for you and me The sun will shine one day So I'll just play my part And pray you'll have a change of heart But I can't make you see it through That's something only love can do In your arms as the dawn is breaking Face to face and a thousand miles apart I've tried my best to make you see There's hope beyond the pain If we give enough, if we learn to trust But only love can say Try again or walk away But I believe for you and me The sun will shine one day So I'll just play my part And pray you'll have a change of heart But I can't make you see it through That's something only love can do I know if I could find the words To touch you deep inside You'd give our dream just one more chance Don't let this be our goodbye But only love can say Try again or walk away But I believe for you and me The sun will shine one day So I'll just play my part And pray you'll have a change of heart But I can't make you see it through That's something only love can do That's something only love can do =================================== ● Artwork by? If anyone knows who took this picture or recorded this video please link me to their page so I can credit them properly. ● IMPORTANT I do not own the songs or pictures. I just made a fan remix. The credits go to their respectful owners and if you're a producer/record label and would like any uploads to be removed, renamed, or otherwise changed, please send me a message and I will do that immediately. ● DISCLAIMER We do not own this audio. All rights belong to its rightful owner. This clip is copyright. =================================== ♩ Only Love | Trademark | Lyrics [Kara + Vietsub HD] ♩
    https://wn.com/Only_Love_|_Trademark_|_Lyrics_Kara_Vietsub_Hd
    Trademark - Only Love With Lyrics
    4:04

    Trademark - Only Love With Lyrics

    • Order:
    • Duration: 4:04
    • Uploaded Date: 05 Apr 2008
    • views: 7211132
    Enjoy,I Hope It's Not A Disappointment.
    https://wn.com/Trademark_Only_Love_With_Lyrics
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME:

    Ernie Graham - For A Little While

    Ernie Graham began his musical career in the 1960s, when he formed Eire Apparent with Henry McCullogh. The band toured extensively, supporting Jimi Hendrix, Pink Floyd & Soft Machine. Eire Apparent disbanded at the end of the 60s and Henry McCullogh went on to form The Grease Band. Ernie then recorded his eponymous debut album in 1971, recruiting the members of Brinsley Schwarz (including Nick Lowe) and Help Yourself as his backing band. At the time of it's original release, this album drew comparisons with Dylan, The Band and Crosby, Stills, Nash & Young. After joining Help Yourself for a brief period, including their performance at the first Glastonbury Festival, Ernie then formed his new band Clancy. Ernie's only other solo recording was a single released on Stiff Records in 1979. This was a cover of the Phil Lynott song, 'Romeo (And The Lonely Girl)', backed with the self-penned 'Only Time Will Tell'. Ernie's complete solo recordings are now released here on CD for the first time; The 1971 album and both sides of the 1979 Stiff single. The accompanying 8 page booklet features extensive liner notes and several rare photographs, from the private collection of Ernie's family. Ernie Graham (guitar,vocals), Bob Andrews (organ,accordion,guitar,piano,harmonies)­, Ian Gomm (guitar, harmonies), Nick Lowe (bass, harmonies), Billy Rankin (drums), Brinsley Schwarz (guitar), Ken Whaley (bass)
    6:38
    Ernie Graham - For A Little While
    Ernie Graham began his musical career in the 1960s, when he formed Eire Apparent with Henr...
    published: 10 Jan 2011
    Play in Full Screen
    6:19
    Ernie Graham - The Girl That Turned The Lever
    "... spend all my days in Detroit city..."
    published: 26 Oct 2009
    Play in Full Screen
    5:40
    Ernie Graham - Belfast
    Track number: 8 Album: Ernie Graham Year: 1971 Genre: Folk Rock, Singer/Songwriter Label: ...
    published: 01 Jan 2022
    Play in Full Screen
    5:05
    Ernie Graham - Sebastian
    published: 17 Feb 2011
    Play in Full Screen
    2:33
    Ernie Graham - Romeo & the Lonely Girl [HQ Audio]
    On Stiff Records 1978. Produced by Larry Wallis.
    published: 20 May 2010
    Play in Full Screen
    5:35
    Ernie Graham - Sebastian
    Track number: 1 Album: Ernie Graham Year: 1971 Genre: Folk Rock, Singer/Songwriter Label: ...
    published: 01 Jan 2022
    Play in Full Screen
    3:50
    #Terps100 - Dec. 20, 1978 - Ernie Graham Scores School-Record 44 Points
    Ernie Graham scored a school-record 44 points in a 124-110 win over NC Stateon December 20...
    published: 29 Nov 2018
    Play in Full Screen
    3:26
    ERNIE GRAHAM with CLANCY Long Time Comin' 1974
    From the album Seriously Speaking by Clancy (1974) Song written and sung by Ernie Graham
    published: 07 Jan 2022
    Play in Full Screen
    7:37
    Nicky Grist Stages 2024 SS4 | Will Graham & Kenny Owen | Ford Escort RS1600
    In-Car Video of ‪@FlexiFlyRallyTeam Will Graham & Kenny Owen during SS4 (Bowlsey) of Nicky...
    published: 14 Jul 2024
    Play in Full Screen
    4:50
    Ernie Graham - Sea Fever (1971) Rock Ballad
    This is one of the most hauntingly beautiful solo albums to come out of the whole English ...
    published: 14 Dec 2013
    Play in Full Screen

    Ernie Graham

    Ernie Graham (born Ernest Harold Graham; 14 June 1946 27 April 2001) was a singer, guitarist and songwriter, active from the mid-1960s to the early 1980s

    Early life

    Ernie Graham was born in Belfast, and was training to be a mechanic, when he joined his first band Tony & the Telstars in 1965, as rhythm guitarist. When the band split Graham and two other members moved to England, where Graham met Henry McCullough. Graham and McCullough returned to Belfast and formed The People, with George O'Hara, Davey Lutton and Chris Stewart.

    Eire Apparent

    In 1967 the band moved back to London where they came to the attention of Michael Jeffery and were signed by him and Chas Chandler. In 1968 they changed their name to Eire Apparent and toured with Soft Machine, Pink Floyd and Jimi Hendrix.

    Eire Apparent only recorded one album Sunrise (1969), which was produced by Hendrix, who also played on the album. Shortly after McCullough left, to tour with The Grease Band, Eire Apparent disbanded. Graham moved in with McCullough and recorded four songs with The Grease Band, but these were never issued.

    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Only Love - Trademark
      4:05
      Only Love - Trademarkremove from playlist
    • Ben Howard - Only Love
      3:53
      Ben Howard - Only Loveremove from playlist
    • Jordan Smith - Only Love
      4:06
      Jordan Smith - Only Loveremove from playlist
    • Only Love
      3:19
      Only Loveremove from playlist
    • Trademark  - Only Love - (Official Video)
      3:40
      Trademark - Only Love - (Official Video)remove from playlist
    • Only Love | Trademark | Lyrics [Kara + Vietsub HD]
      4:07
      Only Love | Trademark | Lyrics [Kara + Vietsub HD]remove from playlist
    PLAYLIST TIME:

    Only Love - Trademark

    Only Love.. True love.. Love... in our life there's this only love that we never forget..
    4:05
    Only Love - Trademark
    Only Love.. True love.. Love... in our life there's this only love that we never forget..
    published: 21 Dec 2009
    Play in Full Screen
    3:53
    Ben Howard - Only Love
    Official music video for Only Love TAKEN FROM THE 2012 MERCURY PRIZE-NOMINATED ALBUM BY B...
    published: 08 May 2012
    Play in Full Screen
    4:06
    Jordan Smith - Only Love
    Only Love (Official Video) Listen and Download the new album Only Love here: https://Jord...
    published: 29 Aug 2018
    Play in Full Screen
    3:19
    Only Love
    Provided to YouTube by Universal Music Group Only Love · Katy Perry Smile ℗ 2020 Capito...
    published: 27 Aug 2020
    Play in Full Screen
    4:23
    Nana Mouskouri 'Only Love'
    LA HIJA DE MISTRAL
    published: 09 Apr 2010
    Play in Full Screen
    3:40
    Trademark - Only Love - (Official Video)
    Trademark - Only Love - Official Video Lyrics: Two am and the rain is falling Here we ...
    published: 30 Sep 2016
    Play in Full Screen
    4:07
    Only Love | Trademark | Lyrics [Kara + Vietsub HD]
    ♩ Only Love | Trademark | Lyrics [Kara + Vietsub HD] ♩ » Ask me?: http://ask.fm/nguyentha...
    published: 23 May 2014
    Play in Full Screen
    4:04
    Trademark - Only Love With Lyrics
    Enjoy,I Hope It's Not A Disappointment.
    published: 05 Apr 2008
    Play in Full Screen
    '); } 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)); } }); }); }); // -->
    ×