'+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;
}));
});
-->
BBC Philharmonic
ALBUMS
Symphony no. 3 / Italia / Introduzione, corale e marcia
released: 2013
Symphonies nos. 1 and 2 / Bassoon Concerto / Invitation to the Dance
released: 2012
Cello Concerto
released: 2012
Symphony No. 2 & St Thomas Wake
released: 2012
Concerto for Orchestra / A notte alta / Symphonic Fragments from "La donna serpente"
released: 2012
Violin Concertos nos. 1 and 2 / Viola Concerto
released: 2011
Symphony No. 3 / Prince Rostislav / Caprice bohémien
released: 2011
Cello Symphony / Symphonic Suite from "Gloriana" / Four Sea Interludes from "Peter Grimes"
released: 2011
BBC Music, Volume 18, Number 6: Piano Masterpieces, including Sonata No. 2
released: 2010
BBC Music, Volume 18, Number 5: Symphony No. 4 / Konzertstück for Four Horns (BBC Philharmonic)
released: 2010
Nielsen: Symphony No. 3 'Sinfonia espansiva' / Sibelius: Symphony No. 5
released: 2009
BBC Music, Volume 17, Number 11: Symphonies Nos. 22, 26, 67 & 80
released: 2009
BBC Music, Volume 17, Number 8: Il tabarro
released: 2009
BBC Music, Volume 17, Number 7: Piano Concertos Nos. 21 & 23
released: 2009
Tone Poems, Volume 2: Three Northern Ballads / Into the Twilight / The Happy Forest / Red Autumn / Nympholept
released: 2008
Orchestral Works
released: 2007
Piano Concerto no. 1 / Symphony no. 2 / Piano Concerto no. 4 "Prague"
released: 2006
Tone Poems: In the Faery Hills / November Woods / The Garden of Fand / Sinfonietta
released: 2006
Stokowski's Symphonic Bach, Volume 2
released: 2005
Indianische Fantasie / Lustspiel-Overtüre / Gesang vom Reigen der Geister / Suite from "Die Brautwahl"
released: 2005
Symphony no. 3 "Silence" / The Confession of Isobel Gowdie
released: 2005
Symphonies nos. 1 & 2 / Piano Concerto, op. 1 / Overture to "King Lear" / In Bohemia / Tamara
released: 2005
The Film Music of Sir Arnold Bax
released: 2003
Piano Concertos Nos. 2, 3 / Colas Breugnon Overture / The Comedians
released: 2003
The Symphonies
released: 2003
The Symphonic Eric Coates
released: 2002
Violin Concerto / Concerto for Orchestra
released: 2002
Tanzwalzer / Clarinet Concertino / Berceuse élégiaque / Geharnischte Suite / Sarabande and Cortège
released: 2002
Baba-Yaga / Eight Russian Folksongs / The Enchanted Lake / From the Apocalypse / Kikimora / Polonaises / Scherzo / Mazurka "Village Scene by the Inn"
released: 2001
Milestones
released: 2001
BBC Music, Volume 10, Number 2: Baltic Voyage / Music from Estonia
released: 2001
BBC Music, Volume 10, Number 3: Dvořák: Cello Concerto / Grieg: Piano Concerto
released: 2001
Complete Orchestral Works
released: 2000
Kamui-Chikap Symphony / Ode to Birds and Rainbow
released: 2000
The Film Music of Sir Richard Rodney Bennett
released: 2000
Lady Godiva / De profundis / Toman and the Wood Nymph
released: 2000
Bach Transcriptions
released: 2000
Symphony in B-flat / Viviane / La tempête / Soir de fête
released: 1999
Symphony no. 2 / Tamara / Piano Concerto, op. 1
released: 1999
Overture: King Lear / Symphony no. 1 / In Bohemia
released: 1998
Concierto de Aranjuez / Fantasía para un gentilhombre / Concierto para una fiesta
released: 1998
The Grainger Edition, Volume 1: Orchestral Works
released: 1996
BBC Music, Volume 5, Number 1: The Planets
released: 1996
Symphony in C major / Polyeucte Overture
released: 1994
An American in Paris / Suite: Catfish Row / Variations on "I Got Rhythm" / Girl Crazy / Strike Up the Band
released: 1994
Piano Concerto in A minor / Concerto in modo misolidio
released: 1994
Poulenc: Organ Concerto / Widor: Symphony no. 5 for Organ / Guilmant: Symphony no. 1 for Organ and Orchestra
released: 1994
Symphony No. 2 in E-flat major, Op. 63
released: 1994
Symphony No. 1 / Imperial March
released: 1994
Symphony no. 1 / Suite "The Red Poppy"
released: 1993
Concerto gregoriano / Poema autunnale / Ballata delle Gnomidi
released: 1993
Symphony in F-sharp major / Abschiedslieder
released: 1993
Stokowski's Symphonic Bach
released: 1993
Favourite Overtures
released: 1992
Symphony in E-flat / Suite "Nobilissima visione" / Overture "Neues vom Tage"
released: 1992
Symphony no. 1 / Symphony no. 2 "Le Double"
released: 1992
Symphonies nos. 5 and 9
released:
Released 2013
Italia, op. 11: Lento, grave, tragico; con molta fantasia -
Italia, op. 11: Lento assai - Lontano –
Italia, op. 11: Allegretto grazioso, poco mosso - Lento - Sempre più lento -
Italia, op. 11: Allegro molto vivace; giocoso
Introduzione, corale e marcia, op. 57: I. Introduzione -
Introduzione, corale e marcia, op. 57: II. Corale -
Introduzione, corale e marcia, op. 57: III. Marcia
Sinfonia, op. 63: I. Allegro mosso - Calmato; tranquillo
Sinfonia, op. 63: II. Andante molto moderato, quasi adagio - Lievemente più mosso - Calmato, nuovamente sereno
Sinfonia, op. 63: III. Scherzo minore - maggiore
Sinfonia, op. 63: IV. Rondo finale
Released 2012
Aufforderung zum Tanze, op. 65, J 260
Symphony no. 1 in C major, op. 17, J 50: I. Allegro con fuoco
Symphony no. 1 in C major, op. 17, J 50: II. Andante
Symphony no. 1 in C major, op. 17, J 50: III. Scherzo. Presto - Trio - Scherzo D.C.
Symphony no. 1 in C major, op. 17, J 50: IV. Finale. Presto
Concerto for Bassoon and Orchestra in F major, op. 75, J 127: I. Allegro non troppo
Concerto for Bassoon and Orchestra in F major, op. 75, J 127: II. Adagio
Concerto for Bassoon and Orchestra in F major, op. 75, J 127: III. Rondò. Allegro
Symphony no. 2 in C major, J 51: I. Allegro
Symphony no. 2 in C major, J 51: II. Adagio, ma non troppo
Symphony no. 2 in C major, J 51: III. Menuetto. Allegro
Symphony no. 2 in C major, J 51: IV. Finale. Scherzo Presto
Released 2012
Cello Concerto in E minor, Op. 85: I. Adagio - Moderato
Cello Concerto in E minor, Op. 85: II. Lento - Allegro molto
Cello Concerto in E minor, Op. 85: III. Adagio
Cello Concerto in E minor, Op. 85: IV. Allegro - Moderato - Allegro ma non troppo
Introduction and Allegro, Op. 47: Introduction (moderato)
Introduction and Allegro, Op. 47: Allegro
Elegy, Op. 58
5 Military Marches, Op. 39, "Pomp and Circumstance": No. 1 in D major
5 Military Marches, Op. 39, "Pomp and Circumstance": No. 2 in A minor
5 Military Marches, Op. 39, "Pomp and Circumstance": No. 3 in C minor
5 Military Marches, Op. 39, "Pomp and Circumstance": No. 4 in G major
5 Military Marches, Op. 39, "Pomp and Circumstance": No. 5 in C major
Released 2012
Concerto for Orchestra, op. 61: I. Sinfonia
Concerto for Orchestra, op. 61: II. Passacaglia
Concerto for Orchestra, op. 61: III. Inno
A notte alta, op. 30: Lento molto, misterioso
A notte alta, op. 30: Andante molto tranquillo e calmo, quasi adagio
A notte alta, op. 30: Agitando e cresc, molto
A notte alta, op. 30: Lento molto, misterioso
A notte alta, op. 30: Andante molto tranquillo e calmo, quasi adagio
Symphonic Fragments from "La donna serpente", op. 50: Musica del sogno di re altidor
Symphonic Fragments from "La donna serpente", op. 50: Interludio
Symphonic Fragments from "La donna serpente", op. 50: Marcia guerriera
Symphonic Fragments from "La donna serpente", op. 50: Sinfonia
Symphonic Fragments from "La donna serpente", op. 50: Preludio
Symphonic Fragments from "La donna serpente", op. 50: Battaglia e finale
Released 2011
Violin Concerto no. 1, BB 48a: I. Andante sostenuto
Violin Concerto no. 1, BB 48a: II. Allegro giocoso
Violin Concerto no. 2, BB 117: I. Allegro non troppo
Violin Concerto no. 2, BB 117: II. Andante tranquillo
Violin Concerto no. 2, BB 117: III. Allegro molto
Viola Concerto, Sz 120, BB 128: I. Moderato. Un poco meno mosso
Viola Concerto, Sz 120, BB 128: II. Adagio religioso
Viola Concerto, Sz 120, BB 128: III. Allegro vivace
Released 2011
Symphonic Suite from "Gloriana", op. 53a: I. The Tournament
Symphonic Suite from "Gloriana", op. 53a: II. The Lute Song
Symphonic Suite from "Gloriana", op. 53a: III. The Courtly Dances
Symphonic Suite from "Gloriana", op. 53a: IV. Gloriana Moritura
Symphony for Cello and Orchestra, op. 68: I. Allegro maestoso
Symphony for Cello and Orchestra, op. 68: II. Presto inquieto
Symphony for Cello and Orchestra, op. 68: III. Adagio – Cadenza ad lib
Symphony for Cello and Orchestra, op. 68: IV. Passacaglia. Andante allegro
Four Sea Interludes from "Peter Grimes", op. 33a: I. Dawn
Four Sea Interludes from "Peter Grimes", op. 33a: II. Sunday Morning
Four Sea Interludes from "Peter Grimes", op. 33a: III. Moonlight
Four Sea Interludes from "Peter Grimes", op. 33a: IV. Storm
Released 2010
Polonaise in C-sharp minor, Op. 26 No. 1
Chopiniana, Op. 46: I. Polonaise
Chopiniana, Op. 46: II. Nocturne
Chopiniana, Op. 46: III. Mazurka
Chopiniana, Op. 46: IV. Tarantella
Nocturne in E-flat major, Op. 9 No. 2
Nocturne in A-flat major, Op. 32 No. 2
Nocturne in F-sharp major, Op. 15 No. 2
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. Marchefunebre. Lento
Piano Sonata No. 2 in B-flat minor, Op. 35: IV. Finale. Presto
Released 2006
First Concerto for Piano and Orchestra in A minor, op. 9: I. Moderato quasi andantino – Poco meno mosso – Allegro – Più mosso – Meno mosso, tranquillo – Andante – Più mosso – Allegro moderato – Più mosso – Poco tranquillo – Molto meno mosso – Più mosso – Più mosso – Andante – Poco più mosso – Poco meno mosso – Andante molto sostenuto – Tempo I (Andantino) – Allegro moderato
First Concerto for Piano and Orchestra in A minor, op. 9: IIa. Tema. Moderato –
First Concerto for Piano and Orchestra in A minor, op. 9: IIb. Variation 1. L’istesso tempo –
First Concerto for Piano and Orchestra in A minor, op. 9: IIc. Variation 2. Allegro assai – Andante –
First Concerto for Piano and Orchestra in A minor, op. 9: IId. Variation 3. (Andante) – Poco più mosso –
First Concerto for Piano and Orchestra in A minor, op. 9: IIe. Variation 4. [ ] – Vivace – Più mosso – Tempo I –
First Concerto for Piano and Orchestra in A minor, op. 9: IIf. Variation 5. Funebre (Tempo di marcia moderato) – Maestoso (ma in tempo) –
First Concerto for Piano and Orchestra in A minor, op. 9: IIg. Coda (Tempo di tema) –
First Concerto for Piano and Orchestra in A minor, op. 9: III. Vivace marcato – Più mosso – Meno mosso – Più mosso – Vivace (Tempo I) – Cadenza. Lento rubato – Andantino – Allegro – Quasi tempo I (poco meno mosso) – Tempo I (Vivace) – Coda. Più mosso
Symphony no. 2 in C minor, op. 19: I. Allegro quasi presto – Poco sostenuto – Poco più mosso – Sostenuto e poco a poco accelerando – Con fuoco (poco meno mosso) – Prestissimo
Symphony no. 2 in C minor, op. 19: II. Andante non troppo – Moderato – Poco agitato – Tempo I. Maestoso – Moderato – Tempo I – Poco meno mosso
Symphony no. 2 in C minor, op. 19: III. Prestissimo scherzando – Tempo I – Molto agitato (poco meno mosso) – Prestissimo tenebroso (Tempo I) – Con fuoco – Allegro – Tempo I
Fourth Concerto for Piano and Orchestra, op. 99 "Prague": I. Allegro molto e energico – Meno mosso. Improvisato – Tempo I
Fourth Concerto for Piano and Orchestra, op. 99 "Prague": II. Molto sostenuto. Improvisato – Molto espressivo – Molto sostenuto
Fourth Concerto for Piano and Orchestra, op. 99 "Prague": III. Vivo – Più mosso. Con brio
Released 2003
Overture to "Colas Breugnon", Op. 24: Allegro - Presto - L'istesso tempo - Presto
Concerto for Piano and Orchestra No. 2 in G minor, Op. 23: I. Allegro moderato - L'istesso tempo - Più mosso - Adagio molto sostenuto - Cadenza (Andante con moto - Poco più mosso - Poco sostenuto, ma con fuoco - Più mosso) - Tempo I (Ma poco più animato)
Concerto for Piano and Orchestra No. 2 in G minor, Op. 23: II. Andantino semplice - Andantino con moto - Meno mosso - Tempo I
Concerto for Piano and Orchestra No. 2 in G minor, Op. 23: III. Allegro molto - L'istesso tempo - Poco meno mosso - Doppio meno mosso - Tempo I (Doppio più mosso) - Poco più mosso
The Comedians, Op. 26 No. 1: Prologue. Allegro vivace
The Comedians, Op. 26 No. 2: Galop. Presto
The Comedians, Op. 26 No. 3: March. Moderato -
The Comedians, Op. 26 No. 4: Waltz. Moderato
The Comedians, Op. 26 No. 5: Pantomime. Sostenuto e pesante
The Comedians, Op. 26 No. 6: Intermezzo. Allegro scherzando
The Comedians, Op. 26 No. 7: Little Lyrical Scene. Andantino semplice
The Comedians, Op. 26 No. 8: Gavotte. Allegretto
The Comedians, Op. 26 No. 9: Scherzo. Presto assai e molto leggerio
The Comedians, Op. 26 No. 10: Epilogue. Allegro molto e con brio - Senza ritardando
Concerto for Piano and Orchestra No. 3 in D major, Op. 50: I. Allegro molto - Poco più mosso - Cadenza (Sostenuto - Allegro molto) - Tempo I - Poco più mosso
Concerto for Piano and Orchestra No. 3 in D major, Op. 50: II. Andante con moto - Pochissimo più mosso - Ancora pochissimo più mosso - Tempo I
Concerto for Piano and Orchestra No. 3 in D major, Op. 50: III. Presto - [ ] - Tempo I (Prestissimo)
Released 2002
Orchestral Suite no. 2 "Geharnischte Suite", op. 34a: I. Prelude
Orchestral Suite no. 2 "Geharnischte Suite", op. 34a: II. War Dance
Orchestral Suite no. 2 "Geharnischte Suite", op. 34a: III. Funeral Monument
Orchestral Suite no. 2 "Geharnischte Suite", op. 34a: IV. Assault
Berceuse élégiaque, op. 42
Concertino for Clarinet and Small Orchestra, op. 48: I. Allegretto sostenuto – Tranquillo – Un poco animato –
Concertino for Clarinet and Small Orchestra, op. 48: II. Andantino – Adagio –
Concertino for Clarinet and Small Orchestra, op. 48: III. Allegro sostenuto – Un poco meno sostenuto –
Concertino for Clarinet and Small Orchestra, op. 48: IV. Allegro – Tempo di minuetto, sostenuto e pomposo
Sarabande and Cortège, op. 51: Sarabande
Sarabande and Cortège, op. 51: Cortège. In the Style of a Polonaise
Tanzwalzer, op. 53: Introduction. Andante – Tempo di valse sostenuto –
Tanzwalzer, op. 53: I. [ ] –
Tanzwalzer, op. 53: II. Più vivo –
Tanzwalzer, op. 53: III. III. Tempo I –
Tanzwalzer, op. 53: IV. [ ] – Tempo I, tranquillo – Tempo deciso – Presto – Più mosso
Released 2001
Baba-Yaga, op. 56
From the Apocalypse, op. 66
Polonaise, op. 55
The Enchanted Lake, op. 62
Mazurka "Village Scene by the Inn", op. 19
Kikimora, op. 63
Eight Russian Folksongs, op. 58: I. Religious Chant
Eight Russian Folksongs, op. 58: II. Christmas Carol "Kolyada"
Eight Russian Folksongs, op. 58: III. Plaintive Song
Eight Russian Folksongs, op. 58: IV. Humorous Song "I Danced with the Gnat"
Eight Russian Folksongs, op. 58: V. Legend of the Birds
Eight Russian Folksongs, op. 58: VI. Cradle Song
Eight Russian Folksongs, op. 58: VII. Round Dance
Eight Russian Folksongs, op. 58: VIII. Village Dance Song
Scherzo, op. 16
Polonaise, op. 49
Released 2000
Passacaglia and Fugue in C minor, BWV 582: Passacaglia
Passacaglia and Fugue in C minor, BWV 582: Fugue
Wachet auf, ruft uns die Stimme, BWV 645
Prelude and Fugue in C major, BWV 545: Prelude
Prelude and Fugue in C major, BWV 545: Fugue
O Mensch, bewein' dein' Sünde groß, BWV 622
Fantasia and Fugue in C minor, BWV 537: Fantasia
Fantasia and Fugue in C minor, BWV 537: Fugue
The "Giant" Fugue (Wir glauben all' an einen Gott, BWV 680)
Chaconne from Partita no. 2 in D minor, BWV 1004
Fugue à la gigue in G major, BWV 577
Prelude and Fugue in E-flat major, BWV 552 "St Anne": Prelude
Prelude and Fugue in E-flat major, BWV 552 "St Anne": Fugue
Released 1993
Symphony no. 1 in E-flat major, op. 8: I. Andante - Allegro molto - Andante
Symphony no. 1 in E-flat major, op. 8: II. Allegro molto vivace
Symphony no. 1 in E-flat major, op. 8: III. Andante
Symphony no. 1 in E-flat major, op. 8: IV. Finale. Allegro
The Red Poppy Suite, op. 70: I. Heroic Coolie Dance
The Red Poppy Suite, op. 70: II. Scene and Dance: Scene. Andante
The Red Poppy Suite, op. 70: II. Scene and Dance: Dance. Allegretto
The Red Poppy Suite, op. 70: III. Chinese Dance
The Red Poppy Suite, op. 70: IV. Phoenix
The Red Poppy Suite, op. 70: V. Valse
The Red Poppy Suite, op. 70: VI. Russian Sailor's Dance
Released 1993
Abschiedslieder, op. 14: I. Sterbelied
Abschiedslieder, op. 14: II. Dies eine kann mein Sehnen nimmer fassen
Abschiedslieder, op. 14: III. Mond, so gehst du wieder auf
Abschiedslieder, op. 14: IV. Gefasster Abschied
Symphony in F-sharp major, op. 40: I. Moderato, ma energico
Symphony in F-sharp major, op. 40: II. Scherzo. Allegro molto - Trio. Molto meno (tranquillo)
Symphony in F-sharp major, op. 40: III. Adagio. Lento
Symphony in F-sharp major, op. 40: IV. Finale. Allegro
Released 1993
Toccata and Fugue in D minor, BWV 565: Toccata
Toccata and Fugue in D minor, BWV 565: Fugue
Aria (Air on the G String) from Orchestral Suite no. 3, BWV 1068
Fugue in G minor, BWV 578 "Little Fugue"
Sheep May Safely Graze from Cantata no. 208
Prelude in B minor from BWV 869
Passacaglia and Fugue in C minor, BWV 582: Passacaglia
Passacaglia and Fugue in C minor, BWV 582: Fugue
Siciliano from BWV 1017
Mein Jesu, BWV 487
Chorale from the Easter Cantata, BWV 4
Adagio in C from BWV 564
Komm süsser Tod, BWV 478
Wir glauben all' an Einen Gott, BWV 680 "Giant Fugue"
');
} 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));
}
});
});
});
// -->
Latest News for: bbc philharmonic
Edit
Taunton Daily Gazette
05 Dec 2024
Music helps composer with dementia find new lease on life. 81-year-old dementia sufferer, Paul Harvey , wrote a top-40 hit that earned him the chance to perform with the world-famous BBC Philharmonic orchestra. Humankind, USA TODAY ... How this was booked.
Edit
The Guardian
21 Nov 2024
BBC Philharmonic/Dennis /Brabbins/Gourlay/Schwarz (NMC ) This distinctive collection brings cabaret, country dances and a streak of melancholy to bear T om Coult ’s distinctive voice comes through ...
Edit
The Conversation
11 Nov 2024
Sign up here ... Supporting your child’s reading ... BBC Musical Storyland is a wonderful resource and full of visual retelling of fairy and folk tales. It can be found online and features music from the BBC Philharmonic for families to share together ... .
Edit
Phys Dot Org
11 Nov 2024
Why is reading for pleasure important? ... BBC Musical Storyland is a wonderful resource and full of visual retelling of fairy and folk tales. It can be found online and features music from the BBC Philharmonic for families to share together ... Citation ... ....
Edit
NME
08 Nov 2024
— BBC Philharmonic Orchestra (@BBCPhilharmonic) November 4 , 2024 ... “There’s nothing like the thrill of hearing the BBC Philharmonic, especially as they dive into new territory with the ...
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 ');
}
});
});