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

Del McCoury Band

The Del McCoury Band is a Grammy award winning bluegrass band. Originally Del McCoury and the Dixie Pals with Del on guitar and his brother Jerry on bass, the band went through a number of changes until the 1980s when the band solidified its line-up, adding McCoury's sons, Ronnie and Robbie on mandolin and banjo, respectively. In 1988, the "Dixie Pals" name was dropped in favor of the current name. Fiddler Tad Marks and bass player Mike Brantley joined in the early 1990s while the band became a national touring act. In 2004 they were nominated for the Grammy Award for Best Bluegrass Album for It's Just the Night, and in 2006 they won that category for The Company We Keep.

The band recorded with Steve Earle on his 1999 album The Mountain. The band has also often performed in recent years with The Lee Boys, with setlists mixing bluegrass, funk and gospel with extended jams on many songs.

The Travelin' McCourys are an offshoot of the Del McCoury Band, featuring all current (2009) members of the band minus Del, augmented by guitarist Cody Kilby on live performances. The Travelin' McCourys also often play joint concerts with The Lee Boys.

Del McCoury

Delano Floyd McCoury (born February 1, 1939 in York, Pennsylvania) is an American bluegrass musician. As leader of the Del McCoury Band, he plays guitar and sings lead vocals along with his two sons, Ronnie McCoury and Rob McCoury, who play mandolin and banjo respectively. In June 2010, he received a National Heritage Fellowship lifetime achievement award from the National Endowment for the Arts and in 2011 he was elected into the International Bluegrass Music Hall of Fame.

Career

McCoury has had a long career in bluegrass. Although originally hired as banjo player, he sang lead vocals and played rhythm guitar for Bill Monroe's Blue Grass Boys in 1963, with whom he first appeared on the Grand Ole Opry. McCoury briefly appeared with the Golden State Boys in 1964 before taking a series of day jobs in construction and logging, while continuing to work as an amateur musician in Maryland, Virginia and Pennsylvania.

In the 1980s his sons began performing with him. Fiddler Tad Marks and bass player Mike Brantley joined McCoury's group in early 1990s. McCoury's group toured widely throughout the US. They relocated to Nashville, Tennessee as they began to attract attention. Fiddler Jason Carter and bassist Mike Bub joined in 1992. Alan Bartram joined the band as bassist in 2005. McCoury became a member of the Grand Ole Opry in October 2003.

Podcasts:

The Del McCoury Band

