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

Harry Ruby

Harry Ruby (January 27, 1895 February 23, 1974) was a Jewish American composer and screenwriter, who was inducted into the Songwriters Hall of Fame in 1970.

Biography

Ruby was born in New York City. After failing at his early ambition to become a professional baseball player, he toured the vaudeville circuit as a pianist with the Bootblack Trio and the Messenger Boys Trio until meeting the man who would become his longtime partner, lyricist Bert Kalmar. Kalmar and Ruby were a successful songwriting team for nearly three decades until Kalmar's death in 1947, a partnership portrayed in the 1950 MGM musical Three Little Words, starring Fred Astaire as Kalmar and Red Skelton as Ruby.

Ruby died in Woodland Hills, California and was interred at the Chapel of the Pines in Los Angeles.

A good friend of Groucho Marx, Ruby appeared several times on his television program, You Bet Your Life. In his 1972 concert at Carnegie Hall, Marx gave the following introduction before performing a song of Ruby's: "I have a friend in Hollywood . . . I think I do, I'm not so sure. [laughter] His name is Harry Ruby [applause] and he wrote a lot of songs that I've sung over the years . . ."

The Vagabond King

The Vagabond King is a 1925 operetta by Rudolf Friml in four acts, with a book and lyrics by Brian Hooker and William H. Post, based upon Justin Huntly McCarthy's 1901 romantic novel and play If I Were King. The story is a fictionalized episode in the life of the 15th-century poet and thief François Villon, centering on his wooing of Katherine De Vaucelles (the cousin of King Louis XI), and relating how he becomes “king for a day” and defends France against the invading forces of the Duke of Burgundy.

The original production opened on Broadway in 1925, starring Dennis King and ran for 511 performances. The operetta then played in London, toured extensively and enjoyed revivals and two film adaptations, including one with King and Jeanette MacDonald.

Background

In 1901, writer Justin Huntly McCarthy sentimentalized Villon's career in a novel, If I Were King, that borrowed the king-for-a-day theme, allowing Villon to defeat France's enemies and win the hand of an aristocratic lady, all in under 24 hours. The author adapted it as a Broadway play the same year and in London in 1902, and it was revived several times. In 1923, Richard Rodgers and Lorenz Hart were at the beginning of their careers. They created a musical version of the McCarthy play for a Manhattan girl's school and then looked for a more prestigious venue for their collaboration. Broadway backers turned down the young team, but producer Russell Janney "borrowed" their idea and commissioned the more established Rudolf Friml to compose, and Brian Hooker to adapt the piece into a musical, increasing the comedy roles.

The Vagabond King (1930 film)

The Vagabond King is a 1930 American musical operetta film photographed entirely in two-color Technicolor. The plot of the film was based on the 1925 operetta of the same name, which was based on the 1901 play If I Were King by Justin Huntly McCarthy. The play told the story of a renegade French poet named François Villon. The music of the film was based on a 1925 operetta, also based on the play If I Were King by McCarthy. The operetta is also titled The Vagabond King with music by Rudolph Friml and lyrics by Brian Hooker and W.H. Post. The film was nominated for an Academy Award for Best Art Direction.

Plot

The story takes place in medieval France. King Louis XI (O. P. Heggie), hoping to enlist the French peasants in his upcoming battle against the Burgundians, appoints François Villon (Dennis King) king of France for one day. Despite being successful against the Burgundians, François Villon is sentenced to hang by King Louis XI for writing derogatory verses about him...

The Vagabond King (1956 film)

The Vagabond King is a 1956 musical film adaptation of the 1925 operetta The Vagabond King by Rudolf Friml. It starred Kathryn Grayson and Oreste Kirkop, with early roles for Rita Moreno and Leslie Nielsen. Sir Cedric Hardwicke played a notable supporting role. It was Kathryn Grayson's and Walter Hampden's last movie. Hampden, who played King Louis XI, died more than a year before its release. Mary Grant designed the film's costumes.

Plot

In fifteenth century France, the irreverent beggar François Villon (tenor Oreste Kirkop) is crowned "king for a day" by King Louis XI (Walter Hampden). He patriotically rallies his fellow beggars to fight when Paris is invaded by the Burgundians. Kathryn Grayson stars as the high-born heroine, and Rita Moreno as the lusty low-born wench, whose love for Villon eventually costs her life.

