- published: 14 Jan 2010
- views: 625456
'+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; })); }); -->
Earl Rudolph "Bud" Powell (September 27, 1924 – July 31, 1966) was a jazz pianist, born and raised in Harlem, New York City. While Thelonious Monk became his close friend, his greatest influence on piano was Art Tatum.
Along with Charlie Parker and Dizzy Gillespie, Powell was a leading figure in the development of modern jazz, or bebop. His virtuosity led many to call him the Charlie Parker of the piano. Powell was also a composer, and he "greatly extended the range of jazz harmony."
Powell's father was a stride pianist. Powell took to his father's instrument at a very young age, starting on classical-piano lessons at age five. His teacher, hired by his father, was a West Indian man named Rawlins.
But by age ten, Powell also showed interest in the swing-era jazz that could be heard all over the neighborhood. He first appeared in public at a rent party, where he mimicked Fats Waller's playing style. The first jazz composition that he mastered was James P. Johnson's "Carolina Shout".
"That Old Black Magic" is a 1942 popular song first recorded and released as a single by Glenn Miller and His Orchestra. The music was written by Harold Arlen, with the lyrics by Johnny Mercer.
The song was published in 1942 and has become an often-recorded standard with versions that include the original single release by Glenn Miller, the singers Margaret Whiting, Frank Sinatra, Sammy Davis, Jr., Mercer himself, and others. Mercer wrote the lyrics with Judy Garland in mind, who was, on occasion, an intimate partner. Garland recorded the song for Decca Records in 1942. Mercer recalled wanting to write a song about magic, and while composing, asking Arlen to write more music so the song could go on longer, but that they still wrote the whole song in about three hours.
The Glenn Miller recording was released by RCA Victor Records as catalog number 20-1523-A, with "A Pink Cocktail For a Blue Lady" as the B side. The vocals were by Skip Nelson and the Modernaires. Glenn Miller recorded the song on July 15, 1942. The release was Glenn Miller's last #1 hit. It charted in 1943, spending 14 weeks on the Billboard magazine charts, peaking at position #1 for the week of May 29.
This is a list of Sea of Souls episodes. Sea of Souls is a BBC paranormal drama series, based around the fictional activities of a group of investigators into psychic and other paranormal events. The series debuted on BBC One in the UK in February 2004. A second series was shown from January 2005, with a third following in 2006 and then a two-part special in April 2007. The programme was created by writer David Kane, who also wrote the entire first series.
This series won the Scottish BAFTA for best drama. Even though they only appear in this series, Dr. Monahan's two assistants, Megan Sharma and Andrew Gemmil, are not formally written out in the concluding story. Phil Collinson produced this series only, moving immediately thereafter to Doctor Who.
This series offered a change to the format. Instead of three, two-part mysteries, aired over the course of three weeks, this series offered a more traditional six-week episodic format. As with the first series, however, the student assistants made their final appearances in the concluding story without their departures being explained.
The second season of Charmed, an American supernatural drama television series, began airing on September 30, 1999 on The WB. Airing on Thursdays at 9:00 pm, the season consisted of 22 episodes and concluded its airing on May 18, 2000. Paramount Home Entertainment released the complete second season in a six-disc box set on September 6, 2005.
Like the first season, the sisters fight different forces of evil each episode, and the show continues to focus on how such things impact the sisters' attempt to live normal lives, as far as such is possible.
Darryl Morris becomes a more prominent character as he begins to learn about the sisters' secret lives and helps them out in certain situations. The season also introduces two characters: neighbours Dan Gordon and his niece Jenny.
Piper, becoming frustrated with the limitations of her relationship with Whitelighter Leo Wyatt, is drawn to Dan, creating a love triangle. She opens a nightclub 'P3' which takes over from Quake as a place for the sisters to meet when not at the manor. Phoebe decides to return to school to complete a degree in Psychology and Prue leaves her job mid-season to follow her dream of becoming a photographer. She also has a brief relationship with Jack Sheridan whom she meets at Bucklands before leaving.
Bud Powell - piano Niels-Henning Orsted Pedersen - bass Jorn Elniff - drums Live from Café Montmartre, Copenhagen, early 1962
Sweet and lovely 00:00 Swing Napoli 03:10 Bud Powell (piano) see also Bud Powell & Charles Mingus Quintet, Antibes jazz Festival, July 13th, 1960 https://youtu.be/nu5uRiEuPFg
Bud Powell Greatest Hits Full Album - The Best of Bud Powell Bud Powell Greatest Hits Full Album - The Best of Bud Powell Bud Powell Greatest Hits Full Album - The Best of Bud Powell The playlist is randomly arranged, I want to give good songs to all of you. Hope you enjoy it. ----------------------------------------------------------------------------------- ✔Thanks for watching! Have a nice day! ✔Don't forget LIKE - SHARE - COMMENT ----------------------------------------------------------------------------------- ⚠ If there are any copyright issues please contact us. We will remove the video. Thanks, ✔Facebook: https://www.facebook.com/BinhCoiPro ✔Twiter: https://twitter.com/BestRemixMix ✔Donate: https://paypal.me/binhcopro TAG: Bud Powell Greatest Hits Full Album,The Best of Bud Po...
In this episode we talk about Bud Powell a pianist that influenced an entire generation of musicians. 📚👂 Ultimate Bundle Sale - ONLY $99 for all my educational products: https://rickbeato.com 📚— The Beato Book Interactive - $99.00 value 👂— The Beato Ear Training Program - $99.00 value 🎸— The Quick Lessons Pro Guitar Course - $79.00 value … all for just $99.00 Get it here: https://rickbeato.com --------------------------------------------------------------------------------------------------------------------- SUBSCRIBE HERE → http://bit.ly/2eEs9gX For recurring support go here: https://flatfiv.co/pages/become-a-bea...
0:00:00 B̲u̲s̲t̲e̲r̲ ̲R̲i̲d̲e̲s̲ ̲A̲g̲a̲i̲n̲ 0:05:35 ̲S̲u̲b̲ ̲C̲i̲t̲y̲ 0:10:11 ̲T̲i̲m̲e̲ ̲W̲a̲i̲t̲s̲ 0:15:22 ̲M̲a̲r̲m̲a̲l̲a̲d̲e̲ 0:19:53 ̲M̲o̲n̲o̲p̲o̲l̲y̲ 0:24:45 ̲J̲o̲h̲n̲'̲s̲ ̲A̲b̲b̲e̲y̲ 0:30:25 ̲D̲r̲y̲ ̲S̲o̲u̲l̲ 0:37:11 ̲S̲u̲b̲ ̲C̲i̲t̲y̲ ̲(̲A̲l̲t̲e̲r̲n̲a̲t̲e̲ ̲T̲a̲k̲e̲)̲ 0:39:51 ̲J̲o̲h̲n̲'̲s̲ ̲A̲b̲b̲e̲y̲ ̲(̲A̲l̲t̲e̲r̲n̲a̲t̲e̲ ̲T̲a̲k̲e̲)̲
tracks: 0:00:01 T̲e̲m̲p̲u̲s̲ ̲F̲u̲g̲i̲t̲ 0:02:31 ̲C̲e̲l̲i̲a̲ 0:05:32 ̲C̲h̲e̲r̲o̲k̲e̲e̲ 0:09:13 ̲I̲'̲l̲l̲ ̲K̲e̲e̲p̲ ̲L̲o̲v̲i̲n̲g̲ ̲Y̲o̲u̲ ̲(̲2̲0̲0̲0̲ ̲-̲ ̲R̲e̲m̲a̲s̲t̲e̲r̲)̲ 0:11:54 ̲S̲t̲r̲i̲c̲t̲l̲y̲ ̲C̲o̲n̲f̲i̲d̲e̲n̲t̲i̲a̲l̲ 0:14:40 ̲A̲l̲l̲ ̲G̲o̲d̲'̲s̲ ̲C̲h̲i̲l̲l̲u̲n̲ ̲G̲o̲t̲ ̲R̲h̲y̲t̲h̲m̲ 0:18:07 ̲S̲o̲ ̲S̲o̲r̲r̲y̲,̲ ̲P̲l̲e̲a̲s̲e̲ 0:21:25 ̲G̲e̲t̲ ̲H̲a̲p̲p̲y̲ 0:24:20 ̲S̲o̲m̲e̲t̲i̲m̲e̲s̲ ̲I̲'̲m̲ ̲H̲a̲p̲p̲y̲ 0:27:58 ̲S̲w̲e̲e̲t̲ ̲G̲e̲o̲r̲g̲i̲a̲ ̲B̲r̲o̲w̲n̲ 0:30:48 ̲Y̲e̲s̲t̲e̲r̲d̲a̲y̲s̲ 0:33:41 ̲A̲p̲r̲i̲l̲ ̲I̲n̲ ̲P̲a̲r̲i̲s̲ 0:36:50 ̲B̲o̲d̲y̲ ̲A̲n̲d̲ ̲S̲o̲u̲l̲ 0:40:14 ̲H̲a̲l̲l̲e̲l̲u̲j̲a̲h̲ 0:43:14 ̲T̲e̲a̲ ̲F̲o̲r̲ ̲T̲w̲o̲ ̲(̲T̲a̲k̲e̲ ̲6̲)̲ 0:47:30 ̲T̲e̲a̲ ̲F̲o̲r̲ ̲T̲w̲o̲ ̲(̲T̲a̲k̲e̲ ̲5̲)̲ 0:51:03 ̲T̲e̲a̲ ̲F̲o̲r̲ ̲T̲w̲o̲ ̲(̲T̲a̲k̲e̲ ̲1̲0̲)̲ 0:54:52 ̲P̲a̲r̲i̲s̲i̲a̲n̲ ̲T̲h̲o̲r̲o̲u̲g̲h̲f̲a̲r̲e̲ 0:57...
Classic Mood Experience The best masterpieces ever recorded in the music history. Join our Youtube: https://goo.gl/8AOGaN Join our Facebook: http://goo.gl/5oL723 iTunes: https://goo.gl/r80k8j Google Play: https://goo.gl/Hi9GVi Earl Rudolph "Bud" Powell (September 27, 1924 – July 31, 1966) was an American jazz pianist, born and raised in Harlem, New York City. Though Thelonious Monk was a close friend, his greatest piano influence was Art Tatum. Along with Charlie Parker, Monk, and Dizzy Gillespie, Powell was a leading figure in the development of modern jazz, or bebop. His virtuosity led many to call him the Charlie Parker of the piano. Powell was also a composer, and he "greatly extended the range of jazz harmony." Powell's father was a stride pianist. Powell took to his father's instru...
tracks: 0:00:02 C̲l̲e̲o̲p̲a̲t̲r̲a̲'̲s̲ ̲D̲r̲e̲a̲m̲ 0:04:24 ̲D̲u̲i̲d̲ ̲D̲e̲e̲d̲ 0:09:33 ̲D̲o̲w̲n̲ ̲W̲i̲t̲h̲ ̲I̲t̲ 0:13:34 ̲D̲a̲n̲c̲e̲l̲a̲n̲d̲ 0:17:18 ̲B̲o̲r̲d̲e̲r̲i̲c̲k̲ 0:19:18 ̲C̲r̲o̲s̲s̲i̲n̲'̲ ̲T̲h̲e̲ ̲C̲h̲a̲n̲n̲e̲l̲ 0:22:50 ̲C̲o̲m̲i̲n̲'̲ ̲U̲p̲ 0:30:47 ̲G̲e̲t̲t̲i̲n̲'̲ ̲T̲h̲e̲r̲e̲ 0:35:51 ̲T̲h̲e̲ ̲S̲c̲e̲n̲e̲ ̲C̲h̲a̲n̲g̲e̲s̲ 0:39:55 ̲C̲o̲m̲i̲n̲'̲ ̲U̲p̲ ̲(̲A̲l̲t̲e̲r̲n̲a̲t̲e̲ ̲T̲a̲k̲e̲)̲
Montmartre Copenhagen 1962 Piano - Bud Powell Bass - Niels-Henning Ørsted Pedersen (NHØP) Drums - Jørgen Elniff
Classic Mood Experience The best masterpieces ever recorded in the music history. Join our Youtube: https://goo.gl/8AOGaN Join our Facebook: http://goo.gl/5oL723 iTunes: https://goo.gl/r80k8j Google Play: https://goo.gl/Hi9GVi Earl Rudolph "Bud" Powell (September 27, 1924 – July 31, 1966) was an American jazz pianist, born and raised in Harlem, New York City. Though Thelonious Monk was a close friend, his greatest piano influence was Art Tatum. Along with Charlie Parker, Monk, and Dizzy Gillespie, Powell was a leading figure in the development of modern jazz, or bebop. His virtuosity led many to call him the Charlie Parker of the piano. Powell was also a composer, and he "greatly extended the range of jazz harmony." Powell's father was a stride pianist. Powell took to his father's instru...
Earl Rudolph "Bud" Powell (September 27, 1924 – July 31, 1966) was a jazz pianist, born and raised in Harlem, New York City. While Thelonious Monk became his close friend, his greatest influence on piano was Art Tatum.
Along with Charlie Parker and Dizzy Gillespie, Powell was a leading figure in the development of modern jazz, or bebop. His virtuosity led many to call him the Charlie Parker of the piano. Powell was also a composer, and he "greatly extended the range of jazz harmony."
Powell's father was a stride pianist. Powell took to his father's instrument at a very young age, starting on classical-piano lessons at age five. His teacher, hired by his father, was a West Indian man named Rawlins.
But by age ten, Powell also showed interest in the swing-era jazz that could be heard all over the neighborhood. He first appeared in public at a rent party, where he mimicked Fats Waller's playing style. The first jazz composition that he mastered was James P. Johnson's "Carolina Shout".