'+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;
}));
});
-->
Maurizio Pollini
Released 2013
Piano Sonata no. 4 in E-flat major, op. 7: I. Allegro molto e con brio
Piano Sonata no. 4 in E-flat major, op. 7: II. Largo, con gran espressione
Piano Sonata no. 4 in E-flat major, op. 7: III. Allegro
Piano Sonata no. 4 in E-flat major, op. 7: IV. Rondo. Poco allegretto e grazioso
Piano Sonata no. 9 in E major, op. 14 no. 1: I. Allegro
Piano Sonata no. 9 in E major, op. 14 no. 1: II. Allegretto
Piano Sonata no. 9 in E major, op. 14 no. 1: III. Rondo. Allegro comodo
Piano Sonata no. 10 in G major, op. 14 no. 2: I. Allegro
Piano Sonata no. 10 in G major, op. 14 no. 2: II. Andante
Piano Sonata no. 10 in G major, op. 14 no. 2: III. Scherzo. Allegro assai
Piano Sonata no. 11 in B-flat major, op. 22: I. Allegro con brio
Piano Sonata no. 11 in B-flat major, op. 22: II. Adagio con molta espressione
Piano Sonata no. 11 in B-flat major, op. 22: III. Menuetto
Piano Sonata no. 11 in B-flat major, op. 22: IV. Rondo. Allegretto
Released 2012
24 Préludes, op. 28 no. 1 in C major: Agitato
24 Préludes, op. 28 no. 2 in A minor: Lento
24 Préludes, op. 28 no. 3 in G major: Vivace
24 Préludes, op. 28 no. 4 in E minor: Largo
24 Préludes, op. 28 no. 5 in D major: Allegro molto
24 Préludes, op. 28 no. 6 in B minor: Lento assai
24 Préludes, op. 28 no. 7 in A major: Andantino
24 Préludes, op. 28 no. 8 in F-sharp minor: Molto agitato
24 Préludes, op. 28 no. 9 in E major: Largo
24 Préludes, op. 28 no. 10 in C-sharp minor: Allegro molto
24 Préludes, op. 28 no. 11 in B major: Vivace
24 Préludes, op. 28 no. 12 in G-sharp minor: Presto
24 Préludes, op. 28 no. 13 in F-sharp major: Lento
24 Préludes, op. 28 no. 14 in E flat minor: Allegro
24 Préludes, op. 28 no. 15 in D flat major ("Raindrop"): Sostenuto
24 Préludes, op. 28 no. 16 in B flat minor: Presto con fuoco
24 Préludes, op. 28 no. 17 in A flat major: Allegretto
24 Préludes, op. 28 no. 18 in F minor: Allegro molto
24 Préludes, op. 28 no. 19 in E flat major: Vivace
24 Préludes, op. 28 no. 20 in C minor: Largo
24 Préludes, op. 28 no. 21 in B-flat major: Cantabile
24 Préludes, op. 28 no. 22 G minor: Molto agitato
24 Préludes, op. 28 no. 23 in F major: Moderato
24 Préludes, op. 28 no. 24 in D minor: Allegro appassionato
Nocturne no. 7 in C-sharp minor, op. 27 no. 1: Larghetto
Nocturne no. 8 in D-flat, op. 27 no. 2: Lento sostenuto
Mazurka no. 18 in C minor, op. 30 no. 1: Allegretto non tanto
Mazurka no. 19 in B minor, op. 30 no. 2: Vivace
Mazurka no. 20 in D-flat, op. 30 no. 3: Allegro non troppo
Mazurka no. 21 in C-sharp minor, op. 30 no. 4: Allegretto
Scherzo no. 2 in B-flat minor, op. 31: Presto
Released 2009
Praeludium I in C major, BWV 846
Fuga I in C major, BWV 846
Praeludium II in C minor, BWV 847
Fuga II in C minor, BWV 847
Praeludium III in C-sharp major, BWV 848
Fuga III in C-sharp major, BWV 848
Praeludium IV in C-sharp minor, BWV 849
Fuga IV in C-sharp minor, BWV 849
Praeludium V in D major, BWV 850
Fuga V in D major, BWV 850
Praeludium VI in D minor, BWV 851
Fuga VI in D minor, BWV 851
Praeludium VII in E-flat major, BWV 852
Fuga VII in E-flat major, BWV 852
Praeludium VIII in E-flat minor, BWV 853
Fuga VIII in D-sharp minor, BWV 853
Praeludium IX in E major, BWV 854
Fuga IX in E major, BWV 854
Praeludium X in E minor, BWV 855
Fuga X in E minor, BWV 855
Praeludium XI in F major, BWV 856
Fuga XI in F major, BWV 856
Praeludium XII in F minor, BWV 857
Fuga XII in F minor, BWV 857
Released 2008
Ballade No. 2 in F major, Op. 38
Mazurka, Op. 33 No. 1
Mazurka, Op. 33 No. 2
Mazurka, Op. 33 No. 3
Mazurka, Op. 33 No. 4
Waltz, Op. 34 No. 1
Waltz, Op. 34 No. 2
Waltz, Op. 34 No. 3
Impromptu No. 2 in F sharp major, Op. 36
Piano Sonata No. 2 in B flat minor, Op. 35: I. Grave - Doppio movimento
Piano Sonata No. 2 in B flat minor, Op. 35: II. Scherzo
Piano Sonata No. 2 in B flat minor, Op. 35: III. Marche funebre:Lento
Piano Sonata No. 2 in B flat minor, Op. 35: IV. Finale: Presto
Released 2007
Piano Sonata op. 2, no. 1 in F minor: I. Allegro
Piano Sonata op. 2, no. 1 in F minor: II. Adagio
Piano Sonata op. 2, no. 1 in F minor: III. Menuetto - Allegretto
Piano Sonata op. 2, no. 1 in F minor: IV. Prestissimo
Piano Sonata op. 2, no. 2 in A major: I. Allegro vivace
Piano Sonata op. 2, no. 2 in A major: II. Largo appassionato
Piano Sonata op. 2, no. 2 in A major: III. Scherzo - Allegretto
Piano Sonata op. 2, no. 2 in A major: IV. Rondo - Grazioso
Piano Sonata op. 2, no. 3 in C major: I. Allegro con brio
Piano Sonata op. 2, no. 3 in C major: II. Adagio
Piano Sonata op. 2, no. 3 in C major: III. Scherzo - Allegro
Piano Sonata op. 2, no. 3 in C major: IV. Allegro assai
Released 2005
3 Nocturnes, op. 9, no. 1 in B flat minor: Larghetto
3 Nocturnes, op. 9, no. 2 in E flat major: Andante
3 Nocturnes, op. 9, no. 3 in B major: Allegretto
3 Nocturnes, op. 15, no. 1 in F major: Andante cantabile
3 Nocturnes, op. 15, no. 2 in F sharp major: Larghetto
3 Nocturnes, op. 15, no. 3 in G minor: Lento
2 Nocturnes, op. 27, no. 1 in C sharp minor: Larghetto
2 Nocturnes, op. 27, no. 2 in D flat major: Lento sostenuto
2 Nocturnes, op. 32, no. 1 in B major: Andante sostenuto
2 Nocturnes, op. 32, no. 2 in A flat major: Lento
Released 2001
Piano Sonata No.13 in E Flat, Op.27 No.1 - I. Andante - Allegro - Tempo I
Piano Sonata No.13 in E Flat, Op.27 No.1 - II. Allegro Molto E Vivace
Piano Sonata No.13 in E Flat, Op.27 No.1 - III. Adagio Con Espressione
Piano Sonata No.13 in E Flat, Op.27 No.1 - IV. Allegro Vivace - Tempo I - Presto
Piano Sonata No.14 in C Sharp Minor, Op.27 No.2 -"Moonlight" - I. Adagio Sostenuto
Piano Sonata No.14 in C Sharp Minor, Op.27 No.2 -"Moonlight" - II. Allegretto
Piano Sonata No.14 in C Sharp Minor, Op.27 No.2 -"Moonlight" - III. Presto Agitato
Piano Sonata No. 17 in D Minor, Op. 31 No. 2 "The Tempest": I. Largo - Allegro
Piano Sonata No. 17 in D Minor, Op. 31 No. 2 "The Tempest": II. Adagio
Piano Sonata No. 17 in D Minor, Op. 31 No. 2 "The Tempest": III. Allegretto
Piano Sonata No. 21 in C Major, Op. 53 "Waldstein": I. Allegro Con Brio
Piano Sonata No. 21 in C Major, Op. 53 "Waldstein": II. Introduzione. Adagio Molto
Piano Sonata No. 21 in C Major, Op. 53 "Waldstein": III. Rondo. Allegretto Moderato – Prestissimo
Released 2001
Piano Sonata no. 13 in E-flat major, op. 27 no. 1: I. Andante – Allegro – Tempo I – attacca:
Piano Sonata no. 13 in E-flat major, op. 27 no. 1: II. Allegro molto e vivace – attacca:
Piano Sonata no. 13 in E-flat major, op. 27 no. 1: III. Adagio con espressione – attacca:
Piano Sonata no. 13 in E-flat major, op. 27 no. 1: IV. Allegro vivace
Piano Sonata no. 14 in C-sharp minor, op. 27 no. 2 "Moonlight": I. Adagio sostenuto – attacca:
Piano Sonata no. 14 in C-sharp minor, op. 27 no. 2 "Moonlight": II. Allegretto – attacca
Piano Sonata no. 14 in C-sharp minor, op. 27 no. 2 "Moonlight": III. Presto agitato
Piano Sonata no. 17 in D minor, op. 31 no. 2 "The Tempest": I. Largo – Allegro
Piano Sonata no. 17 in D minor, op. 31 no. 2 "The Tempest": II. Adagio
Piano Sonata no. 17 in D minor, op. 31 no. 2 "The Tempest": III. Allegretto
Piano Sonata no. 21 in C major, op. 53 "Waldstein": I. Allegro con brio
Piano Sonata no. 21 in C major, op. 53 "Waldstein": II. Introduzione. Adagio molto – attacca:
Piano Sonata no. 21 in C major, op. 53 "Waldstein": III. Rondo. Allegretto moderato – Prestissimo
Released 2000
Konzert für Klavier und Orchester No. 1 C-Dur, Op.15: I. Allegro con brio
Konzert für Klavier und Orchester No. 1 C-Dur, Op.15: II. Largo
Konzert für Klavier und Orchester No. 1 C-Dur, Op.15: III. Rondo
Meeresstille und glückliche Fahrt, Op.112: Meeresstille: Poco sostenuto
Meeresstille und glückliche Fahrt, Op.112: Glückliche Fahrt: Allegro vivace
Fantasie für Klavier, Chor und Orchester c-moll op. 80: Adagio
Fantasie für Klavier, Chor und Orchester c-moll op. 80: Finale: Allegro - Meno allegro - Allegro molto - Adagio ma non troppo - Marcia, assai vivace
Fantasie für Klavier, Chor und Orchester c-moll op. 80: Adagio ma non troppo
Fantasie für Klavier, Chor und Orchester c-moll op. 80: Marcia, assai vivace - Allegro
Fantasie für Klavier, Chor und Orchester c-moll op. 80: Allegretto, ma non troppo (quasi Andante con moto)
Fantasie für Klavier, Chor und Orchester c-moll op. 80: Presto
Released 2000
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Tema. Vivace
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 1. Alla marcia maestoso
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 2. Poco allegro
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 3. L'istesso tempo
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 4. Un poco più vivace
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 5. Allegro vivace
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 6. Allegro ma non troppo e serioso
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 7. Un poco più allegro
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 8. Poco vivace
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 9. Allegro pesante e risoluto
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 10. Presto
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 11. Allegretto
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 12. Un poco più moto
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 13. Vivace
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 14. Grave e maestoso
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 15. Presto scherzando
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 16. Allegro
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 17
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 18. Poco moderato
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 19. Presto
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 20. Andante
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 21. Allegro con brio - Meno allegro
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 22. Allegro molto (alla 'notte e giorno faticar' di Mozart)
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 23. Allegro assai
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 24. Fughetta. Andante
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 25. Allegro
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 26
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 27. Vivace
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 28. Allegro
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 29. Adagio ma non troppo
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 30. Andante, Sempre cantabile
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 31. Largo, Molto espressivo
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 32. Fuga. Allegro
33 Variations for Piano in C major on a Waltz by Anton Diabelli, op. 120: Var. 33. Tempo di Menuetto, Moderato (ma non tirarsi dietro)
Released 1999
Piano Sonata No. 2 in B flat minor, Op. 35: I. Grave - Doppio movimento
Piano Sonata No. 2 in B flat minor, Op. 35: II. Scherzo - Più lento - Tempo I
Piano Sonata No. 2 in B flat minor, Op. 35: III. Marche funèbre: Lento
Piano Sonata No. 2 in B flat minor, Op. 35: IV. Finale: Presto
Nocturne No. 4 in F major, Op. 15 No. 1
Nocturne No. 5 in F-sharp major, Op. 15 No. 2
Nocturne No. 7 in C-sharp minor, Op. 27 No. 1
Nocturne No. 8 in D-flat major, Op. 27 No. 2
Polonaise No. 5 in F sharp minor, Op. 44
Polonaise No. 6 in A flat major "Heroic", Op. 53
Polonaise-Fantaisie No. 7 in A flat major, Op. 61
Released 1997
Sonate Nr. 30 E-Dur, Op. 109: I. Vivace, ma non troppo
Sonate Nr. 30 E-Dur, Op. 109: II. Prestissimo
Sonate Nr. 30 E-Dur, Op. 109: III. Gesangvoll, mit innigster Empfindung. Andante molto cantabile ed espressivo
Sonate Nr. 31 As-Dur, Op. 110: I. Moderato cantabile molto espressivo
Sonate Nr. 31 As-Dur, Op. 110: II. Allegro molto
Sonate Nr. 31 As-Dur, Op. 110: III. Adagio, ma non troppo
Sonate Nr. 32 c-Moll, Op. 111: I. Maestoso – Allegro con brio ed appassionato
Sonate Nr. 32 c-Moll, Op. 111: II. Arietta. Adagio molto semplice e cantabile
Released 1992
La donna del lago, Act I. N. 1 Sinfonia e Introduzione "Del dì la mesaggiera" (Coro)
La donna del lago, Act I. N. 1 Sinfonia e Introduzione "Oh mattutini albori!" (Elena)
La donna del lago, Act I. N. 1 Sinfonia e Introduzione "Qual suon!" (Elena, Uberto)
La donna del lago, Act I. N. 1 Sinfonia e Introduzione "Uberto! ah! dove t'ascondi?" (Coro)
La donna del lago, Act I. Recitativo "Sei già nel tetto mio" (Elena, Uberto)
La donna del lago, Act I. N. 2 Coro e duetto "D'Inibaca donzella" (Coro, Uberto, Elena)
La donna del lago, Act I. N. 2 Coro e duetto "Sei già sposa?" (Uberto, Elena)
La donna del lago, Act I. N. 2 Coro e duetto "(Quali acccenti!)" (Uberto, Elena)
La donna del lago, Act I. N. 2 Coro e duetto "(Ma non sorpreso)" (Uberto, Elena, Coro)
La donna del lago, Act I. Scena "Muri felici" (Malcolm)
La donna del lago, Act I. N. 3 Cavatina "Elena! oh tu, che chiamo!" (Malcolm)
La donna del lago, Act I. N. 3 Cavatina "Oh quante lacrime" (Malcolm)
La donna del lago, Act I. Recitativo "Figlia, è così" (Douglas, Malcolm, Elena)
La donna del lago, Act I. N. 4 Aria "Taci, lo voglio" (Douglas)
La donna del lago, Act I. Recitativo "E nel fatal conflitto" (Elena, Malcolm)
La donna del lago, Act I. N. 5 Duettino "Vivere io non potrò" (Elena, Malcolm)
La donna del lago, Act I. N. 6 Coro e Cavatina "Qual rapido torrente" (Coro)
La donna del lago, Act I. N. 6 Coro e Cavatina "Eccomi a voi, miei prodi" (Rodrigo, Coro)
La donna del lago, Act I. N. 6 Coro e Cavatina "Ma dov'è colei" (Rodrigo, Coro)
La donna del lago, Act I. N. 6 Coro e Cavatina "Se a' miei voti amor sorride" (Rodrigo, Coro)
Released 1991
Klaviersonate Nr. 13 Es-Dur, op. 27 Nr. 1: I. Andante - Allegro - Tempo I - attacca:
Klaviersonate Nr. 13 Es-Dur, op. 27 Nr. 1: II. Allegro molto e vivace - attacca:
Klaviersonate Nr. 13 Es-Dur, op. 27 Nr. 1: III. Adagio con espressione - attacca:
Klaviersonate Nr. 13 Es-Dur, op. 27 Nr. 1: IV. Allegro vivace
Klaviersonate Nr. 14 cis-Moll, op. 27 Nr. 2 "Mondscheinsonate": I. Adagio sostenuto
Klaviersonate Nr. 14 cis-Moll, op. 27 Nr. 2 "Mondscheinsonate": II. Allegretto
Klaviersonate Nr. 14 cis-Moll, op. 27 Nr. 2 "Mondscheinsonate": III. Presto agitato
Klaviersonate Nr. 15 D-Dur, op. 28 "Pastorale": I. Allegro
Klaviersonate Nr. 15 D-Dur, op. 28 "Pastorale": II. Andante
Klaviersonate Nr. 15 D-Dur, op. 28 "Pastorale": III. Scherzo. Allegro vivace
Klaviersonate Nr. 15 D-Dur, op. 28 "Pastorale": IV. Rondo. Allegro, ma non troppo
Released 1988
Three Piano Pieces, Op. 11: I. Mäßig
Three Piano Pieces, Op. 11: II. Mäßige Achtel
Three Piano Pieces, Op. 11: III. Bewegt
Six Little Piano Pieces, Op. 19: I. Leicht, zart
Six Little Piano Pieces, Op. 19: II. Langsam
Six Little Piano Pieces, Op. 19: III. Sehr langsame Viertel
Six Little Piano Pieces, Op. 19: IV. Rasch, aber leicht
Six Little Piano Pieces, Op. 19: V. Etwas rasch
Six Little Piano Pieces, Op. 19: VI. Sehr langsam
Five Piano Pieces, Op. 23: I. Sehr langsam
Five Piano Pieces, Op. 23: II. Sehr rasch
Five Piano Pieces, Op. 23: III. Langsam
Five Piano Pieces, Op. 23: IV. Schwungvoll
Five Piano Pieces, Op. 23: V. Walzer
Suite for Piano, Op. 25: Präludium. Rasch
Suite for Piano, Op. 25: Gavotte. Etwas langsam, nicht hastig (attacca)
Suite for Piano, Op. 25: Musette. Rascher
Suite for Piano, Op. 25: Gavotte (da capo)
Suite for Piano, Op. 25: Intermezzo
Suite for Piano, Op. 25: Minuett. Moderato – Trio
Suite for Piano, Op. 25: Gigue. Rasch
Piano Piece, Op. 33a: Mäßig
Piano Piece, Op. 33b: Mäßig langsam
Released 1985
Prélude No. 1 C-dur, Op. 28: Agitato
Prélude No. 2 A-moll, Op. 28: Lento
Prélude No. 3 G-dur, Op. 28: Vivace
Prélude No. 4 E-moll, Op. 28: Largo
Prélude No. 5 D-dur, Op. 28: Allegro molto
Prélude No. 6 H-moll, Op. 28: Lento assai
Prélude No. 7 A-dur, Op. 28: Andantino
Prélude No. 8 Fis-moll, Op. 28: Molto agitato
Prélude No. 9 E-dur, Op. 28: Largo
Prélude No. 10 Cis-moll, Op. 28: Allegro molto
Prélude No. 11 H-dur, Op. 28: Vivace
Prélude No. 12 Gis-moll, Op. 28: Presto
Prélude No. 13 Fis-dur, Op. 28: Lento
Prélude No. 14 Es-moll, Op. 28: Allegro
Prélude No. 15 Des-dur, Op. 28: Sostenuto
Prélude No. 16 B-moll, Op. 28: Presto con fuoco
Prélude No. 17 As-dur, Op. 28: Allegretto
Prélude No. 18 F-moll, Op. 28: Allegro molto
Prélude No. 19 Es-dur, Op. 28: Vivace
Prélude No. 20 C-moll, Op. 28: Largo
Prélude No. 21 B-dur, Op. 28: Cantabile
Prélude No. 22 G-moll, Op. 28: Molto agitato
Prélude No. 23 F-dur, Op. 28: Moderato
Prélude No. 24 D-moll, Op. 28: Allegro appassionato
');
} 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));
}
});
});
});
// -->
Bobby's Girl (stereo)
by:
Marcie Blane
{You're not a kid anymore} {You're not a kid anymore} When people ask of me What would you like to be Now that you're not a kid anymore {You're not a kid anymore} I know just what to say I answer right away There's just one thing I've been wishing for {Chorus}: I want to be Bobby's girl I want to be Bobby's girl That's the most important thing to me And if I was Bobby's girl If I was Bobby's girl What a faithful, thankful girl I'd be Each night I sit at home Hoping that he will phone But I know Bobby has someone else Still in my heart I pray There soon will come the day That I will have him all to myself {Chorus}
Latest News for: maurizio pollini
Edit
New York Times
29 Oct 2024
Maurizio Pollini didn’t think his farewell on disc would be an album of music by Schubert with his son, Daniele. Now, it serves as an emotional coda ... .
Edit
The Los Angeles Times
30 Mar 2024
1 ... 7 p.m. Sunday ... Thursday, 5 p.m ... 25 ... Italian pianist Maurizio Pollini died at 82, and our critic Mark Swed recalled his artistic genius as well as an early interview in which Pollini revealed his secret preparation for stage performance (20 espressos) ... .
Edit
The Los Angeles Times
27 Mar 2024
Rubinstein’s quip has been used in seemingly every tribute to Maurizio Pollini since his death Saturday in Milan at 82. Pollini went on to have a storied career ... Pollini always put the music first ... Pollini’s astonishing technique left you in awe.
Edit
Fox News
25 Mar 2024
Maurizio Pollini , a Grammy-winning Italian pianist who performed frequently at La Scala opera house in Milan , has died ... Pollini died on Saturday, La Scala said in a statement ... "I grew up in a house with art and artists," Pollini said in an interview.
Edit
Rutland Herald
24 Mar 2024
Grammy-winning Italian pianist Maurizio Pollini has died. He was 82. Pollini performed frequently at Milan ’s La Scala . The opera house said in a statement that he died on Saturday without giving a cause of death. But Pollini had been forced ... .
Loading...');
var query = jQuery('.radio_query').val();
jQuery.ajax({
data: { query: query },
url: '/api/upge/cheetah-photo-search/radio',
success: function(text) {
jQuery('.radio-search-results').html(jQuery(text));
updateHeight();
$('#RadioSearchTable').tablesorter();
$('#RadioSearchTable').trigger("update");
}
});
return false; // do not submit the form
});
$(".search-tools-btn").click(function () {
header = $(this);
content = $(".search-tools-content");
if(content.is(':visible')) {
content.hide('slow');
header.html('Tools ');
}else{
content.show('slow');
header.html('Hide ');
}
});
});