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

Geoff Whitehorn

Geoffrey Charles 'Geoff' Whitehorn (born 29 August 1951, London, England) is a guitarist and singer-songwriter, who has played as a member of If, Crawler and Procol Harum.


History

In August 1973, Whitehorn joined the pioneering British jazz-rock band, If, in what was their third and final line-up, appearing on their last two albums, Not Just Another Bunch of Pretty Faces (1974) and Tea Break Over, Back on Your 'Eads (1975). During that period, he recorded his first solo album, Whitehorn (1974, Stateside), featuring fellow If members Dick Morrissey and Cliff Davies. This was followed by two largely instrumental solo albums, Big in Gravesend and Geoff Who? which he also re-recorded and expanded as Geoff Who? 2002. In 1976–1979, Whitehorn played in the band Crawler (formerly known as Back Street Crawler), replacing the band's founder Paul Kossoff after the latter's death.

Geoff also played as lead guitarist with Chuck Farley with Steve Simpson, Boz Burrell, Poly Palmer and Alan Coulter.

Podcasts:

  • The Captain Meets Geoff Whitehorn!

    Geoff Whitehorn has had a long and successful career playing guitar for the likes of Procol Harum, If and Crawler! Hear some great stories and find out what made Geoff the kind of player who can pick up any guitar and make it sing! » PRS SE DGT David Grissom Signature McCarty Tobacco Sunburst | https://tinyurl.com/2aoyoz7u » PRS SE DGT David Grissom Signature Gold Top | https://tinyurl.com/2727v5l9 » PRS DGT David Grissom Signature Gold Top | https://tinyurl.com/23yxp9ok » PRS DGT David Grissom Signature McCarty Tobacco Sunburst | https://tinyurl.com/28zjkc23 » Check out all our PRS Guitars! | https://tinyurl.com/26c5lp76 » BluGuitar Amp 1 Mercury Edition Nanotube 100w Amplifier | https://tinyurl.com/263xndqb » BluGuitar AMP1 Iridium Edition Nanotube 100W Guitar Amp | https://tinyurl.com...

    published: 21 Apr 2023
  • Whiter shade of Pale (Procol Harum) Guitar solo (by Geoff whitehorn)- C메이저 스케일 사용

    from Guitar Techniques magazine December 2001 #whitershadeofpaleguitar #whitershadeofpaleguitarplay #guitarsolo

    published: 18 Mar 2021
  • Geoff Whitehorn of PROCOL HARUM Live (1/3)

    Geoff Whitehorn joined us for a live performance and Q&A workshop, where he discussed his career & gear, and wowed us with some tasteful playing and tone. Here is one of his performances from the evening. Geoff Played a PRS P22 Electric Guitar through a Kemper Profiling Amplifier, with Monitoring from a PRS Sonzera 50 Comment, Like & Subscribe for more content! Stay Connected ● Twitter - https://twitter.com/soundfxpremier ● Facebook - https://www.facebook.com/soundaffectspremier/ ● Instagram - https://instagram.com/soundaffectspremier/ ● Website - http://www.soundaffectspremier.com/ ● Studio - http://www.soundaffectsmusic.com/

    published: 24 Apr 2018
  • Geoff Whitehorn: Hughes Kettner goes blue Frankfurt 2011

    Geoff Whitehorn: Hughes Kettner goes blue Frankfurt 2011... Geoff is one of those classic players, great touch and tone... I shed a tear listening to his tribute to Gary Moore starting at 3:00

    published: 13 Sep 2011
  • PROCOL HARUM, GEOFF WHITEHORN GUITAR SOLO, HEDON ZWOLLE 2018

    Glimpses of Geoff Whitehorn’s fine ‘two part’ guitar solo, when Procol Harum performed at the Poppodium Hedon venue in the city of Zwolle, The Netherlands, on Thursday, November 1st, 2018. Featuring: Gary Brooker – vocals, piano Geoff Whitehorn – guitar Josh Phillips – Hammond organ, keyboards Matt Pegg – bass Geoff Dunn – drums, percussion Links: http://www.procolharum.com/2018/2018_index.htm https://www.hedon-zwolle.nl/

    published: 29 Dec 2018
  • One of our greatest, Great British Guitarists: Geoff Whitehorn’s MEGA Prog guitar solo!

    Here’s a MEGA Prog solo called ‘Repent Walpurgis’ by one of our GREATEST great British guitarists GEOFF WHITEHORN! The strength, power and attack in Geoff’s perfect pitch string bends with his classic (BB King level) vibrato, tone and replete technique have earned Geoff a stellar place in the GUITAR NATION Rock n Roll Hall of Fame! Rock on Geoff you are one of our best, mate, and an important member of the Fender Britpack of luminary guitarists who helped us change Fender’s fortunes and change the world, you’re making the world a better place! Replacing Paul Kossoff in Backstreet Crawler and vying with Mick Taylor and Peter Green for the gig, IF’s Geoff Whitehorn went on to do two fabulous albums with Crawler and then moved on to work with The Who, Family’s Roger Chapman, Procol Harum, Ba...

    published: 26 May 2024
  • Roger Chapman Moth to a Flame Harmonie Bonn 25-11-2015

    Moth to a Flame . Watch Geoff Whithorn awesome solo. www.chappo.com

    published: 26 Nov 2015
  • Phil Hilborne & Geoff Whitehorn - 'NINETYONOG '

    Phil Hilborne & Band with guest Geoff Whitehorn playing Geoff's instrumental tune' Ninetyonog' - from his 'Geoff Who' album. In 1994 at Club Riga In Southend-On-Sea, Essex.

    published: 15 Jan 2010
  • Need your love so bad- NHS bluesrock band with geoff whitehorn

    great blues tone on this clip....more hair than you can shake a stick at!!

    published: 15 Sep 2011
  • Pierfrancesco Scimemi - Blues Minor (Am) - Geoff Whitehorn - Blues Guitar Master 2023

    Un Piccolo Omaggio al Mitico Geoff. Blues Guitar Master 2023. Info & Contact:scimemipierfrancesco@tiscali.it Buon Video a Tutti.

    published: 11 Mar 2023