ALBUMS

  • Del McCoury Band's "Vincent Black Lightning" from BLUEGRASS UNDERGROUND

    Taped 333-feet below ground, deep inside Tennessee's Cumberland Caverns, this 12-part "musical adventure" series features both well-established and top emerging artists within the broad spectrum of Bluegrass, Jamgrass, Roots & Americana genres. Band patriarch Del McCoury has impeccable traditional credentials, including an early-'60s stint with Bill Monroe, the Father of Bluegrass, a 2010 National Heritage Fellowship, and 2011 induction into the Bluegrass Hall of Fame. But the Grammy-winning singer/guitarist who personifies the "High Lonesome" sound also takes it to new frontiers playing with everyone from jam band Phish to the Preservation Hall Jazz Band. As opry.com put it, McCoury has, "proven not to be a relic of bluegrass music's past, but an architect of its future." To watch full...

    published: 13 Sep 2013
  • Del McCoury Band: NPR Music Tiny Desk Concert

    Aug. 1, 2018 | Bob Boilen -- There is a moment, near the top of this Tiny Desk concert — when three voices gather 'round a single microphone to deliver the chorus of "That Ol' Train" — that is so pure and beautiful it made my eyes well up with tears when we filmed it. Not since bluegrass legend Ralph Stanley played the Tiny Desk in 2009 have I felt vocals resonate so deeply. Del McCoury is another bluegrass legend, singing, playing guitar and writing songs for the past 60 years, including his days with the "father of bluegrass," Mr. Bill Monroe. The Del McCoury Band itself is 50 years strong, and these days includes Del's sons Robbie on banjo and Ronnie on mandolin and vocals. All are astonishing players, here joined by the five-time award-winning fiddling of Jason Carter and this year's ...

    published: 07 Aug 2018
  • Del McCoury and Billy Strings "Cant You Hear Me Calling" Grey Fox 2019

    The Del McCoury Band with Billy Strings performs Bill Monroe's "Cant You Hear Me Calling" at Grey Fox 2019. Brought to you by Less Than Face Productions. Audio by Bill K.

    published: 04 Oct 2019
  • For What It's Worth - Buffalo Springfield (Cover by Del McCoury Band and friends)

    Now Available Digitally: https://rainmaker.lnk.to/eVdJ2EM See the new release from this jam session of "One Kind Favor" (See That My Grave Is Kept Clean) - Blind Lemon Jeffeson. https://youtu.be/zsTd-SjxMX8 A few months ago, a bunch of friends got together to play music in Nashville, under the guise of prepping for DelFest. No one knew it would turn into something so special! Members of Del McCoury Band, The Travelin McCourys, Gibson Brothers, Sierra Hull, Justin Moses, Ethan Jodziewicz, Cody Kilby, and Dre Anders of Dre and the Collective told stories and sang songs, turning it into a family jam. From left to right: Justin Moses, Jason Carter, Sierra Hull, Rob McCoury, Ronnie McCoury, Del McCoury, Cody Kilby, Ethan Jodziewicz, Alan Bartram, Leigh Gibson, Dre Anders, Eric Gibson No...

    published: 14 Aug 2017
  • Del McCoury - Get Down On Your Knees and Pray [Live]

    Del McCoury - Official Video for “Get Down On Your Knees and Pray (Live)", available now! Buy the full length DVD/CD ‘Gospel Bluegrass Homecoming Vol. One' http://smarturl.it/G.B.H.V1 Available at iTunes: http://smarturl.it/G.B.H.V1.iT Sign-Up for the Gaither Newsletter and receive $5 off your next online purchase: http://smarturl.it/GaitherNewsletter Subscribe to Gaither Music YouTube Channel: http://smarturl.it/GaitherMusicTV_Subsc Subscribe to GaitherVEVO Channel: http://smarturl.it/GaitherVEVOSubscribe Subscribe to Gaither TV: http://smarturl.it/GaitherTV_Subscribe Follow Gaither Music for updates on your favorite artists. Facebook: http://smarturl.it/FB_GaitherMusic Twitter: http://smarturl.it/TW_GaitherMusic Instagram: http://smarturl.it/IG_GaitherMusic Website: http://smarturl.i...

    published: 23 Jul 2012
  • Del McCoury & Friends - Going Up The Country (Canned Heat 1968)

    https://en.wikipedia.org/wiki/Going_Up_the_Country

    published: 26 Jun 2017
  • The Del McCoury Band "All Aboard"

    The Del McCoury Band performing "All Aboard" at Music City Roots Live From The Factory on 9.22.2016

    published: 26 Sep 2016
  • Del McCoury Band w/ Tyler Childers & Ricky Skaggs-"Old Country Church" | Live at the Grand Ole Opry

    The Del McCoury Band performs “Old Country Church” with Tyler Childers and Ricky Skaggs. The Grand Ole Opry’s live broadcast on Saturday, November 18th, 2023, was a special celebration of Del McCoury’s two decades of Opry membership. Find out how to buy Opry tickets at Opry.com. Tune in to the Opry Live broadcast on Saturday nights at 9/8c pm right here on our YouTube channel! Subscribe: http://bit.ly/SubscribeOpry Get Tickets: http://bit.ly/OpryTickets Tour Backstage: http://bit.ly/BackstageOpry Book a Package: http://bit.ly/GoOpry About the Grand Ole Opry: Welcome to the Grand Ole Opry YouTube Channel, the destination for top country music performances and exclusive videos live from the Opry stage. Known worldwide as the show that made country music famous, the Opry and its You...

    published: 26 Feb 2024
  • Cheyenne - Bluegrass Boys Reunion

    From live recordings at MerleFest, Wilkesboro, NC (04/30/2005) ・Bobby Hicks (Fiddle) ・Del McCoury (Guitar, Vocals) ・Roland White (Mandolin, Vocals) ・Blake Williams (Banjo) ・Tony Ellis (Banjo) ・Richard Greene (Fiddle) ・Peter Rowan (Guitar, Vocals) ・Sharon Gilcrest (Bass?)

    published: 26 Mar 2024
  • Del McCoury Band DelFest 2022

    Did you enjoy DelFest this year? Here’s our recap of the event! Whether you got you see us live, or missed us, enjoy this great throwback with us, and get ready for January... we will see you then!

    published: 18 Nov 2022
