'+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; })); }); -->

Hoagy Carmichael

Howard Hoagland "Hoagy" Carmichael (November 22, 1899 – December 27, 1981) was an American composer, pianist, singer, actor, and bandleader. He is best known for composing the music for "Stardust", "Georgia on My Mind", "The Nearness of You", and "Heart and Soul", four of the most-recorded American songs of all time.

American composer and author Alec Wilder wrote of Carmichael in American Popular Song: The Great Innovators, 1900–1950 that he was the "most talented, inventive, sophisticated and jazz-oriented" of the hundreds of writers composing pop songs in the first half of the 20th century.

Biography

Early life

Closer (Joy Division album)

Closer is the second and final studio album by the English rock band Joy Division. It was released on 18 July 1980 on Factory Records, following the May 1980 suicide of lead singer Ian Curtis. The album was produced by Martin Hannett and contains a more layered and austere sound than its predecessor, Unknown Pleasures, with synthesizers and studio effects now serving a prominent role. No singles were released from the album. After the posthumous release of Joy Division's only hit "Love Will Tear Us Apart" in June 1980, the remaining members re-formed as New Order.

Today, Closer is widely recognised a seminal post-punk release. According to critic Ned Raggett, "Joy Division were at the height of their powers on Closer [...] rock, however defined, rarely seems and sounds so important, so vital, and so impossible to resist or ignore as here."

Writing and recording

Unlike the tracks on "Unknown Pleasures" which were written well before the album, had been played live many times and were fully formed before recording, the material for "Closer" was put together just before or during the band's time in the studio. Most songs were written by jamming in their practice room. Regarding the album's lyrical content, Sumner remarked, "We’d go to rehearsals and sit around and talk about really banal things. We’d do that until we couldn’t talk about banal things any more, then we’d pick up our instruments and record into a little cassette player. We didn’t talk about the music or the lyrics very much. We never analysed it."

Heart and Soul (Kenny G album)

Heart and Soul is the thirteenth studio album by Kenny G, which was released on June 29, 2010. Kenny and renowned studio master Walter Afanasieff (Christina Aguilera, Michael Bolton, Mariah Carey, Céline Dion, Whitney Houston, Mika, Barbra Streisand) produced and arranged the album. On December 1, 2010, it was nominated for a Grammy for Best Pop Instrumental Album.

Track listing

Chart performance

The album was also commercially successful, which debuted and peaked at number one in the Billboard Jazz Albums chart on July 17, 2010. It debuted and peaked at number thirty-three in the Billboard 200 on July 17, 2010.

The singles released from this album were quite successful in the Billboard Jazz Songs chart in 2010. "Fall Again" peaked at number six, while "Heart and Soul" debuted at number twenty-three, and peaked at number one.

Charts

References

Camp Rock 2: The Final Jam (soundtrack)

Camp Rock 2: The Final Jam is the soundtrack album from the Disney Channel Original Movie of the same name. The album was released on August 10, 2010. The album debuted at #3 on Billboard 200 album charts with over 41,000 copies sold in the first week.