developed with YouTube
The Captain Meets Geoff Whitehorn!
1:00:31

The Captain Meets Geoff Whitehorn!

  • Order:
  • Duration: 1:00:31
  • Uploaded Date: 21 Apr 2023
  • views: 28464
Geoff Whitehorn has had a long and successful career playing guitar for the likes of Procol Harum, If and Crawler! Hear some great stories and find out what made Geoff the kind of player who can pick up any guitar and make it sing! » PRS SE DGT David Grissom Signature McCarty Tobacco Sunburst | https://tinyurl.com/2aoyoz7u » PRS SE DGT David Grissom Signature Gold Top | https://tinyurl.com/2727v5l9 » PRS DGT David Grissom Signature Gold Top | https://tinyurl.com/23yxp9ok » PRS DGT David Grissom Signature McCarty Tobacco Sunburst | https://tinyurl.com/28zjkc23 » Check out all our PRS Guitars! | https://tinyurl.com/26c5lp76 » BluGuitar Amp 1 Mercury Edition Nanotube 100w Amplifier | https://tinyurl.com/263xndqb » BluGuitar AMP1 Iridium Edition Nanotube 100W Guitar Amp | https://tinyurl.com/25cobjbx » Check out all our BluGuitar Gear! | https://tinyurl.com/2bpz4ese » Check out all our Gibson Les Pauls! | https://tinyurl.com/2ccbz3vr » Check out all our Gibson! | https://tinyurl.com/23pxzbh8 » Check out all our Cream T Guitars! | https://tinyurl.com/279jlj43 » Check out all our Marshall Gear! | https://tinyurl.com/25tzvdsm » Check out the Marshall Reissue Pedals! | https://tinyurl.com/2yvauakc Find more from Geoff on Spotify: https://open.spotify.com/artist/0HqUjGv9szHBJKc5vobOkj Always check the website for accurate and up-to-date pricing and product specifications! 🎥 If you live outside the UK check out this video on how to order from Andertons! » https://youtu.be/1HHeh20gnxE 🎁 Excited about the giveaway? Check out the Victory V4 Range now! » https://youtu.be/Lo5mM_EgHYc ⏰ Timestamps ⏰ » 0:00 Intro Jam » 0:50 Introducing Geoff Whitehorn » 2:38 Overview of Your Career? » 8:49 Replacing Paul Kosoff? » 13:11 Comparing Pedalboards! » 13:30 Early Inspirations? » 15:50 Any Interesting Stories? » 18:35 Buying the 57 Les Paul! » 19:50 Your Technique & Getting Tone From Anything! » 22:15 A Bit More About Your Later Career? » 27:35 About Playing with Procol Harum? » 31:42 Gear! » 40:18 The PRS DGT » 44:02 The Cream T » 49:44 Geoff's Homemade Guitar! » 56:08 What's Next For You? » 58:25 Thanks Geoff & Thanks For Watching! » 59:10 Outro Jam! 📱 Why not give us a follow on our social channels? » Instagram | https://www.instagram.com/andertonsmusicco » Facebook | https://www.facebook.com/andertons/ » Twitter | https://twitter.com/andertonsmusic 🎸 Want To Jam Along? Check out our Backing Tracks! » https://andertonstv.bandcamp.com/ 👕 Buy A T-Shirt 👕 | https://tinyurl.com/vdq7rmg You've watched the videos & seen the store, now join the Andertons Family with our exclusive, official merchandise! With free UK delivery on all orders containing only a T-Shirt, Hoodie or Jumper & super low international shipping costs, there is no better time to be an Andertons fan than now! Make sure to subscribe to Andertons TV for more great videos! Andertons Guitar & Bass YouTube Channel: https://goo.gl/kRJCpb Andertons Synths, Keys & Tech YouTube Channel: https://goo.gl/ns172M Andertons Drummers YouTube Channel: https://goo.gl/9yKSS9 Andertons Shopping Website: https://goo.gl/TPsG2Q #andertons #guitar #prsguitars
https://wn.com/The_Captain_Meets_Geoff_Whitehorn
Whiter shade of Pale (Procol Harum) Guitar solo (by Geoff whitehorn)- C메이저 스케일 사용
2:04

