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

Roy Book Binder

Roy Book Binder (born October 5, 1943) is an American blues guitarist, singer songwriter and storyteller. A student and friend of the Rev. Gary Davis, he is equally at home with blues and ragtime, he is known to shift from open tunings to slide arrangements to original compositions, with both traditional and self-styled licks. His storytelling emphasis is another characteristic that makes his style unique.

Life and career

Book Binder was born in Queens, New York, United States. Upon graduation from high school, he joined the Navy and undertook a tour of duty in Europe. He bought his first guitar at a military base in Italy. After his enlistment was up, he returned to New York where he met his guitar hero, and became friends with Dave Van Ronk. Book Binder soon sought out Davis who also lived in New York, and became first a student of Davis and later a chauffeur and tour companion. Much of Bookbinder's original material was based on his time on the road with Davis.

By the mid-to-late 1960s Book Binder was recording for both Kicking Mule and Blue Goose Records. In 1969, he toured England with Arthur "Big Boy" Crudup and Homesick James.

Delta blues

The Delta blues is one of the earliest styles of blues music. It originated in the Mississippi Delta, a region of the United States that stretches from Memphis, Tennessee in the north to Vicksburg, Mississippi in the south, Helena, Arkansas in the west to the Yazoo River on the east. The Mississippi Delta area is famous both for its fertile soil and its poverty. Guitar and harmonica are the dominant instruments used, with slide guitar (usually on the steel guitar) being a hallmark of the style. The vocal styles range from introspective and soulful to passionate and fiery. Delta blues is also regarded as a regional variation of country blues.

Origin

Although Delta blues certainly existed in some form or another at the turn of the 20th century, it was first recorded in the late 1920s, when record companies realized the potential African American market in Race records. The ‘major’ labels produced the earliest recordings and consisted mostly of one person singing and playing an instrument; however, the use of a band was more common during live performances. Current belief is that Freddie Spruell is the first Delta blues artist recorded, as he waxed "Milk Cow Blues" in Chicago in June 1926. Record company talent scouts made some of these early recordings on 'field trips' to the South; however, the labels invited some Delta blues performers to travel to northern cities to record. According to Dixon & Godrich [1981], Tommy Johnson and Ishman Bracey were recorded by Victor on that company's second field trip to Memphis, in 1928. Robert Wilkins was first recorded by Victor in Memphis in 1928, and Big Joe Williams and Garfield Akers also in Memphis (1929) by Brunswick/Vocalion.

Delta Blues (horse)

Delta Blues (デルタブルース, born 3 May 2001) is a Japanese Thoroughbred racehorse best known for winning the 2006 Melbourne Cup. He was the first Japanese horse to win the Cup. In doing so he defeated Pop Rock, another Japanese horse, also trained by Katsuhiko Sumii.

Racing career

Delta Blues was virtually unknown until he had his victory in the 2004 Kikuka Sho. He defeated Heart's Cry and Cosmo Bulk then. Delta Blues placed third in the Japan Cup in November 2004.

Other runs by Delta Blues include wins in the Domestic Grade One Kikuka Sho (Japanese St Leger) in October 2004, the Domestic Grade Two Stayers Stakes in December 2005, a third in the Grade Two Hanshin Daishoten on 19 March 2006 fifth in the Arima Kinen, and 10th in the Domestic Grade One Tenno Sho (Spring) on 30 April 30.

Delta Blues won the Best Horse by Home-Bred Sire JRA award in 2004.

2006 in Australia

Taken to Australia Delta Blues finished third in the 2006 Caulfield Cup after racing wide throughout the race.

Delta Blues (film)

