- published: 09 Oct 2008
- views: 12233214
'+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 Kennedy "Duke" Ellington (April 29, 1899 – May 24, 1974) was an American composer, pianist and bandleader of a jazz orchestra. He led his orchestra from 1923 until his death, his career spanning over 50 years.
Born in Washington, D.C., Ellington was based in New York City from the mid-1920s onward, and gained a national profile through his orchestra's appearances at the Cotton Club in Harlem. In the 1930s, his orchestra toured in Europe. Though widely considered to have been a pivotal figure in the history of jazz, Ellington embraced the phrase "beyond category" as a liberating principle, and referred to his music as part of the more general category of American Music, rather than to a musical genre such as jazz.
Some of the musicians who were members of Ellington's orchestra, such as saxophonist Johnny Hodges, are considered to be among the best players in jazz. Ellington melded them into the best-known orchestral unit in the history of jazz. Some members stayed with the orchestra for several decades. A master at writing miniatures for the three-minute 78 rpm recording format, Ellington often composed specifically to feature the style and skills of his individual musicians.
The Harlem River is a navigable tidal estuary in New York City, United States that flows north from the East River towards the Hudson River. There it joins the Harlem River Ship Canal and Spuyten Duyvil Creek to form an 8-mile (13 km) strait separating the boroughs of Manhattan and the Bronx. Today, the confluence of the three is referred to simply as the Harlem River.
The construction of the ship canal in 1895 and its subsequent in-filling in 1914 caused a small portion of Manhattan, Marble Hill, to be isolated on the Bronx side of the river.
The Harlem River forms a part of the Hudson estuary system, serving as a narrow strait that divides the island of Manhattan from the Bronx. Approximately 18,000 years ago the Laurentide ice sheet receded northward across the continent leaving behind a large escarpment creating the modern day Hudson River. About 6,000 years ago the Hudson River emptied into the ancient Atlantic Ocean, depositing sediments over the bedrock; this resulted in the formation of the Hudson River estuary, which is the water and land at the mouth the river that contains a mixture of salt and freshwater, including the Harlem River.
Harlem River is the debut studio album by American indie rock musician Kevin Morby, released on November 26, 2013 by Woodsist Records.
All songs written by Kevin Morby.
Coordinates: 40°48′32.52″N 73°56′54.14″W / 40.8090333°N 73.9483722°W / 40.8090333; -73.9483722
Harlem is a large neighborhood in the northern section of the New York City borough of Manhattan. Since the 1920s, Harlem has been known as a major African-American residential, cultural and business center. Originally a Dutch village, formally organized in 1658, it is named after the city of Haarlem in the Netherlands. Harlem's history has been defined by a series of economic boom-and-bust cycles, with significant population shifts accompanying each cycle.
African-American residents began to arrive en masse in 1905, with numbers fed by the Great Migration. In the 1920s and 1930s, Central and West Harlem were the focus of the "Harlem Renaissance", an outpouring of artistic work without precedent in the American black community. However, with job losses in the time of the Great Depression and the deindustrialization of New York City after World War II, rates of crime and poverty increased significantly. Harlem's black population peaked in the 1950s. In 2008, the United States Census found that for the first time since the 1930s, less than half of residents were black, and black residents only counted for 40% of the population.
Harlem is a symphonic jazz composition by the American composer Duke Ellington.
Originally commissioned by Arturo Toscanini in 1950 to be part of a larger New York-inspired orchestral suite, Toscanini never conducted it. Ellington himself first recorded it in 1951 (as "A Tone Parallel to Harlem (Harlem Suite)" in his Ellington Uptown album), and it was given its live premiere in 1955 at Carnegie Hall by Don Gillis and the Symphony of the Air.
The piece lasts for around fifteen minutes and exists in Ellington's large jazz orchestra version as well as a full symphonic version orchestrated by Luther Henderson. Both versions begin with a distinctive trumpet solo which intones the word 'Harlem'.
In his own memoirs Ellington wrote:
Ellington re-recorded it in Paris in 1963 (on The Symphonic Ellington album). It has since been recorded by several ensembles and conductors including Maurice Peress (in his own orchestration) with the American Composers Orchestra, Neeme Jarvi with the Detroit Symphony Orchestra, Simon Rattle with the City of Birmingham Symphony Orchestra and John Mauceri with the Hollywood Bowl Orchestra. Mauceri also produced a new edition of the full symphonic score. In 2012, it was recorded by JoAnn Falletta and the Buffalo Philharmonic Orchestra in the Peress orchestration.
Harlem is an American garage rock band comprising vocalist/guitarist/drummer Michael Coomers, vocalist/guitarist/drummer Curtis O'Mara and bassist Jose Boyer, formerly of Chapel Hill-based The Gondoliers and The Kashmir.
Harlem started in Tucson, AZ before relocating to Austin where they generated a mountain of attention, both with their live shows and their self-issued 2008 album Free Drugs ;-), mastered by Nathan Sabatino at Loveland Recording Studios.
Matador signed the Austin, Texas trio to a multi-record, worldwide deal. Harlem recorded their 2nd album in the summer of 2009.Hippies, was released on April 6, 2010. It was recorded by Mike McHugh at "The Distillery" in Costa Mesa, California. As of April 2012, the band is on an indefinite hiatus as all members are busy with other projects.
This is a segment from the film Reveille with Beverly from 1943; the song was composed in 1939.
For many more Duke Ellington releases go to: https://storyvillerecords.com/product-category/duke-ellington/ In the early 1960's the Goodyear Tire Company commisioned 5 short jazz films. The programs were originally filmed in 35 mm negative. The sound was recorded in professional stereo. Presenting the band in full vigor. Over the years, the prints faded to pink, because of an unstable color print stock. What was once an extremely professional, good looking endavour, now looked like the most out of date historic relic. In the late 80s Storyville Films polished and remastered the original source material and sync'ed music to the images. Finally these films were back to their intended quality and now stand as some of the most technically advanced of jazz films of the early 60s. This c...
Duke Ellington and his orchestra playing this awesome tune in 1943. "It Don't Mean a Thing (If It Ain't Got That Swing)" is a 1931 composition by Duke Ellington with lyrics by Irving Mills, now accepted as a jazz standard. The music was written and arranged by Ellington in August 1931 during intermissions at Chicago's Lincoln Tavern and was first recorded by Ellington and his orchestra for Brunswick Records (Br 6265) on February 2, 1932. Ivie Anderson sang the vocal and trombonist Joe Nanton and alto saxophonist Johnny Hodges played the instrumental solos. The title was based on the oft stated credo of Ellington's former trumpeter Bubber Miley, who was dying of tuberculosis. The song became famous, Ellington wrote, "as the expression of a sentiment which prevailed among jazz musicians a...
00:18 - Black And Tan Fantasy 05:07 - The Mooch 07:05 - Harlem Air Shaft 10:23 - Sophisticated Lady 14:12 - My Funny Valentine 20:39 - Kinda Dukish/Rockin’ In Rhythm 26:22 - Mr. Gentle And Mr. Cool 33:22 - Jack The Bear 36:41 - You Better Know It 39:43 - All Of Me 42:12 - Things Ain’t What They Used To Be 46:40 - Hi-Fi-Fo-Fum 54:00 - Don’t Get Around Much Anymore 57:10 - Caravan 57:57 - I Got It Bad And That Ain’t Good 59:22 - It Don’t Mean A Thing If It Ain’t Got That Swing) 1:01:01 - Solitude 1:03:31 - I Let A Song Go Out Of My Heart 1:06:18 - Diminuendo And Crescendo In Blue Band listing: Duke Ellington Piano Johny Hodges Alto Sax Russel Procope Alto Sax & Clarinet Paul Gonsalves Tenor Sax & Clarinet Jimmy Hamilton Tenor Sax & Clarinet Harry Carney Baritone Sax, Clarinet, & Bass Cla...
Ella Fitzgerald and Duke Ellington "It Don't Mean A Thing (If It Ain't Got That Swing)" on The Ed Sullivan Show on March 7, 1965. Subscribe now to never miss an update: https://ume.lnk.to/EdSullivanSubscribe Watch Motown performances from The Ed Sullivan Show https://youtube.com/watch?v=2ia6zQLOPfU&list=PLQWND5qZhbj3tfQKiK-5FzjLSTUz5WRTf Watch classic Rock and Roll performances from The Ed Sullivan Show: https://youtube.com/watch?v=fL3HO0gf0Co&list=PLQWND5qZhbj06AA1fnZQnHvOqP5ZctF8Y Watch Iconic Singers perform on The Ed Sullivan Show: https://www.youtube.com/watch?v=MIIU9xkGAMs&list=PLQWND5qZhbj1fSTRzLrpV3vLO1yOGx8vH Sign up to receive the Ed Sullivan Show newsletter! https://EdSullivan.lnk.to/SubscribeToEmail Follow The Ed Sullivan Show: Website http://edsullivan.com/ Facebook http...
Mood Indigo" (1930) is a jazz composition and song, with music by Duke Ellington and Barney Bigard with lyrics by Irving Mills. Ellington's biographer, Terry Teachout, described it as "an imperishable classic, one of a handful of songs that come to mind whenever Ellington's name is mentioned anywhere in the world". Colored in indigo. Recorded on January 23, 1967 in Denmark. Duke Ellington - Piano Rufus Jones - Drums John Lamb - Bass....
Provided to YouTube by Columbia/Legacy Mood Indigo · Duke Ellington Masterpieces By Ellington ℗ Originally released 1951. All rights reserved by Columbia Records, a division of Sony Music Entertainment Released on: 1956-04-23 Associated Performer, Producer: Unknown Composer, Lyricist: A. Bigard Composer, Lyricist: D. Ellington Composer, Lyricist: I. Mills Auto-generated by YouTube.
Unlock the Timeless Magic of Duke Ellington's Don't Get Around Much Anymore! Prepare yourself for an unforgettable musical experience with this piano cover of Duke Ellington's classic number, "Don't Get Around Much Anymore." Originally titled "Never No Lament," this song tells a poignant story that resonates with listeners even today. Written by the brilliant Bob Russell during the backdrop of World War II, this jazz standard encapsulates feelings of longing and separation. As you listen, allow yourself to be transported to another era where the echoes of jazz continue to inspire and evoke deep emotions. ------------------------------------------------------------- What to Expect in This Captivating Video: - A Captivating Piano Experience: Immerse yourself in a stunning piano performan...
Duke Ellington - Just a Memory (Full Album) -------------------------------------------------------------------------------------------------------- Tip: click on the time and listen your favorite song Track list: 1 | 00:00 | Duke Ellington - Blue Serge (Ellington) 2 | 03:24 | Duke Ellington & His Orchestra - Arabesque Cookie (Arabian Dance) (Tchaikovsky) 3 | 09:05 | Duke Ellington & His Orchestra - C Jam Blues (Duke Ellington) 4 | 13:55 | Duke Ellington - Solitude (Ellington) 5 | 16:55 | Duke Ellington & His Orchestra - Truckin' (Koheler) 6 | 19:58 | Duke Ellington & His Orchestra - Mood Indigo (Duke Ellington) 7 | 23:02 | Duke Ellington & His Orchestra - Smada (Duke Ellington) 8 | 25:39 | Duke Ellington & His Orchestra - Basin Street Blues (Spencer Williams) 9 | 33:43 | Duke Ell...
Kevin Morby - Harlem River
From the album Harlem River by Kevin Morby out now on Woodsist http://www.woodsist.com/product/kevin-morby-harlem-river-cdlp/ Directed by : Adarsha Benjamin / Featuring : Jena Malone, Nana Ghana and Tamzin Brown Order CD / LP / iTunes: http://www.woodsist.com/product/kevin-morby-harlem-river-cdlp/
Stream/Download 'Harlem River': https://monolink.lnk.to/HarlemRiver_Falling Preorder my new album 'Under Darkening Skies': https://linktr.ee/embassyone Follow @Monolink Instagram: http://www.instagram.com/monolinkmusic Facebook: http://www.facebook.com/monolinkmusic Official Website: http://mono.link Original song by the amazing Kevin Morby. directed by: http://www.ja-m-es.com Lyrics: Harlem River talk to me Tell me what you think about Harlem River I'm in love, love, love, love Harlem River talk to me Where are we headed now? Harlem River I'm in love, love, love, love All because of you In my pearl and my diamond shoes I climbed a cloud, now I stole the moon Harlem River All because of you And Harlem River swallow me Put your hands around my neck And Harlem River I can't breathe T...
Kevin Morby - "Harlem River" Live filmé à l'Épicerie Moderne (Feyzin, FR) le mercredi 16.11.2016 en partenariat avec Le Marché Gare, l'Épicerie Moderne et S2M. Captation live en multicam réalisée grâce à l'aide d'Amandine Stk. Mixage son par Cédric Béron de l'Épicerie Moderne. Réalisation et montage par MNTNS. D'autres vidéos de MNTNS (en haute qualité et sans publicité) : https://vimeo.com/mntns Site de l'Épicerie Moderne : http://www.epiceriemoderne.com/ Site du Marché Gare : http://www.marchegare.fr/ Plus d'infos sur le réseau S2M : http://www.scenes-musiques-metropolitaines.com/ Pour écouter plus de morceaux de Kevin Morby : https://kevinmorby.bandcamp.com/
"Kevin Morby: Harlem River 10," a film by Matt Lief Anderson. A look at the origin and evolution of Harlem River on the tenth anniversary of its release. Featuring an interview with Kevin Morby and performance footage from the last decade. Additional Audio Mixing and Mastering by Gavin Watts and Tomas Moreno Additional color editing by Alex Lohrum With appearances by: Lauren Balthrop Alicia Chakour Sam Cohen Katie Crutchfield Liam Cunningham Meg Duffy Cochemea Gastelum Cyrus Gengras Oliver Hill Nick Kinsey Hermon Mehari Elizabeth Moen Stephen Patterson Jared Samuel Dave Sherman Eric Slick Macie Stewart Justin Sullivan Harlem River is out now on Woodsist, available on vinyl and CD. https://woodsist.com/product/kevin-morby-harlem-river-cdlp/
Please support the original artist: https://www.youtube.com/channel/UCvMBsRrwruNyPB3VSPDSUiQ
Monolink - Harlem River Monolink - Harlem River by Ultra Music Available Now on Monolink's new album "Under Darkening Skies" https://ffm.to/underdarkeningskies The Latest & Greatest from Ultra Music https://ffm.to/officialvideos Follow Us: https://www.youtube.com/user/UltraRecords/?sub_confirmation=1 https://www.ultramusic.com https://www.twitter.com/ultrarecords https://www.facebook.com/ultramusic https://www.youtube.com/ultratv https://instagram.com/ultrarecords https://soundcloud.com/ultrarecords https://open.spotify.com/user/ultramusicofficial
Vinyl edition: https://moderator.bandcamp.com/album/the-world-within-vinyl-edition https://cultclassicrecords.bandcamp.com/album/the-world-within
Harlem River is the debut studio album by American indie rock musician Kevin Morby, released on November 26, 2013 by Woodsist Records. Tracklist: 1. Miles, Miles, Miles [00:00] 2. Wild Side (Oh, the Places You'll Go) [4:49] 3. Harlem River [10:31] 4. If You Leave, and If You Marry [19:48] 5. Slow Train (feat. Cate Le Bon) [23:29] 6. Reign [29:20] 7. Sucker in the Void (The Lone Mile) [33:31] 8. The Dead They Don't Come Back [37:34]
Fred Astaire with a stomach full of Corn Chips and Valium
Edward Kennedy "Duke" Ellington (April 29, 1899 – May 24, 1974) was an American composer, pianist and bandleader of a jazz orchestra. He led his orchestra from 1923 until his death, his career spanning over 50 years.
Born in Washington, D.C., Ellington was based in New York City from the mid-1920s onward, and gained a national profile through his orchestra's appearances at the Cotton Club in Harlem. In the 1930s, his orchestra toured in Europe. Though widely considered to have been a pivotal figure in the history of jazz, Ellington embraced the phrase "beyond category" as a liberating principle, and referred to his music as part of the more general category of American Music, rather than to a musical genre such as jazz.
Some of the musicians who were members of Ellington's orchestra, such as saxophonist Johnny Hodges, are considered to be among the best players in jazz. Ellington melded them into the best-known orchestral unit in the history of jazz. Some members stayed with the orchestra for several decades. A master at writing miniatures for the three-minute 78 rpm recording format, Ellington often composed specifically to feature the style and skills of his individual musicians.
In my solitude you haunt me
with reveries of days gone by
in my solitude you taunt me
with memories that never die
i sit in my chair
filled with despair
nobody could be so sad
with gloom ev'rywhere
i sit and i stare
i know that i'll soon go mad
in my solitude
i'm praying
dear lord above
send back my love
alternative lyric:
in my solitude you haunt me
with reveries of days gone by
in my solitude you taunt me
with memories that never die
i sit in my chair
i'm filled with despair
there's no one could be so sad
with gloom ev'rywhere
i sit and i stare
i know that i'll soon go mad
in my solitude
i'm praying
dear lord above
send back my love