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

Kirk Whalum

Kirk Whalum (born July 11, 1958) is an American smooth jazz saxophonist and songwriter. He toured with Whitney Houston for more than seven years and soloed in her single "I Will Always Love You", the best-selling single by a female artist in music history.

Whalum has recorded a series of well received solo albums and film soundtracks, with music ranging from pop to R&B to smooth jazz. Kirk’s musical accomplishments have brought him a total of 12 Grammy nominations. He won his first Grammy award in 2011 for Best Gospel Song (“It’s What I Do”, featuring Lalah Hathaway) alongside lifelong friend and gifted writer, Jerry Peters.

Biography

Kirk Whalum was born in Memphis, Tennessee. He attended Melrose High School and Texas Southern University where he was a member of the World Famous Ocean of Soul Marching Band. In addition to singing in his father's church choir, Whalum learned to love music from his grandmother, Thelma Twigg Whalum, a piano teacher, and two uncles, Wendell Whalum and Hugh "Peanuts" Whalum, who performed with jazz bands around the country. He told John H. Johnson's magazine Ebony Man in a 1994 profile, "The music I like to play and write encompasses the four elements I grew up with: Memphis R&B, gospel, rock, and jazz. The emphasis, though, is on melody, period."

Podcasts:

Famous quotes by Kirk Whalum:

"Hymns -- In The Garden,"
"When the Saints Go Marching In"
"A really cool thing about the Babyface Songbook is this is the first time that Babyface as a songwriter has been elevated to this level, ... I don’t pretend to be the one elevating him, but our treatment of him has that kind of integrity to it, that kind of dignity. In the pop world, you can be taken seriously…or not. As a pop songwriter, you can be here today and gone tomorrow. Babyface and his music have withstood the test of time. This project is a tribute to a great songwriter in the traditions of Cole Porter, Holland/Dozier and Irving Berlin. They all had the ability, through a lyric or a note, to find the common ground that unites us all, to find that something that thousands and thousands of people can feel intimately and profoundly. That is power, and that’s what these songs have. The music of Babyface goes straight to the heart."
"I hope these songs impact people’s lives in the positive, make people think about love. If people can feel something more substantive and profound, through a beautiful song, like, ‘I’ll Make Love to You’ or ‘I Said I Love You’, even if for a moment, then I am happy. If they can touch that deeper place and feel a bit of what I felt when I played these songs, then I’ve done my job."
"[The set has a strong Crescent City tilt, with Harry Connick Jr.'s] City Beneath the Sea ... When the Saints Go Marching In."

Kirk Whalum

