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

Podcasts:

  • Carl Radle Rock Star Bass Player

    Carl Radle This Oklahoma Music Legend was hailed by Playboy Magazine as one of the top Electric Bass Players in the world for nearly his entire short 20 year career. He was called a Musician’s Musician. He played his style of Bass Guitar, with some of the world’s most Iconic musicians, on some of the very best records of all time and was an important part of some of the world’s most exciting concerts.

    published: 07 Mar 2019
  • The Elusive Carl Radle

    published: 21 May 2021
  • Interview: Requiem for Carl Radle: Clapton Mourns, Elton & The Master of Space & Time #leonrussell

    In this interview excerpt from NOTES FROM AN ARTIST RADIO / PODCAST, Bill Janovitz, author of the acclaimed Leon Russell biography The Master of Space and Time’s Journey through Rock and Roll History (Hachette Books) discusses Eric Clapton’s reaction to the death of his longtime bassist and musical director Carl Radle in 1980, Leon’s work ethic with synthesizers and new technology, and his collaboration with Elton John. With hosts David C. Gross and Tom Semioli. Carl Radle was among the bass icons of the classic rock era of the 1960s-70s, recording, touring, and/or performing with Eric Clapton, Delaney & Bonnie, Leon Russell, George Harrison, Dave Mason, Joe Cocker, Rita Coolidge, Freddie King, Buddy Guy, and J.J. Cale to cite a very select few. Radle anchored Leon Russell’s legendary “...

    published: 12 Mar 2023
  • Carl Radle

    Carl Dean Radle inducted into the Oklahoma Music Hall of Fame on October 12th, 2006 in Muskogee, Oklahoma

    published: 04 Nov 2006
  • Learn How To Play Bass Guitar - Cocaine - Carl Radle

    http://how-to-play-bass.com/register/free-bass-lessons1 Here's a learn how to play bass guitar tutorial to Cocaine by Eric Clapton. First I look at the 'authentic' way that Carl Radle played. But he plays very sparsly in this song....so in the real world you might wanna goose it up a little. So I show you 4 variations that you can use to provide a busier line if you are playing this with your band mates or in a jam. For free song tutorials, including Hotel California, The Weight, Moondance and more....CLICK HERE! http://how-to-play-bass.com/register/free-bass-lessons1

    published: 05 Jul 2012
  • Derek and the Dominos Live 1970 (Eric Clapton, Jim Gordon, Bobby Whitlock, Carl Radle)

    The only televised broadcast of Derek and the Dominos features original band members Eric Clapton on guitar/vocals, Bobby Whitlock on keyboards/vocals, Jim Gordon on drums, and Carl Radle on bass guitar (died May 30, 1980, age 37). The group performs Chuck Willis' blues-rock song It's Too Late live from their only studio album Layla and Other Assorted Love Songs (not the Carole King classic). Eric Clapton formed Derek and the Dominos in 1970. They appeared on the Johnny Cash Show that year. After Clapton is interviewed by host Johnny Cash, Matchbox with Derek and the Dominos, Carl Perkins and Johnny Cash is performed (5:06). Watch Eric Clapton perform Benefit Concert for Crossroads Center https://youtu.be/xzi2BWzoRAw and more classic Derek and The Dominos songs: https://youtu.be/1CEy3tFiU...

    published: 29 Aug 2018
  • Layla Carl Radle Bass Line Derek and the dominoes

    The Bass is slightly detuned to the original song pitch. Carl Radle plays the same bass line through out the song until the piano part...

    published: 07 Mar 2020
  • Carl Radle Never Ending Song of Love

    I'm sure that Carl Radle would be happy to know that he is in a way now getting credit for his song.

    published: 23 Jun 2020
  • Bell Bottom Blues - Carl Radle bass line

    Carl Radle's bass line from the Derek & the Dominos song "Bell Bottom Blues." Transcription available at carlradlebass.com. https://www.carlradlebass.com/2019/10/bell-bottom-blues.html

    published: 30 Mar 2020
  • Feelin' Alright, Joe Cocker Mad Dogs & Englishmen, Leon Russell, Jim Keltner, Jim Gordon, Carl Radle

    Jim Keltner, Jim Gordon, Leon Russell

    published: 19 Aug 2022
Carl Radle Rock Star Bass Player
7:36

Carl Radle Rock Star Bass Player

  • Order:
  • Duration: 7:36
  • Uploaded Date: 07 Mar 2019
  • views: 14034
Carl Radle This Oklahoma Music Legend was hailed by Playboy Magazine as one of the top Electric Bass Players in the world for nearly his entire short 20 year career. He was called a Musician’s Musician. He played his style of Bass Guitar, with some of the world’s most Iconic musicians, on some of the very best records of all time and was an important part of some of the world’s most exciting concerts.
https://wn.com/Carl_Radle_Rock_Star_Bass_Player
The Elusive Carl Radle
22:50

The Elusive Carl Radle

  • Order:
  • Duration: 22:50
  • Uploaded Date: 21 May 2021
  • views: 23940
https://wn.com/The_Elusive_Carl_Radle
Interview: Requiem for Carl Radle: Clapton Mourns, Elton & The Master of Space & Time #leonrussell
8:23

