- published: 26 Nov 2008
- views: 10673199
'+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; })); }); -->
Hank Brian Marvin (born 28 October 1941), also known as Hank B. Marvin, is an English multi-instrumentalist, vocalist and songwriter. He is best known as the lead guitarist for the Shadows, a group which primarily performed instrumentals and was the backing band for Cliff Richard. Marvin uses a clean guitar sound with a Vox amplifier and often uses an echo, also known as delay, for songs like "Apache" and "Wonderful Land". He also developed a distinctive way of using the guitar's vibrato to give a "dreamy feel" to his playing. Many leading British and Canadian rock guitarists cite Marvin as an influence on them.
Hank Marvin was born Brian Robson Rankin in Newcastle upon Tyne, England. As a child, he played banjo and piano. After hearing Buddy Holly, he decided to learn the guitar.
He chose the name Hank Marvin while launching his career. The name is an amalgamation of his childhood nickname, Hank, which he used to differentiate himself from friends also named Brian, and Marvin Rainwater, a country and western singer.
Guitar Man is an album by guitarist Hank Marvin, released in 2007.
The album peaked at #6 on the UK album chart.
Guitar Man may refer to:
Guitar Man is a studio album by George Benson. The album was released by Concord Jazz on October 4, 2011. Largely instrumental, it finds Benson revisiting his Sixties/early-Seventies guitar-playing roots with a 12-song collection of covers of both jazz and pop standards overseen by producer John Burk.
"Guitar Man" is a 1967 song written by Jerry Reed, who took his version of it to number 53 on the country music charts in 1967.
Soon after Reed's single appeared, Elvis Presley recorded the song with Reed playing the guitar part, and it became a minor country and pop hit. According to Peter Guralnick in his two volume biography of Presley, the singer had been trying unsuccessfully to record the tune, but wasn't happy with the groove. He said something to the effect of: "Get me that redneck picker who's on the original tune", and his staff brought Reed into the studio - who nailed it on the first take (though this romantic account is contradicted by a studio tape of the session that documents the first, second and fifth takes which are available on video-sharing website youtube.com). The single spent one week at number one on the country chart.
Thirteen years later, "Guitar Man" was re-recorded in a new electric arrangement, with Presley's original vocal left intact, and it was the last of his eleven number one country hits. The record also peaked at number twenty-eight on the Billboard Hot 100.
http://uk.youtube.com/watch?v=RB91ayDlQLE&feature=channel_page&fmt=18
Don't forget to subscribe to the official Demon Music Group YouTube channel: http://smarturl.it/DemonMusic Hank Marvin appeared on Later With Jools Holland to promote his new solo album. Eponymously entitled 'HANK', the album features newly recorded interpretations of some of his favourite summer-themed music, along with a new original recording, 'Summer Guitar.' Available to pre-order on Amazon here - http://amzn.to/1tO4F6e and iTunes here - https://itunes.apple.com/us/album/hank/id875298500 Demon Music Group (DMG) is the UK's largest independent record company; specialising in the creative production and marketing of CDs, Digital Music and music DVDs. Check out our official website: http://www.demonmusicgroup.co.uk +1 on Google plus: https://plus.google.com/u/0/b/105866318003910243...
Crackerjack show 1961. Hank Marvin es un guitarrista inglés, lider de la legendaria banda instrumental de rock and roll The Shadows, fue el primero en tener una Fender Stratocaster en el Reino Unido y culpable de difundir esta guitarra en esa parte del mundo. Ha influenciado ha guitarristas tan notables como : Pete Townshend (The Who) , Mark Knopfler, Frank Zappa y Carlos Santana.
http://uk.youtube.com/my_videos_edit2?ns=1&video_id=0LNAqMv97C0&fmt=18
Cliff & Hank performing live at London’s Dominion Theatre in front of Her Majesty Queen Elizabeth II. Including performances with The Shadows, to date Cliff has appeared an incredible 12 times at the Royal Variety Performance - 1995 was his 9th show. To stay up to date with all new releases on the channel subscribe here: https://bit.ly/3152uk6 Like Cliff on Facebook: https://www.facebook.com/sircliffrichard #CliffRichard
Fantastic performance. The two geordies Mark Knopfler and Hank Marvin on the same stage.
Watch Hank and Ben Marvin ! Playing duet with his Dad!!! 😀 From the album "Hank plays live" released 1995
From the Album "Hank plays live" released 1997
The Shadows At Sixty Cliff Richard Hank Marvin Bruce Welch Brian Bennet BBC4 Programme 01 05 2020 =================================================================================================== The Shadows At Sixty is the story of one of the UK’s greatest bands as they celebrate 60 years since their inception, and tracks their journey from backing band to bona fide stars in their own right. The Shadows were Cliff Richard’s backing band in the 50s and at that time, were known as The Drifters. They changed their name to The Shadows in 1959. The group produced some of the most memorable and loved tracks of the last 60 years, including hits such as Apache, Kon-Tiki and Wonderful Land. During the 60s, they also appeared with Cliff Richard in films including The Young Ones, Summer Holida...
Hank Marvin - While My Guitar Gently Weeps, Guitar Man (2007)
ONE OF MY FAVORITE SONGS: (Relaxing, Enjoying, Lullaby, and Memorable) THE GUITAR MAN (Bread) Lead vocalist and songwriter by David Gates. -------- Lost Without Your Love (Lyrics Video) (https://youtu.be/lqQH7ucJVP8) -------- Everything I Own (Lyrics Video) (https://youtu.be/f1mWHXz1rJc) -------- Take Me Now - David Gates (Lyrics Video) (https://youtu.be/bCRYkV524r0) -------- Still In Love - David Gates (Lyrics Video) (https://youtu.be/hIAZgE0hyvk) -------- Just Like Yesterday (Lyrics Video) (https://youtu.be/e0CgYHo-w48) -------- Never Let Her Go – David Gates (Lyrics Video) (https://youtu.be/sKGtpd5opxE) -------- The Guitar Man: Power Ballads: The Collection ℗ 1972 Elektra Entertainment Group Inc. -------- Unknown: Armin Steiner Bass, Moog, Violin: David Gates Producer: David Gates Lead...
The Guitar Man - Bread (Lyrics) The Guitar Man - Bread (Lyrics) The Guitar Man - Bread (Lyrics) ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ ▶️ Tracklist : Who draws the crowd and plays so loud, Baby it's the guitar man. Who's gonna steal the show, you know Baby it's the guitar man, He can make you love, he can make you cry He will bring you down, then he'll get you high Somethin' keeps him goin', miles and miles a day To find another place to play. Night after night who treats you right, Baby it's the guitar man Who's on the radio, you go listen To the guitar man Then he comes to town, and you see his face, And you think you might like to take his place Somethin' keeps him driftin' miles and miles away Searchin' for the songs to play. Then you listen to the music and you like to sing along, You want t...
Artist Bread Song The Guitar Man Album Guitar Man Year 1972 Bread's GUITAR MAN was not one of its most commercially successful albums--the album's only chart single was the title track--but it's a finely-crafted, well-constructed soft rock album which shows the group at its best. Bandleader David Gates first made his name as a session producer and songwriter in mid-'60s L.A.; the Monkees' hard-pop "Saturday's Child" is one of his best and best-known efforts. He clearly learned at the feet of such icons as Brian Wilson and Phil Spector, as even the weaker songs here are sublimely arranged, with crystalline production. The best songs, such as "Welcome to the Music" or "I Didn't Even Know Her Name," are comparable to the best of the Carpenters' singles being released at the sam...
Isa ang bandang "Bread" na na nagpasikat ng mga soft rock ballad na paborito ng marami kagaya ko. Ito ang kanilang awiting "The Guitar Man" na lumabas noong 1972 mula sa kaparehas na pamagat na album nila. Thanks for watching ATOMIC Karaoke! ➤SUBSCRIBE to my 2nd YouTube Channel (Kwento ni Idol): https://www.youtube.com/channel/UCM5GjMamo7Y65WJHiGL4tFw ➤SUBSCRIBE to Atomic Karaoke: https://www.youtube.com/c/AtomicKaraoke ➤ LIKE us on Facebook: https://www.facebook.com/Atomic-Karaoke-243776199533810/ ⚠ Please DO NOT Re-upload our video/instrumentals for another Karaoke Video. Click the SUBSCRIBE BUTTON and NOTIFICATION BELL to receive updates on our latest videos. _______________DETAILS:__________________ Music artist: Bread Video created by: Atomic Karaoke Layout and Desig...
The Guitar Man | Bread | Sweetnoes Live #oldies #sweetnotes #bread Facebook Page: https://www.facebook.com/SweetnotesDuo FAIR-USE COPYRIGHT DISCLAIMER Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, commenting, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favour of fair use.
Jerry Reed Guitar Man Live On 1967 Jerry Reed Guitar Man Lyrics Well I quit my job down at the carwash I left my mama a goodbye note By sundown I'd left Kingston with my guitar under my coat I hitchhiked all the way down to Memphis got a room at the YMCA For the next three weeks I went a hountin' them night clubs Lookin' for a place to play Well I thought my pickin' would set 'em on fire But nobody wanted to hire a guitar man Well I nearly bout starved to death down in Memphis I run out of money and luck So I bummed me a ride down to Macon Georgia on a overloaded poultry truck I thumbed on down to Panama City started checkin' out some of them all night bars Hopin' I can make myself a dollar makin' music on my guitar Got the same old story at them all night piers There ain't no room around ...
Lyrics video of the song The Guitar Man by Bread
Elvis Presley, "Trouble" and "Guitar Man" Medley, Live at the '68 Comeback Special Buy/listen: https://Elvis.lnk.to/68ComebackSpecial!opn About the track: Elvis Presley opened his iconic 1968 television special with this fiery medley of “Trouble” and “Guitar Man.” By the end of the program, he’d reclaimed his title as The King of Rock and Roll. Relive every moment on the new 5CD/2BD box set ’68 Comeback Special: 50th Anniversary Edition, available November 30. Listen to Elvis sing all your favorite Christmas songs: https://Elvis.lnk.to/ChristmasYA!opn Follow Elvis Presley: Facebook: https://Elvis.lnk.to/68ComebackSpecialFI!opn Twitter: https://Elvis.lnk.to/68ComebackSpecialTI!opn Instagram: https://Elvis.lnk.to/68ComebackSpecialII!opn Website: https://Elvis.lnk.to/68ComebackSpecialWI!op...
🍵Enjoying the videos? Buy me a coffee https://www.buymeacoffee.com/joannecooper ⬇️ Download the Playiit songbooks for free https://www.joannecooper.co.za/free-play-along-books 🎸 Learn songs and have fun! Join https://www.playiit.com/ to access a searchable database of all the songs on this YouTube channel. 🍏 Download the IOS App: https://go.playiit.com/iOSapp 📲 Download Android App: https://go.playiit.com/ANDROIDapp 🎵 If you have a particular song that you want to learn you can commission a play-along video using this link https://www.buymeacoffee.com/joannecooper/commissions
Hank Brian Marvin (born 28 October 1941), also known as Hank B. Marvin, is an English multi-instrumentalist, vocalist and songwriter. He is best known as the lead guitarist for the Shadows, a group which primarily performed instrumentals and was the backing band for Cliff Richard. Marvin uses a clean guitar sound with a Vox amplifier and often uses an echo, also known as delay, for songs like "Apache" and "Wonderful Land". He also developed a distinctive way of using the guitar's vibrato to give a "dreamy feel" to his playing. Many leading British and Canadian rock guitarists cite Marvin as an influence on them.
Hank Marvin was born Brian Robson Rankin in Newcastle upon Tyne, England. As a child, he played banjo and piano. After hearing Buddy Holly, he decided to learn the guitar.
He chose the name Hank Marvin while launching his career. The name is an amalgamation of his childhood nickname, Hank, which he used to differentiate himself from friends also named Brian, and Marvin Rainwater, a country and western singer.