ALBUMS

  • Now 'Til Forever

    Provided to YouTube by Universal Music Group Now 'Til Forever · Kirk Whalum Unconditional ℗ 2000 Craft Recordings., Distributed by Concord. Released on: 2000-10-17 Producer, Recording Producer, Associated Performer, Programming, Studio Personnel, Recording Engineer, Mix Engineer: Paul Brown Studio Personnel, Mastering Engineer: Stephen Marcussen Studio Personnel, Editor: Stewart Whitmore Studio Personnel, Asst. Recording Engineer: Koji Egawa Studio Personnel, Asst. Recording Engineer: Thomas Johnson Studio Personnel, Asst. Recording Engineer: Jeff Gregory Associated Performer, Tenor Saxophone: Kirk Whalum Associated Performer, Keyboards, Bass Guitar: Roberto Vally Associated Performer, Keyboards: Tim Heintz Associated Performer, Guitar: Tony Maiden Associated P...

    published: 22 Apr 2022
  • All I Do

    Provided to YouTube by Universal Music Group All I Do · Kirk Whalum · Wendy Moten For You ℗ 1998 Craft Recordings., Distributed by Concord. Released on: 1998-10-27 Composer: Broadnax Composer: Paul Composer: Wonder Auto-generated by YouTube.

    published: 22 Apr 2022
  • Kirk Whalum Greatest Hits 2021 - The Best Songs Of Kirk Whalum Best Saxophone Love Songs 2021

    Kirk Whalum Greatest Hits 2021 - The Best Songs Of Kirk Whalum Best Saxophone Love Songs 2021

    published: 10 Apr 2021
  • Kirk Whalum - Because You Loved Me

    published: 20 Sep 2013
  • I'LL ALWAYS LOVE YOU. Kirk Whalum / INSTRUMENTAL SAX - Angelo Torres (Official Video HD)

    The renowned saxophonist KIRK WHALUM, gives a show playing the Hitt "I'll Always Love You" (Whitney Houston), in the DVD Minha História - saxophonist Angelo Torres - Rio de Janeiro in Brazil. O renomado Saxofonista KIRK WHALUM, dá um show tocando o Hitt "I'll Always Love You" (Whitney Houston), no DVD Minha História - saxofonista Angelo Torres - Rio de Janeiro- Brasil. Follow me on digital platforms: Deezer: http://bit.ly/AngeloTorresDeezer Spotify: http://bit.ly/AngeloTorresSpotify Apple Music: http://bit.ly/AngeloTorresAppleMusic YouTube Music: http://bit.ly/AngeloTorresYouTubeMusic -- Siga-me nas redes sociais: Instagram: https://www.instagram.com/angelotorres_oficial/ Facebook: https://www.facebook.com/angelotorresATJAZZMusic/ Twitter: https://twitter.com/angelotorressax Angelo To...

    published: 24 Feb 2015
  • Pass me not o gentle savior - Kirk Whalum

    Sorry for the delay... Jazz According to Gospel II

    published: 15 May 2009
  • I Wouldn't Be a Man

    Provided to YouTube by Columbia I Wouldn't Be a Man · Kirk Whalum In This Life ℗ 1995 Sony Music Entertainment Inc. Released on: 1995-05-22 Vocal: Mike Reid Background Vocal: Bob Bailey Background Vocal: Chris Willis Composer, Lyricist: M. Reid Background Vocal: Duawne Starling Background Vocal: Louis Nunley Composer, Lyricist: R.M. Bourke Guitar: Reggie Young Drums: Owen Hale Keyboards, Organ: Barry Beckett Bass: Willie Weeks Arranger, Producer: Steve Buckingham Executive Producer: Dr. George Butler Coordinator: Carol Elliott Engineer: Gary Paczosa Engineer: Hal Sacks Engineer, Mixing Engineer: George Massenburg Assistant Engineer: Ed Simonton Assistant Engineer: John Paterno Assistant Engineer: Richard Landers Assistant Engineer: Kevin Scott Assistant Engineer: Jennie Car...

    published: 26 May 2015
  • Kirk Whalum - It's What I Do - 2011 Grammy Winner!

    Amazon DVD: http://amzn.to/ghAHrW | iTunes album http://bit.ly/Rp5oLi A live performance of the Grammy Award-winning song, "It's What I Do," written by Kirk Whalum and Jerry Peters, and performed by Kirk Whalum and Lalah Hathaway. The full concert, recorded live at Reid Temple in Maryland, is available on DVD (http://amzn.to/ghAHrW), and also available as a double CD (http://amzn.to/hycvxM) with two bonus tracks. http://www.kirkwhalum.com | http://www.mackavenue.com/kirkwhalum

    published: 16 Feb 2011
  • Kirk Whalum - The Name

    Please visit my NEW jazz channel for more content. https://youtube.com/@jazzbrothanumbahone?si=4c7vmDEyR98RZRJG Life can be joyous, but it can also be stressful (God help us) you can call if you need help, and there is NOTHING wrong wit needing help, WE ALL do sometimes. CALL 988 if you need to! Help is available Speak with someone today. Call 988 Suicide and Crisis Lifeline https://988lifeline.org/?utm_source=g... Remember, It's okay to not be okay! As always, request are always welcome! Thank you for your time!!! Enjoy!!!!!!!! Kev

    published: 30 Jan 2025
  • Kirk Whalum The Gospel According to Jazz

    published: 06 Apr 2012
Now 'Til Forever
4:37

Now 'Til Forever

  • Order:
  • Duration: 4:37
  • Uploaded Date: 22 Apr 2022
  • views: 5623700
Provided to YouTube by Universal Music Group Now 'Til Forever · Kirk Whalum Unconditional ℗ 2000 Craft Recordings., Distributed by Concord. Released on: 2000-10-17 Producer, Recording Producer, Associated Performer, Programming, Studio Personnel, Recording Engineer, Mix Engineer: Paul Brown Studio Personnel, Mastering Engineer: Stephen Marcussen Studio Personnel, Editor: Stewart Whitmore Studio Personnel, Asst. Recording Engineer: Koji Egawa Studio Personnel, Asst. Recording Engineer: Thomas Johnson Studio Personnel, Asst. Recording Engineer: Jeff Gregory Associated Performer, Tenor Saxophone: Kirk Whalum Associated Performer, Keyboards, Bass Guitar: Roberto Vally Associated Performer, Keyboards: Tim Heintz Associated Performer, Guitar: Tony Maiden Associated Performer, Percussion: Lenny Castro Associated Performer, Background Vocalist: John Stoddart Composer: Paul Brown Composer: Roberto Vally Composer: Kirk Whalum Auto-generated by YouTube.
https://wn.com/Now_'Til_Forever
All I Do
5:03