Del McCoury Band's "Vincent Black Lightning" from BLUEGRASS UNDERGROUND
5:55

Del McCoury Band's "Vincent Black Lightning" from BLUEGRASS UNDERGROUND

  • Order:
  • Duration: 5:55
  • Uploaded Date: 13 Sep 2013
  • views: 1218525
Taped 333-feet below ground, deep inside Tennessee's Cumberland Caverns, this 12-part "musical adventure" series features both well-established and top emerging artists within the broad spectrum of Bluegrass, Jamgrass, Roots & Americana genres. Band patriarch Del McCoury has impeccable traditional credentials, including an early-'60s stint with Bill Monroe, the Father of Bluegrass, a 2010 National Heritage Fellowship, and 2011 induction into the Bluegrass Hall of Fame. But the Grammy-winning singer/guitarist who personifies the "High Lonesome" sound also takes it to new frontiers playing with everyone from jam band Phish to the Preservation Hall Jazz Band. As opry.com put it, McCoury has, "proven not to be a relic of bluegrass music's past, but an architect of its future." To watch full episodes of Bluegrass Underground check your local PBS station listings! Learn more here: bluegrassunderground.com ...and here: pbs.org/bluegrassunderground
https://wn.com/Del_Mccoury_Band's_Vincent_Black_Lightning_From_Bluegrass_Underground
Del McCoury Band: NPR Music Tiny Desk Concert
19:26

Del McCoury Band: NPR Music Tiny Desk Concert

  • Order:
  • Duration: 19:26
  • Uploaded Date: 07 Aug 2018
  • views: 403006
Aug. 1, 2018 | Bob Boilen -- There is a moment, near the top of this Tiny Desk concert — when three voices gather 'round a single microphone to deliver the chorus of "That Ol' Train" — that is so pure and beautiful it made my eyes well up with tears when we filmed it. Not since bluegrass legend Ralph Stanley played the Tiny Desk in 2009 have I felt vocals resonate so deeply. Del McCoury is another bluegrass legend, singing, playing guitar and writing songs for the past 60 years, including his days with the "father of bluegrass," Mr. Bill Monroe. The Del McCoury Band itself is 50 years strong, and these days includes Del's sons Robbie on banjo and Ronnie on mandolin and vocals. All are astonishing players, here joined by the five-time award-winning fiddling of Jason Carter and this year's International Bluegrass Music Association bass player of the year Alan Bartram. For their visit to the Tiny Desk, the group brought along some traveling songs. The first (of two) train tunes, "That Ol' Train," comes from their new album Del McCoury Still Sings Bluegrass, while their closing gospel tale "All Aboard" is a staple from 2001's Del and the Boys. The other (a motorcycle song), "1952 Vincent Black Lightning," was written by another master of his craft, British folk icon Richard Thompson, and has been a part of Del's repertoire for a while now. It shows not only the deep connection that bluegrass has to British folk music, but also Del McCoury's willingness to keep his sound fresh all these years on. These are story songs; Del is, of course, quite the storyteller, taking his time between them to reminisce. At 79 years old, he's got a lot of them tell. Set List "That Ol' Train" "1952 Vincent Black Lightning" "All Aboard" Musicians Del McCoury (vocals, guitar), Ronnie McCoury (mandolin), Rob McCoury (banjo), Alan Bartram (bass), Jason Carter (fiddle) Credits Producers: Bob Boilen, Morgan Noelle Smith; Creative Director: Bob Boilen; Audio Engineer: Josh Rogosin; Videographers: Morgan Noelle Smith, Bronson Arcuri, Khun Minn Ohn; Production Assistants: Catherine Zhang, Téa Mottolese; Photo: Samantha Clark/NPR.
https://wn.com/Del_Mccoury_Band_Npr_Music_Tiny_Desk_Concert
Del McCoury and Billy Strings "Cant You Hear Me Calling" Grey Fox 2019
3:32

