'+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;
}));
});
-->
Gerald Finzi
ALBUMS
Works for Chorus and Orchestra
released: 2013
Reflections: Clarinet Concertos
released: 2008
Dies natalis / Farewell to Arms / Two Sonnets (Bournemouth Symphony Orchestra feat. conductor: David Hill, tenor: James Gilchrist)
released: 2008
The English Song Series, Volume 16: A Young Man's Exhortation / Till Earth Outwears / Oh Fair to See
released: 2007
Violin and Cello Concertos
released: 2006
The English Song Series, Volume 15: Earth and Air and Rain / By Footpath and Stile / To a Poet
released: 2006
The English Song Series, Volume 12: I Said to Love / Let Us Garlands Bring / Before and After Summer
released: 2005
Cello Concerto / Grand Fantasia and Toccata / Eclogue
released: 2001
Cello Concertos
released: 2001
Violin Concerto / Prelude / Romance / In Years Defaced
released: 2001
English String Miniatures, Volume 3
released: 2001
Lo, the Full, Final Sacrifice and other choral works (Choir of St. John's College, Cambridge, feat. conductor: Christopher Robinson, organ: Christopher Whitton)
released: 2001
Earth and Air and Rain (tenor: Martyn Hill, baritone: Stephen Varcoe, piano: Clifford Benson)
released: 1990
Choral Works
released: 1990
Intimations of Immortality / Grand Fantasia & Toccata (Royal Liverpool Philharmonic Orchestra feat. tenor: Philip Langridge, piano: Philip Fowke, conductor: Richard Hickox)
released: 1989
Bax: Mater ora filium / I Sing of a Maiden / This Worldes Joie / Finzi: Magnificat / God Is Gone Up / Lo, the Full, Final Sacrifice
released: 1985
British Composers
released:
Moeran / Finzi (Northern Sinfonia of England, Richard Hickox)
released:
Finzi: Cello Concerto / Leighton: Suite "Veris Gratia"
released:
For St. Cecilia / Dies Natalis / etc (Richard Hickox)
released:
Orchestral Works (English String Orchestra feat. conductor: William Boughton, clarinet: Alan Hacker)
released:
Concerto in C Minor / Five Bagatelles / Three Soliloquies from "Love's Labour Lost" (Northern Sinfonia Chorus feat. conductor: Howard Griffiths)
released:
Released 2007
A Young Man's Exhortation, op. 14: no. 1. A Young Man's Exhortation
A Young Man's Exhortation, op. 14: no. 2. Ditty
A Young Man's Exhortation, op. 14: no. 3. Budmouth Dears
A Young Man's Exhortation, op. 14: no. 4. Her Temple
A Young Man's Exhortation, op. 14: no. 5. The Comet at Yell'ham
A Young Man's Exhortation, op. 14: no. 6. Shortening Days
A Young Man's Exhortation, op. 14: no. 7. The Sigh
A Young Man's Exhortation, op. 14: no. 8. Former Beauties
A Young Man's Exhortation, op. 14: no. 9. Transformations
A Young Man's Exhortation, op. 14: no. 10. The dance continued
Till Earth Outwears, op. 19a: no. 1. Let me enjoy the earth
Till Earth Outwears, op. 19a: no. 2. In years defaced
Till Earth Outwears, op. 19a: no. 3. The Market Girl
Till Earth Outwears, op. 19a: no. 4. I look into my glass
Till Earth Outwears, op. 19a: no. 5. It never looks like summer here
Till Earth Outwears, op. 19a: no. 6. At a Lunar Eclipse
Till Earth Outwears, op. 19a: no. 7. Life laughs onwards
Oh Fair to See, op. 13b: no. 1. I say 'I'll seek her side'
Oh Fair to See, op. 13b: no. 2. Oh fair to see
Oh Fair to See, op. 13b: no. 3. As I lay in the early sun
Oh Fair to See, op. 13b: no. 4. Only the wanderer
Oh Fair to See, op. 13b: no. 5. To Joy
Oh Fair to See, op. 13b: no. 6. Harvest
Oh Fair to See, op. 13b: no. 7. Since we loved
Released 2006
Earth and Air and Rain, op. 15: Summer Schemes
Earth and Air and Rain, op. 15: When I set out for Lyonesse
Earth and Air and Rain, op. 15: Waiting both
Earth and Air and Rain, op. 15: The phantom
Earth and Air and Rain, op. 15: So I have fared
Earth and Air and Rain, op. 15: Rollicum-Rorum
Earth and Air and Rain, op. 15: To Lizbie Browne
Earth and Air and Rain, op. 15: The Clock of the Years
Earth and Air and Rain, op. 15: In a churchyard
Earth and Air and Rain, op. 15: Proud Songsters
To a Poet, op. 13a: To a poet a thousand years hence
To a Poet, op. 13a: On parent knees
To a Poet, op. 13a: Intrada
To a Poet, op. 13a: The birthnight
To a Poet, op. 13a: June on Castle Hill
To a Poet, op. 13a: Ode on the rejection of St Cecilia
By Footpath and Stile, op. 2: Paying calls
By Footpath and Stile, op. 2: Where the picnic was
By Footpath and Stile, op. 2: The oxen
By Footpath and Stile, op. 2: The master and the leaves
By Footpath and Stile, op. 2: Voices from things growing in a churchyard
By Footpath and Stile, op. 2: Exeunt omnes
Released 2005
I Said to Love, Op. 19b: 1. I Need Not Go
I Said to Love, Op. 19b: 2. At Middle-Field Gate in February
I Said to Love, Op. 19b: 3. Two Lips
I Said to Love, Op. 19b: 4. In Five-Score Summers
I Said to Love, Op. 19b: 5. For Life I Had Never Cared Greatly
I Said to Love, Op. 19b: 6. I Said to Love
Let Us Garlands Bring, Op. 18: 1. Come Away, Come Away, Death
Let Us Garlands Bring, Op. 18: 2. Who Is Silvia?
Let Us Garlands Bring, Op. 18: 3. Fear No More the Heat O' the Sun
Let Us Garlands Bring, Op. 18: 4. O Mistress Mine
Let Us Garlands Bring, Op. 18: 5. It Was a Lover and His Lass
Before and After Summer, Op. 16: 1. Childhood Among the Ferns
Before and After Summer, Op. 16: 2. Before and After Summer
Before and After Summer, Op. 16: 3. The Self-Unseeing
Before and After Summer, Op. 16: 4. Overlooking the River
Before and After Summer, Op. 16: 5. Channel Firing
Before and After Summer, Op. 16: 6. In the Mind's Eye
Before and After Summer, Op. 16: 7. The Too Short Time
Before and After Summer, Op. 16: 8. Epeisodia
Before and After Summer, Op. 16: 9. Amabel
Before and After Summer, Op. 16: 10. He Abjures Love
Released 2001
God is gone up, Op. 27, No. 2
Magnificat, Op. 36
My lovely one, Op. 27, No. 1
Welcome sweet and sacred feast, Op. 27, No. 3
Thou didst delight my eyes, Op. 32
Le us now praise famous men, Op. 35
Seven Unaccompanied Partsongs, Op. 17: I. I praise the tender flower
Seven Unaccompanied Partsongs, Op. 17: II. I have heard the flowers that fade
Seven Unaccompanied Partsongs, Op. 17: III. My spirit sang all day
Seven Unaccompanied Partsongs, Op. 17: IV. Clear and gentle stream
Seven Unaccompanied Partsongs, Op. 17: V. Nightingales
Seven Unaccompanied Partsongs, Op. 17: VI. Haste on, my joys!
Seven Unaccompanied Partsongs, Op. 17: VII. Wherefore tonight so full of care
Lo, the Full, Final Sacrifice, Op. 26
Released 1990
Three Anthems, Op. 27 No. 2: God is gone up
Three Anthems, Op. 27 No. 3: Welcome sweet and sacred feast
Three Short Elegies, Op. 5: I. Life a right shadow is
Three Short Elegies, Op. 5: II. This world a hunting is
Three Short Elegies, Op. 5: III. This life, which seems so fair
Thou didst delight my eyes, Op. 32
Three Anthems, Op. 27 No. 1: My Lovely One
Op. 35: Let us now praise famous men
Seven Partsongs, Op. 17: I. I praise the tender flower
Seven Partsongs, Op. 17: II. I have loved flowers that fade
Seven Partsongs, Op. 17: III. My spirit sang all day
Seven Partsongs, Op. 17: IV. Clear and gentle stream
Seven Partsongs, Op. 17: V. Nightingales
Seven Partsongs, Op. 17: VI. Haste on, my joys!
Seven Partsongs, Op. 17: VII. Wherefore tonight so full of care
Magnificat, Op. 36
White-flowering days, Op. 37
All This Night, Op. 33
Lo, the full, final sacrifice, Op. 26
Released 1989
Intimations of Immortality: "There was a time when meadow, grove, and stream"
Intimations of Immortality: "The rainbow comes and goes"
Intimations of Immortality: "Now, while the birds thus sing a joyous song"
Intimations of Immortality: "Ye blessèd Creatures, I have heard the call"
Intimations of Immortality: "Our birth is but a sleep and a forgetting"
Intimations of Immortality: "Earth fills her lap with pleasure of her own"
Intimations of Immortality: "O joy! that in our embers"
Intimations of Immortality: "Then sing, ye Birds, sing, sing a joyous song!"
Intimations of Immortality: "And O, ye Fountains, Meadows, Hills, and Groves"
Grand Fantasia & Toccata: Molto grave
Grand Fantasia & Toccata: Allegro vigoroso
An Oxford Elegy: I. (Lento)
An Oxford Elegy: II. Go, for they call you, Shephard
An Oxford Elegy: III. Here will I sit and wait
An Oxford Elegy: IV. Screen'd is this nook
An Oxford Elegy: V. That sweet city
An Oxford Elegy: VI. Come, let me read
An Oxford Elegy: VII. Or in my boat I lie
An Oxford Elegy: VIII. And once, in winter
An Oxford Elegy: IX. But what-I dream
An Oxford Elegy: X. No, no, thou hast not felt
An Oxford Elegy: XI. Runs it not here
An Oxford Elegy: XII. Needs must I, with heavy heart
An Oxford Elegy: XIII. Soon will the high Midsummer pomps
An Oxford Elegy: XIV. He hearkens not!
An Oxford Elegy: XV. Never more
An Oxford Elegy: XVI. Yes, thou art gone!
An Oxford Elegy: XVII. Despair I will not
An Oxford Elegy: XVIII. Why faintest thou?
Whitsunday Hymn (No. 3 of Three Choral Hymns)
Flos Campi: I. Sicut Lillium inter spinas: Lento
Flos Campi: II. Jan enim hiems transiit: Andante con moto
Flos Campi: III. Quaesivi quem diligit anima mea: Lento-Allegro moderato
Flos Campi: IV. En lectulum Salomonis: Moderato alla marcia
Flos Campi: V. Revertere, revertere Sulamitis!: Andante quasi lento
Flos Campi: VI. Pone me ut signaculum: Moderato tranquillo
Sancta Civitas (The Holy City): I. I was in the spirit: Lento
Sancta Civitas (The Holy City): II. And I saw Heaven: Allegro
Sancta Civitas (The Holy City): III. And I saw an angel standing in the sun: Meno mosso
Sancta Civitas (The Holy City): IV. Babylon the great is fallen: Lento
Sancta Civitas (The Holy City): V. Rejoice over her O Heavens: Allegro moderato
Sancta Civitas (The Holy City): VI. And I saw a new heaven: Adagio
Sancta Civitas (The Holy City): VII. Therefore are they before the throne of God: Poco meno largo
Sancta Civitas (The Holy City): VIII. And I saw a pure river
Sancta Civitas (The Holy City): IX. Holy, Holy, Holy: Andante sostenuto
Sancta Civitas (The Holy City): X. Heaven and earth are full of Thy glory: Poco animato
For St. Cecilia: 1. Delightful Goddess... (Philip Langridge, London Symphony)
For St. Cecilia: 2. Changed is the age (Philip Langridge, London Symphony)
For St. Cecilia: 3. How came you... (Philip Langridge, London Symphony)
For St. Cecilia: 4. How smilingly the saint...(Philip Langridge, London Symphony)
For St. Cecilia: 5. Wherefore we bid you... (Philip Langridge, London Symphony)
Dies natalis: 1. Intrada (Philip Langridge, London Symphony)
Dies natalis: 2. Rhapsody (Philip Langridge, London Symphony)
Dies natalis: 3. The Rapture (Philip Langridge, London Symphony)
Dies natalis: 4. Wonder (Philip Langridge, London Symphony)
Dies natalis: 5. The Salutation (Philip Langridge, London Symphony)
In terra pax: 1. A frosty Christmas Eve (Normal Burrows, John Shirley-Quick, City of London Sinfonia)
In terra pax: 2. And lo, the Angel of the Lord... (Normal Burrows, John Shirley-Quick, City of London Sinfonia)
Magnificat (City of London Sinfonia)
Suite from "Love's Labours Lost", Op 28: I. Introduction: Allegro vigoroso
Suite from "Love's Labours Lost", Op 28: II. "Moth": Allegro scherzando
Suite from "Love's Labours Lost", Op 28: III. Nocturne: Allegro comodo
Suite from "Love's Labours Lost", Op 28: IV. The Hunt: Allegro molto e vivace
Suite from "Love's Labours Lost", Op 28: V. Dance: Allegretto grazioso
Suite from "Love's Labours Lost", Op 28: VI. Quodlibet (Clowns): Vivo
Suite from "Love's Labours Lost", Op 28: VII. Soliloquy I: Grazioso
Suite from "Love's Labours Lost", Op 28: VIII. Soliloquy II: Adagio
Suite from "Love's Labours Lost", Op 28: IX. Soliloquy III: Allegretto
Suite from "Love's Labours Lost", Op 28: X. Finale: Allegro maestoso
Clarinet Concerto in C minor, Op. 31: I. Allegro vigoroso
Clarinet Concerto in C minor, Op. 31: II. Adagio
Clarinet Concerto in C minor, Op. 31: III. Rondo: Allegro giocoso
Prelude for string orchestra in F minor, Op 25
Romance for string orchestra in E flat major, Op. 11
Concerto for Clarinet & String Orchestra in C Minor, Op. 31: I. Allegro vigoroso (feat. clarinet: Robert Plane)
Concerto for Clarinet & String Orchestra in C Minor, Op. 31: II. Adagio, ma senza rigore (feat. clarinet: Robert Plane)
Concerto for Clarinet & String Orchestra in C Minor, Op. 31: III. Rondo: Allegro giocoso (feat. clarinet: Robert Plane)
Five Bagatelles for Clarinet & Piano, Op. 23a: I. Prelude: Allegro deciso (feat. clarinet: Robert Plane)
Five Bagatelles for Clarinet & Piano, Op. 23a: II. Romance: Andante tranquillo (feat. clarinet: Robert Plane)
Five Bagatelles for Clarinet & Piano, Op. 23a: III. Carol: Andante semplice (feat. clarinet: Robert Plane)
Five Bagatelles for Clarinet & Piano, Op. 23a: IV. Forlana: Allegretto grazioso (feat. clarinet: Robert Plane)
Five Bagatelles for Clarinet & Piano, Op. 23a: V. Fughetta: Allegro vivace (feat. clarinet: Robert Plane)
Three Soliloquies from "Love's Labour Lost", Op. 28: Soliloquy I. The King's Poem
Three Soliloquies from "Love's Labour Lost", Op. 28: Soliloquy II. Longaville's Sonnet
Three Soliloquies from "Love's Labour Lost", Op. 28: Soliloquy III. Dumaine's Poem
A Severn Rhapsody, Op. 3
Romance in E flat major for string orchestra, Op. 11
Introit in F major for solo violin and small orchestra, Op. 6 (feat. violin: Lesley Hatfield)
Born: 1901-07-14
Died: 1956-09-27
');
} 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 ');
}
});
});