Interview: Requiem for Carl Radle: Clapton Mourns, Elton & The Master of Space & Time #leonrussell

  • Order:
  • Duration: 8:23
  • Uploaded Date: 12 Mar 2023
  • views: 484
In this interview excerpt from NOTES FROM AN ARTIST RADIO / PODCAST, Bill Janovitz, author of the acclaimed Leon Russell biography The Master of Space and Time’s Journey through Rock and Roll History (Hachette Books) discusses Eric Clapton’s reaction to the death of his longtime bassist and musical director Carl Radle in 1980, Leon’s work ethic with synthesizers and new technology, and his collaboration with Elton John. With hosts David C. Gross and Tom Semioli. Carl Radle was among the bass icons of the classic rock era of the 1960s-70s, recording, touring, and/or performing with Eric Clapton, Delaney & Bonnie, Leon Russell, George Harrison, Dave Mason, Joe Cocker, Rita Coolidge, Freddie King, Buddy Guy, and J.J. Cale to cite a very select few. Radle anchored Leon Russell’s legendary “Tulsa Tops” – a cadre of musicians which also included guitarists Jessie Ed Davis and Don Preston; drummers Jim Keltner, Jamie Oldaker, and Jimmy Karstein, among others. Listen to the interview in its entirety on NOTES FROM AN ARTIST podcast available on Spotify, Amazon, Apple, BuzzSprout and wherever podcasts are podded. Like "Notes From An Artist" on Facebook https://www.facebook.com/notesfromanartist Subscribe to "Notes From An Artist " on YouTube https://www.youtube.com/channel/UCTDf2GpiIxygLRyZJsDc6pg Follow " Notes From An Artist " on Instagram https://www.instagram.com/notesfromanartistradio/ Subscribe to “Notes From An Artist” on Amazon Music https://music.amazon.com/podcasts/4d269fed-8729-4aca-a319-0e064c677c7c/notes-from-an-artist?refMarker=null Listen to / subscribe to “Notes From An Artist” on BuzzSprout https://notesfromanartist.buzzsprout.com Follow / subscribe to “Notes From An Artist” on Spotify https://open.spotify.com/show/2KM60jeVGDem9wleGRTqx1 Follow “Notes From An Artist” on Apple Music https://podcasts.apple.com/us/podcast/notes-from-an-artist/id1571202958 Notes From An Artisit Website https://notesfromanartist.com Listen to “Notes From An Artist” on www.CygnusRadio.com
https://wn.com/Interview_Requiem_For_Carl_Radle_Clapton_Mourns,_Elton_The_Master_Of_Space_Time_Leonrussell
Carl Radle
7:48

Carl Radle

  • Order:
  • Duration: 7:48
  • Uploaded Date: 04 Nov 2006
  • views: 30781
Carl Dean Radle inducted into the Oklahoma Music Hall of Fame on October 12th, 2006 in Muskogee, Oklahoma
https://wn.com/Carl_Radle
Learn How To Play Bass Guitar - Cocaine - Carl Radle
13:36

Learn How To Play Bass Guitar - Cocaine - Carl Radle

  • Order:
  • Duration: 13:36
  • Uploaded Date: 05 Jul 2012
  • views: 82461
http://how-to-play-bass.com/register/free-bass-lessons1 Here's a learn how to play bass guitar tutorial to Cocaine by Eric Clapton. First I look at the 'authentic' way that Carl Radle played. But he plays very sparsly in this song....so in the real world you might wanna goose it up a little. So I show you 4 variations that you can use to provide a busier line if you are playing this with your band mates or in a jam. For free song tutorials, including Hotel California, The Weight, Moondance and more....CLICK HERE! http://how-to-play-bass.com/register/free-bass-lessons1
https://wn.com/Learn_How_To_Play_Bass_Guitar_Cocaine_Carl_Radle
Derek and the Dominos Live 1970 (Eric Clapton, Jim Gordon, Bobby Whitlock, Carl Radle)
7:25

Derek and the Dominos Live 1970 (Eric Clapton, Jim Gordon, Bobby Whitlock, Carl Radle)

  • Order:
  • Duration: 7:25
  • Uploaded Date: 29 Aug 2018
  • views: 475030
The only televised broadcast of Derek and the Dominos features original band members Eric Clapton on guitar/vocals, Bobby Whitlock on keyboards/vocals, Jim Gordon on drums, and Carl Radle on bass guitar (died May 30, 1980, age 37). The group performs Chuck Willis' blues-rock song It's Too Late live from their only studio album Layla and Other Assorted Love Songs (not the Carole King classic). Eric Clapton formed Derek and the Dominos in 1970. They appeared on the Johnny Cash Show that year. After Clapton is interviewed by host Johnny Cash, Matchbox with Derek and the Dominos, Carl Perkins and Johnny Cash is performed (5:06). Watch Eric Clapton perform Benefit Concert for Crossroads Center https://youtu.be/xzi2BWzoRAw and more classic Derek and The Dominos songs: https://youtu.be/1CEy3tFiUsI
https://wn.com/Derek_And_The_Dominos_Live_1970_(Eric_Clapton,_Jim_Gordon,_Bobby_Whitlock,_Carl_Radle)
Layla Carl Radle Bass Line Derek and the dominoes
1:13