Del McCoury and Billy Strings "Cant You Hear Me Calling" Grey Fox 2019

  • Order:
  • Duration: 3:32
  • Uploaded Date: 04 Oct 2019
  • views: 2270164
The Del McCoury Band with Billy Strings performs Bill Monroe's "Cant You Hear Me Calling" at Grey Fox 2019. Brought to you by Less Than Face Productions. Audio by Bill K.
https://wn.com/Del_Mccoury_And_Billy_Strings_Cant_You_Hear_Me_Calling_Grey_Fox_2019
For What It's Worth - Buffalo Springfield (Cover by Del McCoury Band and friends)
6:42

For What It's Worth - Buffalo Springfield (Cover by Del McCoury Band and friends)

  • Order:
  • Duration: 6:42
  • Uploaded Date: 14 Aug 2017
  • views: 3584134
Now Available Digitally: https://rainmaker.lnk.to/eVdJ2EM See the new release from this jam session of "One Kind Favor" (See That My Grave Is Kept Clean) - Blind Lemon Jeffeson. https://youtu.be/zsTd-SjxMX8 A few months ago, a bunch of friends got together to play music in Nashville, under the guise of prepping for DelFest. No one knew it would turn into something so special! Members of Del McCoury Band, The Travelin McCourys, Gibson Brothers, Sierra Hull, Justin Moses, Ethan Jodziewicz, Cody Kilby, and Dre Anders of Dre and the Collective told stories and sang songs, turning it into a family jam. From left to right: Justin Moses, Jason Carter, Sierra Hull, Rob McCoury, Ronnie McCoury, Del McCoury, Cody Kilby, Ethan Jodziewicz, Alan Bartram, Leigh Gibson, Dre Anders, Eric Gibson None of us were quite sure why we cut the song back in May, but thought we might find a need for it down the road. I guess after this past weekend's events in Charlottesville the need is here. Here's our cover of Buffalo Springfield's iconic protest song, "For What It's Worth". For another great cover head over to The Gibson Brothers and catch another Del & Friends Session: View here: https://youtu.be/6Y4HVEU3PIs
https://wn.com/For_What_It's_Worth_Buffalo_Springfield_(Cover_By_Del_Mccoury_Band_And_Friends)
Del McCoury - Get Down On Your Knees and Pray [Live]
4:07

Del McCoury - Get Down On Your Knees and Pray [Live]

  • Order:
  • Duration: 4:07
  • Uploaded Date: 23 Jul 2012
  • views: 276208