Delta Blues (subtitled: In a Land of Cotton) is a documentary film shot in 2000. The movie deals with the environmental problems emanating from the drying up of the Aral Sea, and the impact this has on political relationships in the Central Asian region (especially Uzbekistan, Kazakhstan, Kyrgyzstan, and Turkmenistan). In particular, it focuses on the document Water-related vision for the Aral Sea basin for the year 2025 by UNESCO, as presented in 2000 at the 2nd World Water Forum in The Hague. This document has been criticized for setting unrealistic goals, and also, by focusing on the entire basin (south-west Kazakhstan, Uzbekistan, Turkmenistan), for implicitly giving up on the Aral Sea and the people living downstream in Karakalpakstan.

Summary

The cause of the drying up of the Aral Sea is the extensive irrigation, used for the production of (mainly) cotton. Apart from cotton being a thirsty crop, the irrigation canals are very inefficient and much water is wasted. Furthermore, the water that is returned to the rivers is highly polluted (with pesticides and fertilizers). There is however no incentive to change the irresponsible use of water in the region. Water is an externality, regarded as given by nature or God. This leads to a situation where those (countries, regions or farms) who use most of the available water, benefit the most, but do not pay for it, leaving others (living downstream) with less and polluted water.

Podcasts:

  • Delta Blues Sounds Best Of The Mississippi Delta's Stars

    Delta Blues Sounds Best Of The Mississippi Delta's Stars Delta Blues Sounds Best Of The Mississippi Delta's Stars Delta Blues Sounds Best Of The Mississippi Delta's Stars

    published: 29 Nov 2020
  • HEAVY DELTA BLUES

    🎸DOWNLOADABLE TABS FOR THIS SONG: https://www.musicnotes.com/l/h6lWW This track is included on "The Bootleg Series Vol. 2: Whiskey Sippin' Music" AVAILABLE at https://justinjohnsonstore.com TUNING: OPEN D: D-A-D-F#-A-D GEAR: • Mystery Resonator Guitar • @justinjohnsonlive Signature Ceramic Guitar Slide & Signature Thumbpick • 12-Bar Blues Resonator Guitar Pickup • @beyerdynamic M160 Ribbon Mic • @APIAudioOfficial BOX Console • @HughesandKettneramps GarndMeister Deluxe 40 🔥 SUBSCRIBE: https://bit.ly/JustinJohnsonSubscribe 📀 STORE: https://justinjohnsonstore.com/ 🎸 LESSONS: https://justinjohnsonstore.com/collections/guitar-instruction ⚫️ FACEBOOK: https://www.facebook.com/JustinJohnsonLive/ ⚫️ INSTAGRAM: https://www.instagram.com/justinjohnsonlive/ ⚫️ SPOTIFY: https://bit.ly/Justi...

    published: 15 Mar 2020
  • OLD-SCHOOL ACOUSTIC BLUES - Laid-Back Delta Blues on the Resonator Guitar

    Want to drift off to the country, kick back on the porch, & chill out to some acoustic blues guitar? Here's your free ticket! Want more music like this? Check out @justinjohnsonlive albums at: https://www.justinjohnsonstore.com TRACK LIST: 00:00 - "Skinny Dippin'" - Album: "The Bootleg Series Vol. 4: Delta Moon" 04:49 - "Shot Glass Slidin'" - Album: ""The Bootleg Series Vol. 2: Whiskey Sippin' Music" 09:39 - "ZZ Top Medley / Tush" 13:24 - "The Ballad of Curtis Loew" - Lynyrd Skynyrd 18:23 - "Ponytails & Knee-Highs" 21:22 - "Hoochie Coochie Man" Album: "The Bootleg Series Vol. 2: Whiskey Sippin' Music" 25:29 - "Black Mountain Slide" 29:35 - "Whiskey Sippin' Music" Album: "The Bootleg Series Vol. 2: Whiskey Sippin' Music" 36:15 - "Sharp Dressed Man" - ZZ Top 39:28 - "Traveling Riverside B...

    published: 03 Feb 2022
  • Unveiling the Soulful Secrets of Delta Blues Music! Volume 1

    Ambient blues music to help get your soul in the right mood for a long day. Featuring delta blues, Mississippi blues, and traditional blue instrumentals. Like and Subscribe for more updates and great music. Find us on Instagram: https://instagram.com/gearambient?igshid=NTc4MTIwNjQ2YQ==jazz bluesblues songswhiskey bluesblues playlist #blues guitar #blues mix #electric blues #relaxing blues #relaxing blues music #blues rock #modern blues #blues jazz #blues rock music #mississippi delta blues #highway 61 blues #soulful blues #roadhouse #blue guitar

    published: 07 Jul 2022
  • Delta Blues Music - Relaxing Dark Country Blues Music played on Guitar

    Great playlist of delta blues! Enjoy this instrumental mix of dark country blues music by Brian Grey Welcome to our Blues Lounge channel! We're a band of musicians performing under one alias Brian Grey. Our music can be best described as a modern fusion between blues, rock and jazz genres. © All music and videos are produced by us and are copyrighted. Listen on Spotify: https://open.spotify.com/artist/0anlv8wmuRThghL7Fw4xDS Apple Music: https://music.apple.com/us/artist/brian-grey/1556349792 b049

    published: 29 Nov 2021
  • Easy Slow Delta Blues Lesson

    🎸Start Playing Fingerstyle Acoustic Blues: https://mybgi.co/bpb331 🎸Go Deep with Over 70 Step-by-Step Blues Courses: https://mybgi.net/3hsl5R5 Many of us think of Delta Blues immediately when we think about blues at all. It's dark, brooding, and has that vibe that draws so many into the blues. Think Robert Johnson, Son House, and early Muddy Waters. In this lesson, we'll take a look at some of the simpler Delta Blues riffs inspired by these legends and chain them together into a nice twelve-bar delta blues number. Good luck and... Play On! John #tuesdayblues #acousticblues #playbetterblues ► Lesson Page: https://mybgi.net/2Jsr0cd ► Free Mini Course: https://mybgi.net/2WSX2kO ► BGI Premium Membership: https://mybgi.net/3hsl5R5 =============================================== ...

    published: 29 Dec 2020
  • If MISSISSIPPI QUEEN was Delta Blues • Slide Guitar Classic Rock Cover

    During my last Concert Livestream, @jdubbs9655 requested "Mississsippi Queen".. I told you all I'd be hitting those requests that I can't get to on the livestreams, and uploading them to the channel here when I can, so this one's for you, JDUBBS! Thanks for tuning in to the livestreams and shooting those requests out! 🎸Join the Members-only section for Guitar Lessons from Justin Johnson: https://www.youtube.com/justinjohnsonlive/join 🎸 Guitar tab for this one available at: https://www.musicnotes.com/l/5D5Np TUNING: • Open E Tuning: E-B-E-G#-B-E GEAR: • Mule Resophonic Tri-Cone Resonator Guitar • Justin Johnson Signature Hybrid Thumb Pick • Justin Johnson Signature Ceramic Guitar Slide • @HughesandKettneramps GrandMeister Deluxe 40 Guitar Amp 🎥 / Cowbell / Tooth-Blacker-Outer: Nikki ...

    published: 12 Feb 2024
  • BLUES GUITAR MUSIC • One Hour of Delta Blues Slide Guitar

    Whether you're working, relaxing, cooking, cleaning, drinking, playing video games, taking a road trip, taking a mind trip, meditating, singing in the shower, eating, grilling, playing pool, swimming in a pool, walking the dog, cleaning the litterbox, feeding your goldfish, or petting your porcupine... I've got the Best Delta Blues Guitar Playlist for You! Over an hour long, so you can zone in, zone out, chill out, shut in, shut up, or shut out whatever you want! If you want more music like this check out @justinjohnsonlive albums at https://justinjohnsonstore.com 🔥 SUBSCRIBE: https://bit.ly/JustinJohnsonSubscribe 📀 STORE: https://justinjohnsonstore.com/ 🎸 LESSONS: https://justinjohnsonstore.com/collections/guitar-instruction ⚫️ FACEBOOK: https://www.facebook.com/JustinJohnsonLive/ ⚫️...

    published: 28 Dec 2020
  • Don't Mess With My Man (Live)

    Provided to YouTube by Malaco Music Group Don't Mess With My Man (Live) · Denise Lasalle Divas In The Delta: Live In Greenwood, MS ℗ 2005 Malaco Records Released on: 2005-04-26 Main Artist: Denise Lasalle Composer: Denise Lasalle Music Publisher: Malaco Music Company Music Publisher: Peermusic III LTD Music Publisher: Malaco World Music Auto-generated by YouTube.

    published: 23 Feb 2024
  • Delta Blues Band - Look Over Younder (2011)

    Troels Jensen: piano, guitar & vocal - Jørgen Lang: harp - Hans Fragt: drums - Thomas Puggaard-Müller: guitar - Søren Bøjgaard: bass - An amateur footage shot at Toldbod Plads in Aalborg, Denmark - during Aalborg Jazz & Blues Festival - 20th August 2011

    published: 02 Sep 2011
