- published: 18 Jun 2008
- views: 783975
'+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; })); }); -->
Anna Marie Wooldridge (August 6, 1930 – August 14, 2010), known by her stage name Abbey Lincoln, was an American jazz vocalist, songwriter, and actress, who wrote and performed her own compositions. She was a civil rights advocate during the 1960s.
Born in Chicago but raised in Calvin Center, Cass County, Michigan, Lincoln was one of many singers influenced by Billie Holiday. She often visited the Blue Note jazz club in New York City. Her debut album, Abbey Lincoln's Affair – A Story of a Girl in Love, was followed by a series of albums for Riverside Records. In 1960 she sang on Max Roach's landmark civil rights-themed recording, We Insist! Lincoln’s lyrics were often connected to the civil rights movement in America.
During the 1980s, Lincoln’s creative output was smaller and she released only a few albums during that decade. Her song "For All We Know" is featured in the 1989 film Drugstore Cowboy. During the 1990s and until her death, however, she fulfilled a 10-album contract with Verve Records. After a tour of Africa in the mid-1970s, she adopted the name Aminata Moseka.
Don't Explain may refer to:
"Don't Explain" is a song written by jazz singer Billie Holiday and Arthur Herzog Jr.
It is said Billie wrote "Don't Explain" after her husband, Jimmy Monroe, came home one night with lipstick traces on his collar.
Lyrics from "Don't Explain" was sung by Carlo Marx (portrayed by actor Tom Sturridge) in the 2012 film adaptation by Walter Salles of the novel by Jack Kerouac, On the Road, which premiered at the Cannes Film Festival.
Session #52: New York, November 8, 1944, Decca, Toots Camarata and His Orchestra, with Russ Case (trumpet), Hymie Schertzer, Jack Cressey (alto saxophone), Larry Binyon and Dave Harris (tenor saxophone), Dave Bowman (piano), Carl Kress (guitar), Haig Stephens (bass), George Wettling (drums), Billie Holiday (vocals), and six strings.
Don't Explain is the tenth solo studio album by Robert Palmer, released in 1990. During the course of its 18 tracks, Palmer displays rock, R&B, jazz and Bahamian influences. Several classic songs are covered, as well. The album peaked at number 9 in the UK and number 88 in the US.
The album was certified UK Gold by BPI in November 1990.
From the Album "Abbey Sings Abbey" (2007)
Presentation Jan Gheysen 00:00 We Insist! Freedom Now Suite: Intro 2:30 Driva Man 4:50 Triptych (Prayer/Protest/ Peace) 9:58 All Africa 19:09 Freedom Day 25:27 Lineup: Max Roach : drums Abbey Lincoln : vocals Clifford Jordan : tenor saxophone Coleridge Perkinson : piano Eddie Khan : bass
"Freedom Now Suite"Belgian TV BTR2 1964
Words & Music by Abbey Lincoln !! Opening track from the album : "You gotta pay the band" (featuring Stan Getz), 1991. *** facebook.com/musicwithnoborders *** Hank Jones - Piano Charlie Haden - Bass Stan Getz - Sax (Tenor) Maxine Roach - Viola Mark Johnson - Drums Abbey Lincoln - Vocals
Directed by : Patrick Savey LIKE this video and subscribe to Zycopolis Youtube Channel at : http://www.youtube.com/user/Zycopolis?sub_confirmation=1 Follow us on : facebook.com/zycopolis twitter.com/zycopolis zycopolis.tumblr.com pinterest.com/zycopolis vimeo.com/zycopolis zycopolis.tumblr.com zycopolis.com
"Freedom Now Suite" Belgian TV BTR2 1964
The songs : Down here below , Bird Alone , love is you , ce si bon . Enjoy this 22 minutes concert .
74
Abbey Lincoln Windmills of your mind
Abbey Lincoln - For All We Know
Painter: Loui Jover Chantal Chamberland ~ Don't Explain Lyrics: Hush now, don't explain Just say, you remain, Im glad, your back, don’t explain Quiet, don't explain There is nothing to gain Skip back the lipstick Don't explain You know that I love you And what love endures All my thoughts of you For I'm so completely yours Don't want to hear folks chatter 'Cause I know you cheat Right n' wrong don't matter When you're with me, my sweet Hush now, don't explain you're my joy And pain My life is yours, love, don't explain You know that I love you And what love endures All my thoughts of you For I'm so completely yours Don't want to hear folks chatter 'Cause I know you cheat Right n' wrong don't matter When you're with me, my sweet All my thoughts of you For, I'm so completely yours I don't w...
"Don't Explain" is a song written by jazz singer Billie Holiday and Arthur Herzog Jr. in 1945. It is said Billie wrote "Don't Explain" after her husband, Jimmy Monroe, came home one night with lipstick traces on his collar. Billie's accompanied by Toots Camarata (conc. & arr); Russ Case (tp); Hykie Schertzer, Jack Cressy (as); Larry Binyon, Dave Harris (ts); Dave Bowman (p); Carl Kress (g); Haigh Stephens (b); George Wettling (ds); and Six strings. Recorded November 8, 1944, New York. (Decca Records) Hush now, don't explain Just say you'll remain I'm glad you're back Don't explain Quiet, don't explain What is there to gain Skip that lipstick Don't explain You know that I love you And what love endures All my thoughts are of you For I'm so completely yours Cry to hear folks chatter And I...
Nina Simone - Don't Explain Disclaimer - I don't have any rights whatsoever Hush now, don't explain There ain't nothin' to gain I'm glad that you're back Don't explain Quiet baby and don't explain There is nothing to gain Skip back the lipstick Don't explain You know that I love you And what love endures All my thoughts of you For I'm so completely yours Don't want to hear folks chatter 'Cause I know you cheat Right n' wrong don't matter When you're with me, my sweet Hush now, don't explain Don't you know you're my joy And you're my pain? My life is yours, love, don't explain All my thoughts of you For, I'm so completely yours I don't want to hear nobody chatter 'Cause I know you cheat Right n' wrong don't matter When you're with me, my sweet Hush now, don't explain You're my jo...
Lady Day
The song "Don't Explain" from the album Coming Forth By Day by Cassandra Wilson. Buy Coming Forth By Day: Amazon - http://smarturl.it/4kgr8l?IQid=yt.cw.DEP iTunes - http://smarturl.it/vxnj5c?IQid=yt.cw.DEP Google Play - http://smarturl.it/CassandraGooglePlay?IQid=yt.cw.DEP About the album: An otherworldly musical homage to legendary jazz vocalist Billie Holiday (born Eleanora Fagan on April 7, 1915) on the 100th anniversary of the singer's birth, Coming Forth By Day is Cassandra Wilson's moody, soulful new album showcase for contemporary yet timeless interpretations of standards associated with Lady Day. Coming Forth By Day was produced by Nick Launay, known as Nick Cave's producer for the last decade among many other adventurous credits. Follow Cassandra Wilson on Spotify: http://smar...
Provided to YouTube by Virgin Music Group Don't Explain · Beth Hart, Joe Bonamassa Don't Explain ℗ 2011 J&R Adventures Released on: 2011-09-27 Writer: Billie Holiday Auto-generated by YouTube.
"Don’t Explain" by Billie Holiday from the album "The Lady Sings.” Subscribe and ring the bell to never miss an update: https://BillieHoliday.lnk.to/billieholidayyoutubeID Stream Billie Holiday: https://billieholiday.lnk.to/BillieHolidayStreamID Follow Billie: Facebook: https://www.facebook.com/BillieHoliday Instagram: https://www.instagram.com/billieholidayofficial Twitter: https://twitter.com/billieholidayhq #BillieHoliday #DontExplain
Provided to YouTube by The Orchard Enterprises Don't Xplain · Aleman · Phul King Fu · Dee · Yung Sarria · Yoga Fire · Erick Alemán Huracán ℗ 2021 Homegrown Entertainment Released on: 2021-11-18 Producer: Phul King Fu Music Publisher: Warner Chappell Music México Auto-generated by YouTube.
Welcome to Anime UnTold! Dive into a world where anime’s hidden gems and untold stories come to life. At Anime Untold, we’re passionate about exploring the rich and diverse universe of anime, bringing you content that goes beyond the mainstream. From lesser-known series to deep dives into forgotten arcs, our channel is dedicated to uncovering the hidden treasures of anime. What We Offer: 🌟 Underrated Anime Reviews: Discover anime that might have flown under your radar but deserves your attention. We review and analyze series that are often overlooked. 🔍 In-Depth Analysis: Delve into the lore, character development, and themes of both popular and obscure anime. We break down what makes these shows unique and worth watching. 🎬 Hidden Gems: Find out about the anime that didn’t get the sp...
"Don't Explain" is a song written by jazz singer Billie Holiday and Arthur Herzog Jr. in 1945. It is said Billie wrote "Don't Explain" after her husband, Jimmy Monroe, came home one night with lipstick traces on his collar. Lady Sings the Blues is a 1972 American biographical drama film directed by Sidney J. Furie about jazz singer Billie Holiday loosely based on her 1956 autobiography which, in turn, took its title from one of Holiday's most popular songs. It was produced by Motown Productions for Paramount Pictures. Diana Ross portrayed Holiday, alongside a cast including Billy Dee Williams, Richard Pryor, James T. Callahan, and Scatman Crothers. It was nominated for five Academy Awards. The nominations were for Best Actress in a Leading Role (Diana Ross), Best Art Direction-Set Decora...
Painter: Loui Jover Chantal Chamberland ~ Don't Explain Lyrics: Hush now, don't explain Just say, you remain, Im glad, your back, don’t explain Quiet, don't explain There is nothing to gain Skip back the lipstick Don't explain You know that I love you And what love endures All my thoughts of you For I'm so completely yours Don't want to hear folks chatter 'Cause I know you cheat Right n' wrong don't matter When you're with me, my sweet Hush now, don't explain you're my joy And pain My life is yours, love, don't explain You know that I love you And what love endures All my thoughts of you For I'm so completely yours Don't want to hear folks chatter 'Cause I know you cheat Right n' wrong don't matter When you're with me, my sweet All my thoughts of you For, I'm so completely yours I don't w...
Sheet music & mp3: https://sellfy.com/euterpe Donate: https://www.paypal.me/4musix ------------------------- La musica e’ una delle vie per le quali l’anima ritorna al cielo Music is one of the ways for which the soul returns to heaven Musik ist eine der Arten, auf die die Seele in den Himmel zurückkehrt La musique est l'un des moyens par lesquels l'âme retourne au ciel La música es una de las formas en que el alma regresa al cielo A música é uma das formas pelas quais a alma retorna ao céu الموسيقى هي إحدى الطرق التي تعود بها الروح إلى السماء 音乐是灵魂回归天堂的方式之一 音楽は、魂が天国に帰る道の一つです Музыка - один из способов возвращения души к небу (T.Tasso)
Nina Simone - Don't Explain Disclaimer - I don't have any rights whatsoever Hush now, don't explain There ain't nothin' to gain I'm glad that you're back Don't explain Quiet baby and don't explain There is nothing to gain Skip back the lipstick Don't explain You know that I love you And what love endures All my thoughts of you For I'm so completely yours Don't want to hear folks chatter 'Cause I know you cheat Right n' wrong don't matter When you're with me, my sweet Hush now, don't explain Don't you know you're my joy And you're my pain? My life is yours, love, don't explain All my thoughts of you For, I'm so completely yours I don't want to hear nobody chatter 'Cause I know you cheat Right n' wrong don't matter When you're with me, my sweet Hush now, don't explain You're my jo...
L'esprit de l'escalier
Lady Day
Provided to YouTube by Universal Music Group Don't Explain · Billie Holiday The Lady Sings ℗ 1946 The Verve Music Group, a Division of UMG Recordings, Inc. Released on: 1956-01-01 Associated Performer, Recording Arranger: Toots Camarata Composer Lyricist: Arthur Herzog Jr. Composer Lyricist: Billie Holiday Auto-generated by YouTube.
I don't own anything on this video
"Don't Explain" is a song written by jazz singer Billie Holiday and Arthur Herzog Jr. in 1945. It is said Billie wrote "Don't Explain" after her husband, Jimmy Monroe, came home one night with lipstick traces on his collar. Billie's accompanied by Toots Camarata (conc. & arr); Russ Case (tp); Hykie Schertzer, Jack Cressy (as); Larry Binyon, Dave Harris (ts); Dave Bowman (p); Carl Kress (g); Haigh Stephens (b); George Wettling (ds); and Six strings. Recorded November 8, 1944, New York. (Decca Records) Hush now, don't explain Just say you'll remain I'm glad you're back Don't explain Quiet, don't explain What is there to gain Skip that lipstick Don't explain You know that I love you And what love endures All my thoughts are of you For I'm so completely yours Cry to hear folks chatter And I...
Provided to YouTube by Universal Music Group Don't Explain · Nina Simone Let It All Out ℗ A Verve Label Group Release; ℗ 1966 UMG Recordings, Inc. Released on: 1966-01-01 Producer: Hal Mooney Associated Performer, Guitar, Flute: Rudy Stevenson Associated Performer, Double Bass: Lisle Atkinson Associated Performer, Drums: Bobby Hamilton Associated Performer, Recording Arranger: Nina Simone Composer Lyricist: Billie Holiday Composer Lyricist: Arthur Herzog Jr. Auto-generated by YouTube.
Anna Marie Wooldridge (August 6, 1930 – August 14, 2010), known by her stage name Abbey Lincoln, was an American jazz vocalist, songwriter, and actress, who wrote and performed her own compositions. She was a civil rights advocate during the 1960s.
Born in Chicago but raised in Calvin Center, Cass County, Michigan, Lincoln was one of many singers influenced by Billie Holiday. She often visited the Blue Note jazz club in New York City. Her debut album, Abbey Lincoln's Affair – A Story of a Girl in Love, was followed by a series of albums for Riverside Records. In 1960 she sang on Max Roach's landmark civil rights-themed recording, We Insist! Lincoln’s lyrics were often connected to the civil rights movement in America.
During the 1980s, Lincoln’s creative output was smaller and she released only a few albums during that decade. Her song "For All We Know" is featured in the 1989 film Drugstore Cowboy. During the 1990s and until her death, however, she fulfilled a 10-album contract with Verve Records. After a tour of Africa in the mid-1970s, she adopted the name Aminata Moseka.
I think about the life I live
A figure made of clay
And think about the things I lost
The things I gave away
And when I'm in a certain mood
I search the house and look
One night I found these magic words
In a magic book
Throw it away
Throw it away
Give your love, live your life
Each and every day
And keep your hand wide open
Let the sun shine through
'Cause you can never lose a thing
If it belongs to you
There's a hand to rock the cradle
And a hand to help us stand
With a gentle kind of motion
As it moves across the land
And the hand's unclenched and open
Gifts of life and love it brings
So keep your hand wide open
If you're needing anything
Throw it away
Throw it away
Give your love, live your life
Each and every day
And keep your hand wide open
Let the sun shine through
'Cause you can never lose a thing
If it belongs to you
Throw it away
Throw it away
Give your love, live your life
Each and every day
And keep your hand wide open
Let the sun shine through
'Cause you can never lose a thing
If it belongs to you
'Cause you can never lose a thing
If it belongs to you
You can never ever lose a thing
If it belongs to you
You can never ever lose a thing
If it belongs to you
You can never ever lose a thing