All I Do

  • Order:
  • Duration: 5:03
  • Uploaded Date: 22 Apr 2022
  • views: 1493549
Provided to YouTube by Universal Music Group All I Do · Kirk Whalum · Wendy Moten For You ℗ 1998 Craft Recordings., Distributed by Concord. Released on: 1998-10-27 Composer: Broadnax Composer: Paul Composer: Wonder Auto-generated by YouTube.
https://wn.com/All_I_Do
Kirk Whalum Greatest Hits 2021 - The Best Songs Of Kirk Whalum Best Saxophone Love Songs 2021
59:38

Kirk Whalum Greatest Hits 2021 - The Best Songs Of Kirk Whalum Best Saxophone Love Songs 2021

  • Order:
  • Duration: 59:38
  • Uploaded Date: 10 Apr 2021
  • views: 8069
Kirk Whalum Greatest Hits 2021 - The Best Songs Of Kirk Whalum Best Saxophone Love Songs 2021
https://wn.com/Kirk_Whalum_Greatest_Hits_2021_The_Best_Songs_Of_Kirk_Whalum_Best_Saxophone_Love_Songs_2021
Kirk Whalum - Because You Loved Me
8:09

Kirk Whalum - Because You Loved Me

  • Order:
  • Duration: 8:09
  • Uploaded Date: 20 Sep 2013
  • views: 15565
https://wn.com/Kirk_Whalum_Because_You_Loved_Me
I'LL ALWAYS LOVE YOU. Kirk Whalum / INSTRUMENTAL SAX - Angelo Torres (Official Video HD)
4:53

I'LL ALWAYS LOVE YOU. Kirk Whalum / INSTRUMENTAL SAX - Angelo Torres (Official Video HD)

  • Order:
  • Duration: 4:53
  • Uploaded Date: 24 Feb 2015
  • views: 2082464
The renowned saxophonist KIRK WHALUM, gives a show playing the Hitt "I'll Always Love You" (Whitney Houston), in the DVD Minha História - saxophonist Angelo Torres - Rio de Janeiro in Brazil. O renomado Saxofonista KIRK WHALUM, dá um show tocando o Hitt "I'll Always Love You" (Whitney Houston), no DVD Minha História - saxofonista Angelo Torres - Rio de Janeiro- Brasil. Follow me on digital platforms: Deezer: http://bit.ly/AngeloTorresDeezer Spotify: http://bit.ly/AngeloTorresSpotify Apple Music: http://bit.ly/AngeloTorresAppleMusic YouTube Music: http://bit.ly/AngeloTorresYouTubeMusic -- Siga-me nas redes sociais: Instagram: https://www.instagram.com/angelotorres_oficial/ Facebook: https://www.facebook.com/angelotorresATJAZZMusic/ Twitter: https://twitter.com/angelotorressax Angelo Torres is a saxophonist from Rio de Janeiro and one of the great names of Saxophone in Latin America, and his main characteristic is the fusion of Pop with Smooth Jazz. He is a speaker, teaches workshops and Instrumental Shows throughout Brazil and the United States. He has in his solo career 10 CDs and 1 DVD with many guests, in addition to the special participation of the American saxophonist KIRK WHALUM, former musician of the singer Whitney Houston. Currently, in addition to his shows, tours and workshops, he divides his time in the production of his Instrumental Music Program on youtube – AT JAZZ Music. I Will Always Love You (Whitney Houston) If I should stay I would only be in your way So I'll go, but I know I'll think of you every step of the way And I will always love you I will always love you You, my darling, you Bittersweet memories That is all I'm taking with me So goodbye, please, don't cry We both know I'm not what you, you need And I will always love you I will always love you, oh I hope life treats you kind And I hope you'll have all you've dreamed of And I wished you joy and happiness But above all this, I wish you love And I will always love you I will always love you I will always love you I will always love you I will always love you I, I will always love you, you Darling, I love you I'll always, I'll always love you ------- CONTATOS +55 21 98775 1180 angelo.torres2010@gmail.com Inscreva-se em nosso canal e fique por dentro de toda Programação Subscribe to our channel and stay on top of the entire schedule #WhitneyHouston #I'llAlwaysLoveYou #KirkWhalum #AngeloTorres #InstrumentalSax
https://wn.com/I'LL_Always_Love_You._Kirk_Whalum_Instrumental_Sax_Angelo_Torres_(Official_Video_Hd)
Pass me not o gentle savior - Kirk Whalum
7:58