Delta Blues Sounds   Best Of The Mississippi Delta's Stars
2:07:14

Delta Blues Sounds Best Of The Mississippi Delta's Stars

  • Order:
  • Duration: 2:07:14
  • Uploaded Date: 29 Nov 2020
  • views: 334948
Delta Blues Sounds Best Of The Mississippi Delta's Stars Delta Blues Sounds Best Of The Mississippi Delta's Stars Delta Blues Sounds Best Of The Mississippi Delta's Stars
https://wn.com/Delta_Blues_Sounds_Best_Of_The_Mississippi_Delta's_Stars
HEAVY DELTA BLUES
3:23

HEAVY DELTA BLUES

  • Order:
  • Duration: 3:23
  • Uploaded Date: 15 Mar 2020
  • views: 1509430
🎸DOWNLOADABLE TABS FOR THIS SONG: https://www.musicnotes.com/l/h6lWW This track is included on "The Bootleg Series Vol. 2: Whiskey Sippin' Music" AVAILABLE at https://justinjohnsonstore.com TUNING: OPEN D: D-A-D-F#-A-D GEAR: • Mystery Resonator Guitar • @justinjohnsonlive Signature Ceramic Guitar Slide & Signature Thumbpick • 12-Bar Blues Resonator Guitar Pickup • @beyerdynamic M160 Ribbon Mic • @APIAudioOfficial BOX Console • @HughesandKettneramps GarndMeister Deluxe 40 🔥 SUBSCRIBE: https://bit.ly/JustinJohnsonSubscribe 📀 STORE: https://justinjohnsonstore.com/ 🎸 LESSONS: https://justinjohnsonstore.com/collections/guitar-instruction ⚫️ FACEBOOK: https://www.facebook.com/JustinJohnsonLive/ ⚫️ INSTAGRAM: https://www.instagram.com/justinjohnsonlive/ ⚫️ SPOTIFY: https://bit.ly/JustinJohnsonSpotify ⚫️ ITUNES: https://bit.ly/JustinJohnsoniTunes #resonator #blues #guitar #justinjohnson #acoustic #electric #deltablues
https://wn.com/Heavy_Delta_Blues
OLD-SCHOOL ACOUSTIC BLUES - Laid-Back Delta Blues on the Resonator Guitar
56:49