Del McCoury - Official Video for “Get Down On Your Knees and Pray (Live)", available now! Buy the full length DVD/CD ‘Gospel Bluegrass Homecoming Vol. One' http://smarturl.it/G.B.H.V1 Available at iTunes: http://smarturl.it/G.B.H.V1.iT Sign-Up for the Gaither Newsletter and receive $5 off your next online purchase: http://smarturl.it/GaitherNewsletter Subscribe to Gaither Music YouTube Channel: http://smarturl.it/GaitherMusicTV_Subsc Subscribe to GaitherVEVO Channel: http://smarturl.it/GaitherVEVOSubscribe Subscribe to Gaither TV: http://smarturl.it/GaitherTV_Subscribe Follow Gaither Music for updates on your favorite artists. Facebook: http://smarturl.it/FB_GaitherMusic Twitter: http://smarturl.it/TW_GaitherMusic Instagram: http://smarturl.it/IG_GaitherMusic Website: http://smarturl.it/gaither.com LYRICS: Oh, my brother Can't you hear me say Oh, my brother You'd better get down on your knees and pray Get down, get down, get down, get down Get down on your knees and pray Get down, get down, get down, get down Get down on your knees and pray Oh, sister Can't you hear me say Oh, sister You'd better get down on your knees and pray Get down, get down, get down, get down Get down on your knees and pray Get down, get down, get down, get down Get down on your knees and pray Oh, preacher Can't you hear me say Oh, preacher You'd better get down on your knees and pray Get down, get down, get down, get down Get down on your knees and pray Get down, get down, get down, get down Get down on your knees and Get down on your knees and pray Music video by Bill & Gloria Gaither performing Get Down On Your Knees and Pray (feat. Del McCoury) [Live]. (P) (C) 2012 Spring House Music Group. All rights reserved. Unauthorized reproduction is a violation of applicable laws. Manufactured by EMI Christian Music Group,
https://wn.com/Del_Mccoury_Get_Down_On_Your_Knees_And_Pray_Live
Del McCoury & Friends - Going Up The Country (Canned Heat 1968)
4:12

Del McCoury & Friends - Going Up The Country (Canned Heat 1968)

  • Order:
  • Duration: 4:12
  • Uploaded Date: 26 Jun 2017
  • views: 1706554
https://en.wikipedia.org/wiki/Going_Up_the_Country
https://wn.com/Del_Mccoury_Friends_Going_Up_The_Country_(Canned_Heat_1968)
The Del McCoury Band "All Aboard"
4:26

The Del McCoury Band "All Aboard"

  • Order:
  • Duration: 4:26
  • Uploaded Date: 26 Sep 2016
  • views: 495477
The Del McCoury Band performing "All Aboard" at Music City Roots Live From The Factory on 9.22.2016
https://wn.com/The_Del_Mccoury_Band_All_Aboard
Del McCoury Band w/ Tyler Childers & Ricky Skaggs-"Old Country Church" | Live at the Grand Ole Opry
4:20

Del McCoury Band w/ Tyler Childers & Ricky Skaggs-"Old Country Church" | Live at the Grand Ole Opry

  • Order:
  • Duration: 4:20
  • Uploaded Date: 26 Feb 2024
  • views: 658729
The Del McCoury Band performs “Old Country Church” with Tyler Childers and Ricky Skaggs. The Grand Ole Opry’s live broadcast on Saturday, November 18th, 2023, was a special celebration of Del McCoury’s two decades of Opry membership. Find out how to buy Opry tickets at Opry.com. Tune in to the Opry Live broadcast on Saturday nights at 9/8c pm right here on our YouTube channel! Subscribe: http://bit.ly/SubscribeOpry Get Tickets: http://bit.ly/OpryTickets Tour Backstage: http://bit.ly/BackstageOpry Book a Package: http://bit.ly/GoOpry About the Grand Ole Opry: Welcome to the Grand Ole Opry YouTube Channel, the destination for top country music performances and exclusive videos live from the Opry stage. Known worldwide as the show that made country music famous, the Opry and its YouTube home feature the new stars, superstars, and legends of country music, including Dolly Parton, Garth Brooks, Vince Gill, Darius Rucker, Blake Shelton, Carrie Underwood, and Keith Urban, to name just a few. Connect with The Grand Ole Opry: WEBSITE: http://bit.ly/GrandOleOpry FACEBOOK: http://bit.ly/GrandOpryFB INSTAGRAM: http://bit.ly/OpryInsta TWITTER: http://bit.ly/OpryTweets Del McCoury Band w/ Tyler Childers & Ricky Skaggs-"Old Country Church" | Live at the Grand Ole Opry http://www.youtube.com/user/OpryLive
https://wn.com/Del_Mccoury_Band_W_Tyler_Childers_Ricky_Skaggs_Old_Country_Church_|_Live_At_The_Grand_Ole_Opry
Cheyenne - Bluegrass Boys Reunion
2:43