Whiter shade of Pale (Procol Harum) Guitar solo (by Geoff whitehorn)- C메이저 스케일 사용

  • Order:
  • Duration: 2:04
  • Uploaded Date: 18 Mar 2021
  • views: 3096
from Guitar Techniques magazine December 2001 #whitershadeofpaleguitar #whitershadeofpaleguitarplay #guitarsolo
https://wn.com/Whiter_Shade_Of_Pale_(Procol_Harum)_Guitar_Solo_(By_Geoff_Whitehorn)_C메이저_스케일_사용
Geoff Whitehorn of PROCOL HARUM Live (1/3)
4:10

Geoff Whitehorn of PROCOL HARUM Live (1/3)

  • Order:
  • Duration: 4:10
  • Uploaded Date: 24 Apr 2018
  • views: 6056
Geoff Whitehorn joined us for a live performance and Q&A workshop, where he discussed his career & gear, and wowed us with some tasteful playing and tone. Here is one of his performances from the evening. Geoff Played a PRS P22 Electric Guitar through a Kemper Profiling Amplifier, with Monitoring from a PRS Sonzera 50 Comment, Like & Subscribe for more content! Stay Connected ● Twitter - https://twitter.com/soundfxpremier ● Facebook - https://www.facebook.com/soundaffectspremier/ ● Instagram - https://instagram.com/soundaffectspremier/ ● Website - http://www.soundaffectspremier.com/ ● Studio - http://www.soundaffectsmusic.com/
https://wn.com/Geoff_Whitehorn_Of_Procol_Harum_Live_(1_3)
Geoff Whitehorn: Hughes Kettner goes blue Frankfurt 2011
4:40

Geoff Whitehorn: Hughes Kettner goes blue Frankfurt 2011

  • Order:
  • Duration: 4:40
  • Uploaded Date: 13 Sep 2011
  • views: 22361
Geoff Whitehorn: Hughes Kettner goes blue Frankfurt 2011... Geoff is one of those classic players, great touch and tone... I shed a tear listening to his tribute to Gary Moore starting at 3:00
https://wn.com/Geoff_Whitehorn_Hughes_Kettner_Goes_Blue_Frankfurt_2011
PROCOL HARUM, GEOFF WHITEHORN GUITAR SOLO, HEDON ZWOLLE 2018
3:12

PROCOL HARUM, GEOFF WHITEHORN GUITAR SOLO, HEDON ZWOLLE 2018

  • Order:
  • Duration: 3:12
  • Uploaded Date: 29 Dec 2018
  • views: 7124
