'+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;
}));
});
-->
Douglas Gamley
Released 2010
-
Toccata und Fuge für Orgel in d-Moll in D minor, BWV 565
-
Wachet auf, ruft uns die Stimme no. 140, BWV 645
-
Prelude no. 1 in C major, BWV 846
-
Ave maria (Adaptation on Bach's Prelude, no. 1, BWV 846) (orchestral version)
-
Orchestersuite no. 3 D-dur in D major, BWV 1068
-
Goldberg-Variationen, BWV 988: Aria
-
Passacaglia und Fuge für Orgel in c-Moll in C minor, BWV 582 (arranged for two orchestras)
-
String Quartet in B minor, op. 11: II. Adagio
-
Symphony no. 5 in C minor, op. 67: I. Allegro con brio
-
Bagatelle for Piano in A minor, WoO 59 "Für Elise". Poco moto
-
Egmont, op. 84: Overture. Sostenuto, ma non troppo – Allegro
-
Sonata for Piano no. 14 in C-sharp minor, op. 27 no. 2 "Moonlight": I. Adagio sostenuto
-
Symphony no. 6 in F major, op. 68 "Pastorale": II. Andante molto mosso "Scene at the brook"
-
Sonata for Piano no. 8 in C minor, op. 13 "Pathétique": II. Adagio cantabile
-
Symphony no. 7 in A major, op. 92: II. Allegretto
-
Symphony no. 9 in D minor, op. 125 "Choral", S. 464 no. 9: IV. Presto – Allegro assai "Ode to Joy"
-
L'Arlésienne Suite no. 2: IV. Farandole
-
Les Pêcheurs de perles: Acte I. Duo "Au fond du temple saint" (Zurga, Nadir)
-
Carmen Suite no. 1: Les toréadors
-
L'Arlésienne Suite no. 2: III. Menuet
-
Quintet in E major, G. 275, op. 11 no. 5: III. Minuetto (con un poco di moto)
-
Notturno: Andante amoroso (from String Quartet no. 2 in D major)
-
Hungarian Dances for orchestra, WoO 1, Book 1, no. 5 in G minor: Allegro - Vivace
-
Symphony no. 3 in F major, op. 90: III. Poco allegretto
-
Waltz in E major, op. 39 no. 5: Grazioso
-
Sinfonie Nr. 4 e-Moll, op. 98: I. Allegro non troppo
-
5 Lieder, op. 49 (orchestral version)
-
The Banks of Green Willow: Idyll
-
Étude in E major, op. 10 no. 3: Lento ma non troppo
-
Waltz No. 6 in D-flat major, op. 64 no. 1 "Minute Waltz"
-
Concerto for Piano and Orchestra no. 1 in E minor, op. 11: II. Romance. Larghetto
-
Waltz no. 7 in C-sharp minor, op. 64 no. 2
-
Prélude in D-flat major, op. 28 no. 15 "Raindrop": Sostenuto
-
Nocturne no. 10 in A-flat major, op. 32 no. 2: Lento (arranged for piano & orchestra)
-
The Prince of Denmark's March in D Major
-
Appalachian Spring (Ballet for Martha): Shaker Theme, The Gift to Be Simple, an variations underscoring
-
Suite bergamasque, L. 75, CD 82a, pour piano : III. Clair de lune
-
Rêverie, L. 68, CD 76, pour piano
-
Nocturnes, L 91: I. Nuages (orchestral version)
-
Prélude à l'après-midi d'un faune, L. 86, CD 87, pour orchestre
-
Lakmé: The Flower Duet
-
On Hearing the First Cuckoo in Spring, RT vi/19/1
-
Carnival Overture, op. 92
-
Symfonie č. 9 e moll, op. 95 „Z Nového světa“: II. Largo
-
Rusalka, opera, B. 203 (op. 114): Měsíčku na nebi hlubokém (Song to the Moon) (orchestral version)
-
Humoresque, op. 101 no. 7
-
String Quartet no. 12 in F major, op. 96, B. 179 “American”: II. Lento
-
Slavonic Dances for orchestra, B. 83 (op. 46): no. 1 in C major (Furiant)
-
Slavonic Dances, op. 72: no. 2 in E minor: Allegretto grazioso
-
Variations on an Original Theme, op. 36 "Enigma"
-
Piano Quintet in A minor, op. 84: II. Adagio
-
Pomp and Circumstance Marches, op. 39: March no. 1 in D major
-
Pavane, op. 50
-
Requiem, op. 48: III. Sanctus (arranged for orchestra)
-
Piano Quartet no. 1 in C Minor, op. 15: II. Scherzo (Allegro vivo)
-
Les Berceaux, op. 23 no. 1 (arranged for orchestra)
-
Psyché, symphonic poem for chorus and orchestra, M.47: IV. Psyché et Éros
-
Sonata for Violin and Piano in A major: IV. Allegretto poco mosso
-
Symphonie en ré mineur: III. Allegro non troppo
-
Vjezd gladiátorů op. 68
-
Patience: Overture (Bunthorne's Bride; operetta)
-
The Pirates of Penzance: Act I: IV. Oh, better far to live and die
-
H.M.S. Pinafore: Overture
-
H.M.S. Pinafore: Act I: We Sail the Ocean Blue
-
H.M.S. Pinafore: Act I: I'm Called Little Buttercup
-
The Mikado: Act I: VII. Three Little Maids From School Are We
-
The Pirates of Penzance: Act I: XV. I am the very model of a modern major-general
-
Caro mio ben (orchestral version)
-
Andrea Chénier: Atto III. "La mamma morta" (Maddalena) (orchestral version)
-
Russlan and Ludmilla: Overture
-
Peer Gynt Suite no. 1, op. 46: IV. In the Hall of the Mountain King
-
Piano Concerto in A minor, op. 16: I. Allegro molto moderato
-
Lyric Suite, op. 54: IV. March of the Dwarfs. Allegro marcato
-
Peer Gynt Suite no. 1, op. 46: I. Morning Mood
-
Peer Gynt Suite no. 2, op. 55: IV. Solveig's Song (orchestral version)
-
Return to Rundarne
-
Fra Holbergs tid, op. 40: II. Sarabande (Andante)
-
Judas Maccabaeus, HWV 63: Act III
-
Water Music, Suite no. 1 in F major, HWV 348: 6. Air
-
Solomon, HWV 67: "The Arrival of the Queen of Sheba"
-
Xerxes - Largo
-
Concerto grosso in D major, op. 6 no. 5, HWV 323: I. Larghetto e staccato
-
Messiah, HWV 56: Oratorio "Hallelujah"
-
Quartet for 2 Violins, Viola, and Cello no. 62 in C major, op. 76 no. 3 Hob. III:77 "Kaiser": II. Poco Adagio. Cantabile
-
Symphony no. 94 in G major "Surprise", HOB I:94: II. Andante
-
Symphony no. 104 in D major, HOB I:104 "London": IV. Finale. Spiritoso
-
Sinfonia Concertante for Violin, Cello, Oboe & Bassoon in B-flat major, HOB I:105: II. Andante
-
Sonata no. 10, HOB XVI: II. Andante
-
The Planets Suite for Orchestra, op. 32: IV. Jupiter, the Bringer of Jollity
-
The Planets Suite for Orchestra, op. 32: II. Venus, the Bringer of Peace
-
Trompetenkonzert Es-dur: III. Rondo. Allegro
-
Piano Concerto no. 2 in A Minor, op. 85: II. Larghetto
-
Hänsel und Gretel: Abendsegen (orchestral version)
-
The Waves of the Danube
-
The Entertainer
-
Sabre Dance, from the ballet Gayaneh
-
Symphonie espagnole in D minor, op. 21: V. Rondo. Allegro
-
The Merry Widow (medley)
-
Pagliacci: Atto I. "Recitar!" - "Vesti la giubba" (Canio)
-
Pagliacci: Intermezzo
-
Hungarian Rhapsody no. 2 in C-sharp minor, S. 244 no. 2
-
Liebestraum As-Dur "Oh Lieb, so lang du lieben kannst", S. 541 Nr. 3
-
Concerto for Piano and Orchestra no. 1 in E-flat major, S.124: I. Allegro maestoso
-
Fantasia on Hungarian Folk Melodies for piano and orchestra, S. 123
-
Ballet égyptien, op. 12: II. Andante sostenuto
-
Symphony no. 5 in C-sharp minor: IV. Adagietto. Sehr langsam
-
Cavalleria Rusticana: Intermezzo
-
Meditation from Thaïs
-
Le Cid: Spanish dance
-
Élégie (for cello and orchestra)
-
Ein Sommernachtstraum, op. 21: Ouvertüre
-
Ein Sommernachtstraum, op. 61 no. 9: Hochzeitsmarsch: Allegro vivace
-
Die Hebriden, op. 26
-
Violinkonzert in e-Moll, op. 64: III. Allegretto non troppo – Allegro molto vivace
-
Song Without Words Book Two, op. 30: no. 1 in E-flat major - Andante espressivo
-
Symphony no. 4 in A major, op. 90 "Italian": I. Allegro vivace
-
Rondeau (from suite de symphonies no. 1
-
Serenade no. 13 for Strings in G major, K. 525 "Eine kleine Nachtmusik": I. Allegro
-
Symphony no. 40 in G minor, K. 550 "Great": I. Allegro molto
-
Concerto for Piano no. 21 in C major, K. 467 "Elvira Madigan": II. Andante
-
The Magic Flute, KV620: Overture
-
Mass no. 15 for Soloists, Chorus & Orchestra in C major, K. 317 "Coronation Mass": II. "Gloria"
-
Motet for Chorus, Strings & Organ in D major, K. 618: "Ave verum corpus"
-
Sonata for Piano no. 11 in A major, K. 300i/331 "Alla Turca": III. Rondo alla Turca. Allegretto
-
Le nozze di Figaro, KV 492: Overture
-
Le nozze di Figaro, K. 492: Act III, Scene VI. no. 20 Recitativo "E Susanna non vien!" (La Contessa) / No. 20 Aria "Dove sono i bei momenti" (La Contessa)
-
Symphony no. 41 for Orchestra in C major, K. 551 "Jupiter": IV. Allegro molto
-
Il dissoluto punito, ossia il Don Giovanni, K. 527: Ouverture. Andante - allegro molto
-
Concerto for Clarinet in A major, K. 622: II. Adagio
-
Vesperae solennes de confessore for Soloists, Chorus & Orchestra in C major, K. 339: V. "Laudate dominum"
-
Requiem in D minor, K. 626: IIIe. Sequentia: Confutatis. Andante.
-
Pictures at an Exhibition: Promenade (1st)
-
Orphée aux enfers
-
The Tales of Hoffman 'Barcarolle'
-
Canon and Gigue in D major, T. 377
-
La Gioconda: Dance of the Hours
-
Suite from "Love for Three Oranges", op. 33A: III. Marche
-
Gianni Schicchi: "O mio babbino caro" (Lauretta)
-
Tosca: Act II. "Vissi d'arte" (Tosca, Scarpia)
-
Tosca: Act III. "E lucevan le stelle" (Cavaradossi)
-
Suor Angelica: "Senza mamma, o bimbo"
-
Suor Angelica: "Sorella, o buona sorella"
-
Madama Butterfly: Act II. Coro a bocca chiusa
-
La bohème: "O soave fanciulla"
-
La bohème: Musetta's Waltz Song (orchestral version)
-
Turandot: Act III. "Nessun dorma" (Calaf) (arranged for chorus and orchestra)
-
Sonata for Trumpet and Organ From "A Fairy Queen": Air
-
Trio Sonata in 4 parts no. 5 in G minor, Z. 806: III. Largo
-
Flute Concerto no. 132 in G minor, QV 5:192: I. Allegro assai
-
Rhapsody on a Theme of Paganini, op. 43: Variation XVIII: Andante cantabile
-
Prelude in C sharp minor, op. 3 no. 2
-
Piano Concerto no. 2 in C minor, op. 18: II. Adagio sostenuto
-
Symphony no. 2 in E minor, op. 27: III. Adagio
-
Piano Concerto no. 3 in D minor, op. 30: I. Allegro ma non tanto
-
Daphnis et Chloé, Suite no. 2: I. Lever du jour
-
Pavane pour une infante défunte
-
Ma mère l'Oye: V. Le Jardin féerique
-
Introduction et allegro pour harpe, flûte, clarinette et quatuor
-
Scheherazade, op. 35: I. The Sea and Sinbad's Ship
-
Flight of the Bumblebee
-
William Tell Overture
-
Il barbiere di Siviglia: Overture
-
Soirées musicales: La danza (orchestral version)
-
Le Carnaval des animaux: VII. Aquarium
-
Le Carnaval des animaux: XIII. Le Cygne
-
Danse Macabre, op. 40
-
Première Gymnopédie
-
Deuxième Gymnopédie
-
Troisième Gymnopédie
-
Symphony no. 8 in B minor, D. 759 "Unfinished": I. Allegro moderato
-
Ellens Gesang III, op. 52 no. 6, D. 839 "Ave Maria"
-
Impromptu in G-flat major, op. 90 no. 3, D. 899 no. 3. Andante
-
Piano Trio no. 2 in E-flat major, op. 100, D. 929: II. Andante con moto
-
Kinderszenen, op. 15: Träumerei
-
Sinfonie Nr. 3 Es-Dur, op. 97 "Rheinische": I. Lebhaft
-
Piano Concerto no. 2 in F major, op. 102: II. Andante
-
The Bartered Bride: Ouvertüre
-
Má vlast: II. Vltava, JB 1:112/2
-
An der schönen blauen Donau, op. 314
-
Geschichten aus dem Wienerwald, op. 325
-
Also sprach Zarathustra, op. 30: I. Einleitung
-
The Year 1812, Festival Overture in E-flat major, op. 49
-
The Nutcracker (suite from the ballet), op.71a: II. Danses caractéristiques: b) Danse de la Fée-Dragée. Andante ma non troppo
-
The Sleeping Beauty, op. 66: Waltz
-
Symphony no. 6 in B minor, op. 74 "Pathétique": IV. Finale. Adagio lamentoso
-
Concerto for Piano and Orchestra no. 1 in B-flat minor, op. 23: II. Andantino semplice
-
Eugene Onegin, op. 24: Act II Scene I: Waltz
-
Missa da Requiem: II. Sequenza: Dies irae
-
Rigoletto: Atto III. "La donna è mobile" (Duca)
-
La traviata: Act I. "Libiamo, ne' lieti calici"
-
Aida: Act II. Triumph March and Chorus, "Gloria all'Egitto"
-
Concerto in F minor, op. 8 no. 4, RV 297 "L'inverno": II. Largo
-
Concerto in E major, op. 8 no. 1, RV 269 "La primavera": I. Allegro
-
Gloria in D major, RV589: I. Gloria in excelsis Deo
-
Concerto for 2 Violins in G major, RV 516: II. Andante (molto)
-
Concerto in G minor, op. 8 no. 2, RV 315 "L'estate": III. Presto
-
Concerto in F major, op. 8 no. 3, RV 293 "L'autunno": I. Allegro
-
Lohengrin: Act III. Vorspiel
-
Tristan und Isolde: Liebestod
-
Die Walküre: Walkürenritt
-
Some Enchanted Evening, From "South Pacific"
-
Wunderbar, From "Kiss Me Kate"
-
If I Loved You, From "Carousel"
-
People Will Say We're in Love, From "Oklahoma"
-
Till There Was You, From "The Music Man"
-
Somewhere, From "West Side Story"
-
Do Re Mi, From "The Sound of Music"
-
And This Is My Beloved, From "Kismet"
-
Hey There, From "The Pajama Game"
-
Wand'rin Star, From "Paint Your Wagon"
-
People, From "Funny Girl"
-
On the Street Where You Live, From "My Fair Lady"
-
If Ever I Would Leave You, From "Camelot"
-
It's Magic
-
Hands Across the Table
-
I Hadn't Anyone Till You
-
Maria Elena
-
The Night Is Young and You're So Beautiful
-
I'm in the Mood for Love
-
Body and Soul
-
You Go to My Head
-
Time After Time
-
Solitude
-
Someone to Watch Over Me
-
By the Fireside
-
You'll Never Know
-
These Foolish Things
Born: 1924-09-24
Died: 1998-02-05
');
} 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('
');
}
}
});
}
}
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 ');
}
});
});