OLD-SCHOOL ACOUSTIC BLUES - Laid-Back Delta Blues on the Resonator Guitar

  • Order:
  • Duration: 56:49
  • Uploaded Date: 03 Feb 2022
  • views: 2508781
Want to drift off to the country, kick back on the porch, & chill out to some acoustic blues guitar? Here's your free ticket! Want more music like this? Check out @justinjohnsonlive albums at: https://www.justinjohnsonstore.com TRACK LIST: 00:00 - "Skinny Dippin'" - Album: "The Bootleg Series Vol. 4: Delta Moon" 04:49 - "Shot Glass Slidin'" - Album: ""The Bootleg Series Vol. 2: Whiskey Sippin' Music" 09:39 - "ZZ Top Medley / Tush" 13:24 - "The Ballad of Curtis Loew" - Lynyrd Skynyrd 18:23 - "Ponytails & Knee-Highs" 21:22 - "Hoochie Coochie Man" Album: "The Bootleg Series Vol. 2: Whiskey Sippin' Music" 25:29 - "Black Mountain Slide" 29:35 - "Whiskey Sippin' Music" Album: "The Bootleg Series Vol. 2: Whiskey Sippin' Music" 36:15 - "Sharp Dressed Man" - ZZ Top 39:28 - "Traveling Riverside Blues" Album: "The Bootleg Series Vol. 5: Blood Moon" 45:11 - "Worn Out Shoes" Album: "The Bootleg Series Vol. 5: Blood Moon" 51:34 - "Peaches & Biscuits" 🔥 SUBSCRIBE: https://bit.ly/JustinJohnsonSubscribe 📀 STORE: https://justinjohnsonstore.com/ 🎸 LESSONS: https://justinjohnsonstore.com/collections/guitar-instruction ⚫️ FACEBOOK: https://www.facebook.com/JustinJohnsonLive/ ⚫️ INSTAGRAM: https://www.instagram.com/justinjohnsonlive/ ⚫️ SPOTIFY: https://bit.ly/JustinJohnsonSpotify ⚫️ ITUNES: https://bit.ly/JustinJohnsoniTunes 🎸Guitar Tabs for all of my arrangements of cover songs are available at https://www.musicnotes.com/sheet-music/artist/justin-johnson 🎸Tabs for my originals are available at https://www.justinjohnsonstore.com #acoustic #blues #guitar
https://wn.com/Old_School_Acoustic_Blues_Laid_Back_Delta_Blues_On_The_Resonator_Guitar
Unveiling the Soulful Secrets of Delta Blues Music! Volume 1
1:01:06

