- 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.
On Wings of Song is a 1979 science fiction novel by Thomas M. Disch. It was first published as a serial in The Magazine of Fantasy & Science Fiction in three installments in February to April 1979. Like Disch's previous novel 334, it is a bitter satire that depicts a near-future America falling into worsening economic and social crisis. Despite being critically well received, it was a commercial failure.
"On Wings of Song" is the English title of the German Romantic poem "Auf Flügeln des Gesanges" by Heinrich Heine, which was set to music by Felix Mendelssohn. The lyric speaks of flying with a lover to a peaceful paradise in "the fields of the Ganges".
The novel takes place in suburban Iowa and in New York City, around the middle of the 21st century. Its first section describes the childhood and adolescence of Daniel Weinreb, an imaginative boy who manages to adapt well to his conservative surroundings until a minor act of rebellion sends him to prison at age 14. Daniel's experience there makes him eager to leave the Midwest. After falling in love with the daughter of a powerful and reactionary local tycoon, he moves with her to New York, dreaming of becoming a musician and exploring the forbidden art of "flying"—electronically-assisted astral projection. Tragedy and exploitation leave Daniel's idealism in ruins, but he persists and becomes an internationally famous and controversial performer.
"On Wings of Song" (German: "Auf Flügeln des Gesanges") is a poem by the German Romantic poet Heinrich Heine. It was published in Buch der Lieder in 1827. Felix Mendelssohn set it to music as the second of his "six songs for voice and piano" (Opus 34-2, 1834).Franz Liszt arranged On Wings of Song for solo piano (S. 547).
This song has been translated into other languages and has been adopted in school music textbooks for China, Japan and Korea.
On Wings of Song: The Performance Recordings of Josephine A. Estill 1939–1974 is a compilation album on four CDs featuring performances by Jo Estill. The album is taken from original live recordings by Charles M. "Bud" Edmonds of Colorado Springs, Colorado, USA. The album was remastered at Banquet Studios, Sebastopol, California, USA during 2008–2009, with sound engineer Darryl Webb and produced by Alice Estill Miller. The album sleve notes credit special thanks to Zana Timroth, Donald P. Jenkins, Kim Steinhauer and Steven Chicurel.
(It is also the name of an album released in 1973 by the Aer Lingus Musical Society, by ARA Records, Dublin, and distributed by EMI Records(Dublin) ARA1003 Stereo, Arranged by Dr. Tadhg de Brún, and produced by Jerry Hughes.)
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
This classic masterpiece is augmented with subscripts from Heinrich Heine, the poet who created the lyrics (1835) for its well-known operatic version. A host of paintings represented by Chagall, Homer, O'keefe, Pissarro, Sargent, and Spadecaller portray the beautiful night garden, where love is transported by the "Wings of Song." A Spadecaller Video.
Embark on a journey of melody and emotion with Felix Mendelssohn's "On Wings of Song." This cherished piece, performed by the Salt Lake Children's Choir, captivates with its charm and presents a delightful challenge for our newer singers. Join us as we soar through the enchanting melodies of Mendelssohn in the serene ambiance of St. Ambrose Catholic Church in Salt Lake City. Thank you for joining us on this musical adventure. Learn more about our choir and upcoming performances at https://childrensing.org/.
Finghin Collins and Rachel Croash perform Mendelssohn On wings of song for Music for Galway 35th International Concert Season Launch at Hotel Meyrick.
🍀 Don't forget to subscribe, like and comments! 😊 🔔 🎧 PLAYLIST 🎧 ♦︎ PLAY-THROUGH List: https://tinyurl.com/48hwmmu9 ♦︎ Dozen a day series: https://tinyurl.com/45xdb8uh ♦︎ Piano Adventures 1 Lesson: https://tinyurl.com/96k5d699 ♦︎ Piano Adventures 1 Performance : https://tinyurl.com/zaar99ka ♦︎ Piano Adventures 1 Technique : https://tinyurl.com/3967uzbz ♦︎ Piano Adventures Level 2A Lesson: https://tinyurl.com/2u8286px ♦︎ Piano Adventures Level 2A Performance : https://tinyurl.com/sc5u25z5 ♦︎ Piano Adventures Level 2B Lesson : https://tinyurl.com/2vuv9ce8 ♦︎ Piano Adventures Level 2B Performance : https://tinyurl.com/52ysfavv ♦︎ Piano Adventures Level 3A Lesson: https://tinyurl.com/54nzkupr ♦︎ Piano Adventures Level 3A Performance : https://tinyurl.com/49wttmeb ♦︎ Piano Adventures Lev...
Maurice Sklar, Violin (www.mauricesklar.com) and Hugh Sung, Piano (www.hughsung.com) performing On Wings of Song for PianoDisc (www.pianodisc.com).
Guitar: 2000 Edmund Blochinger (http://bit.ly/HvmVOy). Here's George Sakellariou playing Felix Mendelssohn's 'On Wings of Song' on a 2000 Edmund Blochinger classical guitar at the Guitar Salon International showroom in Santa Monica, CA. http://www.guitarsalon.com/ All proceeds from monetization of this video goes to the GSI Foundation, a non-profit organization that raises money to support music education in public schools. Visit our site for more information: http://bit.ly/2nIJMxR #gsi #friendsofgsi #classicalguitar
Provided to YouTube by CDBaby On Wings of Song · Laurel Ann Maurer Songs from the Heart ℗ 2009 Laurel Ann Maurer Released on: 2009-01-01 Auto-generated by YouTube.
Singers: Anna Fehle (alto) and Shuba Narasimhan (soprano) Song Formation: 1st verse in English, 2nd verse in German, 3rd verse in English - Sung on May 12th, 2011 for a voice recital. - We chose this song because it was composed by a German and the song talks about India. Anna is German and I am of Indian origin :) Lyrics: On wings of music roaming, With thee, my loved one I glide, Where the gay flowers are blooming, On banks by the Ganges tide. Oh, there in a garden of roses, While moonbeams calmly shine, The lotus flower uncloses, Her eye to gaze on thine, The lotus flower uncloses, Her eye to gaze on thine. Auf Flügen des Gesanges, Herzliebchen trag ich dich fort, Fort nach den Fluren des Ganges, Dort weiß ich den schönsten Ort, Dort leigt ein rotblühender Garten, ...
Auf Flügeln des Gesanges (On Wings of Song) Music/Composer: Felix Mendelssohn Lyrics/Poem: Heinrich Heine Tenor: Peter Schreier Pianist: Walter Olbertz Lyrics (English translation) On wings of song, my love, I'll carry you away to the fields of the Ganges where I know the most beautiful place. There lies a red-flowering garden, in the serene moonlight The lotus-flowers await their beloved sister. The violets giggle and cherish, and look up at the stars The roses tell each other secretly their fragrant fairy-tales. The gentle, bright gazelles pass and listen; and, in the distance, murmurs the waves of the holy stream. There we will lay down, under the palm-tree, and drink of love and peacefulness And dream our blessed dream.
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.
Honte à toi qui la première m'a appris la trahison,
Et d'horreur et de colère m'a fait perdre la raison,
Et d'horreur et de colère m'a fait perdre la raison.
Honte à toi femme à l'oeil sombre, dont les funestes amours,
Ont enseveli dans l'ombre mon printemps et mes beaux jours,
Ont enseveli dans l'ombre mon printemps et mes beaux jours.
C'est ta voix, c'est ton sourire, c'est ton regard corrupteur,
Qui m'ont appris à maudire jusqu'au semblant du bonheur,
Qui m'ont appris à maudire jusqu'au semblant du bonheur.
C'est ta jeunesse, c'est tes charmes qui m'ont fait desespérer,
Et si je doute des larmes c'est que je t'ai vu pleurer,
Et si je doute des larmes c'est que je t'ai vu pleurer.
Honte à toi, j'étais encore, aussi simple qu'un enfant,
Comme une fleur à l'aurore mon coeur s'ouvrait en t'aimant,
Comme une fleur à l'aurore mon coeur s'ouvrait en t'aimant.
Certes ce coeur sans défense, pu sans peine être abusé,
Mais lui laisser l'innocence etait encore plus aisé,
Mais lui laisser l'innocence etait encore plus aisé.
Honte à toi, qui fut la mer de mes premieres douleurs,
Et tu fis de ma paupiere jaillir la source des pleurs,
Et tu fis de ma paupiere jaillir la source des pleurs.
Elle coule sois en sûr et rien ne la tarira,
Elle sort d'une blessure qui jamais ne guerira,
Elle sort d'une blessure qui jamais ne guerira.
Mais dans cette source amere, du moins je me laverais,
Et j'y laisserai j'espere ton souvenir aborré,
Et j'y laisserai j'espere ton souvenir aborré,
Et j'y laisserai j'espere ton souvenir aborré.