Pass me not o gentle savior - Kirk Whalum

  • Order:
  • Duration: 7:58
  • Uploaded Date: 15 May 2009
  • views: 1235322
Sorry for the delay... Jazz According to Gospel II
https://wn.com/Pass_Me_Not_O_Gentle_Savior_Kirk_Whalum
I Wouldn't Be a Man
5:06

I Wouldn't Be a Man

  • Order:
  • Duration: 5:06
  • Uploaded Date: 26 May 2015
  • views: 978653
Provided to YouTube by Columbia I Wouldn't Be a Man · Kirk Whalum In This Life ℗ 1995 Sony Music Entertainment Inc. Released on: 1995-05-22 Vocal: Mike Reid Background Vocal: Bob Bailey Background Vocal: Chris Willis Composer, Lyricist: M. Reid Background Vocal: Duawne Starling Background Vocal: Louis Nunley Composer, Lyricist: R.M. Bourke Guitar: Reggie Young Drums: Owen Hale Keyboards, Organ: Barry Beckett Bass: Willie Weeks Arranger, Producer: Steve Buckingham Executive Producer: Dr. George Butler Coordinator: Carol Elliott Engineer: Gary Paczosa Engineer: Hal Sacks Engineer, Mixing Engineer: George Massenburg Assistant Engineer: Ed Simonton Assistant Engineer: John Paterno Assistant Engineer: Richard Landers Assistant Engineer: Kevin Scott Assistant Engineer: Jennie Carey Mastering Engineer: Denny Purcell Auto-generated by YouTube.
https://wn.com/I_Wouldn't_Be_A_Man
Kirk Whalum - It's What I Do - 2011 Grammy Winner!
6:29

Kirk Whalum - It's What I Do - 2011 Grammy Winner!

  • Order:
  • Duration: 6:29
  • Uploaded Date: 16 Feb 2011
  • views: 1454046
Amazon DVD: http://amzn.to/ghAHrW | iTunes album http://bit.ly/Rp5oLi A live performance of the Grammy Award-winning song, "It's What I Do," written by Kirk Whalum and Jerry Peters, and performed by Kirk Whalum and Lalah Hathaway. The full concert, recorded live at Reid Temple in Maryland, is available on DVD (http://amzn.to/ghAHrW), and also available as a double CD (http://amzn.to/hycvxM) with two bonus tracks. http://www.kirkwhalum.com | http://www.mackavenue.com/kirkwhalum
https://wn.com/Kirk_Whalum_It's_What_I_Do_2011_Grammy_Winner
Kirk Whalum - The Name
5:39

Kirk Whalum - The Name

  • Order:
  • Duration: 5:39
  • Uploaded Date: 30 Jan 2025
  • views: 341
Please visit my NEW jazz channel for more content. https://youtube.com/@jazzbrothanumbahone?si=4c7vmDEyR98RZRJG Life can be joyous, but it can also be stressful (God help us) you can call if you need help, and there is NOTHING wrong wit needing help, WE ALL do sometimes. CALL 988 if you need to! Help is available Speak with someone today. Call 988 Suicide and Crisis Lifeline https://988lifeline.org/?utm_source=g... Remember, It's okay to not be okay! As always, request are always welcome! Thank you for your time!!! Enjoy!!!!!!!! Kev
https://wn.com/Kirk_Whalum_The_Name
Kirk Whalum The Gospel According to Jazz
6:47

Kirk Whalum The Gospel According to Jazz

  • Order:
  • Duration: 6:47
  • Uploaded Date: 06 Apr 2012
  • views: 375418
https://wn.com/Kirk_Whalum_The_Gospel_According_To_Jazz
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME: 0:00 / 1:54:19

Now 'Til Forever

