- published: 26 Dec 2017
- views: 194222659
'+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; })); }); -->
André Léon Marie Nicolas Rieu (born 1 October 1949) is a Dutch violinist and conductor best known for creating the waltz-playing Johann Strauss Orchestra. Together they have turned classical and waltz music into a worldwide concert touring act, as successful as some of the biggest global pop and rock music acts. For his work, Rieu has been awarded such honours as the Order of the Netherlands Lion by the Netherlands, the Knight of the Ordre des Arts et des Lettres by France, and the Honorary Medal by his native Province of Limburg.
Rieu began studying violin at the age of five. He created the Maastricht Salon Orchestra in 1978, and went on to create the Johann Strauss Orchestra in 1988.
The name Rieu is of French Huguenot origin. Rieu's father, of the same name, was conductor of the Maastricht Symphony Orchestra. Showing early promise, André began studying violin at the age of five. From a very young age, he developed a fascination with orchestra. He studied violin at the Conservatoire Royal in Liège and at the Conservatorium Maastricht, (1968–1973), studying under Jo Juda and Herman Krebbers. From 1974 to 1977, he attended the Music Academy in Brussels, studying with André Gertler, finally receiving his degree "Premier Prix" from the Royal Conservatory of Brussels.
The Merry Widow (German: Die lustige Witwe) is an operetta by the Austro-Hungarian composer Franz Lehár. The librettists, Viktor Léon and Leo Stein, based the story – concerning a rich widow, and her countrymen's attempt to keep her money in the principality by finding her the right husband – on an 1861 comedy play, L'attaché d'ambassade (The Embassy Attaché) by Henri Meilhac.
The operetta has enjoyed extraordinary international success since its 1905 premiere in Vienna and continues to be frequently revived and recorded. Film and other adaptations have also been made. Well-known music from the score includes the "Vilja Song", "Da geh' ich zu Maxim" ("You'll Find Me at Maxim's"), and the "Merry Widow Waltz".
The Merry Widow (French: Enfin veuve) is a 2007 French comedy film directed by Isabelle Mergault and starring Michèle Laroque, Jacques Gamblin, and Wladimir Yordanoff.
Anne-Marie Gratigny is the wife of a famous plastic surgeon, Gilbert. She has a good life, with maids, money, and everything ordinary women would dream of. But her marriage is a total failure. Her husband lives for his job and does not pay proper attention to Anne-Marie. As a result of years of neglect, Mrs. Gratigny has a lover named Leo, who works as a ship builder, and is urging Anne-Marie to leave her husband and this unbearable situation, and go with him to China, where he is seeking a big project for his work. However, after spending an entire day out, planning her departure, when Anne-Marie returns home, she is surprised to find the whole family there, with some very shocking news: Gilbert has died in a car accident. Relieved that her failed marriage is at an end, Anne-Marie now sees the chance to meet her lover more often, and is looking forward to being able to go to China with him, but all her hopes are dashed by the continuous presence of her family and in particular her son, who won't give her a break, thinking she's in shock because of losing her husband. She now has to pretend to be in mourning and hide her happiness and relief.
The Merry Widow is a 1925 American silent romantic drama/black comedy film directed and written by Erich von Stroheim. Released by Metro-Goldwyn-Mayer, the film stars Mae Murray, John Gilbert and Roy D'Arcy. The film is based on the Franz Lehár's opera of the same name and was the second adaptation of the opera, the first being released in Hungary in 1918. Joan Crawford and Clark Gable also had uncredited roles in the film.
While a print of the film still survives, the end sequence shot in two-tone Technicolor is now lost.
Prince Danilo falls in love with dancer Sally O'Hara. His uncle, King Nikita I of Monteblanco forbids the marriage because she is a commoner. Thinking she has been jilted by her prince, Sally marries old, lecherous Baron Sadoja, whose wealth has kept the kingdom afloat. When he dies suddenly, Sally must be wooed all over again by Danilo.
André Rieu & Gheorghe Zamfir performing The Lonely Shepherd live in Romania. For concert dates and tickets visit: http://www.andrerieu.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Subscribe to André Rieu's YouTube channel at: http://smarturl.it/5ubscribe Or follow André Rieu at: http://www.facebook.com/andrerieu http://www.twitter.com/andrerieu https://plus.google.com/+andrerieu - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - © 2017 -- André Rieu Productions | www.andrerieu.com
André Rieu performing Shostakovich' "The Second Waltz" live in Maastricht, The Netherlands. For concert dates and tickets visit: http://www.andrerieu.com http://www.facebook.com/andrerieu http://www.twitter.com/andrerieu https://plus.google.com/+andrerieu
André Rieu's Christmas recording 'Home for Christmas'. For concert dates and tickets visit: http://www.andrerieu.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Subscribe to André Rieu's YouTube channel at: http://smarturl.it/5ubscribe Or follow André Rieu at: https://instagram.com/andrerieu http://www.facebook.com/andrerieu http://www.twitter.com/andrerieu - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - © 2019 -- André Rieu Productions | www.andrerieu.com
André Rieu & His Johann Strauss Orchestra performing Hallelujah as a tribute to Leonard Cohen live in London. Taken from the DVD "Christmas in London". For concert dates and tickets visit: http://www.andrerieu.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Subscribe to André Rieu's YouTube channel at: http://smarturl.it/5ubscribe Or follow André Rieu at: http://www.facebook.com/andrerieu http://www.twitter.com/andrerieu https://plus.google.com/+andrerieu - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - © 2016 -- André Rieu Productions | www.andrerieu.com
André Rieu & Lou Bega performing Mambo No. 5 live in Maastricht. Taken from the DVD Falling In Love. For Tour Dates visit: http://www.andrerieu.com Official Lyrics: Ladies and gentlemen This is Mambo No. 5! One, two, three, four, five Everybody in the car, so come on let's ride To the liquor store around the corner The boys say they want some gin and juice But I really don't wanna Beer bust, like I had last week I must stay deep, 'cause talk is cheap I like Angela, Pamela, Sandra and Rita And as I continue you know they're getting sweeter So what can I do? I really beg you, my Lord To me flirting is just like a sport Anything fly, it's all good let me dump it Please set in the trumpet A little bit of Monica in my life A little bit of Erica by my side A little bit of Rita is all I need...
André Rieu & His Johann Strauss Orchestra performing My Heart Will Go On live in Vienna. Taken from the DVD André Rieu Live at Schönbrunn, Vienna. For concert dates and tickets visit: http://www.andrerieu.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Subscribe to André Rieu's YouTube channel at: http://www.youtube.com/andrerieuTV Or follow André Rieu at: http://www.facebook.com/andrerieu http://www.twitter.com/andrerieu https://plus.google.com/+andrerieu - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - © 2015 -- André Rieu Productions | www.andrerieu.com
André Rieu & his Johann Strauss Orchestra playing "The Beautiful Blue Danube" (An der schönen blauen Donau) by composer Johann Strauss II. Recorded live at Empress Sisi's castle; Schönbrunn Palace Vienna, Austria with dancers from the famous Austrian Elmayer Dancing School. Clip from the DVD "André Rieu At Schönbrunn, Vienna". One of André's biggest and most beautiful special ever. Tracklist: 01. Einzugsmarsch 02. Trumpet Voluntary 03. Auf der Jagd 04. Fächerpolonaise 05. Rosen aus dem Süden 06. Heia in den Bergen 07. G'schichten aus dem Wienerwald 08. Der dritte Mann 09. Freunde, das Leben ist lebenswert 10. Die Mädis vom Chantant 11. Die Czárdásfürstin Potpourri 12. Ohne Sorgen 13. Feuerfest 14. My Heart Will Go On 15. Wenn ich mit meinem Dackel 16. Heut' kommen d'Engerln auf Urlaub na...
André Rieu & The Johann Strauss Orchestra performing "Ballade pour Adeline" live in Vienna. Taken from André Rieu's breathtaking live spectacle on DVD and Blu-ray "André Rieu - And the waltz goes on" featuring Sir. Anthony Hopkins' Waltz. For tour dates visit: http://www.andrerieu.com http://www.facebook.com/andrerieu http://www.twitter.com/andrerieu https://plus.google.com/+andrerieu
Established in 1929, Decca is the legendary British record label, home to some of the greatest recording artists ever. Visit the Decca Store at https://decca.lnk.to/StoreID Join the official mailing list for news and offers in your inbox: https://decca.lnk.to/NewsletterSignUpID André Rieu's Magic Of The Movies is out now.
André Rieu & the Johann Strauss Orchestra performing Ravel's Boléro live in Maastricht. Taken from the DVD/Blu-Ray "André Rieu - Under the Stars - Live in Maastricht 5." For tour dates visit: http://www.andrerieu.com http://www.facebook.com/andrerieu http://www.twitter.com/andrerieu https://plus.google.com/+andrerieu
Listen to André Rieu - Falling In Love here: https://decca.lnk.to/RieuFILID Buy the CD and DVD of André Rieu - Falling In Love here: http://po.st/RieuFILeCVE Music video by André Rieu performing And The Waltz Goes On. (C) 2011 Universal Music Domestic Pop, a division of Universal Music GmbH
Franz Lehar, THE MERRY WIDOW In English 27 03 1996 - New York City Opera
"...I celebrate myself and sing myself...". -Walt Whitman-
The Merry Widow | 1 March – 13 April 2019 | London Coliseum | Tickets from £12, with 500 tickets available at every performance for £20 or less. Find out more: www.eno.org/widow The Merry Widow is Franz Lehár‘s comic masterpiece, played out in a stream of memorable melodies including the familiar ‘Vilja Song’ and ‘Merry Widow Waltz’. With a truly glamorous setting, Lehár’s operetta centres on the relationship between the dazzling and wealthy young widow Hanna and Danilo, who has an appetite for wine and women. As this delightful tale of a woman’s quest for love unfolds, their burgeoning romance is hampered by mishap, intrigue and comedic misadventure. Making their ENO debuts with Lehár’s classic are director Max Webster (The Lorax at Old Vic) and sought-after Estonian conductor Kri...
Act 3 inserted separately Komp: Ferenc Lehar. The Sn Francisco Opera, 2001. Kond: Erich Kunzel Hanna Glawari (merry widow) - Yvonne Kenny earl Daniło Daniłowicz - Bo Skovhus baron Zeta - Carlo Hartmann Walentyna - Angelika Krichschlanger Camille de Rosillon - Gregory Turay viscount de Cascada - Curtis Sullivan
Friends, if you liked the video, you can financially support the channel. https://payeer.com/02534852 Account: P38619700
Provided to YouTube by Universal Music Group Lehár: The Merry Widow - Overture · National Philharmonic Orchestra · Richard Bonynge Léhar - The Merry Widow - Highlights ℗ 1978 Decca Music Group Limited Released on: 1978-01-01 Producer: Andrew Cornall Studio Personnel, Balance Engineer: Colin Moorfoot Studio Personnel, Balance Engineer: Kenneth Wilkinson Composer: Franz Lehár Author: Viktor Léon Author: Leo Stein Arranger, Work Arranger: Douglas Gamley Auto-generated by YouTube.
For all the Jeremy Brett fans who have not yet had the chance to see this fun 1968 version of the Franz Lehar operetta! Jeremy had that flirtatious, glorious magnetism even at such an early age! Not to mention that musical rich baritone! I apologize for the poor video quality. I think this is the only version available out in circulation...hopefully the studio will take it upon themselves to produce a re-mastered, HD quality DVD of this version with glorious digital sound. Execs...if you are seeing this, please PLEASE, PRETTY PLEASE consider making one for the open market. Jeremy Brett and Lehar fans will bless you FOREVER! Enjoy music and JB lovers! X BTW, Jeremy makes his grand entrance (as only JB can!) at 15:32! Woot!
André Rieu, Carla, Mirusia, Carmen, The Platin Tenors & the Johann Strauss Orchestra performing Lippen Schweigen live in Maastricht. A song from the operetta "Die lustige Witwe (The Merry Widow)" by Austro--Hungarian composer Franz Lehár. For concert dates and tickets visit: http://www.andrerieu.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Lyrics: Lippen schweigen, 's flüstern geigen, hab mich lieb AI die Schntte sagen bitte: Hab mich lieb! Jeder Druck der Hände deutlich mir s beschneb Er sagt klar 's ist wahr. 's ist wahr. du hast mich lieb Bei jedem Walzerschritt tanzt auch die Seele mit da hüpft das Herzchen klein, es klopft und pocht: Sei mein, sei mein! Und der Mund er spncht kein Wort doch tönt es fort und immer fort: ich hab dich ja so lieb. ich hab d...
For all the Jeremy Brett fans who have not yet had the chance to see this fun 1968 version of the Franz Lehar operetta! Jeremy had that flirtatious, glorious magnetism even at such an early age! Not to mention that musical rich baritone! I apologize for the poor video quality. I think this is the only version available out in circulation...hopefully the studio will take it upon themselves to produce a re-mastered, HD quality DVD of this version with glorious digital sound. Execs...if you are seeing this, please PLEASE, PRETTY PLEASE consider making one for the open market. Jeremy Brett and Lehar fans will bless you FOREVER! Enjoy music and JB lovers! X BTW, Jeremy makes his grand entrance (as only JB can!) at 15:32! Woot!
Trailer to Metro-Goldwyn-Mayers 1934 version of the musical The Merry Widow
Bande Annonce "Enfin Veuve" 2008 Actuellement dans les salles. Réalisé par Isabelle Mergault. Avec Michèle Laroque, Jacques Gamblin et Wladimir Yordanoff.
Gens, Ludlow, Léger, Le Roux Opéra de Lyon Décembre 2006
The Merry Widow (1934) #WarnerArchive #WarnerBros #TheMerryWidow Jeanette MacDonald is Sonia, a bubbly widow who owns 52% of every cow and cowtown in the tiny European country of Marshovia. When she relocates to glittery Paris, suave ladies' man Captain Danilo (Maurice Chevalier) sets out in hot pursuit. His mission: avert his homeland's financial ruin by bringing Sonia back on the wings of love. But hang on tight, Danilo. Love always flies a delirious course when legendary director Ernst Lubitsch, known for sophisticated wit and a style affectionately dubbed as "the Lubitsch touch" is at the helm. A frothy, high-spirited gem based on Franz Lehar's operetta, The Merry Widow set the standard for musicals to come. And it confirmed what MGM's top brass already knew: Jeanette MacDoanld was a ...
Filmed in the Palace Theatre, Columbus, Ohio, 2007. The quality is obviously 2007. We have made every effort to enhance the video and audio and are pleased to have preserved this record of a wonderful production. Best wishes to all our friends who performed in this production of The Merry Widow. Willie Grové, December 2018 The Cast: Hannah Glawari – Dianne Alexander Count Danilo – David Templeton Baron Von Meta – David Weaver Njegus - Chris Baum Valencienne – Laura Portune Camille – David Gagnon St. Brioche – Dennis Bassett Cascada – Brian Banion Kromow - William Grové Olga – Carolyn Redman Bogdanovich - Rick Paul Sylviane – Jennifer Whitehead Pritschitsch - Bart Smith Praskowia – Rebecca Keck Conductor/Chorus Master - Bill Boggs Stage Director – Roger Steph...
André Léon Marie Nicolas Rieu (born 1 October 1949) is a Dutch violinist and conductor best known for creating the waltz-playing Johann Strauss Orchestra. Together they have turned classical and waltz music into a worldwide concert touring act, as successful as some of the biggest global pop and rock music acts. For his work, Rieu has been awarded such honours as the Order of the Netherlands Lion by the Netherlands, the Knight of the Ordre des Arts et des Lettres by France, and the Honorary Medal by his native Province of Limburg.
Rieu began studying violin at the age of five. He created the Maastricht Salon Orchestra in 1978, and went on to create the Johann Strauss Orchestra in 1988.
The name Rieu is of French Huguenot origin. Rieu's father, of the same name, was conductor of the Maastricht Symphony Orchestra. Showing early promise, André began studying violin at the age of five. From a very young age, he developed a fascination with orchestra. He studied violin at the Conservatoire Royal in Liège and at the Conservatorium Maastricht, (1968–1973), studying under Jo Juda and Herman Krebbers. From 1974 to 1977, he attended the Music Academy in Brussels, studying with André Gertler, finally receiving his degree "Premier Prix" from the Royal Conservatory of Brussels.
He's got fasting black lungs
Made of clove splintered shardes
They're the kind that will talk
Through a weezing of coughs
And I hear him every night
In every pore
And every time he just makes me warm
Freeze without an answer
Free from all the shame
Must I hide?
Cause I'll never
Never sleep alone
Look at how they flock to him
From an isle of open sores
He knows that the taste is such
Such to die for
And I hear him every night
On every street
The scales that do slither
Deliver me from…
Freeze without an answer
Free from all the shame
Then I'll hide
Cause I'll never
Never sleep alone
Oh lord
Said I'm bloodshot for sure
Pale runs the ghost
Swollen on the shore
Everynight
in every pore
The scales that do slither
Deliver me from…
Freeze without an answer
Free from all the shame
Then I'll hide
Cause I'll never
Never sleep alone
Freeze without an answer
Free from all the shame
Let me die
Cause I'll never