- published: 06 Apr 2015
- views: 34561
'+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; })); }); -->
Riccardo Eugenio Drigo (ru. Риккардо Эудженьо Дриго), (30 June 1846 – 1 October 1930) was an Italian composer of ballet music and Italian opera, a theatrical conductor, and a pianist.
Drigo is most noted for his long career as kapellmeister and Director of Music of the Imperial Ballet of St. Petersburg, Russia, for which he composed music for the original works and revivals of the choreographers Marius Petipa and Lev Ivanov. Drigo also served as Chef d'orchestre for Italian opera performances of the orchestra of the Imperial Mariinsky Theatre. During his career in St. Petersburg, Drigo conducted the premieres and regular performances of nearly every ballet and Italian opera performed on the Tsarist stage.
Drigo is equally noted for his original full-length compositions for the ballet as well as his large catalog of supplemental music written ad hoc for insertion into already-existing works. Drigo is also noted for his adaptations of already-existing scores, such as his 1895 edition of Tchaikovsky's score for Swan Lake. Many pieces set to the music of Drigo are still performed today, and are considered cornerstones of the classical ballet repertory.
La Esmeralda may refer to:
Esmeralda (French: Esméralda) is a 1905 French short silent film based on the novel The Hunchback of Notre Dame written by Victor Hugo. It was directed by Alice Guy-Blaché and Victorin-Hippolyte Jasset.
There are two characters in the film, Esmeralda (Denise Becker) and Quasimodo (Henry Vorins). The film is the oldest film adaptation of the novel.
La Esmeralda is a grand opera in four acts composed by Louise Bertin. The libretto was written by Victor Hugo, who had adapted it from his novel Notre-Dame de Paris (The Hunchback of Notre Dame). The opera premiered at the Théâtre de l'Académie Royale de Musique in Paris on 14 November 1836 with Cornélie Falcon in the title role. Despite the lavish production, the premiere was a failure, and La Esmeralda proved to be the last opera composed by Bertin, although she lived for another 40 years.
La Esmeralda is a ballet in three acts and five scenes, inspired by the novel Notre Dame de Paris by Victor Hugo, originally choreographed by Jules Perrot to music by Cesare Pugni, with sets by William Grieve and costumes by Mme. Copère.
It was first presented by the Ballet of her Majesty's Theatre, London on 9 March 1844, with Carlotta Grisi as Esmeralda, Jules Perrot as Gringoire, Arthur Saint-Leon as Phoebus, Adelaide Frassi as Fleur de Lys, and Antoine Louis Coulon as Quasimodo.
Today the complete ballet is performed only in Russia, Eastern Europe, and in New Jersey, United States, where the New Jersey Ballet introduced the full-length version for the first time in the United States in 2004. Most Western ballet companies only perform two Esmeralda-related pieces—La Esmeralda pas de deux and La Esmeralda pas de six—and the Diane and Actéon pas de deux, which is actually not excerpted from the ballet, but often mistakenly credited as having been added by Marius Petipa to his 1886 revival of La Esmeralda.
Honorables miembros y usuarios de YouTube,sean bienvenidos a una nueva emisión de este su lindo canal "MrJohannStraussViena",presentado en esta maravillosa ocasión: Obra.- Grande Valse Compositor.- Riccardo Drigo La presente obra pertenece a la obra de ballet "Le Réveil de Flore" en especial al pas d´action,del compositor italiano Riccardo Drigo Interpretación a cargo de.- London Symphony Orchestra Conductor.- Richard Bonynge Es tan hermosa a mi juicio a partir del minuto: 1:35 Disfruten de la presente obra llena de magia e ilusión,dejen un comentario y un like si es que así lo deciden. ¡Suscríbanse! (es gratis) Gracias
Gala Dance Open'2021 was called by many the most emotional and happiest in recent years. Luxurious, because the luxury of dance is in its unrestraint. Incendiary - because he not only illuminated, but also warmed in the midst of quarantine. Long-awaited, because everyone - both artists and spectators - are so tired of the pandemic and yearn for live theater! And also - contrasting, concentrated, powerful, impressive, bold... - Гран Па из балета Людвига Минкуса "Талисман" - Grand Pas from Ludwig Minkus ballet "Talisman" In a word, it was a real dream concert: the program was surprising, and the stage was crowded. In total, more than 90 dancers took part in the enchanting celebration of choreographic art, of which 20 are absolute world stars. Гала Dance Open'2021 многие назвали самым эмоц...
Part One 00:00-15:55 Part Two 15:55-28:50 The score, as published includes: I. Introduction/fanfares II. L'apparition d'Aquilon III. La rosée IV. L'apparition d'Aurore V. L'apparition d'Apollon VI. L'apparition de Zéphyre VII. Pizzicato de Cupidon suivi des amours VIII. Pas d'action - a. Scène et Pas d'ensemble - b. Variation de Zéphyre - c. Variation de Flore - d. Grande valse IX. Coda générale - Apothéose: La révélation d'Olympe. Performed by the London Symphony Orchestra conducted by Richard Bonynge.
excerpt Ali: Carlos Acosta choreographer: Marius Petipa The Royal Ballet Company Royal Opera House Covent Garden 01-12-1999
Obertura de Los millones de Arlequín de Riccardo Drigo (arreglo de L. P. Laurendeau), por la Banda Sinfónica Municipal de San Lorenzo "Orlando Scalona", parte del Concierto 𝐶𝑙𝑎́𝑠𝑖𝑐𝑜𝑠 𝑎𝑙 𝐺𝑟𝑎𝑡𝑖́𝑛 ✨ Grabado en el teatro Aldo Braga del Centro Cultural y Educativo Municipal de San Lorenzo (Santa Fe, Argentina), el 30 de abril del 2021. A disfrutar de la música! 🥰🎵 •Director artístico: Pablo Dell'Oca Sala •Directora: Danisa Alesandroni •Preparador: Bruno Lazzarini •Solista y concertino: Pablo Devadder •Técnica: AVBE (Streaming y grabación de audio). Nahuel Avecilla (Mezcla y Masterización) Qué les pareció? 😊👇
Provided to YouTube by Universal Music Group Drigo: Le Corsaire - Pas de deux · London Symphony Orchestra · Richard Bonynge Ballet Gala - Pas de Deux ℗ 1964 Decca Music Group Limited Released on: 1992-01-01 Producer: Christopher Raeburn Studio Personnel, Balance Engineer: Arthur Lilley Composer: Riccardo Drigo Auto-generated by YouTube.
Estimados miembros y visitantes del Imperio MrJohannStraussViena,me complace presentarles la siguiente variation pertenciente al Pas d`Action de la obra de ballet "Le Rèveil de Flore,del maravilloso compositor Riccardo Drigo. Resùmen: Obra.- Pas d`Action Coda Compositor.- Riccardo Drigo. Disfruten de esta maravillosa obra y comenten si asì lo desean. ¡Suscrìbanse! Gracias
Ballet
Apreciadores de la mùsica romàntica: En esta linda ocasiòn les presentarè una obra denominada "Valse Bluette (Air de Ballet)" del compositor italiano "Riccardo Eugenio Drigo" (1846 - 1930) Para mayor informaciòn de este autor tan talentoso favor de acceder a la siguiente ubicaciòn :http://en.wikipedia.org/wiki/Riccardo_Drigo La interpretación de esta pieza corre a cargo de:Jascha Heiftz Resùmen: Obra.- Valse Bluette (Air de Ballet) Autor.- Riccardo Eugenio Drigo Disfruten de este maravilloso vals y comenten. ¡Suscrìbanse! Gracias
Estimados miembros y visitantes del Imperio MrJohannStraussViena,me complace presentarles la siguiente variation pertenciente al Pas d`Action de la obra de ballet "Le Rèveil de Flore,del maravilloso compositor Riccardo Drigo. Resùmen: Obra.- Pas d`Action Variation of Zèphyr Compositor.- Riccardo Drigo. Disfruten de esta maravillosa obra y comenten si asì lo desean. ¡Suscrìbanse! Gracias
*Final Round music played by live orchestra* Miko has British, Swiss, Japanese nationalities and lives in the US. Trained / Coached at Indiana Ballet Conservatory, USA Featured ballerina in FIRST POSITION: A Ballet Documentary
説明
La Victoria es un pueblo que bien podría ser definido como un infierno verde donde impera la ley del más fuerte, alimentada por la codicia que despiertan las esmeraldas. A este lugar llegará la familia Guerrero. Alejandro Guerrero, padre de Ricardo, Eduardo y Olga Guerrero, se ve obligado a llevarse a su familia a este lejano lugar, dónde la bonanza esmeraldera produce episodios de sangre y fuego que se repiten de generación en generación. En medio de esta guerra, Alejandro tendrá que enfrentar desde su llegada a Patricio Ortega, gran Patrón de la región, no solo por tener principios opuestos, sino además por tener la desgracia de que la mujer más deseada por el Patrón, fije sus ojos y su corazón en él. Mientras esta guerra se ahínca en La Victoria, Alejandro sorteará la más dura pelea per...
Music-Azad Shabanov-Esmeralda (Azad Şabanov-Esmeralda) Salma Hayek-The Hunchback of Notre Dame (1977) (HD) The Hunchback is a 1997 New Zealand fantasy television film based on Victor Hugo's iconic 1831 novel The Hunchback of Notre Dame, directed by Peter Medak and produced by Stephane Reichel. It stars Richard Harris as Claude Frollo, Salma Hayek as Esmeralda and Mandy Patinkin as Quasimodo, the titular hunchback of Notre Dame. Mandy Patinkin as Quasimodo Richard Harris as Claude Frollo Salma Hayek as Esmeralda Edward Atterton as Gringoire Benedick Blythe as Phoebus Nigel Terry as King Louis XI Jim Dale as Clopin Trevor Baxter as Chief Lawyer Vernon Dobtcheff as Father Michel Nickolas Grace as Gauchére Matthew Sim as a Crippled Man Cassie Stuart as Colette Gabriella Fon as Queen Anne Notre...
Natalia Osipova (Bolshoi Ballet Academy)at 17, dancing Esmaralda variation, 23-Sep-2003
"Danse Gitane" Alice Guy 1905 Extrait du dvd "Cinemas Cinema 1er Alice Guy"dvd Autist Artist Associat 20€ A eviter absolument Voir tous les films d'alice Guy GRATUITEMENT sur wat tv dailymotion youtube... ou sur les blogs d'Alice Guy jr (+60) sur alice-guy-jr.blogspot.com Alice Guy Blache Cinema Pioneer Whitney museum 2009
this is a scene from the 1990s movie that starred a young salma hayek, in many movies esmeralda is depicted near the end almost being burnt alive but from what i have been told in the story itself her execution is by hanging very different ending from what has been depicted in tv and film and she does actually get hanged untill dead
Собор Парижской богоматери (Дж.Лоллобриджида,Энт.Куинн) Фр-Итал 1956 г. xvid.avi
by 11 - GALEMY
Dans cette vidéo, je vous raconte Notre Dame de Paris , le chef d'oeuvre de Victor Hugo, vu par les yeux d'Esmeralda. L'occasion de (re)découvrir cette formidable histoire et ses personnages à la fois grotesque et sublime. Si vous voulez soutenir la chaine, n'hésitez pas à acheter mon livre ici: http://www.lulu.com/shop/fiamoa-d-mcbenson/la-renaissance-du-d%C3%A9miurge/paperback/product-23949515.html Si cette hsitoire vous a donné envie de défendre la cause des Rom,vous avez ici un cartes de toutes les associations adhérant au collectif RomEurope qui a pour but de défendre les droits des roms http://www.romeurope.org/membres/ Sources Victor Hugo, Notre Dame de Paris, 1831 Crédits Réalisation Montage présentation: Fiamoa D McBenson Musique Kevin MacLéod titres musiques par ordre d...
Все о зарубежных странах и сериалах
Nominated for two Academy Awards. Posted Under "Fair Use Doctrine"- Highly rated film, amazing King Louis XI is a wise and old king and Frollo is the Chief Justice. Frollo gazes on the gypsy girl, Esmeralda, in the church during Fool's Day and sends Quasimodo to catch her. Quasimodo, with the girl, is captured by Phoebus, Captain of the Guards, who frees the girl. The courts sentence Quasimodo to be flogged, and the only one who will give him water while he is tied in the square is Esmeralda. Later, at a party of nobles, Esmeralda again meets both Frollo, who is bewitched by her, and Phoebus. When Phoebus is stabbed to death, Esmeralda is accused of the murder, convicted by the court and sentenced to hang. Clopin, King of the Beggars; Gringoire, Esmeralda's husband; and Quasimodo, the bell...
Riccardo Eugenio Drigo (ru. Риккардо Эудженьо Дриго), (30 June 1846 – 1 October 1930) was an Italian composer of ballet music and Italian opera, a theatrical conductor, and a pianist.
Drigo is most noted for his long career as kapellmeister and Director of Music of the Imperial Ballet of St. Petersburg, Russia, for which he composed music for the original works and revivals of the choreographers Marius Petipa and Lev Ivanov. Drigo also served as Chef d'orchestre for Italian opera performances of the orchestra of the Imperial Mariinsky Theatre. During his career in St. Petersburg, Drigo conducted the premieres and regular performances of nearly every ballet and Italian opera performed on the Tsarist stage.
Drigo is equally noted for his original full-length compositions for the ballet as well as his large catalog of supplemental music written ad hoc for insertion into already-existing works. Drigo is also noted for his adaptations of already-existing scores, such as his 1895 edition of Tchaikovsky's score for Swan Lake. Many pieces set to the music of Drigo are still performed today, and are considered cornerstones of the classical ballet repertory.