'+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;
}));
});
-->
Yo‐Yo Ma
ALBUMS
Yo-Yo Ma plays Cello Masterworks
released: 2013
Impressions
released: 2011
The Goat Rodeo Sessions
released: 2011
30 Years Outside the Box
released: 2009
Sonatas for Cello and Piano, opp. 38, 99 and 108
released: 2009
Songs of Joy & Peace
released: 2008
Appassionato
released: 2007
Cello Suites Nos. 2, 3 & 4
released: 2005
The Essential Yo-Yo Ma
released: 2005
Cello Concerto / Fantasiestücke / Adagio & Allegro / 5 Stücke im Volkston
released: 2004
The Piano Quartets
released: 2004
Trios for Piano, Clarinet, Cello
released: 2004
Sounds of Yo-Yo Ma
released: 2004
Yo-Yo Ma Plays Ennio Morricone
released: 2004
The Dvořák Album
released: 2004
Obrigado Brazil - Live in Concert
released: 2004
The Best of Yo-Yo Ma
released: 2004
Concertos
released: 2002
Cello Concerto / Dumky Trio
released: 2002
Cello Suites Nos. 1, 5 & 6
released: 2002
Yo-Yo Ma Plays the Music of John Williams
released: 2002
Symphony No.5 / Variations on a Rococo Theme for Cello and Orchestra
released: 2001
Classic Yo-Yo
released: 2001
Solo
released: 1999
Simply Baroque
released: 1999
The Cello Suites: Inspired by Bach
released: 1998
Symphony 1997:Heaven Earth Mankind
released: 1997
Soul of the Tango: The Music of Astor Piazzolla
released: 1997
Yo-Yo Ma Premieres Concertos for Violoncello and Orchestra
released: 1996
Fire Water Paper: A Vietnam Oratorio
released: 1996
"Trout" Quintet / "Arpeggione" Sonata
released: 1996
Concertos From the New World
released: 1995
The Romantic Album
released: 1994
The New York Album
released: 1994
Polonaise brilliante / Cello Sonata / Piano Trio
released: 1994
Suite for Cello & Jazz Piano Trio
released: 1994
Cello Concertos in C major and D major
released: 1993
Quintets
released: 1993
Made in America
released: 1993
Six Unaccompanied Cello Suites
released: 1993
Symphonia Concertante
released: 1992
Piano Quartets, opp. 15 & 45
released: 1992
Hush
released: 1991
Carnival of the Animals / Organ Symphony
released: 1991
The Piano Quartets
released: 1991
Sonatas Nos. 1 & 2
released: 1990
Anything Goes: Stéphane Grappelli & Yo‐Yo Ma play (mostly) Cole Porter
released: 1989
Shostakovich: String Quartet No. 15 / Gubaidulina: Rejoice
released: 1989
Barber: Cello Concerto / Britten: Symphony for Cello and Orchestra
released: 1989
Great Cello Concertos
released: 1989
Boccherini: Concerto For Violoncello & Orchestra / J.C. Bach: Symphony Concertante / Grand Overture
released: 1987
Cello Sonatas Nos. 3, 5
released: 1987
Kreisler - Paganini
released: 1987
Trio, Op. 67 / Sonata for Cello and Piano, Op. 40
released: 1987
Schubert: Quartet No. 15, D. 887 / Mozart: Adagio & Fugue, K. 546
released: 1987
The Sonatas for Piano & Cello
released: 1987
Cello Concerto Op. 104
released: 1986
Sonatas for Cello and Piano
released: 1985
Quintet, op. 163, D. 956
released: 1985
Japanese Melodies
released: 1985
Three Favourite Concertos
released: 1985
Sonatas for Viola da Gamba & Harpsichord
released: 1983
Triple Concerto, op. 56
released: 1980
Cello Concertos
released:
Cello Sonatas
released:
Vivaldi’s Cello
released:
Yo-Yo Ma plays Bach
released:
The Protecting Veil / Wake Up... And Die
released:
Brahms: Double Concerto / Mendelssohn: Violin Concerto
released:
Shostakovich: Cello Concerto No. 1 / Kabalevsky: Cello Concerto No. 1
released:
Obrigado Brazil
released:
Unaccompanied Cello Suites No. 1, 3 & 5
released:
Portrait of Yo-Yo Ma
released:
Released 2013
Suite for Unaccompanied Cello no. 1 in G major, BWV 1007: I. Prélude
Suite for Unaccompanied Cello no. 1 in G major, BWV 1007: II. Allemande
Suite for Unaccompanied Cello no. 1 in G major, BWV 1007: III. Courante
Suite for Unaccompanied Cello no. 1 in G major, BWV 1007: IV. Sarabande
Suite for Unaccompanied Cello no. 1 in G major, BWV 1007: V. Menuett I - Menuett II
Suite for Unaccompanied Cello no. 1 in G major, BWV 1007: VI. Gigue
Suite for Unaccompanied Cello no. 3 in C major, BWV 1009: I. Prélude
Suite for Unaccompanied Cello no. 3 in C major, BWV 1009: II. Allemande
Suite for Unaccompanied Cello no. 3 in C major, BWV 1009: III. Courante
Suite for Unaccompanied Cello no. 3 in C major, BWV 1009: IV. Sarabande
Suite for Unaccompanied Cello no. 3 in C major, BWV 1009: V. Bourrée I - Bourrée II
Suite for Unaccompanied Cello no. 3 in C major, BWV 1009: VI. Gigue
Suite for Unaccompanied Cello no. 5 in C minor, BWV 1011: I. Prélude
Suite for Unaccompanied Cello no. 5 in C minor, BWV 1011: II. Allemande
Suite for Unaccompanied Cello no. 5 in C minor, BWV 1011: III. Courante
Suite for Unaccompanied Cello no. 5 in C minor, BWV 1011: IV. Sarabande
Suite for Unaccompanied Cello no. 5 in C minor, BWV 1011: V. Gavotte I - Gavotte II
Suite for Unaccompanied Cello no. 5 in C minor, BWV 1011: VI. Gigue
Released 2011
Concerto No. 2 in D Major for Cello and Orchestra: III. Allegro
Unaccompanied Cello Suite No. 1 in G Major, BWV 1007: Prélude
Liebesleid
"Air" (Suite III), BWV 1068
Sonata in A minor for Piano and Arpeggione (Cello). D. 821: I. Allegro moderato
Jesus, bleibet meine Freude (Jesu, Joy of Man's Desiring), BWV 147
II. Largo from "Winter", Op. 8, No. 4, RV 297 from the Four Seasons
Sonata for Cello and Piano in F Major, Op. 99: IV. Allegro molto
Carnival of the Animals (Chamber Version): The Swan
Quintet in A Major for Piano and Strings, Op. post. 114, D. 667 "The Trout": IV. Theme & Variations. Andantino
Concerto in A minor for Cello and Orchestra, Op. 129: Sehr lebhaft
Libertango
Ave Maria
Touch The Hand of Love
Sergio Leone Suite: Ecstasy of Gold from The Good, the Bad, and the Ugly
Love Of My Life
The Mission: Gabriel's Oboe
First Impressions (Instrumental)
No. 3 Miero vuotti uutta kuuta from Five Finnish Folk Songs (Edited Version)
The Lady Caliph: Dinner
Wapango (Live)
Joy to the World
The Eternal Vow from Crouching Tiger, Hidden Dragon
Seven Years in Tibet from Seven Years in Tibet
Released 2009
Sonata for Piano and Cello No. 1 in E minor, Op. 38: I. Allegro non troppo
Sonata for Piano and Cello No. 1 in E minor, Op. 38: II. Allegretto quasi Menuetto
Sonata for Piano and Cello No. 1 in E minor, Op. 38: III. Allegro
Sonata for Piano and Cello No. 2 in F major, Op. 99: I. Allegro vivace
Sonata for Piano and Cello No. 2 in F major, Op. 99: II. Adagio affettuoso
Sonata for Piano and Cello No. 2 in F major, Op. 99: III. Allegro passionato
Sonata for Piano and Cello No. 2 in F major, Op. 99: IV. Allegro molto
Sonata for Piano and Violin (Cello) No. 3 in D minor, Op. 108: I. Allegro
Sonata for Piano and Violin (Cello) No. 3 in D minor, Op. 108: II. Adagio
Sonata for Piano and Violin (Cello) No. 3 in D minor, Op. 108: III. Un poco presto e con sentimento
Sonata for Piano and Violin (Cello) No. 3 in D minor, Op. 108: IV. Presto agitato
Released 2005
Suite für Violoncello solo No. 2 d-Moll, BWV 1008: Prélude
Suite für Violoncello solo No. 2 d-Moll, BWV 1008: Allemande
Suite für Violoncello solo No. 2 d-Moll, BWV 1008: Courante
Suite für Violoncello solo No. 2 d-Moll, BWV 1008: Sarabande
Suite für Violoncello solo No. 2 d-Moll, BWV 1008: Menuet I & II
Suite für Violoncello solo No. 2 d-Moll, BWV 1008: Gigue
Suite für Violoncello solo No. 3 C-Dur, BWV 1009: Prélude
Suite für Violoncello solo No. 3 C-Dur, BWV 1009: Allemande
Suite für Violoncello solo No. 3 C-Dur, BWV 1009: Courante
Suite für Violoncello solo No. 3 C-Dur, BWV 1009: Sarabande
Suite Für Violoncello Solo No. 3 C-Dur, BWV 1009: Bourrée I & II
Suite für Violoncello solo No. 3 C-Dur, BWV 1009: Gigue
Suite für Violoncello solo No. 4 Es-Dur, BWV 1010: Prélude
Suite für Violoncello solo No. 4 Es-Dur, BWV 1010: Allemande
Suite für Violoncello solo No. 4 Es-Dur, BWV 1010: Courante
Suite für Violoncello solo No. 4 Es-Dur, BWV 1010: Sarabande
Suite für Violoncello solo No. 4 Es-Dur, BWV 1010: Bourrées I & II
Suite für Violoncello solo No. 4 Es-Dur, BWV 1010: Gigue
Released 2005
Prelude from Suite no. 1 in G minor, BWV 1007
II. Largo from “Winter” from the Four Seasons, op. 8 no. 4
“Jesus, bleibet meine Freude” (Jesu, Joy of Man’s Desiring), BWV 147
“Schafe konnen sicher Weiden” (Sheep May Safely Graze), BWV 208
“Wachet auf, ruft uns die Stimme” (Sleeepers Awake), BWV 645
“The Swan” from Carnival of the Animals
Havanaise, op. 83
“Méditation” from Thaïs
Liebesfreud
Prelude no. 1 from Three Preludes
Vocalise
Sonata in D minor for Cello and Piano, op. 40: IV. Allegro
Andante Cantabile for Cello Solo and String Orchestra, op. Posth.
Quartet no. 1 in G minor for Piano and Strings, op. 25: IV. Rondo Alla Zingarese. Presto
Concerto for Cello and Orchestra in B minor, op. 104: III. Finale. Allegro moderato
Released 2004
Concerto in A minor for Cello and Orchestra, Op. 129: I. Nicht zu schnell
Concerto in A minor for Cello and Orchestra, Op. 129: II. Langsam
Concerto in A minor for Cello and Orchestra, Op. 129: III. Sehr lebhaft
Fantasiestücke, Op. 73: No. 1. Zart und mit Ausdruck
Fantasiestücke, Op. 73: No. 2. Lebhaft, leicht
Fantasiestücke, Op. 73: No. 3. Rasch, mit Feuer
Adagio and Allegro in A-flat major, Op. 70: I. Langsam, mit innigem Ausdruck
Adagio and Allegro in A-flat major, Op. 70: I. Rasch und feurig
5 Stücke im Volkston, Op. 102: No. 1. Mit Humor
5 Stücke im Volkston, Op. 102: No. 2. Langsam
5 Stücke im Volkston, Op. 102: No. 3. Nicht schnell, mit viel Ton zu spielen
5 Stücke im Volkston, Op. 102: No. 4. Nicht zu rasch
5 Stücke im Volkston, Op. 102: No. 5. Stark und markiert
Released 2004
Quartet for Piano No. 2 in E-flat major, K. 493: I. Allegro
Quartet for Piano No. 2 in E-flat major, K. 493: II. Larghetto
Quartet for Piano No. 2 in E-flat major, K. 493: III. Allegretto
Quartet for Piano No. 1 in G minor, K. 478: I. Allegro
Quartet for Piano No. 1 in G minor, K. 478: II. Andante
Quartet for Piano No. 1 in G minor, K. 478: III. Rondeau
Trio for Clarinet, Viola & Piano in E-flat major, K. 498 "Kegelstatt": I. Andante
Trio for Clarinet, Viola & Piano in E-flat major, K. 498 "Kegelstatt": II. Minuetto & Trio
Trio for Clarinet, Viola & Piano in E-flat major, K. 498 "Kegelstatt": III. Rondo. Allegretto
Released 2002
Concerto for Cello and Orchestra in B minor, Op. 104: I. Allegro
Concerto for Cello and Orchestra in B minor, Op. 104: II. Adagio, ma non troppo
Concerto for Cello and Orchestra in B minor, Op. 104: III. Finale: Allegro moderato
Trio for Piano, Violin and Cello in E minor, Op. 90 "Dumky": I. Lento maestoso
Trio for Piano, Violin and Cello in E minor, Op. 90 "Dumky": II. Andante
Trio for Piano, Violin and Cello in E minor, Op. 90 "Dumky": III. Andante moderato
Trio for Piano, Violin and Cello in E minor, Op. 90 "Dumky": IV. Allegro
Trio for Piano, Violin and Cello in E minor, Op. 90 "Dumky": V. Lento maestoso
Released 2001
Symphony No. 5 in E minor, op. 64: I. Andante - Allegro con anima
Symphony No. 5 in E minor, op. 64: II. Andante cantabile, con alcuna licenza - Moderato con anima - Andante mosso - Allegro non troppo - Tempo I
Symphony No. 5 in E minor, op. 64: III. Valse. Allegro moderato
Symphony No. 5 in E minor, op. 64: IV. Finale. Andante maestoso - Allegro vivace - Molto vivace - Moderato assai e molto maestoso - Presto
Variations on a Rococo Theme for Cello and Orchestra, op. 33: Moderato quasi andante - Tema. Moderato semplice
Variations on a Rococo Theme for Cello and Orchestra, op. 33: Var. I Tempo del tema
Variations on a Rococo Theme for Cello and Orchestra, op. 33: Var. II: Tempo del tema
Variations on a Rococo Theme for Cello and Orchestra, op. 33: Var. III: Andante sostenuto
Variations on a Rococo Theme for Cello and Orchestra, op. 33: Var. IV: Andante grazioso
Variations on a Rococo Theme for Cello and Orchestra, op. 33: Var. V: Allegro moderato
Variations on a Rococo Theme for Cello and Orchestra, op. 33: Var. VI: Andante
Variations on a Rococo Theme for Cello and Orchestra, op. 33: Var. VII: Coda. Allegro vivo
Released 1999
Sei Lob und Preis mit Ehren, BWV 167
Erbarme Dich (from St. Matthew Passion), BWV 244
Jesu, Joy of Man’s Desiring, BWV 147
Ertöt’ uns durch Dein’ Güte, BWV 22
Ich ruf’ zu Dir, Herr Jesu Christ, BWV 639
Kommst du nun, Jesu, vom Himmel herunter, BWV 650
Laß mein Herz die Münze sein, BWV 163
Dein Blut, der edle Saft, BWV 136
“Air on the G String” (from Suite III), BWV 1068
Concerto in G major for Cello and String Orchestra, G.480: I. Allegro
Concerto in G major for Cello and String Orchestra, G.480: II. Adagio
Concerto in G major for Cello and String Orchestra, G.480: III. Allegro
Concerto in D major for Cello and Orchestra, G.478: I. Allegro con spirito
Concerto in D major for Cello and Orchestra, G.478: II. Larghetto
Concerto in D major for Cello and Orchestra, G.478: III. Rondo
Concerto in D major for Cello and Orchestra, G.478: IV. Rondo comodo assai
Released 1998
Suite no. 1 in G major, BWV 1007: I. Prélude
Suite no. 1 in G major, BWV 1007: II. Allemande
Suite no. 1 in G major, BWV 1007: III. Courante
Suite no. 1 in G major, BWV 1007: IV. Sarabande
Suite no. 1 in G major, BWV 1007: V. Menuett I/II
Suite no. 1 in G major, BWV 1007: VI. Gigue
Suite no. 2 in D minor, BWV 1008: I. Prélude
Suite no. 2 in D minor, BWV 1008: II. Allemande
Suite no. 2 in D minor, BWV 1008: III. Courante
Suite no. 2 in D minor, BWV 1008: IV. Sarabande
Suite no. 2 in D minor, BWV 1008: V. Menuett I/II
Suite no. 2 in D minor, BWV 1008: VI. Gigue
Suite no. 3 in C major, BWV 1009: I. Prélude
Suite no. 3 in C major, BWV 1009: II. Allemande
Suite no. 3 in C major, BWV 1009: III. Courante
Suite no. 3 in C major, BWV 1009: IV. Sarabande
Suite no. 3 in C major, BWV 1009: V. Bourrée I/II
Suite no. 3 in C major, BWV 1009: VI. Gigue
Suite no. 4 in E-flat major, BWV 1010: I. Prélude
Suite no. 4 in E-flat major, BWV 1010: II. Allemande
Suite no. 4 in E-flat major, BWV 1010: III. Courante
Released 1996
Piano Quintet in A major, Op. 114 "Trout": I. Allegro vivace
Piano Quintet in A major, Op. 114 "Trout": II. Andante
Piano Quintet in A major, Op. 114 "Trout": III. Scherzo. Presto—Trio
Piano Quintet in A major, Op. 114 "Trout": IV. Theme & Variations. Andantino
Piano Quintet in A major, Op. 114 "Trout": V. Finale. Allegro guisto
Sonata in A minor, D 821, Op. post. 114 "Arpeggione": I. Allegro moderato
Sonata in A minor, D 821, Op. post. 114 "Arpeggione": II. Adagio
Sonata in A minor, D 821, Op. post. 114 "Arpeggione": III. Allegretto
Die Forelle, D 550, Op. 32 (feat. soprano: Barbara Bonney)
Released 1994
Trio for Violin, Cello and Piano in G minor, op. 8: I. Allegro con fuoco
Trio for Violin, Cello and Piano in G minor, op. 8: II. Scherzo. Con moto, ma non troppo
Trio for Violin, Cello and Piano in G minor, op. 8: III. Adagio sostenuto
Trio for Violin, Cello and Piano in G minor, op. 8: IV. Finale. Allegretto
Polonaise brillante in C major, op. 3 (arr. Feuermann) Introduction. Lento - Alla polacca. Allegro con spirito
Sonata for Cello and Piano in G minor, op. 65: I. Allegro moderato
Sonata for Cello and Piano in G minor, op. 65: II. Scherzo. Allegro con brio
Sonata for Cello and Piano in G minor, op. 65: III. Largo
Sonata for Cello and Piano in G minor, op. 65: IV. Finale. Allegro
Polonaise brillante in C major, op. 3, Introduction. Lento - Alla polacca. Allegro con spirito
Released 1993
Quintet, D.956: I. Allegro ma non troppo
Quintet, D.956: II. Adagio
Quintet, D.956: III. Scherzo. Presto - Trio. Andante sostenuto
Quintet, D.956: IV. Allegretto
Quintet, Op. 13, No. 5: I. Andantino mosso (Amoroso)
Quintet, Op. 13, No. 5: II. [Allegro con spirito]
Quintet, Op. 13, No. 5: III. Minuetto (con un poco di moto)
Quintet, Op. 13, No. 5: IV. Rondo. Allegretto (Andante)
Released 1993
Suite no. 1 in G major, BWV 1007: I. Prélude
Suite no. 1 in G major, BWV 1007: II. Allemande
Suite no. 1 in G major, BWV 1007: III. Courante
Suite no. 1 in G major, BWV 1007: IV. Sarabande
Suite no. 1 in G major, BWV 1007: V. Menuett
Suite no. 1 in G major, BWV 1007: VI. Gigue
Suite no. 4 in E-flat major, BWV 1010: I. Prélude
Suite no. 4 in E-flat major, BWV 1010: II. Allemande
Suite no. 4 in E-flat major, BWV 1010: III. Courante
Suite no. 4 in E-flat major, BWV 1010: IV. Sarabande
Suite no. 4 in E-flat major, BWV 1010: V. Bourrée
Suite no. 4 in E-flat major, BWV 1010: VI. Gigue
Suite no. 5 in C minor, BWV 1011: I. Prélude
Suite no. 5 in C minor, BWV 1011: II. Allemande
Suite no. 5 in C minor, BWV 1011: III. Courante
Suite no. 5 in C minor, BWV 1011: IV. Sarabande
Suite no. 5 in C minor, BWV 1011: V. Gavotte
Suite no. 5 in C minor, BWV 1011: VI. Gigue
Released 1992
Sinfonia Concertante for Cello and Orchestra, Op. 125: I. Andante
Sinfonia Concertante for Cello and Orchestra, Op. 125: II. Allegro giusto
Sinfonia Concertante for Cello and Orchestra, Op. 125: III. Andante con moto
Variations on a Rococo Theme for Cello and Orchestra, Op. 33: Moderato quasi andante - Tema. Moderato semplice
Variations on a Rococo Theme for Cello and Orchestra, Op. 33: Var.1 (Tempo del Tema)
Variations on a Rococo Theme for Cello and Orchestra, Op. 33: Var II: Tempo del tema
Variations on a Rococo Theme for Cello and Orchestra, Op. 33: Var III: Andante sostenuto
Variations on a Rococo Theme for Cello and Orchestra, Op. 33: Var IV: Andante grazioso
Variations on a Rococo Theme for Cello and Orchestra, Op. 33: Var V: Allegro moderato
Variations on a Rococo Theme for Cello and Orchestra, Op. 33: Var VI: Andante
Variations on a Rococo Theme for Cello and Orchestra, Op. 33: Var VII: Coda, Allegro vivo
Andante Cantabile for Cello and String Orchestra
Released 1991
Symphony No. 3 in C minor, Op. 78 "Organ": Ia. Adagio (feat. organ: E. Power Biggs)
Symphony No. 3 in C minor, Op. 78 "Organ": Ib. Allegro moderato (feat. organ: E. Power Biggs)
Symphony No. 3 in C minor, Op. 78 "Organ": Ic. Poco adagio (feat. organ: E. Power Biggs)
Symphony No. 3 in C minor, Op. 78 "Organ": IIa. Allegro moderato (feat. organ: E. Power Biggs)
Symphony No. 3 in C minor, Op. 78 "Organ": IIb. Presto (feat. organ: E. Power Biggs)
Symphony No. 3 in C minor, Op. 78 "Organ": IIc. Maestoso (feat. organ: E. Power Biggs)
Symphony No. 3 in C minor, Op. 78 "Organ": IId. Allegro (feat. organ: E. Power Biggs)
Samson et Dalila, Act III: Bacchanale
Suite Algérienne, Op. 60 No. 4: Marche Militaire Française
Danse Macabre, Op. 40
Carnival of the Animals: I. Introduction and Royal March of the Lion (conductor and piano: Philippe Entremont)
Carnival of the Animals: II. Hens and Cocks (conductor and piano: Philippe Entremont)
Carnival of the Animals: III. Wild Asses (conductor and piano: Philippe Entremont)
Carnival of the Animals: IV. Tortoises (conductor and piano: Philippe Entremont)
Carnival of the Animals: V. The Elephant (conductor and piano: Philippe Entremont)
Carnival of the Animals: VI. Kangaroos (conductor and piano: Philippe Entremont)
Carnival of the Animals: VII. Aquarium (conductor and piano: Philippe Entremont)
Carnival of the Animals: VIII. Personages With Long Ears (conductor and piano: Philippe Entremont)
Carnival of the Animals: IX. The Cuckoo in the Heart of the Woods (conductor and piano: Philippe Entremont)
Carnival of the Animals: X. Aviary (conductor and piano: Philippe Entremont)
Carnival of the Animals: XI. Piansts (conductor and piano: Philippe Entremont)
Carnival of the Animals: XII. Fossils (conductor and piano: Philippe Entremont)
Carnival of the Animals: XIII. The Swan (conductor and piano: Philippe Entremont)
Carnival of the Animals: XIV. Finale (conductor and piano: Philippe Entremont)
Released 1989
String Quartet No. 15 in E-flat minor, Op. 144: I. Elegy: Adagio
String Quartet No. 15 in E-flat minor, Op. 144: II. Serenade: Adagio
String Quartet No. 15 in E-flat minor, Op. 144: III. Intermezzo: Adagio
String Quartet No. 15 in E-flat minor, Op. 144: IV. Nocturne: Adagio
String Quartet No. 15 in E-flat minor, Op. 144: V. Funeral March: Adagio molto
String Quartet No. 15 in E-flat minor, Op. 144: VI. Epilogue: Adagio
Rejoice, Sonata for Violin and Cello: I. Your joy no one will take away from you
Rejoice, Sonata for Violin and Cello: II. Rejoice with joy
Rejoice, Sonata for Violin and Cello: III. Rejoice ravvi
Rejoice, Sonata for Violin and Cello: IV. And he returned to his own abode
Rejoice, Sonata for Violin and Cello: V. Heed thyself
Released 1987
Trio No 2 for Violin, Cello and Piano, Op 67: I. Andante; Moderato
Trio No 2 for Violin, Cello and Piano, Op 67: II. Allegro con Brio
Trio No 2 for Violin, Cello and Piano, Op 67: III. Largo
Trio No 2 for Violin, Cello and Piano, Op 67: IV. Allegretto
Sonata for Cello and Piano, Op 40: I. Allegro non troppo
Sonata for Cello and Piano, Op 40: II. Allegro
Sonata for Cello and Piano, Op 40: III. Largo
Sonata for Cello and Piano, Op 40: IV. Allegro
Released 1987
Adagio & Fugue in C minor, K. 546: I. Adagio
Adagio & Fugue in C minor, K. 546: II. Fugue
String Quartet No. 15 in G major, Op. 161, D. 887: I. Allegro molto moderato
String Quartet No. 15 in G major, Op. 161, D. 887: II. Andante un poco moto
String Quartet No. 15 in G major, Op. 161, D. 887: III. Scherzo. Allegro vivace
String Quartet No. 15 in G major, Op. 161, D. 887: IV. Allegro assai
Released 1983
Sonata for Cello and Harpsichord No. 1 in G major, BWV 1027: I. Adagio
Sonata for Cello and Harpsichord No. 1 in G major, BWV 1027: II. Allegro ma non tanto
Sonata for Cello and Harpsichord No. 1 in G major, BWV 1027: III. Andante
Sonata for Cello and Harpsichord No. 1 in G major, BWV 1027: IV. Allegro moderato
Sonata for Cello and Harpsichord No. 2 in D major, BWV 1028: I. Adagio
Sonata for Cello and Harpsichord No. 2 in D major, BWV 1028: II. Allegro
Sonata for Cello and Harpsichord No. 2 in D major, BWV 1028: III. Andante
Sonata for Cello and Harpsichord No. 2 in D major, BWV 1028: IV. Allegro
Sonata for Cello and Harpsichord No. 3 in G minor, BWV 1029: I. Vivace
Sonata for Cello and Harpsichord No. 3 in G minor, BWV 1029: II. Adagio
Sonata for Cello and Harpsichord No. 3 in G minor, BWV 1029: III. Allegro
Concerto in G minor for Two Cellos, Strings and Basso continuo, RV 531: I. Allegro
Concerto in G minor for Two Cellos, Strings and Basso continuo, RV 531: II. Largo
Concerto in G minor for Two Cellos, Strings and Basso continuo, RV 531: III. Allegro
Concerto for Violin, Strings and Basso continuo, Op. 8 No. 4 "Winter", RV 297 "The Four Seasons": II. Largo
Concerto in B-flat major for Cello, Strings and Basso continuo, RV 423: I. Allegro
Concerto in B-flat major for Cello, Strings and Basso continuo, RV 423: II. Largo
Concerto in B-flat major for Cello, Strings and Basso continuo, RV 423: III. Allegro
La fida ninfa, RV 714: "Così sugl' occhi miei"
Concerto for Viola d'amore, Lute and Orchestra, RV 540: I. Allegro
Concerto for Viola d'amore, Lute and Orchestra, RV 540: II. Largo
Concerto for Viola d'amore, Lute and Orchestra, RV 540: III. Allegro
Giustino, RV 717: "La gloria del mio sangue"
Concerto in C minor for Cello, Strings and Basso continuo, RV 401: I. Allegro non molto
Concerto in C minor for Cello, Strings and Basso continuo, RV 401: II. Adagio
Concerto in C minor for Cello, Strings and Basso continuo, RV 401: III. Allegro ma non molto
Juditha triumphans, RV 644: "Noli, ò cara, te adorantis"
Gloria, RV 589: "Laudamus te"
Juditha triumphans, RV 644: "Quanto magis generosa"
La fida ninfa, RV 714: "Dite oihmè"
Sonata No.1 in G major, BWV 1027: I. Adagio
Sonata No.1 in G major, BWV 1027: II. Allegro ma non tanto
Sonata No.1 in G major, BWV 1027: III. Andante
Sonata No.1 in G major, BWV 1027: IV. Allegro moderato
Sonata No.2 in D major, BWV 1028: I. Adagio
Sonata No.2 in D major, BWV 1028: II. Allegro
Sonata No.2 in D major, BWV 1028: III. Andante
Sonata No.2 in D major, BWV 1028: IV. Allegro
Sonata No.3 in G minor, BWV 1029: I. Vivace
Sonata No.3 in G minor, BWV 1029: II. Adagio
Sonata No.3 in G minor, BWV 1029: III. Allegro
Symphony Concertante in A major for Violin, Violoncello and Orchestra: I. Andante di molto
Symphony Concertante in A major for Violin, Violoncello and Orchestra: II. Rondeau: Allegro assai
Cello Suite No. 1, BWV 1007: I. Prelude
Cello Suite No. 1, BWV 1007: II. Allemande
Cello Suite No. 1, BWV 1007: III. Courante
Cello Suite No. 1, BWV 1007: IV. Sarabande
Cello Suite No. 1, BWV 1007: V. Menuet I & II
Cello Suite No. 1, BWV 1007: VI. Gigue
Cello Suite No. 3, BWV 1009: I. Prelude
Cello Suite No. 3, BWV 1009: II. Allemande
Cello Suite No. 3, BWV 1009: III. Courante
Cello Suite No. 3, BWV 1009: IV. Sarabande
Cello Suite No. 3, BWV 1009: V. Bouree I & II
Cello Suite No. 3, BWV 1009: VI. Gigue
Cello Suite No. 5, BWV 1011: I. Prelude
Cello Suite No. 5, BWV 1011: II. Allemande
Cello Suite No. 5, BWV 1011: III. Courante
Cello Suite No. 5, BWV 1011: IV. Sarabande
Cello Suite No. 5, BWV 1011: V. Gavotte I & II
Cello Suite No. 5, BWV 1011: VI. Gigue
');
} 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));
}
});
});
});
// -->
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 ');
}
});
});