Singles

  • "Wouldn't Change a Thing" by Demi Lovato and Joe Jonas was released on July 23, 2010, as the lead single from the album. The song was written and produced by Adam Anders, Nikki Hassman and Peer Åström.
  • Critical reception

    Stephen Thomas Erlewine of Allmusic gave a review: "Camp Rock 2 finds the Jonas Brothers and Demi Lovato joined by R&B singer Matthew "Mdot" Finley, who gives this collection of Disney bubblegum of slightly different flavor".

    Commercial performance

    The album debuted at number 3 on the Billboard 200 chart.

    Track listing

    International versions

    Hindi versions

    All the songs were dubbed in Hindi for the film. The Hindi-language version of the film premiered in India on October 15, 2010.

  • "Introducing Me" ("Begaana kahi")
  • Podcasts:

    Hoagy Carmichael

    ALBUMS

    Born: 1899-11-22

    Died: 1981-12-27

    • Am I Blue (1944) Hoagy Carmichael

      Am I Blue Excerpt from "To Have And Have Not" (1944) Hoagie Carmichael, on piano, sings with Lauren Bacall.

      published: 06 Feb 2009
    • Stardust - Hoagy Carmichael - Original Version

      Great song written and performed by Hoagy Carmichael. No copyright infringement intended.

      published: 26 Jul 2010
    • Top 10 Hoagy Carmichael Songs

      Full list of Hoagy Carmichael songs: https://tsort.info/music/96n32r.htm Information on how this list was aggregated: http://tsort.info/music/faq_site_generation.htm

      published: 23 Nov 2017
    • HOAGY CARMICHAEL - Heart and Soul

      HOAGY CARMICHAEL Titre: Heart and Soul ( 1938 ) TRADUCTION: Parfois je me demande pourquoi je passe Les nuits solitaires à rêver d'une chanson La mélodie hante ma rêverie Et je suis de nouveau avec vous Quand notre amour était nouveau Et chaque baiser une source d'inspiration Ah, mais c'était il ya longtemps Maintenant, ma consolation est dans la poussière d'étoiles d'une chanson À côté du mur du jardin quand les étoiles sont lumineuses Vous êtes dans mes bras Le rossignol raconte son conte de fées De paradis où les roses ont augmenté Bien que je rêve en vain Dans mon cœur, il restera Ma mélodie de poussières d'étoiles Le souvenir de l'amour refrain

      published: 15 Apr 2014
    • Hoagy Carmichael ‎– Hoagy Carmichael Sings Hoagy Carmichael (1975)

      published: 30 Jan 2018
    • Hoagy Carmichael - Georgia on My Mind

      © Written in 1930 by Hoagy Carmichael (music) and Stuart Gorrell (lyrics) © Gorrell wrote the lyrics for Hoagy's sister, Georgia Carmichael. However, the lyrics of the song are ambiguous enough to refer either to the state or to a woman named "Georgia". Carmichael's 1965 autobiography, "Sometimes I Wonder", records the origin: a friend, saxophonist and bandleader Frankie Trumbauer, suggested: "Why don't you write a song called 'Georgia'? Nobody lost much writing about the South." Thus, the song is universally believed to have been written about the state. (The photo has very little to do with the song. look for "To Have And Have Not". Brilliant Piece)

      published: 28 May 2013
    • Hoagy Carmichael - "The monkey song"

      from "The Las Vegas Story" (1952) with Jane Russell.

      published: 01 Mar 2011
    • Stardust - Hoagy Carmichael (Ft. Josh Turner)

      Hello everyone! It's been a while! I'm sorry that I haven't been posting as much, but hopefully this makes up for lost time :) Josh and I have been buds for quite some time now, as we met virtually through Instagram in 2014. At that time we were both posting short 15 second clips of music covers and at that time not alot of other people were doing this. I'm so glad that we were able to connect and grow a friendship in real life! He is such a gifted musician, and I am truly so honored to create alongside him. The biggest reason we chose this song is mainly because any time I have done a poll online or asked my followers to send me a song request, he has never sent me any other song than "Stardust". This song is so hauntingly beautiful, and when he said that he was coming through Nashvi...

      published: 18 Oct 2021
    • 10 Things You Should Know About Hoagy Carmichael

      Here are 10 things you should know about Hoagy Carmichael, born on November 22, 1899. Best remembered as a composer and musician, he enjoyed success as an actor, too. ____________ About Cladrite Radio: Cladrite Radio is a streaming radio station (https://cladriteradio.com) that has been featuring pop and jazz of the 1920s, '30s and '40s for more than a dozen years. We also explore other areas of vintage popular culture on our website and social media pages. Our licensing costs are sizable, and we are a fully listener-supported station, so if you enjoy the content we share on social media and the music we play on our streaming station, please consider joining as a sponsor at https://patreon.com/cladriteradio for as little as $5 a month. #CladriteRadio #vintagepopculture #classicmovies #192...

      published: 22 Nov 2019
    • Hoagy Carmichael - "My Resistance Is Low"

      A tribute to Hoagy Carmichael on his 100th birthday.

      published: 27 Nov 2010
    Am I Blue (1944) Hoagy Carmichael
    1:41

    Am I Blue (1944) Hoagy Carmichael

    • Order:
    • Duration: 1:41
    • Uploaded Date: 06 Feb 2009
    • views: 712613
    Am I Blue Excerpt from "To Have And Have Not" (1944) Hoagie Carmichael, on piano, sings with Lauren Bacall.
    https://wn.com/Am_I_Blue_(1944)_Hoagy_Carmichael
    Stardust - Hoagy Carmichael - Original Version
    3:20

    Stardust - Hoagy Carmichael - Original Version

    • Order:
    • Duration: 3:20
    • Uploaded Date: 26 Jul 2010
    • views: 1579046
    Great song written and performed by Hoagy Carmichael. No copyright infringement intended.
    https://wn.com/Stardust_Hoagy_Carmichael_Original_Version
    Top 10 Hoagy Carmichael Songs
    3:27

    Top 10 Hoagy Carmichael Songs

    • Order:
    • Duration: 3:27
    • Uploaded Date: 23 Nov 2017
    • views: 67872
    Full list of Hoagy Carmichael songs: https://tsort.info/music/96n32r.htm Information on how this list was aggregated: http://tsort.info/music/faq_site_generation.htm
    https://wn.com/Top_10_Hoagy_Carmichael_Songs
    HOAGY CARMICHAEL - Heart and Soul
    3:59

    HOAGY CARMICHAEL - Heart and Soul

    • Order:
    • Duration: 3:59
    • Uploaded Date: 15 Apr 2014
    • views: 960720
    HOAGY CARMICHAEL Titre: Heart and Soul ( 1938 ) TRADUCTION: Parfois je me demande pourquoi je passe Les nuits solitaires à rêver d'une chanson La mélodie hante ma rêverie Et je suis de nouveau avec vous Quand notre amour était nouveau Et chaque baiser une source d'inspiration Ah, mais c'était il ya longtemps Maintenant, ma consolation est dans la poussière d'étoiles d'une chanson À côté du mur du jardin quand les étoiles sont lumineuses Vous êtes dans mes bras Le rossignol raconte son conte de fées De paradis où les roses ont augmenté Bien que je rêve en vain Dans mon cœur, il restera Ma mélodie de poussières d'étoiles Le souvenir de l'amour refrain
    https://wn.com/Hoagy_Carmichael_Heart_And_Soul
    Hoagy Carmichael ‎– Hoagy Carmichael Sings Hoagy Carmichael (1975)
    44:17

    Hoagy Carmichael ‎– Hoagy Carmichael Sings Hoagy Carmichael (1975)

    • Order:
    • Duration: 44:17
    • Uploaded Date: 30 Jan 2018
    • views: 9549
    https://wn.com/Hoagy_Carmichael_‎–_Hoagy_Carmichael_Sings_Hoagy_Carmichael_(1975)
    Hoagy Carmichael - Georgia on My Mind
    3:58

    Hoagy Carmichael - Georgia on My Mind

    • Order:
    • Duration: 3:58
    • Uploaded Date: 28 May 2013
    • views: 403576
    © Written in 1930 by Hoagy Carmichael (music) and Stuart Gorrell (lyrics) © Gorrell wrote the lyrics for Hoagy's sister, Georgia Carmichael. However, the lyrics of the song are ambiguous enough to refer either to the state or to a woman named "Georgia". Carmichael's 1965 autobiography, "Sometimes I Wonder", records the origin: a friend, saxophonist and bandleader Frankie Trumbauer, suggested: "Why don't you write a song called 'Georgia'? Nobody lost much writing about the South." Thus, the song is universally believed to have been written about the state. (The photo has very little to do with the song. look for "To Have And Have Not". Brilliant Piece)
    https://wn.com/Hoagy_Carmichael_Georgia_On_My_Mind
    Hoagy Carmichael - "The monkey song"
    2:31

    Hoagy Carmichael - "The monkey song"

    • Order:
    • Duration: 2:31
    • Uploaded Date: 01 Mar 2011
    • views: 166954
    from "The Las Vegas Story" (1952) with Jane Russell.
    https://wn.com/Hoagy_Carmichael_The_Monkey_Song
    Stardust - Hoagy Carmichael (Ft. Josh Turner)
    3:24

    Stardust - Hoagy Carmichael (Ft. Josh Turner)

    • Order:
    • Duration: 3:24
    • Uploaded Date: 18 Oct 2021
    • views: 1338686
    Hello everyone! It's been a while! I'm sorry that I haven't been posting as much, but hopefully this makes up for lost time :) Josh and I have been buds for quite some time now, as we met virtually through Instagram in 2014. At that time we were both posting short 15 second clips of music covers and at that time not alot of other people were doing this. I'm so glad that we were able to connect and grow a friendship in real life! He is such a gifted musician, and I am truly so honored to create alongside him. The biggest reason we chose this song is mainly because any time I have done a poll online or asked my followers to send me a song request, he has never sent me any other song than "Stardust". This song is so hauntingly beautiful, and when he said that he was coming through Nashville recently I knew this was the song we needed to do! **ALSO** This song is available on all streaming platforms for everyone to hear! You can purchase it on Apple music and Amazon music as well. ______________________________________ My Patreon (AKA the super cool place where you can download all of my music from my videos!): - https://www.patreon.com/allisonyoungmusic ______________________________________ + Details: Instruments: - Cordoba Classical A C10 Mic details: - My mic: Vangaurd V44s - Josh mic: sE electronics sE8 (x2) Video Details: Shot by the amazing and talented Kelly Oden! You can find Kelly on instagram: https://www.instagram.com/kelly__oden/ - Canon EOS R with RF 35mm lens - DJI gimbal - Edited on Adobe Premier Mix: By the amazing and talented Josh Turner! - Interface: Zoom F8n - Mixed on ProTools ~Josh's Details! Josh's YouTube Channel:@JoshTurnerGuitar Josh's Instagram: https://www.instagram.com/joshua_lee_turner/?hl=en Josh's Patreon: https://www.patreon.com/JoshTurnerGuitar __________________________ Find me elsewhere: Instagram: https://www.instagram.com/allisonyoung.xo Bandcamp: https://allisonyoung.bandcamp.com/​​ You can find my original music on all streaming platforms! ~Virtual Tip Jar: PayPal: https://www.paypal.me/allisonnlovess​​ Venmo: @allisonnlovess (Thank you 🧡) Wishing you health and happiness, Xo
    https://wn.com/Stardust_Hoagy_Carmichael_(Ft._Josh_Turner)
    10 Things You Should Know About Hoagy Carmichael
    2:09

    10 Things You Should Know About Hoagy Carmichael

    • Order:
    • Duration: 2:09
    • Uploaded Date: 22 Nov 2019
    • views: 14086
    Here are 10 things you should know about Hoagy Carmichael, born on November 22, 1899. Best remembered as a composer and musician, he enjoyed success as an actor, too. ____________ About Cladrite Radio: Cladrite Radio is a streaming radio station (https://cladriteradio.com) that has been featuring pop and jazz of the 1920s, '30s and '40s for more than a dozen years. We also explore other areas of vintage popular culture on our website and social media pages. Our licensing costs are sizable, and we are a fully listener-supported station, so if you enjoy the content we share on social media and the music we play on our streaming station, please consider joining as a sponsor at https://patreon.com/cladriteradio for as little as $5 a month. #CladriteRadio #vintagepopculture #classicmovies #1920smusic #1920sjazz #1920spop #1930smusic #1930sjazz #1930spop #vintagelifestyle #vintagepopularculture #classicfilm #classicHollywood #classicmoviestars #filmnoir #precode #precodemovies #screwballcomedy
    https://wn.com/10_Things_You_Should_Know_About_Hoagy_Carmichael
    Hoagy Carmichael - "My Resistance Is Low"
    2:55

    Hoagy Carmichael - "My Resistance Is Low"

    • Order:
    • Duration: 2:55
    • Uploaded Date: 27 Nov 2010
    • views: 78015
    A tribute to Hoagy Carmichael on his 100th birthday.
    https://wn.com/Hoagy_Carmichael_My_Resistance_Is_Low
    • Joy Division Closer 1980 Full Album

      published: 28 Oct 2014
    • Joy Division - Closer 1980 Full Album Vinyl

      A1 Atrocity Exhibition A2 Isolation -----------------------6:10 A3 Passover -----------------------9:03 A4 Colony --------------------------13:50 A5 A Means To An End --------17:47 B1 Heart And Soul ----------------21:59 B2 Twenty Four Hours -----------27:53 B3 The Eternal -----------------------32:25 B4 Decades-------------------------38:34

      published: 10 Jun 2023
    • Joy Division - Unknown Pleasures / Closer [Full Album HQ]

      FLAC - HIGHEST Quality

      published: 02 Feb 2024
    • Joy Division - Closer [FULL ALBUM] ☆☆☆☆☆

      Joy Division - Closer [FULL ALBUM] ☆☆☆☆☆ 👍 Atypeek Mag Subscribe / 申し込む / S'abonner : https://urlz.fr/bWPX _________________ No copyright infringement intended. For promotional purposes only. All rights reserved to the respective owners and artists. Please support the artists and buy their music. Thank you and enjoy. ___________________

      published: 19 Aug 2022
    • Joy Division - 1979 - Unknown Pleasures

      Unknown Pleasures is the debut studio album by English rock band Joy Division, released on 15 June 1979 by Factory Records.The album was recorded and mixed over three successive weekends at Stockport's Strawberry Studios in April 1979, and was produced by Martin Hannett,who incorporated a number of unconventional production techniques into the group's sound. The cover artwork was designed by artist Peter Saville, using a data plot of signals from a radio pulsar. It is the only Joy Division album released during lead singer Ian Curtis's lifetime. Factory Records did not release any singles from Unknown Pleasures, and the album did not chart despite the relative success of the group's non-album debut single "Transmission". It has since received sustained critical acclaim as an influential p...

      published: 18 Oct 2021
    • Joy Division - Channel 4's 100 Greatest Albums, 2005 - Closer

      Number 34 in list. From UK TV. Features comments from Deborah Curtis, Tony Wilson, John Aizlewood and Peter Saville.

      published: 19 May 2022
    • Joy Division - Atmosphere [OFFICIAL MUSIC VIDEO]

      Official video for Atmosphere by Joy Division. Stream Joy Division's greatest hits here ▶ https://lnk.to/JoyDivisionHitsAY Subscribe here ▶ http://youtube.com/joydivisionofficial?sub_confirmation=1 Socials: Facebook | https://www.facebook.com/JoyDivisionOfficial/ Twitter | https://twitter.com/joydivision Instagram|https://www.instagram.com/officialjoydivision/ Website|http://joydivisionofficial.com/ Watch Joy Division other official music videos ▶ https://lnk.to/JoyDivisionYTPlaylist Lyrics Walk in silence Don't walk away, in silence See the danger Always danger Endless talking Life rebuilding Don't walk away Walk in silence Don't turn away, in silence Your confusion My illusion Worn like a mask of self-hate Confronts and then dies Don't walk away People like you find it easy ...

      published: 29 Aug 2013
    • Isolation (2007 Remaster)

      Provided to YouTube by London Records Isolation (2007 Remaster) · Joy Division Closer ℗ 1980, 2007 Warner Music UK Ltd Bass Guitar: Bernard Sumner Synthesizer: Bernard Sumner Engineer: Chris Nagle Guitar: Ian Curtis Lead Vocals: Ian Curtis Engineer: Jon Caffery Unknown: Jon Davis Engineer, Producer: Martin Hannett Unknown: Michael Johnson Guitar: Peter Hook Drums: Stephen Morris Writer: Bernard Sumner Writer: Ian Curtis Writer: Peter Hook Writer: Stephen Morris Auto-generated by YouTube.

      published: 11 Nov 2014
    Joy Division   Closer 1980 Full Album
    44:26

    Joy Division Closer 1980 Full Album

    • Order:
    • Duration: 44:26
    • Uploaded Date: 28 Oct 2014
    • views: 240377
    https://wn.com/Joy_Division_Closer_1980_Full_Album
    Joy Division - Closer 1980 Full Album Vinyl
    44:52

    Joy Division - Closer 1980 Full Album Vinyl

    • Order:
    • Duration: 44:52
    • Uploaded Date: 10 Jun 2023
    • views: 2802
    A1 Atrocity Exhibition A2 Isolation -----------------------6:10 A3 Passover -----------------------9:03 A4 Colony --------------------------13:50 A5 A Means To An End --------17:47 B1 Heart And Soul ----------------21:59 B2 Twenty Four Hours -----------27:53 B3 The Eternal -----------------------32:25 B4 Decades-------------------------38:34
    https://wn.com/Joy_Division_Closer_1980_Full_Album_Vinyl
    Joy Division - Unknown Pleasures / Closer [Full Album HQ]
    1:23:52

    Joy Division - Unknown Pleasures / Closer [Full Album HQ]

    • Order:
    • Duration: 1:23:52
    • Uploaded Date: 02 Feb 2024
    • views: 863
    FLAC - HIGHEST Quality
    https://wn.com/Joy_Division_Unknown_Pleasures_Closer_Full_Album_Hq
    Joy Division - Closer [FULL ALBUM] ☆☆☆☆☆
    45:00

    Joy Division - Closer [FULL ALBUM] ☆☆☆☆☆

    • Order:
    • Duration: 45:00
    • Uploaded Date: 19 Aug 2022
    • views: 8574
    Joy Division - Closer [FULL ALBUM] ☆☆☆☆☆ 👍 Atypeek Mag Subscribe / 申し込む / S'abonner : https://urlz.fr/bWPX _________________ No copyright infringement intended. For promotional purposes only. All rights reserved to the respective owners and artists. Please support the artists and buy their music. Thank you and enjoy. ___________________
    https://wn.com/Joy_Division_Closer_Full_Album_☆☆☆☆☆
    Joy Division - 1979 - Unknown Pleasures
    39:11

    Joy Division - 1979 - Unknown Pleasures

    • Order:
    • Duration: 39:11
    • Uploaded Date: 18 Oct 2021
    • views: 1426786
    Unknown Pleasures is the debut studio album by English rock band Joy Division, released on 15 June 1979 by Factory Records.The album was recorded and mixed over three successive weekends at Stockport's Strawberry Studios in April 1979, and was produced by Martin Hannett,who incorporated a number of unconventional production techniques into the group's sound. The cover artwork was designed by artist Peter Saville, using a data plot of signals from a radio pulsar. It is the only Joy Division album released during lead singer Ian Curtis's lifetime. Factory Records did not release any singles from Unknown Pleasures, and the album did not chart despite the relative success of the group's non-album debut single "Transmission". It has since received sustained critical acclaim as an influential post-punk album, and has been named as one of the best albums of all time by publications such as NME, AllMusic, Select, Rolling Stone, and Spin. Track Listing All tracks are written by Ian Curtis, Peter Hook, Stephen Morris and Bernard Sumner. Side one No.Title 1."Disorder" 2."Day of the Lords" 3."Candidate" 4."Insight" 5."New Dawn Fades" Side Two No. Title 1."She's Lost Control" 2."Shadowplay" 3."Wilderness" 4."Interzone" 5."I Remember Nothing" Personnel Joy Division Ian Curtis – lead vocals Bernard Sumner – guitar, keyboards Peter Hook – bass guitar, backing vocals Stephen Morris – drums, percussion
    https://wn.com/Joy_Division_1979_Unknown_Pleasures
    Joy Division - Channel 4's 100 Greatest Albums, 2005 - Closer
    2:07

    Joy Division - Channel 4's 100 Greatest Albums, 2005 - Closer

    • Order:
    • Duration: 2:07
    • Uploaded Date: 19 May 2022
    • views: 2948
    Number 34 in list. From UK TV. Features comments from Deborah Curtis, Tony Wilson, John Aizlewood and Peter Saville.
    https://wn.com/Joy_Division_Channel_4's_100_Greatest_Albums,_2005_Closer
    Joy Division - Atmosphere [OFFICIAL MUSIC VIDEO]
    4:33

    Joy Division - Atmosphere [OFFICIAL MUSIC VIDEO]

    • Order:
    • Duration: 4:33
    • Uploaded Date: 29 Aug 2013
    • views: 18091671
    Official video for Atmosphere by Joy Division. Stream Joy Division's greatest hits here ▶ https://lnk.to/JoyDivisionHitsAY Subscribe here ▶ http://youtube.com/joydivisionofficial?sub_confirmation=1 Socials: Facebook | https://www.facebook.com/JoyDivisionOfficial/ Twitter | https://twitter.com/joydivision Instagram|https://www.instagram.com/officialjoydivision/ Website|http://joydivisionofficial.com/ Watch Joy Division other official music videos ▶ https://lnk.to/JoyDivisionYTPlaylist Lyrics Walk in silence Don't walk away, in silence See the danger Always danger Endless talking Life rebuilding Don't walk away Walk in silence Don't turn away, in silence Your confusion My illusion Worn like a mask of self-hate Confronts and then dies Don't walk away People like you find it easy Naked to see Walking on air Hunting by the rivers Through the streets Every corner abandoned too soon Set down with due care Don't walk away, in silence Don't walk away
    https://wn.com/Joy_Division_Atmosphere_Official_Music_Video
    Isolation (2007 Remaster)
    2:56

    Isolation (2007 Remaster)

    • Order:
    • Duration: 2:56
    • Uploaded Date: 11 Nov 2014
    • views: 1309246
    Provided to YouTube by London Records Isolation (2007 Remaster) · Joy Division Closer ℗ 1980, 2007 Warner Music UK Ltd Bass Guitar: Bernard Sumner Synthesizer: Bernard Sumner Engineer: Chris Nagle Guitar: Ian Curtis Lead Vocals: Ian Curtis Engineer: Jon Caffery Unknown: Jon Davis Engineer, Producer: Martin Hannett Unknown: Michael Johnson Guitar: Peter Hook Drums: Stephen Morris Writer: Bernard Sumner Writer: Ian Curtis Writer: Peter Hook Writer: Stephen Morris Auto-generated by YouTube.
    https://wn.com/Isolation_(2007_Remaster)
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME: 0:00 / 1:11:41

    Am I Blue (1944) Hoagy Carmichael

    Am I Blue Excerpt from "To Have And Have Not" (1944) Hoagie Carmichael, on piano, sings with Lauren Bacall.
    1:41
    Am I Blue (1944) Hoagy Carmichael
    Am I Blue Excerpt from "To Have And Have Not" (1944) Hoagie Carmichael, on piano, si...
    published: 06 Feb 2009
    Play in Full Screen
    3:20
    Stardust - Hoagy Carmichael - Original Version
    Great song written and performed by Hoagy Carmichael. No copyright infringement intend...
    published: 26 Jul 2010
    Play in Full Screen
    3:27
    Top 10 Hoagy Carmichael Songs
    Full list of Hoagy Carmichael songs: https://tsort.info/music/96n32r.htm Information on h...
    published: 23 Nov 2017
    Play in Full Screen
    3:59
    HOAGY CARMICHAEL - Heart and Soul
    HOAGY CARMICHAEL Titre: Heart and Soul ( 1938 ) TRADUCTION: Parfois je me demande pourqu...
    published: 15 Apr 2014
    Play in Full Screen
    44:17
    Hoagy Carmichael ‎– Hoagy Carmichael Sings Hoagy Carmichael (1975)
    published: 30 Jan 2018
    Play in Full Screen
    3:58
    Hoagy Carmichael - Georgia on My Mind
    © Written in 1930 by Hoagy Carmichael (music) and Stuart Gorrell (lyrics) © Gorrell wrote...
    published: 28 May 2013
    Play in Full Screen
    2:31
    Hoagy Carmichael - "The monkey song"
    from "The Las Vegas Story" (1952) with Jane Russell.
    published: 01 Mar 2011
    Play in Full Screen
    3:24
    Stardust - Hoagy Carmichael (Ft. Josh Turner)
    Hello everyone! It's been a while! I'm sorry that I haven't been posting as much, but hop...
    published: 18 Oct 2021
    Play in Full Screen
    2:09
    10 Things You Should Know About Hoagy Carmichael
    Here are 10 things you should know about Hoagy Carmichael, born on November 22, 1899. Best...
    published: 22 Nov 2019
    Play in Full Screen
    2:55
    Hoagy Carmichael - "My Resistance Is Low"
    A tribute to Hoagy Carmichael on his 100th birthday.
    published: 27 Nov 2010
    Play in Full Screen

    Hoagy Carmichael

    Howard Hoagland "Hoagy" Carmichael (November 22, 1899 – December 27, 1981) was an American composer, pianist, singer, actor, and bandleader. He is best known for composing the music for "Stardust", "Georgia on My Mind", "The Nearness of You", and "Heart and Soul", four of the most-recorded American songs of all time.

    American composer and author Alec Wilder wrote of Carmichael in American Popular Song: The Great Innovators, 1900–1950 that he was the "most talented, inventive, sophisticated and jazz-oriented" of the hundreds of writers composing pop songs in the first half of the 20th century.

    Biography

    Early life

    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME: 0:00 / 4:26:57

    Joy Division Closer 1980 Full Album

    44:26
    Joy Division Closer 1980 Full Album
    published: 28 Oct 2014
    Play in Full Screen
    44:52
    Joy Division - Closer 1980 Full Album Vinyl
    A1 Atrocity Exhibition A2 Isolation -----------------------6:10 A3 Passover ----------...
    published: 10 Jun 2023
    Play in Full Screen
    1:23:52
    Joy Division - Unknown Pleasures / Closer [Full Album HQ]
    FLAC - HIGHEST Quality
    published: 02 Feb 2024
    Play in Full Screen
    45:00
    Joy Division - Closer [FULL ALBUM] ☆☆☆☆☆
    Joy Division - Closer [FULL ALBUM] ☆☆☆☆☆ 👍 Atypeek Mag Subscribe / 申し込む / S'abonner : http...
    published: 19 Aug 2022
    Play in Full Screen
    39:11
    Joy Division - 1979 - Unknown Pleasures
    Unknown Pleasures is the debut studio album by English rock band Joy Division, released on...
    published: 18 Oct 2021
    Play in Full Screen
    2:07
    Joy Division - Channel 4's 100 Greatest Albums, 2005 - Closer
    Number 34 in list. From UK TV. Features comments from Deborah Curtis, Tony Wilson, John Ai...
    published: 19 May 2022
    Play in Full Screen
    4:33
    Joy Division - Atmosphere [OFFICIAL MUSIC VIDEO]
    Official video for Atmosphere by Joy Division. Stream Joy Division's greatest hits here ▶...
    published: 29 Aug 2013
    Play in Full Screen
    2:56
    Isolation (2007 Remaster)
    Provided to YouTube by London Records Isolation (2007 Remaster) · Joy Division Closer ℗...
    published: 11 Nov 2014
    Play in Full Screen
    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×