'+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;
}));
});
-->
Nicolai Gedda
Released 2010
Guillaumme Tell: Overture
Guillaumme Tell: Acte I, No. 1. "Quel jour serein le ciel présage!" (Chorus)
Guillaumme Tell: Acte I. Quatuor "Accours dans ma nacelle" (Fisherman, Tell, Jemmy, Hedwige)
Guillaumme Tell: Acte I. "On entend des montagnes" (Chorus, Jemmy, Hedwige, Fisherman, Tell, Arnold, Melchthal)
Guillaumme Tell: Acte I. "Pasteurs, que vos accents s'unissent" (Melchthal, Chorus, Arnold, Fisherman, Tell)
Guillaumme Tell: Acte I. "Près des torrents qui grondent" (Chorus)
Guillaumme Tell: Acte I. "Contre les feux du jour que mon toit solitaire" (Tell, Melchthal)
Guillaumme Tell: Acte I. "Le mien, dit-il, jamais le mien!" (Arnold)
Guillaumme Tell: Acte I, No. 2. Duo "Où vas-tu?" (Tell, Arnold)
Guillaumme Tell: Acte I. "Du danger quand sonnera l'heure" (Tell, Arnold)
Guillaumme Tell: Acte I. "O Ciel, tu sais si Mathilde m'est chère!" (Tell, Arnold)
Guillaumme Tell: Acte I. "Sur nos têtes le soleil brille" (Hedwige)
Guillaumme Tell: Acte I, No. 3. "Quand le Ciel entend votre promesse" (Melchthal, Tell, Chorus, Arnold)
Guillaumme Tell: Acte I. "Des antiques vertus vous nous rendrez l'exemple" (Melchthal, Tell, Arnold)
Guillaumme Tell: Acte I. "Gessler proscrit ces voeux, écoutez le tyran" (Tell, Hedwige, Jemmy)
Guillaumme Tell: Acte I, No. 4. "Hyménée, ta journée fortunée luit pour nous" (Chorus)
Guillaumme Tell: Acte I, No. 5. Pas de six
Guillaumme Tell: Acte I. "Gloire, honneur au fils de Tell ... Enfants de la nature" (Chorus, Jemmy, Hedwige)
Released 2001
Der Zigeunerbaron: Ouvertüre
Der Zigeunerbaron: Akt I. "Das wär' kein rechter Schiffersknecht" (Chor)
Der Zigeunerbaron: Akt I. "Jeden Tag, Müh' und Plag'" (Ottokar, Czipra, Chor)
Der Zigeunerbaron: Akt I. "Als flotter Geist" / "Ja! Ja, das alles auf Ehr" (Barinkay, Chor)
Der Zigeunerbaron: Akt I. Dialog "Aber von nun an" (Barinkay, Carnero)
Der Zigeunerbaron: Akt I. "Hergott, ein altes Weib!" (Carnero, Czipra, Barkinay, Saffi)
Der Zigeunerbaron: Akt I. "Bald wird man dich viel umwerben" (Czipra, Carnero)
Der Zigeunerbaron: Akt I. "Verloren hast du einen Schatz" (Czipra)
Der Zigeunerbaron: Akt I. "Das schreib' dir, Alte, hinter's Ohr" (Carnero, Czipra, Barkinay, Chor, Zsupán)
Der Zigeunerbaron: Akt I. "Ja, das Schreiben und das Lesen" (Zsupán)
Der Zigeunerbaron: Akt I. Dialog "Ihr seid der mächtigste Sauzüchter im Lande" (Barinkay, Zsupán, Carnero, Mirabella, Ottokar)
Der Zigeunerbaron: Akt I "Also jetzt wirst du Augen machen, Freunderl!" ... "Dem Freier nacht die Braut" ... "Ein Frier meldet sich schon wieder" (Zsupán, Chor, Arsena, Barinkay, Carnero, Mirabella)
Der Zigeunerbaron: Akt I. "Hochzeitskuchen, bitte zu versuchen" (Chor, Barinkay, Carnero, Arsena)
Der Zigeunerbaron: Akt I. "Ah, sieh da, ein herrlich Frauenbild" (Barinkay, Zsupán, Mirabella, Arsena, Czipra, Chor)
Der Zigeunerbaron: Akt I. Dialog "Also du bist mit der Heirat einverstandchen?" (Barinkay, Zsupán, Arsena)
Der Zigeunerbaron: Akt I. "So elend und so treu" ... "O habet Acht" (Saffi, Barinkay)
Der Zigeunerbaron: Akt I. Dialog "Ich kenne dieses Lied" (Barinkay, Saffi)
Der Zigeunerbaron: Akt I. "Arsena, Arsena!" (Ottokar, Arsena, Barinkay, Saffi, Czipra, Chor)
Der Zigeunerbaron: Akt I. "O habet Acht, habet Acht" (Chor, Saffi, Barinkay, Czipra)
Der Zigeunerbaron: Akt I. "Du kannst den Zigeunern getrost vertrau'n" (Czipra, Chor, Saffi, Barinkay, Zsupán, Carnero, Arsena, Mirabella)
Der Zigeunerbaron: Akt I. "Hier in diesem Land Eure Wiege stand" (Saffi, Czipra, Barkinay, Arsena, Mirabelle, Zsupán, Chor)
Der Zigeunerbaron: Akt I. "Um frech dem Übermut zu frönen" (Saffi, Czipra, Barkinay, Chor, Arsena, Mirabella, Zsupán, Carnero, Alle)
Released 1996
Der Zarewitsch: Act I. Nr. 1 "Es steht ein Soldat am Wolgastrand - Wir Tscherkessen brauchen weder Gut noch Geld (Introduktion & Chor)
Der Zarewitsch: Act I. Nr. 2 Melodram
Der Zarewitsch: Act I. Nr. 3 Duett "Dich nur allein nenne ich mein - Schaukle, Liebchen, schaukle" (Iwan, Mascha)
Der Zarewitsch: Act I. Dialog
Der Zarewitsch: Act I. Nr. 4 Lied "Einer wird kommen, der wird mich begehren" (Sonja); Dialog
Der Zarewitsch: Act I. Nr. 5 Wolgalied "Allein, wieder allein - Es steht ein Soldat am Wolgastrand" (Zarewitsch)
Der Zarewitsch: Act I. Dialog
Der Zarewitsch: Act I. Nr. 6 Finale I "Ein Weib! Du ein Weib! - Champagner ist ein Feuerwein - Es steht ein Soldat am Wolgastrand" (Zarewitsch, Sonja)
Der Zarewitsch: Act II. Nr. 7 Introduktion, Lied & Tanz "Herz, warum schlägst du so bang" (Zarewitsch, Chor)
Der Zarewitsch: Act II. Dialog
Der Zarewitsch: Act II. Nr. 8 Duett "Bleib bei mir - Hab' nur dich allein" (Zarewitsch, Sonja)
Der Zarewitsch: Act II. Dialog
Der Zarewitsch: Act II. Nr. 9 Lied "Heute hab' ich meinen schönsten Tag - O komm, es hat der Frühling, ach, nur einen Mai" (Zarewitsch)
Der Zarewitsch: Act II. Dialog
Der Zarewitsch: Act II. Nr. 10 Duett "Was mir einst an dir gefiel - Heute abend komm' ich zu dir" (Mascha, Iwan)
Released 1995
Thaïs: Acte I, Scène I. "Voici le pain ... et le sel" (Cénobites, Palémon)
Thaïs: Acte I, Scène I. "Le voici ! le voici !" (Cénobites, Athanaël, Palémon)
Thaïs: Acte I, Scène I. "Hélas ! enfant encore" (Athanaël)
Thaïs: Acte I, Scène I. "Ne nous mêlons jamais, mon fils" (Palémon, Cénobites, Athanaël)
Thaïs: Acte I, Scène I. Vision
Thaïs: Acte I, Scène I. "Toi, qui mis la pitié dans nos âmes" (Athanaël)
Thaïs: Acte I, Scène I. "Mon fils, ne nous mêlons jamais" (Palémon, Athanaël, Cénobites)
Thaïs: Acte I, Scène II. Prélude
Thaïs: Acte I, Scène II. "Va, mendiant, chercher ailleurs ta vie !" (serviteur, Athanaël)
Thaïs: Acte I, Scène II. "Voilà donc la terrible cité" (Athanaël)
Thaïs: Acte I, Scène II. "Ah ! ah ! ah ! ... Athanaël, c'est toi !"
Thaïs: Acte I, Scène II. "Ah ! ah ! ah ! ... je vais donc te revoir" (Crobyle, Myrtale, Nicias, Athanaël)
Thaïs: Acte I, Scène II. "Garde-toi bien ! Voici ta terrible ennemie !" (Nicias, chœur)
Thaïs: Acte I, Scène II. "C'est Thaïs, l'idole fragile" (Thaïs, Nicias)
Thaïs: Acte I, Scène II. "Quel est cet étranger" (Thaïs, Nicias, Athanaël)
Thaïs: Acte I, Scène II. "Qui te fit si sévère" (Thaïs, Nicias, chœur)
Thaïs: Acte I, Scène II. "Non ! non ! je hais vos fausses ivresses !" (Athanaël, Thaïs, Nicias, chœur)
Thaïs: Acte II, Scène I. "Ah ! je suis seule, seule enfin ! (Thaïs)
Thaïs: Acte II, Scène I. "Dis-moi que je suis belle" (Thaïs)
Thaïs: Acte II, Scène I. "Étranger, te voilà comme tu l'avais dit !"
Thaïs: Acte II, Scène I. "Eh bien, fais-moi connaître tout cet amour"
Thaïs: Acte II, Scène I. "Je suis Athanaël, moine d'Antinoé !" (Thaïs, Athanaël)
Thaïs: Acte II, Scène I. "Je n'ai pas plus choisi mon sort que ma nature" (Thaïs, Athanaël, Nicias)
Thaïs: Acte II, Scène I. Méditation religieuse - symphonie
Released 1992
Oedipus Rex: Prologue "Spectateurs! Vous allez entendre une version latine d'Oedipe-Roi" (Narrator)
Oedipus Rex: Act I. "Caedit nos pestis"
Oedipus Rex: Act I. "Liberi, vos liberado" (Oedipus, Narrator)
Oedipus Rex: Act I. "Respondit deus" (Creon)
Oedipus Rex: Act I. "Non reperias vetus scelus" (Oedipus)
Oedipus Rex: Act I. Oedipe interroge la fontaine de vérité" (Narrator)
Oedipus Rex: Act I. "Dicere non possum" (Tirésias, Oedipus)
Oedipus Rex: Act I. "Rex peremptor regis est" / "Invidia fortunam odit" (Tirésias, Oedipus)
Oedipus Rex: Act I. "Gloria!" (Narrator)
Oedipus Rex: Act II. "La dispute des princes attire Jocaste" (Narrator)
Oedipus Rex: Act II. "Gloria!"
Oedipus Rex: Act II. "Nonn' erubescite, reges" (Jocasta)
Oedipus Rex: Act II. "Ne probentur oracula" (Jocasta)
Oedipus Rex: Act II. "Cave oracula!" / "Trivium, trivium..." (Jocasta, Oedipus)
Oedipus Rex: Act II. "Oracula mentiuntur" (Jocasta, Oedipus)
Oedipus Rex: Act II. "Le témoin du meurtre sort de l'ombre" (Narrator)
Oedipus Rex: Act II. "Adest omniscius pastor" (Messenger)
Oedipus Rex: Act II. "Oportebat tacere" (Shepherd)
Oedipus Rex: Act II. "Nonne monstrum rescituri" (Oedipus)
Oedipus Rex: Act II. "In monte reppertus est" (Shepherd, Messenger)
Oedipus Rex: Act II. "Natus sum quo nefastum est" (Oedipus)
Oedipus Rex: Act II. "Et maintenant, vous allez entendre" (Narrator)
Oedipus Rex: Act II. "Divum Iocastae caput mortuum!" (Messenger)
Oedipus Rex: Act II. "Ecce! Regem Oedipoda"
Released 1991
Candide: Act I, No. 1. Overture
Candide: Act I, No. 1a. Westphalia Chorale
Candide: Act I, No. 2. Life Is Happiness Indeed
Candide: Act I, No. 3. The Best of All Possible Worlds
Candide: Act I, No. 3a. Universal Good
Candide: Act I, No. 4. Oh, Happy We
Candide: Act I, No. 5. It Must Be So (Candide's Meditation)
Candide: Act I, No. 6. Westphalia
Candide: Act I, No. 6a. Battle Music
Candide: Act I, No. 7. Candide's Lament
Candide: Act I, No. 8. Dear Boy
Candide: Act I, No. 9. Auto-da-fé
Candide: Act I, No. 10. Candide Begins His Travels / Act I, No. 10a. It Must Be Me
Candide: Act I, No. 11. The Paris Waltz
Candide: Act I, No. 12. Glitter and Be Gay
Candide: Act I, No. 13. You Were Dead, You Know
Candide: Act I, No. 14. I Am Easily Assimilated (Old Lady's Tango)
Candide: Act I, No. 15. Quartet Finale
Released 1990
Lady Macbeth of Mtsensk, op. 29: Act II, Scene V. “Sergéy, Seryózha!”
Lady Macbeth of Mtsensk, op. 29: Act II, Scene V. “Opyát usnúl”
Lady Macbeth of Mtsensk, op. 29: Act II, Scene V. “Slúshay, Sergéy, Sergéy!”
Lady Macbeth of Mtsensk, op. 29: Act III, Scene VI. “Shto ty tut stoish? … Interlude”
Lady Macbeth of Mtsensk, op. 29: Act III, Scene VII. “Sózdan politséysky byl vo vrémya onó”
Lady Macbeth of Mtsensk, op. 29: Act III, Scene VII. Interlude
Lady Macbeth of Mtsensk, op. 29: Act III, Scene VIII. “Sláva suprúgam”
Lady Macbeth of Mtsensk, op. 29: Act IV, Scene IX. “Vyórsty odná za drugóy”
Lady Macbeth of Mtsensk, op. 29: Act IV, Scene IX. “Stepánych! Propusti menyá”
Lady Macbeth of Mtsensk, op. 29: Act IV, Scene IX. “Nye lekhkó pósle pochóta da poklónov”
Lady Macbeth of Mtsensk, op. 29: Act IV, Scene IX. “Moyó pochtyénye!”
Lady Macbeth of Mtsensk, op. 29: Act IV, Scene IX. “V lesú, v sámoy cháshche yest’ ózero”
Lady Macbeth of Mtsensk, op. 29: Act IV, Scene IX. “Vstaváy! Po mestám! Zh’vo!”
Released 1989
Les Pêcheurs de perles: Prélude
Les Pêcheurs de perles: Acte I. Chœur "Sur la grève en feu" (Chœur)
Les Pêcheurs de perles: Acte I. Scène et chœur "Amis, interrompez vos danses" (Zurga, Nadir, Chœur)
Les Pêcheurs de perles: Acte I. Récit et reprise du chœur dansé "Demeure parmi nous, Nadir" (Zurga, Nadir, Chœur)
Les Pêcheurs de perles: Acte I. Récit "C'est toi ! toi qu'enfin je revois" (Zurga, Nadir)
Les Pêcheurs de perles: Acte I. Duo "Au fond du temple saint" (Zurga, Nadir)
Les Pêcheurs de perles: Acte I. Récit "Que vois-je ?" (Zurga, Nadir)
Les Pêcheurs de perles: Acte I. Chœur "Elle vient ... Sois le bienvenue" (Chœur)
Les Pêcheurs de perles: Acte I. Scène et chœur "Seule au milieu de nous" (Zurga, Leïla, Chœur)
Les Pêcheurs de perles: Acte I. Récit "A cette voix" (Nadir)
Les Pêcheurs de perles: Acte I. Romance "Je crois encore entendre" (Nadir)
Les Pêcheurs de perles: Acte I. Scène et chœur "Le ciel est bleu" (Nadir, Nourabad, Chœur)
Les Pêcheurs de perles: Acte I. Air et chœur "Ô Dieu Brahma !" (Leïla, Nadir, Chœur)
Les Pêcheurs de perles: Acte II. Entracte, scène et chœur "L'ombre descend des cieux" (Leïla, Nourabad, Chœur)
Les Pêcheurs de perles: Acte II. Récit et cavatine "Me voilà seule dans la nuit" (Leïla)
Les Pêcheurs de perles: Acte II. Chanson "De mon amie" (Nadir, Leïla)
Les Pêcheurs de perles: Acte II. Duo "Leïla ! Dieu puissant" (Nadir, Leïla)
Les Pêcheurs de perles: Acte II. Final (debut) "Ah ! Revenez à la raison" (Leïla, Nadir, Nourabad, Chœur)
Released 1988
La traviata: Atto II, Scena I. "Ah, vive sol quel core" (Alfredo, Guiseppe, Commissionario, Germont)
La traviata: Atto II, Scena I. "Di Provenza il mar, il suol" (Germont)
La traviata: Atto II, Scena I. "Nè rispondi d'un padre all'affetto?" (Germont, Alfredo)
La traviata: Atto II, Scena I. "No, non udrai rimproveri" (Germont, Alfredo)
La traviata: Atto II, Scena II. "Avrem lieta di maschere la notte" (Flora, Marchese, Dottore, Coro)
La traviata: Atto II, Scena II. "Noi siamo zingarelle" (Zingare, Flora, Marchese, Coro)
La traviata: Atto II, Scena II. "Di Madride noi siam mattadori" (Gastone, Mattadori, Coro)
La traviata: Atto II, Scena II. Scena "Alfredo! Voi!" (Alfredo, Flora, Barone, Violetta, Gastone, Coro)
La traviata: Atto II, Scena II. "Invitato a qui seguirmi" (Violetta, Alfredo, Coro)
La traviata: Atto II, Scena II. "Ogni suo aver tal femmina" (Alfredo, Coro)
La traviata: Atto II, Scena II. "Di sprezzo degno sè stesso rende" (Germont, Alfredo, Barone, Coro)
La traviata: Atto II, Scena II. "Alfredo, Alfredo, di questo core" (Violetta, Alfredo, Barone, Germont, Coro)
La traviata: Atto III. Preludio
La traviata: Atto III. "Annina? Comandate?" (Violetta, Annina, Dottore)
La traviata: Atto III. "Teneste la promessa" (Violetta)
La traviata: Atto III. "Addio, del passato bei sogni ridente" (Violetta)
La traviata: Atto III. "Largo al quadrupede" (Coro di maschere)
La traviata: Atto III. "Signora! Che t'accadde?" (Annina, Violetta, Alfredo)
La traviata: Atto III. Duetto "Parigi, o cara, noi lasceremo" (Alfredo, Violetta)
La traviata: Atto III. "Ah, non più, a un tempio" (Violetta, Alfredo)
La traviata: Atto III. "Ma se tornando...Ah! Gran Dio! Morir sì giovine" (Violetta, Alfredo)
La traviata: Atto III. "Ah, Violetta! Voi, signor!" (Germont, Violetta, Alfredo)
La traviata: Atto III. Finale "Prendi, queste' è l'immagine" (Violetta, Alfredo, Germont) / "Se una pudica vergine" (Violetta, Alfredo, Germont, Annina, Dottore, Coro)
Released 1985
Carmen: Entr'acte
Carmen: Acte 3. "Ecoute, écoute, compagnon, écoute" "March of the Smugglers" (Chœur, Le Dancaïre, Le Remendado, José, Carmen, Mercédès, Frasquita)
Carmen: Acte 3. "Reposons-nous une heure ici, mes camarades" (Le Dancaïre, Carmen, José)
Carmen: Acte 3. "Mélons ! Coupons !" (Frasquita, Mercédès, Carmen) "Card Trio"
Carmen: Acte 3. "Eh bien ?" (Carmen, Le Dancaïre, Frasquita)
Carmen: Acte 3. "Quant au dounaier, c'est notre affaire" (Carmen, Mercédès, Frasquita)
Carmen: Acte 3. "C'est des contrabandiers le refuge ordinaire" - "Je dis, que rien ne m'épouvante" (Micaëla)
Carmen: Acte 3. "Je ne me trompe pas... c'est lui sur ce rocher" (Micaëla)
Carmen: Acte 3. "Quelques lignes plus bas" (Escamillo, José) - "Holà, holà! José" (Carmen, Escamillo, Le Dancaïre, José, Micaëla, Frasquita, Mercédès, Le Remendado, Chœur)
Carmen: Entr'acte
Carmen: Acte 4. "A deux cuartos ! A deux cuartos !" (Chœur, Zuniga, Plusieurs marchands, Un Bohémien)
Carmen: Acte 4. "Les voici ! Voici la quadrille !" (Chœur, Escamillo, Carmen, Les Alguazils, Frasquita) "March and Entrance into the Bull-Ring"
Carmen: Acte 4. "C'est toi ! ... Carmen, il est temps encore" (Carmen, José) - "Viva viva ! La course est belle !" (Chœur, Carmen, José)
Nicolai GEDDA - Je crois entendre encore (Moscow. 1980)
Gedda
published: 21 Mar 2020
Nicolai Gedda - E lucevan le stelle (Tosca)
Gedda sings this famous aria... He is NOT in italian repertoir so strong as in french or russian, but in this role he is very acceptable :) (swedish duo Gedda + Nilsson in Tosca is very atractive - what do you mean?? :))) )
published: 07 Jul 2006
Nicolai Gedda - Postillon de Lonjumeau (Adam)
"Mes amis, ecoutez l'histoire..." do you know it? Gedda´s phenomen is in this role starring :)
(sung in German)
published: 07 Jul 2006
Nicolai Gedda live 1963 in Una furtiva lagrima from L'elisir d'amore
From a TV show in 1963. Accompanist was Jan Eyron. Aria from L'elisir d'amore by Donizetti.
published: 26 Feb 2017
Nessun dorma sung by Nicolai Gedda
Nicolai sings Nessun dorma by Puccini
published: 12 Dec 2012
Nicolai Gedda - Kuda, kuda vy udalilis (Eugen Onegin)
Gedda´s masterpiece in this film version...
published: 07 Jul 2006
Nicolai Gedda - Recondita armonia , Tosca
Belgrade , 1980.
published: 27 Dec 2018
Nicolai Gedda Brings the Sun out of the Clouds with his wide-Open C5
Disclaimer - I own nothing
published: 02 Sep 2021
Nicolai Gedda live 1969 in Amor ti vieta, Fedora
From the Swedish TV. Aria from Fedora by Umberto Giordano. Accompanist was Jan Eyron.
published: 12 Nov 2018
"The World of Nicolai Gedda" Documentary Film, 1968
"The World of Nicolai Gedda"
An hour long documentary that contains remarkable performances of Gedda in his prime.
published: 04 Jun 2024
2:32
Nicolai Gedda - E lucevan le stelle (Tosca)
Gedda sings this famous aria... He is NOT in italian repertoir so strong as in french or russian, but in this role he is very acceptable :) (swedish duo Gedda +...
Gedda sings this famous aria... He is NOT in italian repertoir so strong as in french or russian, but in this role he is very acceptable :) (swedish duo Gedda + Nilsson in Tosca is very atractive - what do you mean?? :))) )
https://wn.com/Nicolai_Gedda_E_Lucevan_Le_Stelle_(Tosca)
Gedda sings this famous aria... He is NOT in italian repertoir so strong as in french or russian, but in this role he is very acceptable :) (swedish duo Gedda + Nilsson in Tosca is very atractive - what do you mean?? :))) )
published: 07 Jul 2006
views: 63888
4:56
Nicolai Gedda - Postillon de Lonjumeau (Adam)
"Mes amis, ecoutez l'histoire..." do you know it? Gedda´s phenomen is in this role starring :)
(sung in German)
"Mes amis, ecoutez l'histoire..." do you know it? Gedda´s phenomen is in this role starring :)
(sung in German)
https://wn.com/Nicolai_Gedda_Postillon_De_Lonjumeau_(Adam)
"Mes amis, ecoutez l'histoire..." do you know it? Gedda´s phenomen is in this role starring :)
(sung in German)
published: 07 Jul 2006
views: 126842
3:25
Nicolai Gedda live 1963 in Una furtiva lagrima from L'elisir d'amore
From a TV show in 1963. Accompanist was Jan Eyron. Aria from L'elisir d'amore by Donizetti.
From a TV show in 1963. Accompanist was Jan Eyron. Aria from L'elisir d'amore by Donizetti.
https://wn.com/Nicolai_Gedda_Live_1963_In_Una_Furtiva_Lagrima_From_L'Elisir_D'Amore
From a TV show in 1963. Accompanist was Jan Eyron. Aria from L'elisir d'amore by Donizetti.
published: 26 Feb 2017
views: 18304
2:00
Nicolai Gedda live 1969 in Amor ti vieta, Fedora
From the Swedish TV. Aria from Fedora by Umberto Giordano. Accompanist was Jan Eyron.
From the Swedish TV. Aria from Fedora by Umberto Giordano. Accompanist was Jan Eyron.
https://wn.com/Nicolai_Gedda_Live_1969_In_Amor_Ti_Vieta,_Fedora
From the Swedish TV. Aria from Fedora by Umberto Giordano. Accompanist was Jan Eyron.
published: 12 Nov 2018
views: 68706
1:00:53
"The World of Nicolai Gedda" Documentary Film, 1968
"The World of Nicolai Gedda"
An hour long documentary that contains remarkable performances of Gedda in his prime.
"The World of Nicolai Gedda"
An hour long documentary that contains remarkable performances of Gedda in his prime.
https://wn.com/The_World_Of_Nicolai_Gedda_Documentary_Film,_1968
"The World of Nicolai Gedda"
An hour long documentary that contains remarkable performances of Gedda in his prime.
published: 04 Jun 2024
views: 3927
4:07
Nicolai GEDDA - Je crois entendre encore (Moscow. 1980)
Gedda
Play in Full Screen
Nicolai GEDDA - Je crois entendre encore (Moscow. 1980)
Nicolai GEDDA - Je crois entendre encore (Moscow. 1980)
Gedda
2:32
Nicolai Gedda - E lucevan le stelle (Tosca)
Gedda sings this famous aria... He is NOT in italian repertoir so strong as in french or r...
Play in Full Screen
Nicolai Gedda - E lucevan le stelle (Tosca)
Nicolai Gedda - E lucevan le stelle (Tosca)
Gedda sings this famous aria... He is NOT in italian repertoir so strong as in french or russian, but in this role he is very acceptable :) (swedish duo Gedda + Nilsson in Tosca is very atractive - what do you mean?? :))) )
4:56
Nicolai Gedda - Postillon de Lonjumeau (Adam)
"Mes amis, ecoutez l'histoire..." do you know it? Gedda´s phenomen is in this role starrin...
Play in Full Screen
Nicolai Gedda - Postillon de Lonjumeau (Adam)
Nicolai Gedda - Postillon de Lonjumeau (Adam)
"Mes amis, ecoutez l'histoire..." do you know it? Gedda´s phenomen is in this role starring :)
(sung in German)
3:25
Nicolai Gedda live 1963 in Una furtiva lagrima from L'elisir d'amore
From a TV show in 1963. Accompanist was Jan Eyron. Aria from L'elisir d'amore by Donizetti...
Play in Full Screen
Nicolai Gedda live 1963 in Una furtiva lagrima from L'elisir d'amore
Nicolai Gedda live 1963 in Una furtiva lagrima from L'elisir d'amore
From a TV show in 1963. Accompanist was Jan Eyron. Aria from L'elisir d'amore by Donizetti.
3:10
Nessun dorma sung by Nicolai Gedda
Nicolai sings Nessun dorma by Puccini
Play in Full Screen
Nessun dorma sung by Nicolai Gedda
Nessun dorma sung by Nicolai Gedda
Nicolai sings Nessun dorma by Puccini
7:02
Nicolai Gedda - Kuda, kuda vy udalilis (Eugen Onegin)
Gedda´s masterpiece in this film version...
Play in Full Screen
Nicolai Gedda - Kuda, kuda vy udalilis (Eugen Onegin)
Nicolai Gedda - Kuda, kuda vy udalilis (Eugen Onegin)
Gedda´s masterpiece in this film version...
2:27
Nicolai Gedda - Recondita armonia , Tosca
Belgrade , 1980.
Play in Full Screen
Nicolai Gedda - Recondita armonia , Tosca
Nicolai Gedda - Recondita armonia , Tosca
Belgrade , 1980.
5:03
Nicolai Gedda Brings the Sun out of the Clouds with his wide-Open C5
Disclaimer - I own nothing
Play in Full Screen
Nicolai Gedda Brings the Sun out of the Clouds with his wide-Open C5
Nicolai Gedda Brings the Sun out of the Clouds with his wide-Open C5
Disclaimer - I own nothing
2:00
Nicolai Gedda live 1969 in Amor ti vieta, Fedora
From the Swedish TV. Aria from Fedora by Umberto Giordano. Accompanist was Jan Eyron.
Play in Full Screen
Nicolai Gedda live 1969 in Amor ti vieta, Fedora
Nicolai Gedda live 1969 in Amor ti vieta, Fedora
From the Swedish TV. Aria from Fedora by Umberto Giordano. Accompanist was Jan Eyron.
1:00:53
"The World of Nicolai Gedda" Documentary Film, 1968
"The World of Nicolai Gedda"
An hour long documentary that contains remarkable performan...
Play in Full Screen
"The World of Nicolai Gedda" Documentary Film, 1968
"The World of Nicolai Gedda" Documentary Film, 1968
"The World of Nicolai Gedda"
An hour long documentary that contains remarkable performances of Gedda in his prime.
');
} 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('
VIDEO
');
}
}
});
}
}
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));
}
});
});
});
// -->