Cheyenne - Bluegrass Boys Reunion

  • Order:
  • Duration: 2:43
  • Uploaded Date: 26 Mar 2024
  • views: 29
From live recordings at MerleFest, Wilkesboro, NC (04/30/2005) ・Bobby Hicks (Fiddle) ・Del McCoury (Guitar, Vocals) ・Roland White (Mandolin, Vocals) ・Blake Williams (Banjo) ・Tony Ellis (Banjo) ・Richard Greene (Fiddle) ・Peter Rowan (Guitar, Vocals) ・Sharon Gilcrest (Bass?)
https://wn.com/Cheyenne_Bluegrass_Boys_Reunion
Del McCoury Band DelFest 2022
1:24:05

Del McCoury Band DelFest 2022

  • Order:
  • Duration: 1:24:05
  • Uploaded Date: 18 Nov 2022
  • views: 42190
Did you enjoy DelFest this year? Here’s our recap of the event! Whether you got you see us live, or missed us, enjoy this great throwback with us, and get ready for January... we will see you then!
https://wn.com/Del_Mccoury_Band_Delfest_2022
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Del McCoury Band's
    5:55
    Del McCoury Band's "Vincent Black Lightning" from BLUEGRASS UNDERGROUNDremove from playlist
  • Del McCoury Band: NPR Music Tiny Desk Concert
    19:26
    Del McCoury Band: NPR Music Tiny Desk Concertremove from playlist
  • Del McCoury and Billy Strings
    3:32
    Del McCoury and Billy Strings "Cant You Hear Me Calling" Grey Fox 2019remove from playlist
  • For What It's Worth - Buffalo Springfield (Cover by Del McCoury Band and friends)
    6:42
    For What It's Worth - Buffalo Springfield (Cover by Del McCoury Band and friends)remove from playlist
  • Del McCoury - Get Down On Your Knees and Pray [Live]
    4:07
    Del McCoury - Get Down On Your Knees and Pray [Live]remove from playlist
  • The Del McCoury Band
    4:26
    The Del McCoury Band "All Aboard"remove from playlist
  • Del McCoury Band w/ Tyler Childers & Ricky Skaggs-
    4:20
    Del McCoury Band w/ Tyler Childers & Ricky Skaggs-"Old Country Church" | Live at the Grand Ole Opryremove from playlist
  • Cheyenne - Bluegrass Boys Reunion
    2:43
    Cheyenne - Bluegrass Boys Reunionremove from playlist
  • Del McCoury Band DelFest 2022
    1:24:05
    Del McCoury Band DelFest 2022remove from playlist
PLAYLIST TIME:

Del McCoury Band's "Vincent Black Lightning" from BLUEGRASS UNDERGROUND

