- published: 15 Sep 2020
- views: 153363
'+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; })); }); -->
Julian Edwin "Cannonball" Adderley (September 15, 1928 – August 8, 1975) was a jazz alto saxophonist of the hard bop era of the 1950s and 1960s.
Adderley is remembered for his 1966 single "Mercy, Mercy, Mercy", a crossover hit on the pop charts, and for his work with trumpeter Miles Davis, including on the epochal album Kind of Blue (1959). He was the brother of jazz cornetist Nat Adderley, a longtime member of his band.
Originally from Tampa, Florida, Adderley moved to New York in 1955. His nickname derived from "cannibal", a title imposed on him by high school colleagues as a tribute to his voracious appetite.
Cannonball moved to Tallahassee, Florida, when his parents obtained teaching positions at Florida A&M University. Both Cannonball and brother Nat played with Ray Charles when Charles lived in Tallahassee during the early 1940s. Adderley moved to Broward County, Florida, in 1948 after finishing his music studies at Tallahassee and became the band director at Dillard High School in Fort Lauderdale, Florida, a position which he held until 1950. Cannonball was a local legend in Southeast Florida until he moved to New York City in 1955.
Money in the Pocket is a live album by jazz saxophonist Cannonball Adderley featuring performances by Adderley with Nat Adderley, Joe Zawinul, Herbie Lewis and Roy McCurdy. Recorded at The Club in Chicago in 1966, it was not released on the Capitol label until 2005.
The Allmusic review by Al Campbell awarded the album 4 stars and states "Cannonball Adderley's mega-successful album Mercy, Mercy, Mercy!, released in August of 1966, was supposedly recorded "live" at a venue in Chicago called The Club, but it was actually recorded in the studio of Capitol Records with a specially assembled audience. For those who wonder what they really sounded like at that venue, Money in the Pocket contains unreleased live recordings of the Cannonball Adderley Quintet at The Club in Chicago... Any Cannonball Adderley fan will want to own this".The Penguin Guide to Jazz awarded the album 3½ stars stating "The sound is rather noisy (especially McCurdy's drums), but if anything this is a warmer set than the 'official' one from later in the year. "Stardust" is a vintage Cannon performance, and "Fiddler on the Roof", all but takes the roof off".
Money in the Pocket may refer to:
Money in the Pocket is the debut album led by keyboardist Joe Zawinul released on the Atlantic label in 1967.
The Allmusic review awarded the album 3 stars.All About Jazz awarded the album 3½ stars stating "Money In The Pocket is a remarkable album—remarkable in that gives absolutely no hint of the shape shifts that would transform Zawinul's work a few years later. The first of three albums he recorded for Atlantic, it's a conventional mix of mid-1960s hard bop and soul jazz".The Guardian's John Fordham noted "this session reflects the driving grooves of that popular soul-jazz style – so there are a lot of backbeats, repeating riffs, horn-harmony wailing and stagey stop-time breaks".
All compositions by Joe Zawinul except as indicated
Coordinates: 52°57′14″N 2°30′14″W / 52.954°N 2.504°W / 52.954; -2.504
Adderley is a village and civil parish in the English county of Shropshire, several kilometres north of Market Drayton. It is known as Eldredelei in the Domesday Book. The Irish statesman Robert le Poer was parish priest of Adderley c.1320.
Here is the description of the village from The National Gazetteer of Great Britain and Ireland (1868):
"ADDERLEY, (or Atherley), a parish in the hundred of North Bradford, in the county of Salop, 4 miles to the N.W. of Market Drayton. It is situated on the Grand Junction canal and the river Weaver. It comprises the townships of the Morrey and Spoonley. The living is a rectory* in the diocese of Lichfield value £665, in the patronage of Richard Corbet. The church is dedicated to St. Peter. The parochial charities amount to £68 a year. Shavington Hall, the residence of the Earl of Kilmorey, and Adderley Hall are the principal seats."
St Peter's church, rebuilt in 1801, is a grade I listed building.
Adderley is a surname. Notable people with the surname include:
Adderley is a village in England.
Adderley may also refer to:
Cannonball Adderley performing "Work Song" with Nat Adderley on cornet, Joe Zawinul on piano, Sam Jones on bass and Louis Hayes on drums live on Jazz Scene, 1962.
Cannonball Adderley - Alto Sax Nat Adderley - Cornet Yusef Lateef - Tenor Sax, Flute, Oboe Joe Zawinul - Piano Sam Jones - Bass Luis Hayes - Drums
Cannonball Adderley Quintet: Cannonball Adderley (alto saxophone); Nat Adderley (cornet); Joe Zawinul (acoustic & electric pianos); Victor Gaskin (bass); Roy McCurdy (drums). http://www.youtube.com/user/AnthonyValenteJazz Recording information: Capitol studios, Los Angeles, CA (10/20/1966).
Provided to YouTube by Universal Music Group Autumn Leaves · Cannonball Adderley Somethin' Else ℗ 1999 Blue Note Records Released on: 1958-03-09 Associated Performer, Alto Saxophone: Cannonball Adderley Associated Performer, Trumpet: Miles Davis Associated Performer, Double Bass: Sam Jones Associated Performer, Drums: Art Blakey Producer: Alfred Lion Studio Personnel, Recording Engineer, Mastering Engineer: Rudy Van Gelder Associated Performer, Piano: Hank Jones Composer Lyricist: Johnny Mercer Composer Lyricist: Jacques Prévert Composer Lyricist: Joseph Kosma Auto-generated by YouTube.
Battle Hymn episode from Kung Fu tv serial - 1975
Introduced by Steve Race. Work Song 00:57 The Song My Lady Sings 08:11 Poor Butterfly 16:06 The Jive Samba 20:50 Unit Seven 28:09 The Weaver 30:10 Bohemia After Dark 38:29 Come Sunday 44:11 Sweet Georgia Bright 50:39 Unit Seven 55:43 Cannonball Adderley (alto sax), Sam Jones (bass), Nat Adderley (cornet), Charles Lloyd (tenor sax, flute), Joe Zawinul (piano), Louis Hayes (drums) Aired on BBC TV on June 2nd & August 3rd, 1964, and on BBC Radio on September 25, 1964.
Cannonball Takes Charge is an album by jazz saxophonist Cannonball Adderley released in 1959 on the Riverside label featuring performances by Adderley with Wynton Kelly, Paul Chambers, and Jimmy Cobb with Percy and Albert Heath replacing Chambers and Cobb on track five. Track listing 00:00 - 01. "If This Isn't Love" (E.Y. "Yip" Harburg, Burton Lane) 05:32 - 02. "I Guess I'll Hang My Tears out to Dry" (Sammy Cahn, Jule Styne) 11:08 - 03. "Serenata" (Leroy Anderson) 15:22 - 04. "I've Told Ev'ry Little Star" (Oscar Hammerstein II, Jerome Kern) 19:01 - 05. "Barefoot Sunday Blues" (Cannonball Adderley) Personnel Cannonball Adderley - alto saxophone Wynton Kelly - piano Paul Chambers - bass (tracks 1-4) Jimmy Cobb - drums (tracks 1-4) Percy Heath - bass (track 5) Albert Heath - drums (track...
My Style of playing! Oscar Peterson meets Michael Brecker! Welcome to visit me at Patreon. https://www.patreon.com/UlfWakenius Join the magic ”Jazz Guitar World”. Check out my books! New Book! Out Now! Modern Saxophone Licks For Jazz Guitar At Fundamental Changes. ⭐️⭐️⭐️⭐️⭐️ Amazon.com Go here: https://www.fundamental-changes.com/book/modern-saxophone-licks-for-jazz-guitar/ #Both nr.1 at Amazon-United States! ⭐️⭐️⭐️⭐️⭐️ ”BEBOP SAXOPHONE LICKS FOR JAZZ GUITAR” at FUNDAMENTAL CHANGES! Go here: https://geni.us/bebopsaxguitar For all guitarists! Improve your playing. Make your solos shine! Get hot licks from, Charlie Parker, Sonny Rollins, Cannonball Adderley and more! ⭐️⭐️⭐️⭐️⭐️ OSCAR PETERSON LICKS FOR JAZZ GUITAR
"Experience in E", "Morning of the Carnival", "Work Song" og "Walk Tall". Cannonball Adderely (sax), Joe Zawinul (Piano), Nat Adderley (cornet), Victor Gaskin (bass), Roy McCurdy (drums). From Centralteatret, Oslo, 1969.
Julian Edwin "Cannonball" Adderley (September 15, 1928 – August 8, 1975) was a jazz alto saxophonist of the hard bop era of the 1950s and 1960s.
Adderley is remembered for his 1966 single "Mercy, Mercy, Mercy", a crossover hit on the pop charts, and for his work with trumpeter Miles Davis, including on the epochal album Kind of Blue (1959). He was the brother of jazz cornetist Nat Adderley, a longtime member of his band.
Originally from Tampa, Florida, Adderley moved to New York in 1955. His nickname derived from "cannibal", a title imposed on him by high school colleagues as a tribute to his voracious appetite.
Cannonball moved to Tallahassee, Florida, when his parents obtained teaching positions at Florida A&M University. Both Cannonball and brother Nat played with Ray Charles when Charles lived in Tallahassee during the early 1940s. Adderley moved to Broward County, Florida, in 1948 after finishing his music studies at Tallahassee and became the band director at Dillard High School in Fort Lauderdale, Florida, a position which he held until 1950. Cannonball was a local legend in Southeast Florida until he moved to New York City in 1955.