- published: 03 Aug 2022
- views: 1555600
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
The discography of the rock band the Grateful Dead includes more than 140 albums, the majority of them recorded live in concert. The band has also released more than two dozen singles and a number of videos.
The Grateful Dead formed in the San Francisco Bay Area in 1965 amid the counterculture of the 1960s. They had many musical influences, and their music evolved to a great degree over time. They made extensive use of improvisation, and are considered one of the originators of jam band music. The founding members were Jerry Garcia on guitar and vocals, Bob Weir on guitar and vocals, Phil Lesh on bass and vocals, Bill Kreutzmann on drums, and Ron "Pigpen" McKernan on organ, harmonica, percussion, and vocals. Pigpen died in 1973, but the other four remained with the band for its entire 30-year history. Second drummer Mickey Hart was also in the band for most of that time. Others who were band members at different times were keyboardists Tom Constanten, Keith Godchaux, Brent Mydland, and Vince Welnick, and vocalist Donna Jean Godchaux.
The Grateful Dead was an American rock band formed in 1965 in Palo Alto, California. Ranging from quintet to septet, the band was known for its unique and eclectic style, which fused elements of country, folk, bluegrass, blues, reggae, rock, improvisational jazz, psychedelia, space rock, for live performances of lengthy instrumental jams, and for their devoted fan base, known as "Deadheads". "Their music," writes Lenny Kaye, "touches on ground that most other groups don't even know exists." These various influences were distilled into a diverse and psychedelic whole that made the Grateful Dead "the pioneering Godfathers of the jam band world". The band was ranked 57th in the issue The Greatest Artists of all Time by Rolling Stone magazine. The band was inducted into the Rock and Roll Hall of Fame in 1994 and their Barton Hall Concert at Cornell University (May 8, 1977) was added to the Library of Congress's National Recording Registry. The Grateful Dead have sold more than 35 million albums worldwide.
Grateful dead (or grateful ghost) is a folktale present in many cultures throughout the world. The most common story involves a traveler who encounters a corpse of someone who never received a proper burial, typically stemming from an unpaid debt. The traveler then either pays off the dead person's debt or pays for burial. The traveler is later rewarded or has their life saved by a person or animal who is actually the soul of the dead person; the grateful dead is a form of the donor.
The "grateful dead" story is Aarne-Thompson-Uther type 505.
An ancient Egyptian text explains the principle of reciprocity in which the deceased calls for a blessing on the person who remembers his name and helps him into a happy afterlife:
One variant is the Book of Tobit. The chivalric romance Amadas has the title knight pay his last coins for such a burial. It appears in various fairy tales, such as the Italian Fair Brow, the Swedish The Bird 'Grip' and H. C. Andersen's The Traveling Companion.
Grateful Dead is the seventh album by the Grateful Dead, released in October 1971 on Warner Bros. Records, catalogue 2WS-1935. It is their second live double album, and also known generally by the names Skull and Roses (due to its iconic cover art) and Skull Fuck (the name the band originally wanted to give to the album, which was rejected by the record company). It was the group's first Gold Album and their best seller at the time.
While mainly a live album, there were a few overdubs including the doctoring of lead and background vocals. For the three new band originals, "Bertha", "Playing in the Band", and "Wharf Rat", the band invited Jerry Garcia associate Merl Saunders to overdub an organ part. This made the organ playing of Saunders more prominent than that of Pigpen, whose organ contributions tend to be buried in the mix.
"Playing in the Band" received a good amount of airplay, and became one of the Dead's most played songs in concerts. The closing segue of "Not Fade Away" into "Goin' Down The Road Feeling Bad" also received airplay and became a fan favorite.
Grateful Dead - The Very Best Of The Grateful Dead (Full Album) (2001). Get on the bus with nothing but the greatest hits from more than 30 years of studio recordings from the Grateful Dead. 💿 Order a copy here https://Rhino.lnk.to/TheVeryBestOfGratefulDeadAlbum 🎵 Download here https://Rhino.lnk.to/DownloadTheVeryBestOfGratefulDead 📻 Stream here https://Rhino.lnk.to/StreamTheVeryBestOfGratefulDead Tracklist: 0:00:00 Truckin' 0:05:08 Touch Of Grey 0:10:52 Sugar Magnolia 0:14:09 Casey Jones 0:18:34 Uncle John's Band 0:23:17 Friend of the Devil 0:26:39 Franklin's Tower 0:31:10 Estimated Prophet 0:36:46 Eyes of the World 0:42:03 Box of Rain 0:47:20 U.S. Blues 0:51:58 The Golden Road 0:54:12 One More Saturday Night (Live 5/24/72) 0:58:54 Fire on the Mountain 1:02:40 The Music Never Stopped 1...
You're watching the official music video remastered in HD for 'Touch Of Grey' from the Dead's 1987 album 'In The Dark'. We will get by, we will survive.... Subscribe! https://Rhino.lnk.to/GratefulDeadYTSubID Take a trip with our playlists.... The Grateful Dead Fundamentals https://Rhino.lnk.to/YTGratefulDead101ID Legendary Live Cuts https://Rhino.lnk.to/YTGratefulDeadAYTLiveID The Dead: Covered https://Rhino.lnk.to/YTGratefulDeadCoveredID Scintillating Bust Outs https://Rhino.lnk.to/YTGratefulDeadBustOutsID Stay connected with The Dead on... dead.net http://www.dead.net/ Facebook https://www.facebook.com/gratefuldead/ Instagram https://www.instagram.com/gratefuldead Twitter https://twitter.com/GratefulDead About the Grateful Dead YouTube Channel: Will you come with me? Won't you com...
The Grateful Dead’s “Ripple” became a kind of cosmic spiritual after its debut 50 years ago. Since then, the universal appeal of Robert Hunter’s serene prose and the band’s heartfelt performance have made the song a popular choice at everything from weddings to funerals. As relevant now as ever before, the enduring optimism of “Ripple” is a welcome reminder of better days ahead, when songs will, once again, fill the air. The American Beauty 50th Anniversary Edition is available now. The 3CD features the original album with newly remastered audio plus one of the most requested archival recordings in the Dead's vault - the unreleased concert recorded on February 18, 1971 at the Capitol Theatre in Port Chester, NY. Get your copy here https://rhino.lnk.to/AB50 Credits: Lead Animator: T. N...
The video for "Goin Down the Road Feeling Bad" by the Grateful Dead features a skeleton playing electric guitar down the road, flanked by oversized mushrooms, encapsulating a surreal, dreamlike essence. Music is from the State Fairgrounds show in Des Moines, IA on 6/16/74 also on Road Trips Vol 2 No 3 Disc 3 Support this channel here, these videos take a lot of time and the rendering costs $$! Help us make more videos! https://www.patreon.com/JamBandVideos #JimJamBandVideos #PsychedelicMusic #gratefuldead #TrippyVisuals #JamBandLove #CosmicJourney #LiveMusicExperience #MindExpandingVideos #JamBandVideos #johnmayer From the final tour shows at San Fran 2023 ### About Jam Band Videos Welcome to Jam Band Videos, your ultimate destination for all things jam band! We're passionate ab...
Thanks to LazyD for the patchwork that made this video possible, creating a cohesive show experience using as much of the live footage as possible. There are two "sets" to this using the available footage to make a completely cohesive concert experience. I have redone this in 4k in the past, this was a test with new modeling to 1080p. My goal was to see if a 4k upscale with my new ML modeling would work better on this video. That said, I think the new model does work better, and I will be re-releasing both sets in 4k soon, until then, enjoy. :) ________________________________ If you are able, please support the continuing upgrades of these videos if you are able, every single dollar goes STRAIGHT TO NEEDED EQUIPMENT!!!: Venmo: @Christopher-Hazard-0 Paypal: Christopher.Hazard@utole...
UNLOCKED AFTER $50K IN DONATIONS! Grateful Dead are proud to support the MusiCares® COVID-19 Relief Fund to help our peers in the music community affected by the Coronavirus pandemic. Donate via the blue DONATE button, or click here https://lnk.to/GDMusiCares Setlist 1:23 Bertha 8:37 Greatest Story Ever Told 13:17 Cold Rain and Snow 20:04 Walkin’ Blues 27:00 Row Jimmy 37:40 When I Paint My Masterpiece 44:21 Stagger Lee 50:30 Looks Like Rain 57:41 Deal 1:06:02 Touch of Grey 1:12:20 Man Smart, Woman Smarter 1:21:07 Ship of Fools 1:29:12 Playing in the Band (reprise) 1:32:43 Terrapin Station 1:44:50 Drums/Space 2:01:27 I Will Take You Home 2:05:19 All Along the Watchtower 2:11:11 Morning Dew 2:22:22 Not Fade Away 2:32:45 U.S. Blues Subscribe! https://Rhino.lnk.to/GratefulDeadYTSubID Tak...
Listen to "Grateful" on any platform here - https://ffm.to/neffexgrateful Click here for instant access to UNRELEASED songs ➡ https://laylo.com/neffex/2Adok CREATORS - LINK TO DOWNLOAD AND USE THIS SONG COPYRIGHT-FREE: https://bit.ly/3Cobrrx STREAM ALL 200+ of my songs on ANY platform here - https://ffm.bio/neffexmusic Get the newest NEFFEX merch here - https://www.neffexstore.com/ Join NEFFEX Nation to get new music and everything else first 🤘- https://laylo.com/neffex/nation Join the NEFFEX Discord Server HERE - https://discord.gg/neffex ✦✦✦✦✦ NEFFEX ✦✦✦✦✦ Spotify: https://fanlink.to/neffex_spotify SoundCloud: https://fanlink.to/neffex_sc Facebook: https://fanlink.to/neffex_fb Instagram: https://fanlink.to/neffex_ig Twitter: https://fanlink.to/neffex_twt YouTube: https://fanlink....
Provided to YouTube by Grateful Dead/Rhino Touch of Grey · Grateful Dead The Very Best of the Grateful Dead ℗ 1987 Grateful Dead Productions Equipment Technician: Bill Candelario Drums: Bill Kreutzmann Equipment Technician: Billy Grillo Programmer: Bob Bralove Guitar, Vocals: Bob Weir Keyboards, Vocals: Brent Mydland Unknown: Dan Healy Unknown: David Roberts Engineer: Guy Charbonneau Equipment Technician: Harry Popick Unknown: Jeff Sterling Unknown: Jeffrey Norman Guitar, Producer, Vocals: Jerry Garcia Unknown: Joe Gastwirt Engineer, Producer: John Cutler Album Coordinator: John McIntire Manager: John McIntire Unknown: Justin Kreutzmann Equipment Technician: Laurence "Ram Rod" Shurtliff Drums, Percussion: Mickey Hart Bass Guitar: Phil Lesh Equipment Technician: Robbie Taylor Equ...
A favorite of mine. Poor old August West. #guitar #shortsvideo #acousticguitar #shortvideo #gratefuldead
"One of the most-loved Grateful Dead songs, Ripple was one of the many standouts on American Beauty. It was played 11 times 1970-1971, and then dropped until it returned in 1980, played as the set-closing song every night during the Dead's acoustic sets. It made one final appearance on 9/3/88 in Landover, MD, before being retired for good." - David Lemieux Directed by Len Dell’Amico and co-produced by Len Dell’Amico and GDP. Subscribe! https://Rhino.lnk.to/GratefulDeadYTSubID Take a trip with our playlists.... The Grateful Dead Fundamentals https://Rhino.lnk.to/YTGratefulDead101ID Legendary Live Cuts https://Rhino.lnk.to/YTGratefulDeadAYTLiveID The Dead: Covered https://Rhino.lnk.to/YTGratefulDeadCoveredID Scintillating Bust Outs https://Rhino.lnk.to/YTGratefulDeadBustOutsID ...
The discography of the rock band the Grateful Dead includes more than 140 albums, the majority of them recorded live in concert. The band has also released more than two dozen singles and a number of videos.
The Grateful Dead formed in the San Francisco Bay Area in 1965 amid the counterculture of the 1960s. They had many musical influences, and their music evolved to a great degree over time. They made extensive use of improvisation, and are considered one of the originators of jam band music. The founding members were Jerry Garcia on guitar and vocals, Bob Weir on guitar and vocals, Phil Lesh on bass and vocals, Bill Kreutzmann on drums, and Ron "Pigpen" McKernan on organ, harmonica, percussion, and vocals. Pigpen died in 1973, but the other four remained with the band for its entire 30-year history. Second drummer Mickey Hart was also in the band for most of that time. Others who were band members at different times were keyboardists Tom Constanten, Keith Godchaux, Brent Mydland, and Vince Welnick, and vocalist Donna Jean Godchaux.
Gone are the days when the ox fall down
Take up the yoke and plow the fields around
Gone are the days when the ladies said
"Please gentle Jack Jones won't you come to me"
Brown-eyed women and red grenadine
The bottle was dusty but the liquor was clean
Sound of the thunder with the rain pourin' down
And it looks like the old man's gettin' on
1929 when he stepped to the bar
Drank to the dregs of the whiskey jar
1930 when the wall caved in
He made his way selling red-eyed gin
Brown-eyed women and red grenadine
The bottle was dusty but the liquor was clean
Sound of the thunder with the rain pourin' down
And it looks like the old man's gettin' on
Delilah Jones was the mother of twins
Two times over and the rest were sins
Raised eight boys, only I turned bad
Didn't get the lickin's that the other ones had
Brown-eyed women and red grenadine
The bottle was dusty but the liquor was clean
Sound of the thunder with the rain pourin' down
And it looks like the old man's gettin' on
Tumble down shack on Big Foot County
Snowed so hard that the roof caved in
Delilah Jones went to meet her God
And the old man never was the same again
Daddy made whiskey and he made it well
Cost two dollars and it burned like hell
I cut hick'ry just to fire the still
Drink down a bottle and be ready to kill
Brown-eyed women and red grenadine
The bottle was dusty but the liquor was clean
Sound of the thunder with the rain pourin' down
And it looks like the old man's gettin' on
Gone are the days when the ox fall down
Take up the yoke and plow the fields around
Gone are the days when the ladies said
"Please gentle Jack Jones won't you come to me"
Brown-eyed women and red grenadine
The bottle was dusty but the liquor was clean
Sound of the thunder with the rain pourin' down
And it looks like the old man's gettin' on