Cast

  • Kathryn Grayson as Catherine de Vaucelles
  • Oreste Kirkop as François Villon
  • Rita Moreno as Huguette
  • Sir Cedric Hardwicke as Tristan L'Hermite
  • Walter Hampden as King Louis XI
  • Podcasts:

    Harry Ruby

    Television's Greatest Hits, Volume 4: Black and White Classics

    Released 1997

    Born: 1895-01-27

    Died: 1974-02-23

    • The Vagabond King 1956

      published: 03 Sep 2012
    • THE VAGABOND KING, 1956 SWASHBUCKLING ADVENTURE STARRING ORESTE KIRKOP AND KATHRYN GRAYSON.

      published: 07 May 2022
    • The Vagabond King (1930)

      The 1930 film version of a 1925 operetta. Adapted by Herman J. Mankiewicz.

      published: 21 Oct 2020
    • 'ONLY A ROSE' - The Vagabond King 1956

      Kathryn Grayson and Oreste Kirkop in romantic mood in the 1956 film 'THE VAGABOND KING'.

      published: 12 Apr 2017
    • 'SONG OF THE VAGABONDS' - Oreste Kirkop

      A stirring number from the 1956 film 'THE VAGABOND KING'. Brilliant technicolour and vibrant singing!

      published: 27 Apr 2017
    • THE VAGABOND KING Full Movie (2023 New Movie) Zubby Michael 2023 Latest Nigerian Nollywood Movies.

      #nigerianmovie #nollywoodmovie THE VAGABOND KING Full Movie (2023 New Movie) Zubby Michael 2023 Latest Nigerian Nollywood Movies. You can also leave share and like this interesting NIGERIAN MOVIES 2023 Please remember to subscribe to our channel 11 HOURS MOVIES NIGERIAN MOVIES 2023. Also please feel free to leave your comments and suggestions below regarding this movie and other movies you want to watch. #NIGERIAN MOVIES 2022 Below are list of #NOLLYWOOD MOVIES . 2022 Playlist you will enjoy Free Nollywood Movies,Online 2022 Latest Nigerian Movies.

      published: 24 May 2023
    • Vagabond King (1956) Trailer

      published: 25 Jan 2014
    • Mario Lanza - Someday (from The Vagabond King)

      published: 02 Sep 2018
    • Song of the Vagabonds (From "The Vagabond King") (Remastered - 1995)

      Provided to YouTube by Living Stereo Song of the Vagabonds (From "The Vagabond King") (Remastered - 1995) · Mario Lanza · Constantine Callinicos · Rudolf Friml · Brian Hooker · Post Mario! Lanza At His Best ℗ Recorded Prior to 1972. All Rights Reserved by BMG Music Released on: 1995-05-08 Auto-generated by YouTube.

      published: 26 Dec 2016
    • Huguette Waltz from 'The Vagabond King' (1926) The Grammophonics Live

      Beautiful, longingly waltz, composed by Rudolf Friml. Arrangement by Bob Haring, 1926. Reeds: 1. Alto Mark Lorenz Kysela 2. Tenor Constanze Kaulich 3. Alto Nikola Lutz Violins: 1. Stephan Glüer 2. Silvia Hunziker ...Played not at 'Three O'clock In The Morning' ;-) but at 3:40 a.m. ... The Grammophonics, Tanzorchester 20er Jahre

      published: 07 Jul 2011
    developed with YouTube
    The Vagabond King 1956
    1:27:47

    The Vagabond King 1956

    • Order:
    • Duration: 1:27:47
    • Uploaded Date: 03 Sep 2012
    • views: 1128039
    https://wn.com/The_Vagabond_King_1956
    THE VAGABOND KING, 1956 SWASHBUCKLING ADVENTURE STARRING ORESTE KIRKOP AND KATHRYN GRAYSON.
    1:27:58

    THE VAGABOND KING, 1956 SWASHBUCKLING ADVENTURE STARRING ORESTE KIRKOP AND KATHRYN GRAYSON.

    • Order:
    • Duration: 1:27:58
    • Uploaded Date: 07 May 2022
    • views: 5267
    https://wn.com/The_Vagabond_King,_1956_Swashbuckling_Adventure_Starring_Oreste_Kirkop_And_Kathryn_Grayson.
    The Vagabond King (1930)
    1:44:19

    The Vagabond King (1930)

    • Order:
    • Duration: 1:44:19
    • Uploaded Date: 21 Oct 2020
    • views: 8485
    The 1930 film version of a 1925 operetta. Adapted by Herman J. Mankiewicz.
    https://wn.com/The_Vagabond_King_(1930)
    'ONLY A ROSE' - The Vagabond King 1956
    3:42

    'ONLY A ROSE' - The Vagabond King 1956

    • Order:
    • Duration: 3:42
    • Uploaded Date: 12 Apr 2017
    • views: 18423
    Kathryn Grayson and Oreste Kirkop in romantic mood in the 1956 film 'THE VAGABOND KING'.
    https://wn.com/'Only_A_Rose'_The_Vagabond_King_1956
    'SONG OF THE VAGABONDS'  -  Oreste Kirkop
    2:57

    'SONG OF THE VAGABONDS' - Oreste Kirkop

    • Order:
    • Duration: 2:57
    • Uploaded Date: 27 Apr 2017
    • views: 21153
    A stirring number from the 1956 film 'THE VAGABOND KING'. Brilliant technicolour and vibrant singing!
    https://wn.com/'Song_Of_The_Vagabonds'_Oreste_Kirkop
    THE VAGABOND KING Full Movie (2023 New Movie) Zubby Michael 2023 Latest Nigerian Nollywood Movies.
    4:46:23

    THE VAGABOND KING Full Movie (2023 New Movie) Zubby Michael 2023 Latest Nigerian Nollywood Movies.

    • Order:
    • Duration: 4:46:23
    • Uploaded Date: 24 May 2023
    • views: 3399
    #nigerianmovie #nollywoodmovie THE VAGABOND KING Full Movie (2023 New Movie) Zubby Michael 2023 Latest Nigerian Nollywood Movies. You can also leave share and like this interesting NIGERIAN MOVIES 2023 Please remember to subscribe to our channel 11 HOURS MOVIES NIGERIAN MOVIES 2023. Also please feel free to leave your comments and suggestions below regarding this movie and other movies you want to watch. #NIGERIAN MOVIES 2022 Below are list of #NOLLYWOOD MOVIES . 2022 Playlist you will enjoy Free Nollywood Movies,Online 2022 Latest Nigerian Movies.
    https://wn.com/The_Vagabond_King_Full_Movie_(2023_New_Movie)_Zubby_Michael_2023_Latest_Nigerian_Nollywood_Movies.
    Vagabond King (1956) Trailer
    2:05

    Vagabond King (1956) Trailer

    • Order:
    • Duration: 2:05
    • Uploaded Date: 25 Jan 2014
    • views: 5787
    https://wn.com/Vagabond_King_(1956)_Trailer
    Mario Lanza - Someday (from The Vagabond King)
    2:58

    Mario Lanza - Someday (from The Vagabond King)

    • Order:
    • Duration: 2:58
    • Uploaded Date: 02 Sep 2018
    • views: 5644
    https://wn.com/Mario_Lanza_Someday_(From_The_Vagabond_King)
    Song of the Vagabonds (From "The Vagabond King") (Remastered - 1995)
    3:40

    Song of the Vagabonds (From "The Vagabond King") (Remastered - 1995)

    • Order:
    • Duration: 3:40
    • Uploaded Date: 26 Dec 2016
    • views: 8712
    Provided to YouTube by Living Stereo Song of the Vagabonds (From "The Vagabond King") (Remastered - 1995) · Mario Lanza · Constantine Callinicos · Rudolf Friml · Brian Hooker · Post Mario! Lanza At His Best ℗ Recorded Prior to 1972. All Rights Reserved by BMG Music Released on: 1995-05-08 Auto-generated by YouTube.
    https://wn.com/Song_Of_The_Vagabonds_(From_The_Vagabond_King_)_(Remastered_1995)
    Huguette Waltz from 'The Vagabond King' (1926)   The Grammophonics Live
    4:08

    Huguette Waltz from 'The Vagabond King' (1926) The Grammophonics Live

    • Order:
    • Duration: 4:08
    • Uploaded Date: 07 Jul 2011
    • views: 3733
    Beautiful, longingly waltz, composed by Rudolf Friml. Arrangement by Bob Haring, 1926. Reeds: 1. Alto Mark Lorenz Kysela 2. Tenor Constanze Kaulich 3. Alto Nikola Lutz Violins: 1. Stephan Glüer 2. Silvia Hunziker ...Played not at 'Three O'clock In The Morning' ;-) but at 3:40 a.m. ... The Grammophonics, Tanzorchester 20er Jahre
    https://wn.com/Huguette_Waltz_From_'The_Vagabond_King'_(1926)_The_Grammophonics_Live
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    The Vagabond King 1956

    1:27:47
    The Vagabond King 1956
    published: 03 Sep 2012
    Play in Full Screen
    1:27:58
    THE VAGABOND KING, 1956 SWASHBUCKLING ADVENTURE STARRING ORESTE KIRKOP AND KATHRYN GRAYSON.
    published: 07 May 2022
    Play in Full Screen
    1:44:19
    The Vagabond King (1930)
    The 1930 film version of a 1925 operetta. Adapted by Herman J. Mankiewicz.
    published: 21 Oct 2020
    Play in Full Screen
    3:42
    'ONLY A ROSE' - The Vagabond King 1956
    Kathryn Grayson and Oreste Kirkop in romantic mood in the 1956 film 'THE VAGABOND KING'.
    published: 12 Apr 2017
    Play in Full Screen
    2:57
    'SONG OF THE VAGABONDS' - Oreste Kirkop
    A stirring number from the 1956 film 'THE VAGABOND KING'. Brilliant technicolour and vibra...
    published: 27 Apr 2017
    Play in Full Screen
    4:46:23
    THE VAGABOND KING Full Movie (2023 New Movie) Zubby Michael 2023 Latest Nigerian Nollywood Movies.
    #nigerianmovie #nollywoodmovie THE VAGABOND KING Full Movie (2023 New Movie) Zubby Michael...
    published: 24 May 2023
    Play in Full Screen
    2:05
    Vagabond King (1956) Trailer
    published: 25 Jan 2014
    Play in Full Screen
    2:58
    Mario Lanza - Someday (from The Vagabond King)
    published: 02 Sep 2018
    Play in Full Screen
    3:40
    Song of the Vagabonds (From "The Vagabond King") (Remastered - 1995)
    Provided to YouTube by Living Stereo Song of the Vagabonds (From "The Vagabond King") (Re...
    published: 26 Dec 2016
    Play in Full Screen
    4:08
    Huguette Waltz from 'The Vagabond King' (1926) The Grammophonics Live
    Beautiful, longingly waltz, composed by Rudolf Friml. Arrangement by Bob Haring, 1926. Re...
    published: 07 Jul 2011
    Play in Full Screen

    Harry Ruby

    Harry Ruby (January 27, 1895 February 23, 1974) was a Jewish American composer and screenwriter, who was inducted into the Songwriters Hall of Fame in 1970.

    Biography

    Ruby was born in New York City. After failing at his early ambition to become a professional baseball player, he toured the vaudeville circuit as a pianist with the Bootblack Trio and the Messenger Boys Trio until meeting the man who would become his longtime partner, lyricist Bert Kalmar. Kalmar and Ruby were a successful songwriting team for nearly three decades until Kalmar's death in 1947, a partnership portrayed in the 1950 MGM musical Three Little Words, starring Fred Astaire as Kalmar and Red Skelton as Ruby.

    Ruby died in Woodland Hills, California and was interred at the Chapel of the Pines in Los Angeles.

    A good friend of Groucho Marx, Ruby appeared several times on his television program, You Bet Your Life. In his 1972 concert at Carnegie Hall, Marx gave the following introduction before performing a song of Ruby's: "I have a friend in Hollywood . . . I think I do, I'm not so sure. [laughter] His name is Harry Ruby [applause] and he wrote a lot of songs that I've sung over the years . . ."

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