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

But Not for Me

But Not for Me may refer to:

  • "But Not for Me" (song), a popular song by George and Ira Gershwin
  • But Not for Me (film), a 1959 film starring Clark Gable and Carroll Baker
  • But Not for Me (film)

    But Not for Me is a 1959 Paramount Pictures comedy film starring Clark Gable and Carroll Baker. It is based on the play Accent on Youth written by Samson Raphaelson.

    Plot

    Russ Ward is a Broadway producer with a 30-year record of success who has been out of town. On returning to New York, everybody wants a piece of him: ex-wife Kathryn Ward, hard-drinking playwright Jeremiah "Mac" MacDonald, magazine reporter Roy Morton, business manager Miles Atwood and lawyer Charles Montgomery, one after another.

    The main topic of discussion is "Give Me Your Hand," the new play Russ is producing. The reporter hears it's in trouble, but Russ says that's untrue. It will be ready for its Boston tryout right on schedule, he vows.

    Kathryn keeps reminding him of his age, which Russ likes to lie about. Russ tells loyal young secretary and student actress Ellie Brown it is likely time to retire because the new show is a mess. He and writer Mac have a story about a middle-aged man romancing a 22-year-old woman and just can't seem to make it work.

    But Not for Me (song)

    "But Not for Me" is a popular song, composed by George Gershwin, with lyrics by Ira Gershwin.

    It was written for their musical Girl Crazy (1930) and introduced in the original production by Ginger Rogers. It is also in the 1992 musical based on Girl Crazy, Crazy for You. Judy Garland sang it in the 1943 film version of Girl Crazy.

    In 1959 Ella Fitzgerald included a version of the song on her landmark album Ella Fitzgerald Sings the George and Ira Gershwin Songbook. The rendition won the 1960 Grammy Award for Best Female Vocal Performance.

    Singer Ketty Lester remade "But Not For Me" with a gospel arrangement which reached #10 on the US Adult Contemporary chart, #41 the Billboard Top 40, and #45 in the UK in 1962.

    It is also featured in the 1979 Woody Allen movie Manhattan, the 1989 Rob Reiner movie When Harry Met Sally... (performed by Harry Connick, Jr.), the 1994 Mike Newell film Four Weddings and a Funeral, in the opening scene of the 1998 Bennett Miller documentary The Cruise, and in the 2012 anime Sakamichi no Apollon (Kids on the Slope).

    Andy Russell

    Andy Russell may refer to:

  • Andy Russell (singer), American popular vocalist
  • Andy Russell (American football), American football player
  • Andy Russell (soccer), soccer player
  • Andy Russell (Canadian author), conservationist
  • See also

  • Andrew Russell (disambiguation)
  • Andy Russell (singer)

    Andy Russell (born Andrés Rábago; September 16, 1919 – April 16, 1992) was an American popular vocalist, specializing in traditional pop and Latin music. He sold 8 million records in the 1940s to early 1950s singing in a romantic, baritone voice in his trademark bilingual English and Spanish style. He had chart-busters, such as "Bésame Mucho," "Amor," "What a Diff'rence a Day Made," "Laughing on the Outside (Crying on the Inside)," "Without You," and "The Anniversary Waltz." He also performed on many radio programs, most notably Your Hit Parade, in several movies, and on television. Later, he traveled to Mexico where he was the star of radio, television, motion pictures, records, and nightclubs. He also toured extensively throughout Latin America, Cuba, Portugal, and Spain and was the host of the television variety program El Show de Andy Russell in Buenos Aires, Argentina from 1956 to 1965, thus achieving international popularity and tremendous success during this period. Upon returning to the United States, he continued to record music, at which point his 1967 single "It's Such a Pretty World Today" was number one for 9 weeks on Billboard Magazine's Easy Listening Chart. During the 1970s and 1980s, he continued to perform, occasionally recording new records and making appearances on television. He received international accolades and awards, the most notable of which was being recognized as a trailblazer who not only introduced U.S. audiences to popular songs sung in English and Spanish but also influenced later performers--Hispanic and non-Hispanic—to sing bilingually, as well. Regrettably, today, Russell has been virtually forgotten and his enormous contributions as the first American Latino, bilingual singer who performed on three continents over a span of almost 50 years are hardly discussed by the media or scholars and much less credited by the performers who succeeded him.

    Andy Russell (American football)

    Charles Andrew "Andy" Russell (born October 29, 1941) is a former American football linebacker, playing his entire 12-year career for the Pittsburgh Steelers. He played college football for, and earned a degree in economics from, the University of Missouri. At Missouri he was a member of the Sigma Chi fraternity.

    As a freshman in high school, he moved from the New York area to St. Louis, attending Ladue High School. Having never played football in the East, he became a starter as a sophomore, playing end. In his junior and senior year, he played fullback and linebacker, earning all-state honors in his senior year. Heavily recruited by out-state universities, he selected Missouri and began a tradition of St. Louis area football players attending their home-state university under Coach Dan Devine.

    After playing for the Steelers his rookie season in 1963 and just missing out on playing the Chicago Bears for the NFL Championship, Russell temporarily left the team for the Army to fulfill ROTC commitments from Missouri. He was stationed in Germany for two years, achieving the rank of second lieutenant, and serving as an aide to a three-star general. He then returned to the Steelers in 1966, where he would spend the next 11 seasons.

    Podcasts:

    • Chet Baker - But Not For Me

      But Not For Me by Chet Baker

      published: 16 Oct 2008
    • Sakamichi no Apollon OST - But not for me

      12 - But not for me

      published: 25 Apr 2012
    • But Not for Me

      Provided to YouTube by Columbia But Not for Me · Harry Connick Jr. When Harry Met Sally... Music From The Motion Picture ℗ 1989 Columbia Records, a division of Sony Music Entertainment Released on: 1989-07-25 Composer, Lyricist: George Gershwin Composer, Lyricist: Ira Gershwin Orchestrator, Mixing Engineer, Producer: Marc Shaiman Drums: Jeff Watts Bass: Benjamin Jonah Wolfe Engineer: Tim Geelan Assistant Engineer: Dennis Ferrante Auto-generated by YouTube.

      published: 20 Oct 2015
    • Elton John sings Gershwin - But Not for Me (1994)

      "But Not for Me" written by George & Ira Gershwin. Vocal by Elton John. Produced by Stephen Lindsey, from the Soundtrack "Four Weddings and a Funeral".

      published: 02 May 2010
    • Miles Davis Quintet with Sonny Rollins - But Not For Me (1954)

      A classic be-bop tune recorded by the Miles Davis Quintet with Sonny Rollins in New York in 1954. The tune is loaded on YouTube in order to test the copyright control in the portal. Being more than 50 years old, the performance is copyright free in Europe. The author, George Gershwin, died more than 70 years ago and therefeore this piece of music should be completely free.

      published: 06 Nov 2012
    • But Not For Me

      Provided to YouTube by Universal Music Group But Not For Me · Ella Fitzgerald Ella Fitzgerald Sings The George And Ira Gershwin Song Book ℗ 1959 The Verve Music Group, a Division of UMG Recordings, Inc. Released on: 1959-01-01 Producer: Norman Granz Associated Performer, Recording Arranger: Nelson Riddle Composer Lyricist: Ira Gershwin Composer Lyricist: George Gershwin Auto-generated by YouTube.

      published: 30 Oct 2018
    • But Not For Me Linda Ronstadt

      Linda Ronstadt performs "But Not For Me" by George and Ira Gershwin. Orchestra conducted by Nelson Riddle

      published: 02 Mar 2009
    developed with YouTube
    Chet Baker - But Not For Me
    3:05

    Chet Baker - But Not For Me

    • Order:
    • Duration: 3:05
    • Uploaded Date: 16 Oct 2008
    • views: 5087291
    But Not For Me by Chet Baker
    https://wn.com/Chet_Baker_But_Not_For_Me
    Sakamichi no Apollon OST - But not for me
    4:32

    Sakamichi no Apollon OST - But not for me

    • Order:
    • Duration: 4:32
    • Uploaded Date: 25 Apr 2012
    • views: 1779838
    12 - But not for me
    https://wn.com/Sakamichi_No_Apollon_Ost_But_Not_For_Me
    But Not for Me
    4:31

    But Not for Me

    • Order:
    • Duration: 4:31
    • Uploaded Date: 20 Oct 2015
    • views: 115940
    Provided to YouTube by Columbia But Not for Me · Harry Connick Jr. When Harry Met Sally... Music From The Motion Picture ℗ 1989 Columbia Records, a division of Sony Music Entertainment Released on: 1989-07-25 Composer, Lyricist: George Gershwin Composer, Lyricist: Ira Gershwin Orchestrator, Mixing Engineer, Producer: Marc Shaiman Drums: Jeff Watts Bass: Benjamin Jonah Wolfe Engineer: Tim Geelan Assistant Engineer: Dennis Ferrante Auto-generated by YouTube.
    https://wn.com/But_Not_For_Me
    Elton John sings Gershwin - But Not for Me (1994)
    3:03

    Elton John sings Gershwin - But Not for Me (1994)

    • Order:
    • Duration: 3:03
    • Uploaded Date: 02 May 2010
    • views: 490674
    "But Not for Me" written by George & Ira Gershwin. Vocal by Elton John. Produced by Stephen Lindsey, from the Soundtrack "Four Weddings and a Funeral".
    https://wn.com/Elton_John_Sings_Gershwin_But_Not_For_Me_(1994)
    Miles Davis Quintet with Sonny Rollins - But Not For Me (1954)
    5:50

    Miles Davis Quintet with Sonny Rollins - But Not For Me (1954)

    • Order:
    • Duration: 5:50
    • Uploaded Date: 06 Nov 2012
    • views: 160631
    A classic be-bop tune recorded by the Miles Davis Quintet with Sonny Rollins in New York in 1954. The tune is loaded on YouTube in order to test the copyright control in the portal. Being more than 50 years old, the performance is copyright free in Europe. The author, George Gershwin, died more than 70 years ago and therefeore this piece of music should be completely free.
    https://wn.com/Miles_Davis_Quintet_With_Sonny_Rollins_But_Not_For_Me_(1954)
    But Not For Me
    3:35

    But Not For Me

    • Order:
    • Duration: 3:35
    • Uploaded Date: 30 Oct 2018
    • views: 198722
    Provided to YouTube by Universal Music Group But Not For Me · Ella Fitzgerald Ella Fitzgerald Sings The George And Ira Gershwin Song Book ℗ 1959 The Verve Music Group, a Division of UMG Recordings, Inc. Released on: 1959-01-01 Producer: Norman Granz Associated Performer, Recording Arranger: Nelson Riddle Composer Lyricist: Ira Gershwin Composer Lyricist: George Gershwin Auto-generated by YouTube.
    https://wn.com/But_Not_For_Me
    But Not For Me Linda Ronstadt
    5:39

    But Not For Me Linda Ronstadt

    • Order:
    • Duration: 5:39
    • Uploaded Date: 02 Mar 2009
    • views: 342670
    Linda Ronstadt performs "But Not For Me" by George and Ira Gershwin. Orchestra conducted by Nelson Riddle
    https://wn.com/But_Not_For_Me_Linda_Ronstadt
    • Chet Baker - But Not For Me

      But Not For Me by Chet Baker

      published: 16 Oct 2008
    • But Not For Me (Vocal Version)

      Provided to YouTube by Universal Music Group But Not For Me (Vocal Version) · Chet Baker Let's Get Lost: The Best Of Chet Baker Sings ℗ 1954 Capitol Records, LLC Released on: 1989-01-01 Associated Performer, Vocals: Chet Baker Associated Performer: Russ Freeman Recording Engineer, Producer, Studio Personnel: Richard Bock Associated Performer, Drums: Bob Neel Mastering Engineer, Studio Personnel: Ron McMaster Associated Performer, Bass ( Vocal): Carson Smith Composer Lyricist: Ira Gershwin Composer Lyricist: George Gershwin Auto-generated by YouTube.

      published: 04 May 2017
    • Elton John sings Gershwin - But Not for Me (1994)

      "But Not for Me" written by George & Ira Gershwin. Vocal by Elton John. Produced by Stephen Lindsey, from the Soundtrack "Four Weddings and a Funeral".

      published: 02 May 2010
    • Diana Krall - But Not For Me (Audio)

      Listen to Tony Bennett & Diana Krall’s new album ‘Love Is Here To Stay” HERE: https://Verve.lnk.to/LoveIsHereToStay An unprecedented union of the two greatest living jazz singers, ‘Love Is Here To Stay’ celebrates Gershwin’s 120th anniversary with a new recording of timeless American popular standards and jazz repertoire. Music video by Diana Krall performing But Not For Me. © 2018 Verve Label Group, A Division of UMG Recordings, Inc. and Columbia Records, A Division of Sony Music Entertainment http://vevo.ly/uI6jlL

      published: 14 Sep 2018
    • Sakamichi no Apollon OST - But not for me

      12 - But not for me

      published: 25 Apr 2012
    • Ella Fitzgerald - But Not For Me

      published: 15 Nov 2009
    • Rod Stewart - But Not For Me

      Listen to Rod Stewart's "But Not For Me" from The Best Of...The Great American Songbook out everywhere now. Order your copy here http://bit.ly/hUHXsC

      published: 04 Feb 2011
    • Sakamichi No Apollon - But Not For Me

      Sakamichi No Apollon (Kids On The Slope) - Bar scene from episode 4, "But Not For Me". DISCLAIMER: This video is in no way associated with Fuji TV, Tezuka Productions, MAPPA or any other publisher. I do not own the song or the show, all material is used for my personal use and not for gain. All material is copyrighted to it's original owners.

      published: 07 May 2012
    • Are You Cheating Me? | Emotional Original Love Song by Intimate Music #intimate

      Are You Cheating Me? - Original Romantic Song Experience the heartfelt emotions and raw honesty of **"Are You Cheating Me?"**, a soulful romantic by Intimate Music takes you on a journey of love's most vulnerable moments. 💔 Full Lyrics: (Verse 1) I see the way you smile, but it’s not the same, Your eyes tell a story, whispering my name. Late-night calls, shadows on the wall, Is there something you're hiding, behind it all? (Pre-Chorus) I gave you my heart, my love, my trust, But now I’m wondering, was it all just dust? Tell me the truth, don’t let it fade, Are you holding secrets in the love we made? (Chorus) Are you cheating me, breaking my soul? Tearing apart what we once called whole? Is it someone else that you're dreaming of? Tell me now, is this still our...

      published: 12 Jan 2025
    • But Not For Me

      Provided to YouTube by Universal Music Group But Not For Me · Ella Fitzgerald Ella Fitzgerald Sings The George And Ira Gershwin Song Book ℗ 1959 The Verve Music Group, a Division of UMG Recordings, Inc. Released on: 1959-01-01 Producer: Norman Granz Associated Performer, Recording Arranger: Nelson Riddle Composer Lyricist: Ira Gershwin Composer Lyricist: George Gershwin Auto-generated by YouTube.

      published: 30 Oct 2018
    developed with YouTube
    Chet Baker - But Not For Me
    3:05

    Chet Baker - But Not For Me

    • Order:
    • Duration: 3:05
    • Uploaded Date: 16 Oct 2008
    • views: 5087291
    But Not For Me by Chet Baker
    https://wn.com/Chet_Baker_But_Not_For_Me
    But Not For Me (Vocal Version)
    3:04

    But Not For Me (Vocal Version)

    • Order:
    • Duration: 3:04
    • Uploaded Date: 04 May 2017
    • views: 618883
    Provided to YouTube by Universal Music Group But Not For Me (Vocal Version) · Chet Baker Let's Get Lost: The Best Of Chet Baker Sings ℗ 1954 Capitol Records, LLC Released on: 1989-01-01 Associated Performer, Vocals: Chet Baker Associated Performer: Russ Freeman Recording Engineer, Producer, Studio Personnel: Richard Bock Associated Performer, Drums: Bob Neel Mastering Engineer, Studio Personnel: Ron McMaster Associated Performer, Bass ( Vocal): Carson Smith Composer Lyricist: Ira Gershwin Composer Lyricist: George Gershwin Auto-generated by YouTube.
    https://wn.com/But_Not_For_Me_(Vocal_Version)
    Elton John sings Gershwin - But Not for Me (1994)
    3:03

    Elton John sings Gershwin - But Not for Me (1994)

    • Order:
    • Duration: 3:03
    • Uploaded Date: 02 May 2010
    • views: 490674
    "But Not for Me" written by George & Ira Gershwin. Vocal by Elton John. Produced by Stephen Lindsey, from the Soundtrack "Four Weddings and a Funeral".
    https://wn.com/Elton_John_Sings_Gershwin_But_Not_For_Me_(1994)
    Diana Krall - But Not For Me (Audio)
    3:08

    Diana Krall - But Not For Me (Audio)

    • Order:
    • Duration: 3:08
    • Uploaded Date: 14 Sep 2018
    • views: 337652
    Listen to Tony Bennett & Diana Krall’s new album ‘Love Is Here To Stay” HERE: https://Verve.lnk.to/LoveIsHereToStay An unprecedented union of the two greatest living jazz singers, ‘Love Is Here To Stay’ celebrates Gershwin’s 120th anniversary with a new recording of timeless American popular standards and jazz repertoire. Music video by Diana Krall performing But Not For Me. © 2018 Verve Label Group, A Division of UMG Recordings, Inc. and Columbia Records, A Division of Sony Music Entertainment http://vevo.ly/uI6jlL
    https://wn.com/Diana_Krall_But_Not_For_Me_(Audio)
    Sakamichi no Apollon OST - But not for me
    4:32

    Sakamichi no Apollon OST - But not for me

    • Order:
    • Duration: 4:32
    • Uploaded Date: 25 Apr 2012
    • views: 1779838
    12 - But not for me
    https://wn.com/Sakamichi_No_Apollon_Ost_But_Not_For_Me
    Ella Fitzgerald - But Not For Me
    4:48

    Ella Fitzgerald - But Not For Me

    • Order:
    • Duration: 4:48
    • Uploaded Date: 15 Nov 2009
    • views: 403911
    https://wn.com/Ella_Fitzgerald_But_Not_For_Me
    Rod Stewart - But Not For Me
    3:22

    Rod Stewart - But Not For Me

    • Order:
    • Duration: 3:22
    • Uploaded Date: 04 Feb 2011
    • views: 666888
    Listen to Rod Stewart's "But Not For Me" from The Best Of...The Great American Songbook out everywhere now. Order your copy here http://bit.ly/hUHXsC
    https://wn.com/Rod_Stewart_But_Not_For_Me
    Sakamichi No Apollon - But Not For Me
    0:58

    Sakamichi No Apollon - But Not For Me

    • Order:
    • Duration: 0:58
    • Uploaded Date: 07 May 2012
    • views: 644936
    Sakamichi No Apollon (Kids On The Slope) - Bar scene from episode 4, "But Not For Me". DISCLAIMER: This video is in no way associated with Fuji TV, Tezuka Productions, MAPPA or any other publisher. I do not own the song or the show, all material is used for my personal use and not for gain. All material is copyrighted to it's original owners.
    https://wn.com/Sakamichi_No_Apollon_But_Not_For_Me
    Are You Cheating Me? | Emotional Original Love Song by Intimate Music #intimate
    3:58

    Are You Cheating Me? | Emotional Original Love Song by Intimate Music #intimate

    • Order:
    • Duration: 3:58
    • Uploaded Date: 12 Jan 2025
    • views: 596
    Are You Cheating Me? - Original Romantic Song Experience the heartfelt emotions and raw honesty of **"Are You Cheating Me?"**, a soulful romantic by Intimate Music takes you on a journey of love's most vulnerable moments. 💔 Full Lyrics: (Verse 1) I see the way you smile, but it’s not the same, Your eyes tell a story, whispering my name. Late-night calls, shadows on the wall, Is there something you're hiding, behind it all? (Pre-Chorus) I gave you my heart, my love, my trust, But now I’m wondering, was it all just dust? Tell me the truth, don’t let it fade, Are you holding secrets in the love we made? (Chorus) Are you cheating me, breaking my soul? Tearing apart what we once called whole? Is it someone else that you're dreaming of? Tell me now, is this still our love? (Verse 2) You say you're busy, but your words feel cold, There’s a distance growing, a lie untold. Your perfume lingers, but it’s not mine, Are we just a story, running out of time? (Pre-Chorus) I gave you my heart, my love, my trust, But now I’m wondering, was it all just lust? Don’t play with my heart, don’t let it break, Tell me the truth for my own sake. (Chorus) Are you cheating me, breaking my soul? Tearing apart what we once called whole? Is it someone else that you're dreaming of? Tell me now, is this still our love? (Bridge) I’d rather face the pain than live a lie, Look into my eyes, don’t make me cry. If you’re slipping away, just let me know, I need the truth before I let you go. (Verse 3) I found a picture, but it wasn’t us, A hidden message I can’t trust. Your phone lights up with a name I don’t know, Is this where our love begins to go? (Pre-Chorus) I gave you my heart, my love, my trust, But now I’m drowning in a sea of rust. Don’t leave me hanging, in silent pain, Tell me, is this love still the same? (Chorus) Are you cheating me, breaking my soul? Tearing apart what we once called whole? Is it someone else that you're dreaming of? Tell me now, is this still our love? (Extended Bridge) Memories of us, they haunt my mind, Every laugh, every kiss, every moment kind. But now they’re shadows, fading fast, Was our forever never meant to last? (Outro) If there’s no truth left in your eyes, Don’t feed me comfort wrapped in lies. I’ll walk away, if that’s what’s true, But don’t make me fight for what’s not you. (Final Chorus) Are you cheating me, breaking my soul? Tearing apart what we once called whole? Is it someone else that you're dreaming of? Tell me now, is this still our love? (Outro Refrain) Are you cheating me? Please set me free, Don’t let this love end in misery. Whatever the truth, I’ll find my way, But I need to know… today. 🎶 Let this emotional journey of love and loss resonate with your heart. NOTE: This original song is copyrighted. © Intimate Music. All Rights Reserved. Unauthorized use, reproduction, or distribution is strictly prohibited. For licensing inquiries, please contact us at: 📧 intimatemusic5680@gmail.com NO REUSE OR COMMERCIAL USE IS ALLOWED. #RomanticSongs #OriginalMusic #HeartbreakSongs #AreYouCheatingMe #LoveAndBetrayal #IntimateMusic
    https://wn.com/Are_You_Cheating_Me_|_Emotional_Original_Love_Song_By_Intimate_Music_Intimate
    But Not For Me
    3:35

    But Not For Me

    • Order:
    • Duration: 3:35
    • Uploaded Date: 30 Oct 2018
    • views: 198722
    Provided to YouTube by Universal Music Group But Not For Me · Ella Fitzgerald Ella Fitzgerald Sings The George And Ira Gershwin Song Book ℗ 1959 The Verve Music Group, a Division of UMG Recordings, Inc. Released on: 1959-01-01 Producer: Norman Granz Associated Performer, Recording Arranger: Nelson Riddle Composer Lyricist: Ira Gershwin Composer Lyricist: George Gershwin Auto-generated by YouTube.
    https://wn.com/But_Not_For_Me
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Chet Baker - But Not For Me

    But Not For Me by Chet Baker
    3:05
    Chet Baker - But Not For Me
    But Not For Me by Chet Baker
    published: 16 Oct 2008
    Play in Full Screen
    4:32
    Sakamichi no Apollon OST - But not for me
    12 - But not for me
    published: 25 Apr 2012
    Play in Full Screen
    4:31
    But Not for Me
    Provided to YouTube by Columbia But Not for Me · Harry Connick Jr. When Harry Met Sally....
    published: 20 Oct 2015
    Play in Full Screen
    3:03
    Elton John sings Gershwin - But Not for Me (1994)
    "But Not for Me" written by George & Ira Gershwin. Vocal by Elton John. Produced by Stephe...
    published: 02 May 2010
    Play in Full Screen
    5:50
    Miles Davis Quintet with Sonny Rollins - But Not For Me (1954)
    A classic be-bop tune recorded by the Miles Davis Quintet with Sonny Rollins in New York i...
    published: 06 Nov 2012
    Play in Full Screen
    3:35
    But Not For Me
    Provided to YouTube by Universal Music Group But Not For Me · Ella Fitzgerald Ella Fitzg...
    published: 30 Oct 2018
    Play in Full Screen
    5:39
    But Not For Me Linda Ronstadt
    Linda Ronstadt performs "But Not For Me" by George and Ira Gershwin. Orchestra conducted ...
    published: 02 Mar 2009
    Play in Full Screen

    But Not for Me

    But Not for Me may refer to:

  • "But Not for Me" (song), a popular song by George and Ira Gershwin
  • But Not for Me (film), a 1959 film starring Clark Gable and Carroll Baker
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Chet Baker - But Not For Me

    But Not For Me by Chet Baker
    3:05
    Chet Baker - But Not For Me
    But Not For Me by Chet Baker
    published: 16 Oct 2008
    Play in Full Screen
    3:04
    But Not For Me (Vocal Version)
    Provided to YouTube by Universal Music Group But Not For Me (Vocal Version) · Chet Baker ...
    published: 04 May 2017
    Play in Full Screen
    3:03
    Elton John sings Gershwin - But Not for Me (1994)
    "But Not for Me" written by George & Ira Gershwin. Vocal by Elton John. Produced by Stephe...
    published: 02 May 2010
    Play in Full Screen
    3:08
    Diana Krall - But Not For Me (Audio)
    Listen to Tony Bennett & Diana Krall’s new album ‘Love Is Here To Stay” HERE: https://Verv...
    published: 14 Sep 2018
    Play in Full Screen
    4:32
    Sakamichi no Apollon OST - But not for me
    12 - But not for me
    published: 25 Apr 2012
    Play in Full Screen
    4:48
    Ella Fitzgerald - But Not For Me
    published: 15 Nov 2009
    Play in Full Screen
    3:22
    Rod Stewart - But Not For Me
    Listen to Rod Stewart's "But Not For Me" from The Best Of...The Great American Songbook ou...
    published: 04 Feb 2011
    Play in Full Screen
    0:58
    Sakamichi No Apollon - But Not For Me
    Sakamichi No Apollon (Kids On The Slope) - Bar scene from episode 4, "But Not For Me". D...
    published: 07 May 2012
    Play in Full Screen
    3:58
    Are You Cheating Me? | Emotional Original Love Song by Intimate Music #intimate
    Are You Cheating Me? - Original Romantic Song Experience the heartfelt emotions and raw h...
    published: 12 Jan 2025
    Play in Full Screen
    3:35
    But Not For Me
    Provided to YouTube by Universal Music Group But Not For Me · Ella Fitzgerald Ella Fitzg...
    published: 30 Oct 2018
    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)); } }); }); }); // -->
    ×