Glimpses of Geoff Whitehorn’s fine ‘two part’ guitar solo, when Procol Harum performed at the Poppodium Hedon venue in the city of Zwolle, The Netherlands, on Thursday, November 1st, 2018. Featuring: Gary Brooker – vocals, piano Geoff Whitehorn – guitar Josh Phillips – Hammond organ, keyboards Matt Pegg – bass Geoff Dunn – drums, percussion Links: http://www.procolharum.com/2018/2018_index.htm https://www.hedon-zwolle.nl/
https://wn.com/Procol_Harum,_Geoff_Whitehorn_Guitar_Solo,_Hedon_Zwolle_2018
One of our greatest, Great British Guitarists: Geoff Whitehorn’s MEGA Prog guitar solo!
2:40

One of our greatest, Great British Guitarists: Geoff Whitehorn’s MEGA Prog guitar solo!

  • Order:
  • Duration: 2:40
  • Uploaded Date: 26 May 2024
  • views: 266
Here’s a MEGA Prog solo called ‘Repent Walpurgis’ by one of our GREATEST great British guitarists GEOFF WHITEHORN! The strength, power and attack in Geoff’s perfect pitch string bends with his classic (BB King level) vibrato, tone and replete technique have earned Geoff a stellar place in the GUITAR NATION Rock n Roll Hall of Fame! Rock on Geoff you are one of our best, mate, and an important member of the Fender Britpack of luminary guitarists who helped us change Fender’s fortunes and change the world, you’re making the world a better place! Replacing Paul Kossoff in Backstreet Crawler and vying with Mick Taylor and Peter Green for the gig, IF’s Geoff Whitehorn went on to do two fabulous albums with Crawler and then moved on to work with The Who, Family’s Roger Chapman, Procol Harum, Bad Company, Jethro Tull, Kevin Ayers, Roger Waters, Manfred Mann's Earth Band, Paul McCartney, Billy Ocean, Paul Rodgers and Elkie Brooks
https://wn.com/One_Of_Our_Greatest,_Great_British_Guitarists_Geoff_Whitehorn’S_Mega_Prog_Guitar_Solo
Roger Chapman  Moth to a Flame Harmonie Bonn 25-11-2015
6:55

Roger Chapman Moth to a Flame Harmonie Bonn 25-11-2015

  • Order:
  • Duration: 6:55
  • Uploaded Date: 26 Nov 2015
  • views: 54695
Moth to a Flame . Watch Geoff Whithorn awesome solo. www.chappo.com
https://wn.com/Roger_Chapman_Moth_To_A_Flame_Harmonie_Bonn_25_11_2015
Phil Hilborne & Geoff Whitehorn - 'NINETYONOG '
5:25

Phil Hilborne & Geoff Whitehorn - 'NINETYONOG '

  • Order:
  • Duration: 5:25
  • Uploaded Date: 15 Jan 2010
  • views: 10107
Phil Hilborne & Band with guest Geoff Whitehorn playing Geoff's instrumental tune' Ninetyonog' - from his 'Geoff Who' album. In 1994 at Club Riga In Southend-On-Sea, Essex.
https://wn.com/Phil_Hilborne_Geoff_Whitehorn_'Ninetyonog_'
Need your love so bad- NHS bluesrock band with geoff whitehorn
4:57

Need your love so bad- NHS bluesrock band with geoff whitehorn

  • Order:
  • Duration: 4:57
  • Uploaded Date: 15 Sep 2011
  • views: 4926
great blues tone on this clip....more hair than you can shake a stick at!!
https://wn.com/Need_Your_Love_So_Bad_Nhs_Bluesrock_Band_With_Geoff_Whitehorn
Pierfrancesco Scimemi - Blues Minor (Am) - Geoff Whitehorn - Blues Guitar Master 2023
2:52

Pierfrancesco Scimemi - Blues Minor (Am) - Geoff Whitehorn - Blues Guitar Master 2023

  • Order:
  • Duration: 2:52
  • Uploaded Date: 11 Mar 2023
  • views: 205
Un Piccolo Omaggio al Mitico Geoff. Blues Guitar Master 2023. Info & Contact:scimemipierfrancesco@tiscali.it Buon Video a Tutti.
https://wn.com/Pierfrancesco_Scimemi_Blues_Minor_(Am)_Geoff_Whitehorn_Blues_Guitar_Master_2023
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
developed with YouTube
PLAYLIST TIME:

The Captain Meets Geoff Whitehorn!

Geoff Whitehorn has had a long and successful career playing guitar for the likes of Procol Harum, If and Crawler! Hear some great stories and find out what made Geoff the kind of player who can pick up any guitar and make it sing! » PRS SE DGT David Grissom Signature McCarty Tobacco Sunburst | https://tinyurl.com/2aoyoz7u » PRS SE DGT David Grissom Signature Gold Top | https://tinyurl.com/2727v5l9 » PRS DGT David Grissom Signature Gold Top | https://tinyurl.com/23yxp9ok » PRS DGT David Grissom Signature McCarty Tobacco Sunburst | https://tinyurl.com/28zjkc23 » Check out all our PRS Guitars! | https://tinyurl.com/26c5lp76 » BluGuitar Amp 1 Mercury Edition Nanotube 100w Amplifier | https://tinyurl.com/263xndqb » BluGuitar AMP1 Iridium Edition Nanotube 100W Guitar Amp | https://tinyurl.com/25cobjbx » Check out all our BluGuitar Gear! | https://tinyurl.com/2bpz4ese » Check out all our Gibson Les Pauls! | https://tinyurl.com/2ccbz3vr » Check out all our Gibson! | https://tinyurl.com/23pxzbh8 » Check out all our Cream T Guitars! | https://tinyurl.com/279jlj43 » Check out all our Marshall Gear! | https://tinyurl.com/25tzvdsm » Check out the Marshall Reissue Pedals! | https://tinyurl.com/2yvauakc Find more from Geoff on Spotify: https://open.spotify.com/artist/0HqUjGv9szHBJKc5vobOkj Always check the website for accurate and up-to-date pricing and product specifications! 🎥 If you live outside the UK check out this video on how to order from Andertons! » https://youtu.be/1HHeh20gnxE 🎁 Excited about the giveaway? Check out the Victory V4 Range now! » https://youtu.be/Lo5mM_EgHYc ⏰ Timestamps ⏰ » 0:00 Intro Jam » 0:50 Introducing Geoff Whitehorn » 2:38 Overview of Your Career? » 8:49 Replacing Paul Kosoff? » 13:11 Comparing Pedalboards! » 13:30 Early Inspirations? » 15:50 Any Interesting Stories? » 18:35 Buying the 57 Les Paul! » 19:50 Your Technique & Getting Tone From Anything! » 22:15 A Bit More About Your Later Career? » 27:35 About Playing with Procol Harum? » 31:42 Gear! » 40:18 The PRS DGT » 44:02 The Cream T » 49:44 Geoff's Homemade Guitar! » 56:08 What's Next For You? » 58:25 Thanks Geoff & Thanks For Watching! » 59:10 Outro Jam! 📱 Why not give us a follow on our social channels? » Instagram | https://www.instagram.com/andertonsmusicco » Facebook | https://www.facebook.com/andertons/ » Twitter | https://twitter.com/andertonsmusic 🎸 Want To Jam Along? Check out our Backing Tracks! » https://andertonstv.bandcamp.com/ 👕 Buy A T-Shirt 👕 | https://tinyurl.com/vdq7rmg You've watched the videos & seen the store, now join the Andertons Family with our exclusive, official merchandise! With free UK delivery on all orders containing only a T-Shirt, Hoodie or Jumper & super low international shipping costs, there is no better time to be an Andertons fan than now! Make sure to subscribe to Andertons TV for more great videos! Andertons Guitar & Bass YouTube Channel: https://goo.gl/kRJCpb Andertons Synths, Keys & Tech YouTube Channel: https://goo.gl/ns172M Andertons Drummers YouTube Channel: https://goo.gl/9yKSS9 Andertons Shopping Website: https://goo.gl/TPsG2Q #andertons #guitar #prsguitars
1:00:31
The Captain Meets Geoff Whitehorn!
Geoff Whitehorn has had a long and successful career playing guitar for the likes of Proco...
published: 21 Apr 2023
Play in Full Screen
2:04
Whiter shade of Pale (Procol Harum) Guitar solo (by Geoff whitehorn)- C메이저 스케일 사용
from Guitar Techniques magazine December 2001 #whitershadeofpaleguitar #whitershadeofpale...
published: 18 Mar 2021
Play in Full Screen
4:10
Geoff Whitehorn of PROCOL HARUM Live (1/3)
Geoff Whitehorn joined us for a live performance and Q&A workshop, where he discussed his ...
published: 24 Apr 2018
Play in Full Screen
4:40
Geoff Whitehorn: Hughes Kettner goes blue Frankfurt 2011
Geoff Whitehorn: Hughes Kettner goes blue Frankfurt 2011... Geoff is one of those classic ...
published: 13 Sep 2011
Play in Full Screen
3:12
PROCOL HARUM, GEOFF WHITEHORN GUITAR SOLO, HEDON ZWOLLE 2018
Glimpses of Geoff Whitehorn’s fine ‘two part’ guitar solo, when Procol Harum performed at ...
published: 29 Dec 2018
Play in Full Screen
2:40
One of our greatest, Great British Guitarists: Geoff Whitehorn’s MEGA Prog guitar solo!
Here’s a MEGA Prog solo called ‘Repent Walpurgis’ by one of our GREATEST great British gui...
published: 26 May 2024
Play in Full Screen
6:55
Roger Chapman Moth to a Flame Harmonie Bonn 25-11-2015
Moth to a Flame . Watch Geoff Whithorn awesome solo. www.chappo.com
published: 26 Nov 2015
Play in Full Screen
5:25
Phil Hilborne & Geoff Whitehorn - 'NINETYONOG '
Phil Hilborne & Band with guest Geoff Whitehorn playing Geoff's instrumental tune' Ninetyo...
published: 15 Jan 2010
Play in Full Screen
4:57
Need your love so bad- NHS bluesrock band with geoff whitehorn
great blues tone on this clip....more hair than you can shake a stick at!!
published: 15 Sep 2011
Play in Full Screen
2:52
Pierfrancesco Scimemi - Blues Minor (Am) - Geoff Whitehorn - Blues Guitar Master 2023
Un Piccolo Omaggio al Mitico Geoff. Blues Guitar Master 2023. Info & Contact:scimemipierfr...
published: 11 Mar 2023
Play in Full Screen

