- published: 02 Dec 2011
- views: 83884
'+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; })); }); -->
Edward "Sonny" Stitt (born Edward Boatner, Jr.; February 2, 1924 – July 22, 1982) was an American jazz saxophonist of the bebop/hard bop idiom. He was one of the best-documented saxophonists of his generation, recording over 100 albums. He was nicknamed the "Lone Wolf" by jazz critic Dan Morgenstern, in reference to his relentless touring and devotion to jazz.
Edward Boatner, Jr. was born in Boston, Massachusetts, and grew up in Saginaw, Michigan. He had a musical background; his father, Edward Boatner, was a baritone singer, composer and college music professor, his brother was a classically trained pianist, and his mother was a piano teacher.
Sonny was given up for adoption in 1924 by his father. No one seems to know why Boatner gave his son away, but the child was adopted by the Stitts family, who raised him in Saginaw, Michigan. He later began calling himself "Sonny". While in high school in Saginaw, Stitt played in the Len Francke Band, a local popular swing band.
Sonny Stitt is an eponymous album by saxophonist Sonny Stitt recorded in Chicago in 1958 and originally released on the Argo label.
The Allmusic review stated "Stitt, doubling on alto and tenor, plays some songs with unfamiliar titles, but all of the chord changes of the originals (half of them blues) are fairly basic. He is in above-average form, making this CD reissue of interest to bebop collectors".
All compositions by Sonny Stitt except as indicated
All of Me may refer to:
"All of Me" is a song by American recording artist John Legend from his fourth studio album Love in the Future (2013). Legend co-wrote the song with Toby Gad and co-produced it with Dave Tozer. It is a dedication to Legend's wife Chrissy Teigen. "All of Me" impacted American mainstream urban radio as the album's third single on August 12, 2013.
"All of Me" became Legend's biggest hit to date. On the week ending May 16, 2014, it peaked at number one on the Billboard Hot 100 becoming his first number-one single in the United States. It knocked off "Happy" by Pharrell Williams, which had spent ten weeks at number one. The song peaked at number two in the United Kingdom and New Zealand and topped the charts in Australia, Canada, Ireland, Portugal, Sweden, Switzerland and the Netherlands. It became the second best-selling song of 2014 in the United States with 4.67 million copies sold for the year, as well as the third best-selling song in the United Kingdom.
A remix of the song (Tiësto's birthday treatment mix) featuring EDM artist Tiësto was released in January 2014 and won the 2015 Grammy Award for Best Remixed Recording, Non-Classical, while another remix was done in March of that year by trance artist Dash Berlin. A live version of the song was nominated for Best Pop Solo Performance, losing to Pharrell Williams' "Happy".
All of Me is a compilation album by Canadian artist Anne Murray. It was released by Straightway Records on January 25, 2005. The first disc had been released as I'll Be Seeing You in 2004.All of Me peaked at number 13 on the Billboard Top Country Albums chart.
Album: Stitt Meets Brother Jack / Prestige 7244 / 1962 Personnel: Sonny Stitt - Tenor Saxophone / Jack McDuff - Organ / Eddie Diehl - Guitar / Art Taylor - Drums / Ray Barretto - Conga
Provided to YouTube by Universal Music Group All Of Me · Sonny Stitt Quartet Saxophone Supremacy ℗ A Verve Label Group Release; ℗ 1960 UMG Recordings, Inc. Released on: 1961-01-01 Associated Performer, Alto Saxophone: Sonny Stitt Associated Performer, Bass Guitar: Leroy Vinnegar Associated Performer, Drums: Mel Lewis Associated Performer, Piano: Lou Levy Composer Lyricist: Seymour B. Simons Composer Lyricist: Gerald Marks Auto-generated by YouTube.
Thanks for checking out my video and don't forget to SUBSCRIBE for more killing jazz content! --------------------------------------------SUPPORT--------------------------------------- If you enjoyed this video, please give it a 'like' and share it with your friends. SUBSCRIBE for more high-quality jazz content: https://www.youtube.com/berniesbootlegs1?sub_confirmation=1 I make zero ad revenue from this channel, so it is your continued support makes this channel possible. THANK YOU! -----------------------------------------CONNECT------------------------------------------ Instagram: http://www.instagram.com/berniesbootlegs Twitter: https://twitter.com/berniesbootlegs Facebook: http://www.facebook.com/berniesbootlegs Join the community! https://www.facebook.com/groups/391462558...
Possibly not his most famous version of All of me, this solo has all the trademarks of a Sonny Stitt's classic. Enjoy! PDF available on my website www.sergelegoueff.com Don't forget to like the video and subscribe to this channel. :-) If you would like to know more about me and my life long journey in jazz performance, I'd love it if you would take a minute to jump on my Bandcamp page: https://sergelegoueff.bandcamp.com/al..., and check out my music. My latest album "What Matters" can be purchased there too. A million thanks to you all. :-) Serge
Thanks for checking out my video and don't forget to SUBSCRIBE for more killing jazz content! --------------------------------------------SUPPORT--------------------------------------- If you enjoyed this video, please give it a 'like' and share it with your friends. SUBSCRIBE for more high-quality jazz content: https://www.youtube.com/berniesbootlegs1?sub_confirmation=1 I make zero ad revenue from this channel, so it is your continued support makes this channel possible. THANK YOU! -----------------------------------------CONNECT------------------------------------------ Instagram: http://www.instagram.com/berniesbootlegs Twitter: https://twitter.com/berniesbootlegs Facebook: http://www.facebook.com/berniesbootlegs Join the community! https://www.facebook.com/groups/391462558...
Provided to YouTube by Universal Music Group All Of Me · Sonny Stitt · Jack McDuff Stitt Meets Brother Jack ℗ 1962 Fantasy, Inc. Released on: 1962-01-01 Studio Personnel, Recording Engineer: Rudy Van Gelder Unknown, Other: Esmond Edwards Associated Performer, Saxophone: Sonny Stitt Associated Performer, Organ: Jack McDuff Associated Performer, Guitar: Eddie Diehl Associated Performer, Drums: Art Taylor Associated Performer, Conga: Ray Barretto Associated Performer, Drums: Arthur Taylor Composer Lyricist: Seymour Simons Composer Lyricist: Gerald Marks Auto-generated by YouTube.
PDF Available for Purchase : ($5) Alto sax version - https://vadimmagsax.gumroad.com/l/zklbp C instruments - https://vadimmagsax.gumroad.com/l/zqndl More transcriptions: https://gumroad.com/vadimmagsax Write in comments which solo you'd like me to transcribe⬇⬇⬇ Thanks for watching! Subscribe on my channel. https://www.instagram.com/vadim.magazov https://www.facebook.com/v.magazov [email protected] I love transcribing great jazz solos and i want to share as mush as I can! Your support is really invaluable, any donation will make a vital difference. https://www.paypal.me/vadimmagazovsax
Thanks for checking out my video and don't forget to SUBSCRIBE for more killing jazz content! --------------------------------------------SUPPORT--------------------------------------- If you enjoyed this video, please give it a 'like' and share it with your friends. SUBSCRIBE for more high-quality jazz content: https://www.youtube.com/berniesbootlegs1?sub_confirmation=1 I make zero ad revenue from this channel, so it is your continued support makes this channel possible. THANK YOU! -----------------------------------------CONNECT------------------------------------------ Instagram: http://www.instagram.com/berniesbootlegs Twitter: https://twitter.com/berniesbootlegs Facebook: http://www.facebook.com/berniesbootlegs Join the community! https://www.facebook.com/groups/391462558...
Edward "Sonny" Stitt (born Edward Boatner, Jr.; February 2, 1924 – July 22, 1982) was an American jazz saxophonist of the bebop/hard bop idiom. He was one of the best-documented saxophonists of his generation, recording over 100 albums. He was nicknamed the "Lone Wolf" by jazz critic Dan Morgenstern, in reference to his relentless touring and devotion to jazz.
Edward Boatner, Jr. was born in Boston, Massachusetts, and grew up in Saginaw, Michigan. He had a musical background; his father, Edward Boatner, was a baritone singer, composer and college music professor, his brother was a classically trained pianist, and his mother was a piano teacher.
Sonny was given up for adoption in 1924 by his father. No one seems to know why Boatner gave his son away, but the child was adopted by the Stitts family, who raised him in Saginaw, Michigan. He later began calling himself "Sonny". While in high school in Saginaw, Stitt played in the Len Francke Band, a local popular swing band.
{Big Daddy Kane:}
Hey, you know, [Name]
I'm findin it very hard to understand
The lifestyle of young ladies today
{Male voice:}
Yo, they're hard to figure out, gee
They need a sincere leader
{Big Daddy Kane:}
You know, I've heard it said
You gotta use what you got to get what you want
But I think they're usin a little bit too much when they flaunt
You know
[Name], you know, ehm
I don't understand the way these girls is rolling today, man
How about you, man?
{Male voice:}
Yo, let me tell you somethin, gee
If they ain't lying they tryin to do some other - wildness
{Big Daddy Kane:}
I know, I know
It's like girls promisin you Thomas's
And can't even cook toast, right?
What I'm tryin to tell you, man, is...
They just ain't no damn good
No damn good
Check it out
[Verse 1]
Now there's this girl named Monique
The type of female that you consider a freak
A big-time player playin like a drum beat
You think her address is 21 Hump Street
She step out every night to swing
With her Lee press-on's and a nefertiti ring
Bamboo earrings all big and lookin silly
With extensions hangin down like Milli Vanilli
And every Wednesday night at the Apollo
First kid she saw with jewerly she'd follow
And Monique would be ready to sleep
With the first kid in a Benz or a Cherokee Jeep
Strung out and givin up the nappy dug out
You're on the critical list, about to pull the plug out
So here, nympho, here's some good info
Stop takin em putts and close your legs, toots
Cause I remember you was one of a kind and a fine - hm
I once was infatuated by the things that you do
But now you're doodoo
It's all about respectin yourself
In order to gain respect from anyone else
Treat yourself like a real woman should
Cause bitch, you ain't no damn good
That's right, there's a lotta young ladies out here
That just ain't no damn good
{Female voice:}
But hold up minute
There's a lotta guys out there that ain't no damn good either
{Big Daddy Kane:}
Oh yeah?
{Female voice:}
Yeah, cause I had to tell one the other night
That his thing had too many 'nots' in it
{Big Daddy Kane:}
What you mean by too many 'nots'?
{Female voice:}
Not big enough, not hard enough, and not long enough
{Big Daddy Kane:}
Yeah, aight
But check this here out
[Verse 2]
Well now, here's another story
About this kid by the name of Corey
A hustler with game tryin to make a name
That was his aim, but his lifestyle was lame
Cause he would front like it wasn't even funny
About his girl, his car, and his money
Pullin out a knot every place
But every single bill had Washington's face
And he went beyond exaggeration
To lie about his means of transportation
Because he said he had a Benz car
Come to find out, it was his friend's car
Talk about simple chronic halitosis
Damn, his breath was ferocious
He had an odor that just won't quit
Smelled like he washed in Oil Of Oh shit
Tellin girls he's daddy long-strokin
(Shit, you must be jokin)
Cause he ain't got no bitches
And couldn't hurt a virgin if her pussy had stitches
See, Corey, there's a lot you're missin
Seems to me, you ain't got a pot to piss in
So let's get one thing understood
Muthafucka, you ain't no damn good
{Prince Paul:}
The moral of the story is
The majority of the population of males and females today