Layla Carl Radle Bass Line Derek and the dominoes

  • Order:
  • Duration: 1:13
  • Uploaded Date: 07 Mar 2020
  • views: 937
The Bass is slightly detuned to the original song pitch. Carl Radle plays the same bass line through out the song until the piano part...
https://wn.com/Layla_Carl_Radle_Bass_Line_Derek_And_The_Dominoes
Carl Radle Never Ending Song of Love
12:25

Carl Radle Never Ending Song of Love

  • Order:
  • Duration: 12:25
  • Uploaded Date: 23 Jun 2020
  • views: 13295
I'm sure that Carl Radle would be happy to know that he is in a way now getting credit for his song.
https://wn.com/Carl_Radle_Never_Ending_Song_Of_Love
Bell Bottom Blues - Carl Radle bass line
5:24

Bell Bottom Blues - Carl Radle bass line

  • Order:
  • Duration: 5:24
  • Uploaded Date: 30 Mar 2020
  • views: 3782
Carl Radle's bass line from the Derek & the Dominos song "Bell Bottom Blues." Transcription available at carlradlebass.com. https://www.carlradlebass.com/2019/10/bell-bottom-blues.html
https://wn.com/Bell_Bottom_Blues_Carl_Radle_Bass_Line
Feelin' Alright, Joe Cocker Mad Dogs & Englishmen, Leon Russell, Jim Keltner, Jim Gordon, Carl Radle
5:41

Feelin' Alright, Joe Cocker Mad Dogs & Englishmen, Leon Russell, Jim Keltner, Jim Gordon, Carl Radle

  • Order:
  • Duration: 5:41
  • Uploaded Date: 19 Aug 2022
  • views: 1810
Jim Keltner, Jim Gordon, Leon Russell
https://wn.com/Feelin'_Alright,_Joe_Cocker_Mad_Dogs_Englishmen,_Leon_Russell,_Jim_Keltner,_Jim_Gordon,_Carl_Radle
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME: 0:00 / 1:32:21

Carl Radle Rock Star Bass Player

Carl Radle This Oklahoma Music Legend was hailed by Playboy Magazine as one of the top Electric Bass Players in the world for nearly his entire short 20 year career. He was called a Musician’s Musician. He played his style of Bass Guitar, with some of the world’s most Iconic musicians, on some of the very best records of all time and was an important part of some of the world’s most exciting concerts.
7:36
Carl Radle Rock Star Bass Player
Carl Radle This Oklahoma Music Legend was hailed by Playboy Magazine as one of the top El...
published: 07 Mar 2019
Play in Full Screen
22:50
The Elusive Carl Radle
published: 21 May 2021
Play in Full Screen
8:23
Interview: Requiem for Carl Radle: Clapton Mourns, Elton & The Master of Space & Time #leonrussell
In this interview excerpt from NOTES FROM AN ARTIST RADIO / PODCAST, Bill Janovitz, author...
published: 12 Mar 2023
Play in Full Screen
7:48
Carl Radle
Carl Dean Radle inducted into the Oklahoma Music Hall of Fame on October 12th, 2006 in Mus...
published: 04 Nov 2006
Play in Full Screen
13:36
Learn How To Play Bass Guitar - Cocaine - Carl Radle
http://how-to-play-bass.com/register/free-bass-lessons1 Here's a learn how to play bass g...
published: 05 Jul 2012
Play in Full Screen
7:25
Derek and the Dominos Live 1970 (Eric Clapton, Jim Gordon, Bobby Whitlock, Carl Radle)
The only televised broadcast of Derek and the Dominos features original band members Eric ...
published: 29 Aug 2018
Play in Full Screen
1:13
Layla Carl Radle Bass Line Derek and the dominoes
The Bass is slightly detuned to the original song pitch. Carl Radle plays the same bass li...
published: 07 Mar 2020
Play in Full Screen
12:25
Carl Radle Never Ending Song of Love
I'm sure that Carl Radle would be happy to know that he is in a way now getting credit for...
published: 23 Jun 2020
Play in Full Screen
5:24
Bell Bottom Blues - Carl Radle bass line
Carl Radle's bass line from the Derek & the Dominos song "Bell Bottom Blues." Transcriptio...
published: 30 Mar 2020
Play in Full Screen
5:41
Feelin' Alright, Joe Cocker Mad Dogs & Englishmen, Leon Russell, Jim Keltner, Jim Gordon, Carl Radle
Jim Keltner, Jim Gordon, Leon Russell
published: 19 Aug 2022
Play in Full Screen
'); } 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: carl radle

Edit

Bell Bottom blues to perform at Coolidge Theatre

Potter Leader-Enterprise 07 May 2025
At 7.30 p.m ... That song was performed and recorded by Clapton, Whitlock, bassist Carl Radle and drummer Jim Gordon, all founders of Derek and the Dominos, which released it on Nov ... Among Clapton’s songs on their set list are ... Other members are ... ....
  • 1
×