Geoff Whitehorn

Geoffrey Charles 'Geoff' Whitehorn (born 29 August 1951, London, England) is a guitarist and singer-songwriter, who has played as a member of If, Crawler and Procol Harum.


History

In August 1973, Whitehorn joined the pioneering British jazz-rock band, If, in what was their third and final line-up, appearing on their last two albums, Not Just Another Bunch of Pretty Faces (1974) and Tea Break Over, Back on Your 'Eads (1975). During that period, he recorded his first solo album, Whitehorn (1974, Stateside), featuring fellow If members Dick Morrissey and Cliff Davies. This was followed by two largely instrumental solo albums, Big in Gravesend and Geoff Who? which he also re-recorded and expanded as Geoff Who? 2002. In 1976–1979, Whitehorn played in the band Crawler (formerly known as Back Street Crawler), replacing the band's founder Paul Kossoff after the latter's death.

Geoff also played as lead guitarist with Chuck Farley with Steve Simpson, Boz Burrell, Poly Palmer and Alan Coulter.

'); } 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: geoff whitehorn

Edit

Roger Taylor and Eric Clapton lead Gary Brooker tribute concert line-up

Music News 26 Sep 2023
In a statement released upon his passing, the band - which currently comprises Geoff Whitehorn, Matt Pegg, Josh Phillips and Geoff Dunn - said that Gary was the "defining constant" of their history.
Edit

Procol Harum songwriter Keith Reid dies aged 76

Music News 30 Mar 2023
On Wednesday (29.03.23), the group - whose final line-up before disbanding in 2017 consisted of guitarist Geoff Whitehorn, bassist Matt Pegg, keyboardist Josh Phillips and drummer Geoff Dunn - wrote on Facebook ... The statement read ... .
Edit

Roger Chapman - Turn It Up Loud – The Recordings 1981-1985

Music News 05 Dec 2022
The individual members of The Shortlist had been around the scene for a long while and were some of the top session musicians around – Geoff Whitehorn on guitar, Tim Hinkley on keyboards, Steve ...
  • 1

Most Viewed

×