Unveiling the Soulful Secrets of Delta Blues Music! Volume 1

  • Order:
  • Duration: 1:01:06
  • Uploaded Date: 07 Jul 2022
  • views: 82947
Ambient blues music to help get your soul in the right mood for a long day. Featuring delta blues, Mississippi blues, and traditional blue instrumentals. Like and Subscribe for more updates and great music. Find us on Instagram: https://instagram.com/gearambient?igshid=NTc4MTIwNjQ2YQ==jazz bluesblues songswhiskey bluesblues playlist #blues guitar #blues mix #electric blues #relaxing blues #relaxing blues music #blues rock #modern blues #blues jazz #blues rock music #mississippi delta blues #highway 61 blues #soulful blues #roadhouse #blue guitar
https://wn.com/Unveiling_The_Soulful_Secrets_Of_Delta_Blues_Music_Volume_1
Delta Blues Music - Relaxing Dark Country Blues Music played on Guitar
8:00:00

Delta Blues Music - Relaxing Dark Country Blues Music played on Guitar

  • Order:
  • Duration: 8:00:00
  • Uploaded Date: 29 Nov 2021
  • views: 30941
Great playlist of delta blues! Enjoy this instrumental mix of dark country blues music by Brian Grey Welcome to our Blues Lounge channel! We're a band of musicians performing under one alias Brian Grey. Our music can be best described as a modern fusion between blues, rock and jazz genres. © All music and videos are produced by us and are copyrighted. Listen on Spotify: https://open.spotify.com/artist/0anlv8wmuRThghL7Fw4xDS Apple Music: https://music.apple.com/us/artist/brian-grey/1556349792 b049
https://wn.com/Delta_Blues_Music_Relaxing_Dark_Country_Blues_Music_Played_On_Guitar
Easy Slow Delta Blues Lesson
14:26

Easy Slow Delta Blues Lesson

  • Order:
  • Duration: 14:26
  • Uploaded Date: 29 Dec 2020
  • views: 1372833