Provided to YouTube by Universal Music Group Now 'Til Forever · Kirk Whalum Unconditional ℗ 2000 Craft Recordings., Distributed by Concord. Released on: 2000-10-17 Producer, Recording Producer, Associated Performer, Programming, Studio Personnel, Recording Engineer, Mix Engineer: Paul Brown Studio Personnel, Mastering Engineer: Stephen Marcussen Studio Personnel, Editor: Stewart Whitmore Studio Personnel, Asst. Recording Engineer: Koji Egawa Studio Personnel, Asst. Recording Engineer: Thomas Johnson Studio Personnel, Asst. Recording Engineer: Jeff Gregory Associated Performer, Tenor Saxophone: Kirk Whalum Associated Performer, Keyboards, Bass Guitar: Roberto Vally Associated Performer, Keyboards: Tim Heintz Associated Performer, Guitar: Tony Maiden Associated Performer, Percussion: Lenny Castro Associated Performer, Background Vocalist: John Stoddart Composer: Paul Brown Composer: Roberto Vally Composer: Kirk Whalum Auto-generated by YouTube.
4:37
Now 'Til Forever
Provided to YouTube by Universal Music Group Now 'Til Forever · Kirk Whalum Unconditiona...
published: 22 Apr 2022
Play in Full Screen
5:03
All I Do
Provided to YouTube by Universal Music Group All I Do · Kirk Whalum · Wendy Moten For Yo...
published: 22 Apr 2022
Play in Full Screen
59:38
Kirk Whalum Greatest Hits 2021 - The Best Songs Of Kirk Whalum Best Saxophone Love Songs 2021
Kirk Whalum Greatest Hits 2021 - The Best Songs Of Kirk Whalum Best Saxophone Love Songs 2...
published: 10 Apr 2021
Play in Full Screen
8:09
Kirk Whalum - Because You Loved Me
published: 20 Sep 2013
Play in Full Screen
4:53
I'LL ALWAYS LOVE YOU. Kirk Whalum / INSTRUMENTAL SAX - Angelo Torres (Official Video HD)
The renowned saxophonist KIRK WHALUM, gives a show playing the Hitt "I'll Always Love You"...
published: 24 Feb 2015
Play in Full Screen
7:58
Pass me not o gentle savior - Kirk Whalum
Sorry for the delay... Jazz According to Gospel II
published: 15 May 2009
Play in Full Screen
5:06
I Wouldn't Be a Man
Provided to YouTube by Columbia I Wouldn't Be a Man · Kirk Whalum In This Life ℗ 1995 S...
published: 26 May 2015
Play in Full Screen
6:29
Kirk Whalum - It's What I Do - 2011 Grammy Winner!
Amazon DVD: http://amzn.to/ghAHrW | iTunes album http://bit.ly/Rp5oLi A live performance...
published: 16 Feb 2011
Play in Full Screen
5:39
Kirk Whalum - The Name
Please visit my NEW jazz channel for more content. https://youtube.com/@jazzbrothanumbahon...
published: 30 Jan 2025
Play in Full Screen
6:47
Kirk Whalum The Gospel According to Jazz
published: 06 Apr 2012
Play in Full Screen

Kirk Whalum

Kirk Whalum (born July 11, 1958) is an American smooth jazz saxophonist and songwriter. He toured with Whitney Houston for more than seven years and soloed in her single "I Will Always Love You", the best-selling single by a female artist in music history.

Whalum has recorded a series of well received solo albums and film soundtracks, with music ranging from pop to R&B to smooth jazz. Kirk’s musical accomplishments have brought him a total of 12 Grammy nominations. He won his first Grammy award in 2011 for Best Gospel Song (“It’s What I Do”, featuring Lalah Hathaway) alongside lifelong friend and gifted writer, Jerry Peters.

Biography

Kirk Whalum was born in Memphis, Tennessee. He attended Melrose High School and Texas Southern University where he was a member of the World Famous Ocean of Soul Marching Band. In addition to singing in his father's church choir, Whalum learned to love music from his grandmother, Thelma Twigg Whalum, a piano teacher, and two uncles, Wendell Whalum and Hugh "Peanuts" Whalum, who performed with jazz bands around the country. He told John H. Johnson's magazine Ebony Man in a 1994 profile, "The music I like to play and write encompasses the four elements I grew up with: Memphis R&B, gospel, rock, and jazz. The emphasis, though, is on melody, period."

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

Latest News for: kirk whalum

Edit

Tickets are on sale for Champagne Jazz and other Temecula concerts

Orange County Register 25 Mar 2025
Dave Koz celebrates summer with his music, and one of the places where he does it is Temecula. Koz is part of the Champagne Jazz lineup at Thornton Winery and has been since the early ’90s ... Where ... 951-699-0099 ... Kirk Whalum and Jonathan Butler, Aug.
Edit

Snoop Dogg, Cyndi Lauper on the newest list of Cincy concert announcements

Cincinnati.com 14 Mar 2025
On sale Friday, March 14. May 17. JJ Grey & Mofro, Hard Rock Cincinnati Outdoor Arena. With the Marshall Tucker Band. May 19. A Place to Bury Strangers. Synthesizer Tour, Northside Tavern. With the Serfs and the Mall. June 6 ... Kirk Whalum, Ludlow Garage ... Aug ... 1.
  • 1
×