Taped 333-feet below ground, deep inside Tennessee's Cumberland Caverns, this 12-part "musical adventure" series features both well-established and top emerging artists within the broad spectrum of Bluegrass, Jamgrass, Roots & Americana genres. Band patriarch Del McCoury has impeccable traditional credentials, including an early-'60s stint with Bill Monroe, the Father of Bluegrass, a 2010 National Heritage Fellowship, and 2011 induction into the Bluegrass Hall of Fame. But the Grammy-winning singer/guitarist who personifies the "High Lonesome" sound also takes it to new frontiers playing with everyone from jam band Phish to the Preservation Hall Jazz Band. As opry.com put it, McCoury has, "proven not to be a relic of bluegrass music's past, but an architect of its future." To watch full episodes of Bluegrass Underground check your local PBS station listings! Learn more here: bluegrassunderground.com ...and here: pbs.org/bluegrassunderground
5:55
Del McCoury Band's "Vincent Black Lightning" from BLUEGRASS UNDERGROUND
Taped 333-feet below ground, deep inside Tennessee's Cumberland Caverns, this 12-part "mus...
published: 13 Sep 2013
Play in Full Screen
19:26
Del McCoury Band: NPR Music Tiny Desk Concert
Aug. 1, 2018 | Bob Boilen -- There is a moment, near the top of this Tiny Desk concert — w...
published: 07 Aug 2018
Play in Full Screen
3:32
Del McCoury and Billy Strings "Cant You Hear Me Calling" Grey Fox 2019
The Del McCoury Band with Billy Strings performs Bill Monroe's "Cant You Hear Me Calling" ...
published: 04 Oct 2019
Play in Full Screen
6:42
For What It's Worth - Buffalo Springfield (Cover by Del McCoury Band and friends)
Now Available Digitally: https://rainmaker.lnk.to/eVdJ2EM See the new release from this...
published: 14 Aug 2017
Play in Full Screen
4:07
Del McCoury - Get Down On Your Knees and Pray [Live]
Del McCoury - Official Video for “Get Down On Your Knees and Pray (Live)", available now! ...
published: 23 Jul 2012
Play in Full Screen
4:12
Del McCoury & Friends - Going Up The Country (Canned Heat 1968)
https://en.wikipedia.org/wiki/Going_Up_the_Country
published: 26 Jun 2017
Play in Full Screen
4:26
The Del McCoury Band "All Aboard"
The Del McCoury Band performing "All Aboard" at Music City Roots Live From The Factory on ...
published: 26 Sep 2016
Play in Full Screen
4:20
Del McCoury Band w/ Tyler Childers & Ricky Skaggs-"Old Country Church" | Live at the Grand Ole Opry
The Del McCoury Band performs “Old Country Church” with Tyler Childers and Ricky Skaggs. T...
published: 26 Feb 2024
Play in Full Screen
2:43
Cheyenne - Bluegrass Boys Reunion
From live recordings at MerleFest, Wilkesboro, NC (04/30/2005) ・Bobby Hicks (Fiddle) ・Del ...
published: 26 Mar 2024
Play in Full Screen
1:24:05
Del McCoury Band DelFest 2022
Did you enjoy DelFest this year? Here’s our recap of the event! Whether you got you see us...
published: 18 Nov 2022
Play in Full Screen

Del McCoury Band

The Del McCoury Band is a Grammy award winning bluegrass band. Originally Del McCoury and the Dixie Pals with Del on guitar and his brother Jerry on bass, the band went through a number of changes until the 1980s when the band solidified its line-up, adding McCoury's sons, Ronnie and Robbie on mandolin and banjo, respectively. In 1988, the "Dixie Pals" name was dropped in favor of the current name. Fiddler Tad Marks and bass player Mike Brantley joined in the early 1990s while the band became a national touring act. In 2004 they were nominated for the Grammy Award for Best Bluegrass Album for It's Just the Night, and in 2006 they won that category for The Company We Keep.

The band recorded with Steve Earle on his 1999 album The Mountain. The band has also often performed in recent years with The Lee Boys, with setlists mixing bluegrass, funk and gospel with extended jams on many songs.

The Travelin' McCourys are an offshoot of the Del McCoury Band, featuring all current (2009) members of the band minus Del, augmented by guitarist Cody Kilby on live performances. The Travelin' McCourys also often play joint concerts with The Lee Boys.

'); } 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: del mccoury band

Edit

Top 5 things to do this weekend in Naples, Bonita: Enjoy some bluegrass, blues music

Naples Daily News 02 Apr 2025
49th Annual St. Patrick's Day Parade in Naples. 49th Annual St ... The Del McCoury Band and Rhonda Vincent & The Rage headline the annual event. The lineup also features The Infamous Stringdusters, The Travelin’ McCourys, Alligator Alley and more ... Free ... 3 ... 1.
Edit

Live bands in Fort Myers, Naples: Bluegrass, blues, country, jazz and more April shows

News-Press - Fort Myers 01 Apr 2025
A bluegrass festival headlined by The Del McCoury and Rhonda Vincent & The Rage ... Bluegrass stars The Del McCoury Band and Rhonda Vincent & The Rage headline the annual music festival.
  • 1
×