🎸Start Playing Fingerstyle Acoustic Blues: https://mybgi.co/bpb331 🎸Go Deep with Over 70 Step-by-Step Blues Courses: https://mybgi.net/3hsl5R5 Many of us think of Delta Blues immediately when we think about blues at all. It's dark, brooding, and has that vibe that draws so many into the blues. Think Robert Johnson, Son House, and early Muddy Waters. In this lesson, we'll take a look at some of the simpler Delta Blues riffs inspired by these legends and chain them together into a nice twelve-bar delta blues number. Good luck and... Play On! John #tuesdayblues #acousticblues #playbetterblues ► Lesson Page: https://mybgi.net/2Jsr0cd ► Free Mini Course: https://mybgi.net/2WSX2kO ► BGI Premium Membership: https://mybgi.net/3hsl5R5 =============================================== POSTING SCHEDULE New Acoustic Blues guitar lesson posted every single Tuesday. SUBSCRIBE to learn how to play Great Acoustic Blues! http://bit.ly/2wGVJsy CHECK OUT ALL THE TUESDAY BLUES LESSONS: http://www.bluesguitarinstitute.com/tuesdayblues
https://wn.com/Easy_Slow_Delta_Blues_Lesson
If MISSISSIPPI QUEEN was Delta Blues • Slide Guitar Classic Rock Cover
3:11

If MISSISSIPPI QUEEN was Delta Blues • Slide Guitar Classic Rock Cover

  • Order:
  • Duration: 3:11
  • Uploaded Date: 12 Feb 2024
  • views: 87790
During my last Concert Livestream, @jdubbs9655 requested "Mississsippi Queen".. I told you all I'd be hitting those requests that I can't get to on the livestreams, and uploading them to the channel here when I can, so this one's for you, JDUBBS! Thanks for tuning in to the livestreams and shooting those requests out! 🎸Join the Members-only section for Guitar Lessons from Justin Johnson: https://www.youtube.com/justinjohnsonlive/join 🎸 Guitar tab for this one available at: https://www.musicnotes.com/l/5D5Np TUNING: • Open E Tuning: E-B-E-G#-B-E GEAR: • Mule Resophonic Tri-Cone Resonator Guitar • Justin Johnson Signature Hybrid Thumb Pick • Justin Johnson Signature Ceramic Guitar Slide • @HughesandKettneramps GrandMeister Deluxe 40 Guitar Amp 🎥 / Cowbell / Tooth-Blacker-Outer: Nikki 🔥 SUBSCRIBE: https://bit.ly/JustinJohnsonSubscribe 📀 STORE: https://justinjohnsonstore.com/ 🎸 LESSONS: https://justinjohnsonstore.com/collections/guitar-instruction ⚫️ FACEBOOK: https://www.facebook.com/JustinJohnsonLive/ ⚫️ INSTAGRAM: https://www.instagram.com/justinjohnsonlive/ ⚫️ SPOTIFY: https://bit.ly/JustinJohnsonSpotify ⚫️ ITUNES: https://bit.ly/JustinJohnsoniTunes #MOUNTAIN #GUITAR #COVER
https://wn.com/If_Mississippi_Queen_Was_Delta_Blues_•_Slide_Guitar_Classic_Rock_Cover
BLUES GUITAR MUSIC • One Hour of Delta Blues Slide Guitar
1:02:48

BLUES GUITAR MUSIC • One Hour of Delta Blues Slide Guitar

  • Order:
  • Duration: 1:02:48
  • Uploaded Date: 28 Dec 2020
  • views: 1429478
Whether you're working, relaxing, cooking, cleaning, drinking, playing video games, taking a road trip, taking a mind trip, meditating, singing in the shower, eating, grilling, playing pool, swimming in a pool, walking the dog, cleaning the litterbox, feeding your goldfish, or petting your porcupine... I've got the Best Delta Blues Guitar Playlist for You! Over an hour long, so you can zone in, zone out, chill out, shut in, shut up, or shut out whatever you want! If you want more music like this check out @justinjohnsonlive albums at https://justinjohnsonstore.com 🔥 SUBSCRIBE: https://bit.ly/JustinJohnsonSubscribe 📀 STORE: https://justinjohnsonstore.com/ 🎸 LESSONS: https://justinjohnsonstore.com/collections/guitar-instruction ⚫️ FACEBOOK: https://www.facebook.com/JustinJohnsonLive/ ⚫️ INSTAGRAM: https://www.instagram.com/justinjohnsonlive/ ⚫️ SPOTIFY: https://bit.ly/JustinJohnsonSpotify ⚫️ ITUNES: https://bit.ly/JustinJohnsoniTunes 🎸Guitar Tabs for all of my arrangements of cover songs are available at https://www.musicnotes.com/sheet-music/artist/justin-johnson 🎸Tabs for my originals are available at https://www.justinjohnsonstore.com #guitar #deltablues #fingerstyle
https://wn.com/Blues_Guitar_Music_•_One_Hour_Of_Delta_Blues_Slide_Guitar
Don't Mess With My Man (Live)
3:41

Don't Mess With My Man (Live)

  • Order:
  • Duration: 3:41
  • Uploaded Date: 23 Feb 2024
  • views: 18
Provided to YouTube by Malaco Music Group Don't Mess With My Man (Live) · Denise Lasalle Divas In The Delta: Live In Greenwood, MS ℗ 2005 Malaco Records Released on: 2005-04-26 Main Artist: Denise Lasalle Composer: Denise Lasalle Music Publisher: Malaco Music Company Music Publisher: Peermusic III LTD Music Publisher: Malaco World Music Auto-generated by YouTube.
https://wn.com/Don't_Mess_With_My_Man_(Live)
Delta Blues Band - Look Over Younder (2011)
5:58

Delta Blues Band - Look Over Younder (2011)

  • Order:
  • Duration: 5:58
  • Uploaded Date: 02 Sep 2011
  • views: 1358711
Troels Jensen: piano, guitar & vocal - Jørgen Lang: harp - Hans Fragt: drums - Thomas Puggaard-Müller: guitar - Søren Bøjgaard: bass - An amateur footage shot at Toldbod Plads in Aalborg, Denmark - during Aalborg Jazz & Blues Festival - 20th August 2011
https://wn.com/Delta_Blues_Band_Look_Over_Younder_(2011)
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Delta Blues Sounds   Best Of The Mississippi Delta's Stars
    2:07:14
    Delta Blues Sounds Best Of The Mississippi Delta's Starsremove from playlist
  • HEAVY DELTA BLUES
    3:23
    HEAVY DELTA BLUESremove from playlist
  • OLD-SCHOOL ACOUSTIC BLUES - Laid-Back Delta Blues on the Resonator Guitar
    56:49
    OLD-SCHOOL ACOUSTIC BLUES - Laid-Back Delta Blues on the Resonator Guitarremove from playlist
  • Unveiling the Soulful Secrets of Delta Blues Music! Volume 1
    1:01:06
    Unveiling the Soulful Secrets of Delta Blues Music! Volume 1remove from playlist
  • Delta Blues Music - Relaxing Dark Country Blues Music played on Guitar
    8:00:00
    Delta Blues Music - Relaxing Dark Country Blues Music played on Guitarremove from playlist
  • Easy Slow Delta Blues Lesson
    14:26
    Easy Slow Delta Blues Lessonremove from playlist
  • If MISSISSIPPI QUEEN was Delta Blues • Slide Guitar Classic Rock Cover
    3:11
    If MISSISSIPPI QUEEN was Delta Blues • Slide Guitar Classic Rock Coverremove from playlist
  • BLUES GUITAR MUSIC • One Hour of Delta Blues Slide Guitar
    1:02:48
    BLUES GUITAR MUSIC • One Hour of Delta Blues Slide Guitarremove from playlist
  • Don't Mess With My Man (Live)
    3:41
    Don't Mess With My Man (Live)remove from playlist
  • Delta Blues Band - Look Over Younder (2011)
    5:58
    Delta Blues Band - Look Over Younder (2011)remove from playlist
PLAYLIST TIME: 0:00 / 13:38:36

Delta Blues Sounds Best Of The Mississippi Delta's Stars

Delta Blues Sounds Best Of The Mississippi Delta's Stars Delta Blues Sounds Best Of The Mississippi Delta's Stars Delta Blues Sounds Best Of The Mississippi Delta's Stars
2:07:14
Delta Blues Sounds Best Of The Mississippi Delta's Stars
Delta Blues Sounds Best Of The Mississippi Delta's Stars Delta Blues Sounds Best Of Th...
published: 29 Nov 2020
Play in Full Screen
3:23
HEAVY DELTA BLUES
🎸DOWNLOADABLE TABS FOR THIS SONG: https://www.musicnotes.com/l/h6lWW This track is include...
published: 15 Mar 2020
Play in Full Screen
56:49
OLD-SCHOOL ACOUSTIC BLUES - Laid-Back Delta Blues on the Resonator Guitar
Want to drift off to the country, kick back on the porch, & chill out to some acoustic blu...
published: 03 Feb 2022
Play in Full Screen
1:01:06
Unveiling the Soulful Secrets of Delta Blues Music! Volume 1
Ambient blues music to help get your soul in the right mood for a long day. Featuring delt...
published: 07 Jul 2022
Play in Full Screen
8:00:00
Delta Blues Music - Relaxing Dark Country Blues Music played on Guitar
Great playlist of delta blues! Enjoy this instrumental mix of dark country blues music by ...
published: 29 Nov 2021
Play in Full Screen
14:26
Easy Slow Delta Blues Lesson
🎸Start Playing Fingerstyle Acoustic Blues: https://mybgi.co/bpb331 🎸Go Deep with Over 70 ...
published: 29 Dec 2020
Play in Full Screen
3:11
If MISSISSIPPI QUEEN was Delta Blues • Slide Guitar Classic Rock Cover
During my last Concert Livestream, @jdubbs9655 requested "Mississsippi Queen".. I told ...
published: 12 Feb 2024
Play in Full Screen
1:02:48
BLUES GUITAR MUSIC • One Hour of Delta Blues Slide Guitar
Whether you're working, relaxing, cooking, cleaning, drinking, playing video games, taking...
published: 28 Dec 2020
Play in Full Screen
3:41
Don't Mess With My Man (Live)
Provided to YouTube by Malaco Music Group Don't Mess With My Man (Live) · Denise Lasalle ...
published: 23 Feb 2024
Play in Full Screen
5:58
Delta Blues Band - Look Over Younder (2011)
Troels Jensen: piano, guitar & vocal - Jørgen Lang: harp - Hans Fragt: drums - Thomas Pugg...
published: 02 Sep 2011
Play in Full Screen

Roy Book Binder

Roy Book Binder (born October 5, 1943) is an American blues guitarist, singer songwriter and storyteller. A student and friend of the Rev. Gary Davis, he is equally at home with blues and ragtime, he is known to shift from open tunings to slide arrangements to original compositions, with both traditional and self-styled licks. His storytelling emphasis is another characteristic that makes his style unique.

Life and career

Book Binder was born in Queens, New York, United States. Upon graduation from high school, he joined the Navy and undertook a tour of duty in Europe. He bought his first guitar at a military base in Italy. After his enlistment was up, he returned to New York where he met his guitar hero, and became friends with Dave Van Ronk. Book Binder soon sought out Davis who also lived in New York, and became first a student of Davis and later a chauffeur and tour companion. Much of Bookbinder's original material was based on his time on the road with Davis.

By the mid-to-late 1960s Book Binder was recording for both Kicking Mule and Blue Goose Records. In 1969, he toured England with Arthur "Big Boy" Crudup and Homesick James.

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