'+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;
}));
});
-->
Karlheinz Stockhausen
ALBUMS
Karlheinz Stockhausen dirigiert
released: 2012
Karlheinz Stockhausen
released: 2011
Mantra
released: 2010
Harlekin (feat. clarinet: Michele Marelli)
released: 2010
New Directions in Music
released: 2010
Tierkreis
released: 2008
Cosmic Pulses
released: 2007
Stimmung (Theatre of Voices feat. director: Paul Hillier)
released: 2007
Natürliche Dauern (2005-06, 3. Stunde aus KLANG, Die 24 Stunden des Tages)
released: 2007
Eötvös Conducts Stockhausen
released: 2006
Freude (2. Stunde aus KLANG, Die 24 Stunden des Tages)
released: 2006
Himmelfahrt (2004-05) Version für Synthesizer, Sopran und Tenor (1. Stunde aus KLANG, Die 24 Stunden des Tages)
released: 2006
Bassoon XX
released: 2004
Freitag aus Licht
released: 2003
Tierkreis: 12 Melodien Der Sternzeichen
released: 2003
Stockhausen 64 - Europa-Gruss / Stop und Start / Two Couples / Electronic and Concrete Music for Komet / Licht-Ruf
released: 2002
Stockhausen 4: Kontra-Punkte / Zeitmasze / Stop / Adieu (The London Sinfonietta feat. conductor: Karlheinz Stockhausen)
released: 2002
Litanei 97/Kurzwellen (world première Radio Bremen, 1968)
released: 2000
Helikopter-quartett
released: 2000
Mantra
released: 1999
Orchester-Finalisten (vom Mittwoch aus LICHT)
released: 1997
Aus Den Sieben Tagen
released: 1996
Dienstag Aus Licht
released: 1996
Prozession / Ceylon
released: 1995
Mantra (Andreas Grau, Gotz Schumacher)
released: 1995
Oktophonie
released: 1994
Klavierstücke (feat. David Tudor)
released: 1994
Stockhausen 29 - Der Jahreslauf
released: 1993
Klavierstücke I-XI / Mikrophonie I & II
released: 1993
Spiral
released: 1993
Mixtur (1967)
released: 1993
Montag aus Licht
released: 1992
Sternklang (1969-71) Parkmusik für 5 Gruppen
released: 1992
Sirius (1975-77) Elektronische Musik und Trompete, Sopran, Baßklarinette, Baß
released: 1992
Elektronische Musik 1952-1960
released: 1992
Formel / Schlagtrio / Spiel / Punkte
released: 1991
Mantra (pianos: Yvar Mikhashoff, Rosalind Bevan, electronics: Ole Ørsted)
released: 1990
Samstag aus Licht
released: 1988
Piano Pieces I-VIII (Bernhard Wambach)
released: 1988
Stimmung (Singcircle)
released: 1987
Donnerstag aus Licht
released: 1983
Donnerstag aus Licht
released: 1980
Ceylon / Bird of Passage
released: 1976
Ensemble
released: 1972
Illimité
released: 1970
Aus den sieben Tagen
released: 1970
Prozession
released: 1968
Kontakte Refrain Zyklus
released: 1960
Kontakte
released: 1960
Stockhausen: In Freundschaft / Traum-Formel / Amour (Clarinet: Suzanne Stephans)
released:
Sternklang (Disc B)
released:
Kurzwellen
released:
Hymnen
released:
Aus Den Sieben Tagen
released:
Mantra
released:
Michaels Reise Solisten-Version
released:
Released 2006
Takt 1, Abschnitt 1
Takt 27, Abschnitt 2
Takt 43, Abschnitt 3
Takt 58, Abschnitt 4
Takt 67, Abschnitt 5
Takt 83, Abschnitt 6
Takt 99, Abschnitt 7
Takt 119, Abschnitt 8
Takt 138, Abschnitt 9
Takt 160, Abschnitt 10
Takt 184, Abschnitt 11
Takt 201, Abschnitt 12
Takt 215, Abschnitt 13
Takt 228, Abschnitt 14
Takt 245, Abschnitt 15
Takt 267, Abschnitt 16
Takt 281, Abschnitt 17
Takt 301, Abschnitt 18
Takt 314, Abschnitt 19
Takt 332, Abschnitt 20
Takt 359, Abschnitt 21
Takt 378, Abschnitt 22
Takt 396, Abschnitt 23
Takt 414, Abschnitt 24
24 Synthesizer-Klangfarben für die rechte Hand auf dem mittleren C - Erläuterung durch Stockhausen
Klangfarbe 1
Klangfarbe 2
Klangfarbe 3
Klangfarbe 4
Klangfarbe 5
Klangfarbe 6
Klangfarbe 7
Klangfarbe 8
Klangfarbe 9
Klangfarbe 10
Klangfarbe 11
Klangfarbe 12
Klangfarbe 13
Klangfarbe 14
Klangfarbe 15
Klangfarbe 16
Klangfarbe 17
Klangfarbe 18
Klangfarbe 19
Klangfarbe 20
Klangfarbe 21
Klangfarbe 22
Klangfarbe 23
Klangfarbe 24
Klangfarben 1-24 schneller nacheinander
20 Synthesizer-Klangfarben für die linke Hand auf dem tiefen C - Erläuterung durch Stockhausen
Klangfarbe 1
Klangfarbe 3
Klangfarbe 4
Klangfarbe 5
Klangfarbe 6
Klangfarbe 8
Klangfarbe 9
Klangfarbe 12
Klangfarbe 13
Klangfarbe 14
Klangfarbe 15
Klangfarbe 16
Klangfarbe 17
Klangfarbe 18
Klangfarbe 19
Klangfarbe 20
Klangfarbe 21
Klangfarbe 22
Klangfarbe 23
Klangfarbe 24
20 Klangfarben schneller nacheinander
Released 2004
Concerto for Bassoon, Strings, Harp and Piano: I. Recitativo
Concerto for Bassoon, Strings, Harp and Piano: Allegro Gioviale
Concerto for Bassoon, Strings, Harp and Piano: II. Largo Cantabile
Concerto for Bassoon, Strings, Harp and Piano: III. Fugato
Concerto for Bassoon and Low Strings: I.
Concerto for Bassoon and Low Strings: II.
Concerto for Bassoon and Low Strings: III.
Concerto for Bassoon and Low Strings: IV.
Concerto for Bassoon and Low Strings: V.
Ciranda Das Sete Notas, for Bassoon and Orchestra
Divertissement for Bassoon and String Quintet: I. Vivace
Divertissement for Bassoon and String Quintet: II. Lento
Divertissement for Bassoon and String Quintet: III. Vivo Assai
Divertissement for Bassoon and String Quintet: IV. Allegro
In Freundshaft, for Solo Bassoon
Giant Steps for Jazz Trio
Humorous Scherzo for Four Bassoons Op.12 / 9
Lied Ohne Name, for Two Bassoons
Released 1992
Montag: I. Akt (Evas Erstgeburt), 3. Szene (Geburts-Arien). Erste Geburts-Arie. Stille / Crescendo Meeresrauschen / 1. Formelglied
Montag: I. Akt (Evas Erstgeburt), 3. Szene (Geburts-Arien). Erste Geburts-Arie. 2. Formelglied
Montag: I. Akt (Evas Erstgeburt), 3. Szene (Geburts-Arien). Erste Geburts-Arie. 3. Formelglied
Montag: I. Akt (Evas Erstgeburt), 3. Szene (Geburts-Arien). Erste Geburts-Arie. 4. Formelglied
Montag: I. Akt (Evas Erstgeburt), 3. Szene (Geburts-Arien). Erste Geburts-Arie. 5. Formelglied
Montag: I. Akt (Evas Erstgeburt), 3. Szene (Geburts-Arien). Erste Geburts-Arie. 6. Formelglied
Montag: I. Akt (Evas Erstgeburt), 3. Szene (Geburts-Arien). Erste Geburts-Arie. 7. Formelglied
Montag: I. Akt (Evas Erstgeburt), 3. Szene (Geburts-Arien). Zweite Geburts-Arie. Begrüßung
Montag: I. Akt (Evas Erstgeburt), 3. Szene (Geburts-Arien). Zweite Geburts-Arie. 1. Formelglied
Montag: I. Akt (Evas Erstgeburt), 3. Szene (Geburts-Arien). Zweite Geburts-Arie. 2. Formelglied
Montag: I. Akt (Evas Erstgeburt), 3. Szene (Geburts-Arien). Zweite Geburts-Arie. 3. Formelglied
Montag: I. Akt (Evas Erstgeburt), 3. Szene (Geburts-Arien). Zweite Geburts-Arie. 4. Formelglied
Montag: I. Akt (Evas Erstgeburt), 3. Szene (Geburts-Arien). Zweite Geburts-Arie. 5. Formelglied
Montag: I. Akt (Evas Erstgeburt), 3. Szene (Geburts-Arien). Zweite Geburts-Arie. 6. Formelglied
Montag: I. Akt (Evas Erstgeburt), 3. Szene (Geburts-Arien). Zweite Geburts-Arie. 7. Formelglied
Montag: I. Akt (Evas Erstgeburt), 3. Szene (Geburts-Arien). Zweite Geburts-Arie. Ade!
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). Schreie
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). Baby-Buggy-Boogie
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 1. Rotation
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 2. Rotation
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 3. Rotation
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 4. Rotation "Schön ist das Meer!"
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 5. Rotation
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 6. Rotation
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). Bananen-Stop
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 7. Rotation "Frauen, Kinder..."
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 8. Rotation
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 9. Rotation
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 10. Rotation
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). Möhren-Stop
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 11. Rotation
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 12. Rotation
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 13. Rotation
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). Promenaden-stop "Schön ist das Eva!"
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 14. Rotation
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 15. Rotation
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 16. Rotation
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 17. Rotation
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 18. Rotation
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 19. Rotation
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). Pipi-Stop / Sondermeldung
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 20. Rotation (Einatmer)
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 21. Rotation
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). zwei Takte vor 22. Rotation
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 23. Rotation
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 24. Rotation
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 25. Rotation
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 26. Rotation
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 27. Rotation "Kitzi..."
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 28. Rotation
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 29. Rotation
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 30. Rotation
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 31. Rotation
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 32. Rotation
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 33. Rotation
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). 34.-35. Rotationen / Sturz
Montag: I. Akt (Evas Erstgeburt), 4. Szene (Knaben-Geschrei). Otternschrei
Montag: I. Akt (Evas Erstgeburt), 5. Szene (Lucifers Zorn). Luzipolyp
Montag: I. Akt (Evas Erstgeburt), 5. Szene (Lucifers Zorn). "A-fa"
Montag: I. Akt (Evas Erstgeburt), 5. Szene (Lucifers Zorn). "Be-fa"
Montag: I. Akt (Evas Erstgeburt), 5. Szene (Lucifers Zorn). "Ce-fa"
Montag: I. Akt (Evas Erstgeburt), 5. Szene (Lucifers Zorn). "De-fa"
Montag: I. Akt (Evas Erstgeburt), 5. Szene (Lucifers Zorn). "E-fa"
Montag: I. Akt (Evas Erstgeburt), 5. Szene (Lucifers Zorn). "Fä-fa"
Montag: I. Akt (Evas Erstgeburt), 5. Szene (Lucifers Zorn). "Gä-fa"
Montag: I. Akt (Evas Erstgeburt), 5. Szene (Lucifers Zorn). "Ha-fa"
Montag: I. Akt (Evas Erstgeburt), 5. Szene (Lucifers Zorn). "I-fa"
Montag: I. Akt (Evas Erstgeburt), 5. Szene (Lucifers Zorn). "Ji-fa"
Montag: I. Akt (Evas Erstgeburt), 5. Szene (Lucifers Zorn). "Ka-fa"
Montag: I. Akt (Evas Erstgeburt), 5. Szene (Lucifers Zorn). "O-fa / Vau-fa"
Montag: I. Akt (Evas Erstgeburt), 5. Szene (Lucifers Zorn). "Wu-fa"
Montag: I. Akt (Evas Erstgeburt), 5. Szene (Lucifers Zorn). "Xi-fa"
Montag: I. Akt (Evas Erstgeburt), 5. Szene (Lucifers Zorn). "Ypsilyn-fa"
Montag: I. Akt (Evas Erstgeburt), 5. Szene (Lucifers Zorn). "Zyt-fa"
Montag: I. Akt (Evas Erstgeburt), 5. Szene (Lucifers Zorn). "Always..."
Montag: I. Akt (Evas Erstgeburt), 6. Szene (Das Grosse Geweine). "Luzifers Zorn, Luzifers Wut gegen die Frauen..."
Montag: I. Akt (Evas Erstgeburt), 6. Szene (Das Grosse Geweine). "Ist Luzifers Haß gegen Michael"
Montag: I. Akt (Evas Erstgeburt), 6. Szene (Das Grosse Geweine). "Das große Geweine ist Himmelserlösung, Regen der Seele"
Montag: I. Akt (Evas Erstgeburt), 6. Szene (Das Grosse Geweine). Regen "Tränenmusik"
Montag: I. Akt (Evas Erstgeburt), 6. Szene (Das Grosse Geweine). Tonszene 15 "Lunedi - munedi - runedi"
Montag: I. Akt (Evas Erstgeburt), 6. Szene (Das Grosse Geweine). "Jugent - joget - juguth..." (Luzifer kommt aus dem Meer)
Montag: I. Akt (Evas Erstgeburt), 6. Szene (Das Grosse Geweine). "Alle wieder rein!!"
Released 1990
Mantra, Part 1
Mantra, Part 2
Mantra, Part 3
Mantra, Part 4
Mantra, Part 5
Mantra, Part 6
Mantra, Part 7
Mantra, Part 8
Mantra, Part 9
Mantra, Part 10
Mantra, Part 11
Mantra, Part 12
Mantra, Part 13
Mantra, Part 14
Mantra, Part 15
Mantra, Part 16
Mantra, Part 17
Released 1983
Donnerstag: Donnerstags-Gruss (Michaels-Gruss): Michaels-Gruss I
Donnerstag: Donnerstags-Gruss (Michaels-Gruss): Michaels-Gruss II
Donnerstag: Donnerstags-Gruss (Michaels-Gruss): Michaels-Gruss III
Donnerstag: I. Akt (Michaels Jugend), 1. Szene, Eröffnung (Takt 1)
Donnerstag: I. Akt (Michaels Jugend), 1. Szene, Kindheit I (Takt 10)
Donnerstag: I. Akt (Michaels Jugend), 1. Szene, Kindheit II (Takt 47)
Donnerstag: I. Akt (Michaels Jugend), 1. Szene, Kindheit III (Takt 76)
Donnerstag: I. Akt (Michaels Jugend), 1. Szene, Kindheit IV (Takt 110)
Donnerstag: I. Akt (Michaels Jugend), 1. Szene, Kindheit V (Takt 188)
Donnerstag: I. Akt (Michaels Jugend), 1. Szene, Kindheit VI (Takt 226)
Donnerstag: I. Akt (Michaels Jugend), 2. Szene, Mondeva
Donnerstag: I. Akt (Michaels Jugend), 3. Szene, Examen 1, Anfang (Takt 1)
Donnerstag: I. Akt (Michaels Jugend), 3. Szene, Examen 1, Stadium I (Takt 3)
Donnerstag: I. Akt (Michaels Jugend), 3. Szene, Examen 1, Stadium II (Takt 24)
Donnerstag: I. Akt (Michaels Jugend), 3. Szene, Examen 1, Stadium III (Takt 35)
Donnerstag: I. Akt (Michaels Jugend), 3. Szene, Examen 1, Stadium IV (Takt 40)
Donnerstag: I. Akt (Michaels Jugend), 3. Szene, Examen 1, Stadium V (Takt 51)
Donnerstag: I. Akt (Michaels Jugend), 3. Szene, Examen 1, Stadium VI (Takt 61)
Donnerstag: I. Akt (Michaels Jugend), 3. Szene, Examen 1, Stadium VII (Takt 72)
Donnerstag: I. Akt (Michaels Jugend), 3. Szene, Examen 2, Anfang (Takt 86)
Donnerstag: I. Akt (Michaels Jugend), 3. Szene, Examen 2, Stadium I (Takt 87)
Donnerstag: I. Akt (Michaels Jugend), 3. Szene, Examen 2, Stadium II (Takt 92)
Donnerstag: I. Akt (Michaels Jugend), 3. Szene, Examen 2, Stadium III (Takt 97)
Donnerstag: I. Akt (Michaels Jugend), 3. Szene, Examen 2, Stadium IV (Takt 100)
Donnerstag: I. Akt (Michaels Jugend), 3. Szene, Examen 2, Stadium V (Takt 105)
Donnerstag: I. Akt (Michaels Jugend), 3. Szene, Examen 2, Stadium VI (Takt 111)
Donnerstag: I. Akt (Michaels Jugend), 3. Szene, Examen 2, Stadium VII (Takt 115)
Donnerstag: I. Akt (Michaels Jugend), 3. Szene, Examen 3, Stadium I (Takt 119)
Donnerstag: I. Akt (Michaels Jugend), 3. Szene, Examen 3, Stadium II (Takt 129)
Donnerstag: I. Akt (Michaels Jugend), 3. Szene, Examen 3, Stadium III (Takt 136)
Donnerstag: I. Akt (Michaels Jugend), 3. Szene, Examen 3, Stadium IV (Takt 143)
Donnerstag: I. Akt (Michaels Jugend), 3. Szene, Examen 3, Stadium V (Takt 156)
Donnerstag: I. Akt (Michaels Jugend), 3. Szene, Examen 3, Stadium VI (Takt 172)
Donnerstag: I. Akt (Michaels Jugend), 3. Szene, Examen 3, Stadium VII (Takt 199)
Born: 1928-08-22
Died: 2007-12-05
Karlheinz Stockhausen - Invasion-Explosion mit Abschied
Dienstag aus Licht - Invasion-Explosion mit Abschied
Act 2 of the opera TUESDAY from LIGHT. Eight-channel electronic music (called Oktophonie when performed separately) is projected from the corners of a cube surrounding the audience throughout Act 2. The act is divided into three large sections, together containing eleven scenes, though they run continuously without a break
(99 Subdivisions)
First Air-Defense. Beginning
First Air-Defense. 1st shot - 1st downing
First Air-Defense. 2nd shot
First Air-Defense. 3rd shot
First Air-Defense. 4th shot - second downing
First Air-Defense. Sound-bomb 24
First Air-Defense. 15th shot with 3rd downing
First Air-Defense. Sound-bomb 25
First Air-Defense. Grace-note before sound-bomb 26
First Air-Defense. Sound-bomb 27
First Invasion. Grace-note before ...
published: 23 Dec 2012
1:14:59
Karlheinz Stockhausen - Invasion-Explosion mit Abschied
Dienstag aus Licht - Invasion-Explosion mit Abschied
Act 2 of the opera TUESDAY from LIGHT. Eight-channel electronic music (called Oktophonie when performed se...
Dienstag aus Licht - Invasion-Explosion mit Abschied
Act 2 of the opera TUESDAY from LIGHT. Eight-channel electronic music (called Oktophonie when performed separately) is projected from the corners of a cube surrounding the audience throughout Act 2. The act is divided into three large sections, together containing eleven scenes, though they run continuously without a break
(99 Subdivisions)
First Air-Defense. Beginning
First Air-Defense. 1st shot - 1st downing
First Air-Defense. 2nd shot
First Air-Defense. 3rd shot
First Air-Defense. 4th shot - second downing
First Air-Defense. Sound-bomb 24
First Air-Defense. 15th shot with 3rd downing
First Air-Defense. Sound-bomb 25
First Air-Defense. Grace-note before sound-bomb 26
First Air-Defense. Sound-bomb 27
First Invasion. Grace-note before sound-bomb 28 - signal 1
First Invasion. Sound-bomb 29 - signals 2 / 3
First Invasion. Sound-bomb 30 - signals 4-6
First Invasion. Grace-note before sound-bomb 31 - signals 7-10
First Invasion. Sound-bomb 32 - signals 11-15
First Invasion. Sound-bomb 33 - signals 16-21
First Invasion. 17th shot - 4th downing - signals 22-23
First Invasion. 18th shot - hit - signals 34-39
First Invasion. Double downing - signals 40-63
First Invasion. 19th shot - hit - signals 64-67
First Invasion. 20th shot - hit
First Invasion. Grace-note before the triple downing - signals 68-79
First Invasion. Sound-bomb 49 - signals 80-93
First Invasion. 21st shot - hit - signals 94-101
First Invasion. Sound-bomb 54 - signal 102
First Invasion. 22nd shot - hit - signal 103
First Invasion. Grace-note before the quadruple downing - signals 104-113
First Invasion. Sound-bomb 59 - signals 114-118
First Invasion. 23rd shot - hit - signals 119-122
First Invasion. Sound-bomb 63 - signal 123
First Invasion. 24th shot - hit - signals 124-126
First Invasion. Grace-note before the Eve-segment - Calm
Second Air-Defense.
Second Air-Defense.
2nd Invasion. Soprano
2nd Invasion. 26th shot - signals 127-131
2nd Invasion. Grace-note before the 27th shot - hit - signals 132-135
2nd Invasion. 28th shot - signals 136-141
2nd Invasion. 30th shot - signals 142-145
2nd Invasion. 33rd shot - Light - downing - signals 146-150
2nd Invasion. 35th shot - Fright - downing - signals 151-157
2nd Invasion. 37th shot - war - downing - signals 158-164
2nd Invasion. 38th shot - Luci - signals - 165-169
2nd Invasion. 40th shot - Lu-ci-fer's - signals 170-173
2nd Invasion. 41st shot - Trom-bone - signals 174-178
2nd Invasion. 42nd shot - a-against - signals - 179-182
2nd Invasion. 43rd shot - Michael's - signals - 183-185
2nd Invasion. 44th shot - Trumpets - signals - 186-189
2nd Invasion. 45th shot - Trombones - signals - 190-200
2nd Invasion. 47th shot - Trompets - signals - 201-206 - Calamity
2nd Invasion. Before the 48th shot - signal 207
2nd Invasion. End of the bass note
Pietà. Pietà 1. flugelhorn entry
Pietà. Pietà 23. soprano entry Michael trumpeter
Pietà. Pietà 32. entry of Bridge (tape 2 of the electron
Pietà. Pietà 84. before the re-entry (tape 2 of the electronic music band)
Pietà. Pietà 130. whistle
Pietà. Pietà 149. May love heal your wounds.
Pietà. Pietà 201. fou - angel-choirs...
3rd Invasion. 1st shot - hit - signals 208-213
3rd Invasion. 4th shot - downing - signals 214-218
3rd Invasion. 5th shot - hit - signals 219-221
3rd Invasion. 7th shot - hit - signals 222-226
3rd Invasion. 9th shot - hit - signals 227-229
3rd Invasion. 11th shot - 1st Explosion - signals 230-235
3rd Invasion. 12th shot - hit - signal 236
3rd Invasion. 13th shot - hit - signals 237-242
3rd Invasion. 2nd explosion - signals 243-249
3rd Invasion. 17th shot - 3rd Explosion - signals 250-252
Beyond. Beyond 1. entry of choir and solo synthesizer
Beyond. Beyond 3
Beyond. Boyond 7
Beyond. Beyond 14
Beyond. Beyond 18
Beyond. Beyond 22. HU-ran-tia...
Beyond.Beyond 24 Pla-ne-ton...
Beyond. Beyond 28. Fight-Time...
Beyond. Beyond 35. Explosions-Time...
Beyond. Beyond 39. War of time...
Synth-Fou. Synth-Fou 1.
Synth-Fou. Upbeat to Synth-Fou 11
Synth-Fou. 2/4 before Synth-Fou 16
Synth-Fou. 3/4 before Synth-Fou 22
Synth-Fou. 1/4 before the change in harmoni
Synth-Fou. Synth-Fou 36
Synth-Fou. 3/4 before Synth-Fou 37
Synth-Fou. Synth-Fou 45
Synth-Fou. 13/4 before farewell
Farewell. Farewell
Farewell. Farewell. Upbeat to farewell 11
Farewell. Farewell. 2/4 before farewell 16
Farewell. Farewell. 3/4 before farewell 22
Farewell. Farewell. 2/4 before farewell 29 bell accents
Farewell. Farewell. 11/4 before farewell 39
Farewell. Farewell. 5/4 before farewell 42
Farewell. Farewell. 5/4 before farewell 51
Farewell. Farewell. 1/4 before farewell 55
Farewell. Farewell. 1/4 before farewell 58
Farewell. Farewell. 1/4 before farewell 63 13 beats + fade out + end silence
www.stockhausenCDs.com
https://wn.com/Karlheinz_Stockhausen_Invasion_Explosion_Mit_Abschied
Dienstag aus Licht - Invasion-Explosion mit Abschied
Act 2 of the opera TUESDAY from LIGHT. Eight-channel electronic music (called Oktophonie when performed separately) is projected from the corners of a cube surrounding the audience throughout Act 2. The act is divided into three large sections, together containing eleven scenes, though they run continuously without a break
(99 Subdivisions)
First Air-Defense. Beginning
First Air-Defense. 1st shot - 1st downing
First Air-Defense. 2nd shot
First Air-Defense. 3rd shot
First Air-Defense. 4th shot - second downing
First Air-Defense. Sound-bomb 24
First Air-Defense. 15th shot with 3rd downing
First Air-Defense. Sound-bomb 25
First Air-Defense. Grace-note before sound-bomb 26
First Air-Defense. Sound-bomb 27
First Invasion. Grace-note before sound-bomb 28 - signal 1
First Invasion. Sound-bomb 29 - signals 2 / 3
First Invasion. Sound-bomb 30 - signals 4-6
First Invasion. Grace-note before sound-bomb 31 - signals 7-10
First Invasion. Sound-bomb 32 - signals 11-15
First Invasion. Sound-bomb 33 - signals 16-21
First Invasion. 17th shot - 4th downing - signals 22-23
First Invasion. 18th shot - hit - signals 34-39
First Invasion. Double downing - signals 40-63
First Invasion. 19th shot - hit - signals 64-67
First Invasion. 20th shot - hit
First Invasion. Grace-note before the triple downing - signals 68-79
First Invasion. Sound-bomb 49 - signals 80-93
First Invasion. 21st shot - hit - signals 94-101
First Invasion. Sound-bomb 54 - signal 102
First Invasion. 22nd shot - hit - signal 103
First Invasion. Grace-note before the quadruple downing - signals 104-113
First Invasion. Sound-bomb 59 - signals 114-118
First Invasion. 23rd shot - hit - signals 119-122
First Invasion. Sound-bomb 63 - signal 123
First Invasion. 24th shot - hit - signals 124-126
First Invasion. Grace-note before the Eve-segment - Calm
Second Air-Defense.
Second Air-Defense.
2nd Invasion. Soprano
2nd Invasion. 26th shot - signals 127-131
2nd Invasion. Grace-note before the 27th shot - hit - signals 132-135
2nd Invasion. 28th shot - signals 136-141
2nd Invasion. 30th shot - signals 142-145
2nd Invasion. 33rd shot - Light - downing - signals 146-150
2nd Invasion. 35th shot - Fright - downing - signals 151-157
2nd Invasion. 37th shot - war - downing - signals 158-164
2nd Invasion. 38th shot - Luci - signals - 165-169
2nd Invasion. 40th shot - Lu-ci-fer's - signals 170-173
2nd Invasion. 41st shot - Trom-bone - signals 174-178
2nd Invasion. 42nd shot - a-against - signals - 179-182
2nd Invasion. 43rd shot - Michael's - signals - 183-185
2nd Invasion. 44th shot - Trumpets - signals - 186-189
2nd Invasion. 45th shot - Trombones - signals - 190-200
2nd Invasion. 47th shot - Trompets - signals - 201-206 - Calamity
2nd Invasion. Before the 48th shot - signal 207
2nd Invasion. End of the bass note
Pietà. Pietà 1. flugelhorn entry
Pietà. Pietà 23. soprano entry Michael trumpeter
Pietà. Pietà 32. entry of Bridge (tape 2 of the electron
Pietà. Pietà 84. before the re-entry (tape 2 of the electronic music band)
Pietà. Pietà 130. whistle
Pietà. Pietà 149. May love heal your wounds.
Pietà. Pietà 201. fou - angel-choirs...
3rd Invasion. 1st shot - hit - signals 208-213
3rd Invasion. 4th shot - downing - signals 214-218
3rd Invasion. 5th shot - hit - signals 219-221
3rd Invasion. 7th shot - hit - signals 222-226
3rd Invasion. 9th shot - hit - signals 227-229
3rd Invasion. 11th shot - 1st Explosion - signals 230-235
3rd Invasion. 12th shot - hit - signal 236
3rd Invasion. 13th shot - hit - signals 237-242
3rd Invasion. 2nd explosion - signals 243-249
3rd Invasion. 17th shot - 3rd Explosion - signals 250-252
Beyond. Beyond 1. entry of choir and solo synthesizer
Beyond. Beyond 3
Beyond. Boyond 7
Beyond. Beyond 14
Beyond. Beyond 18
Beyond. Beyond 22. HU-ran-tia...
Beyond.Beyond 24 Pla-ne-ton...
Beyond. Beyond 28. Fight-Time...
Beyond. Beyond 35. Explosions-Time...
Beyond. Beyond 39. War of time...
Synth-Fou. Synth-Fou 1.
Synth-Fou. Upbeat to Synth-Fou 11
Synth-Fou. 2/4 before Synth-Fou 16
Synth-Fou. 3/4 before Synth-Fou 22
Synth-Fou. 1/4 before the change in harmoni
Synth-Fou. Synth-Fou 36
Synth-Fou. 3/4 before Synth-Fou 37
Synth-Fou. Synth-Fou 45
Synth-Fou. 13/4 before farewell
Farewell. Farewell
Farewell. Farewell. Upbeat to farewell 11
Farewell. Farewell. 2/4 before farewell 16
Farewell. Farewell. 3/4 before farewell 22
Farewell. Farewell. 2/4 before farewell 29 bell accents
Farewell. Farewell. 11/4 before farewell 39
Farewell. Farewell. 5/4 before farewell 42
Farewell. Farewell. 5/4 before farewell 51
Farewell. Farewell. 1/4 before farewell 55
Farewell. Farewell. 1/4 before farewell 58
Farewell. Farewell. 1/4 before farewell 63 13 beats + fade out + end silence
www.stockhausenCDs.com
published: 23 Dec 2012
views: 40888
1:14:59
Karlheinz Stockhausen - Invasion-Explosion mit Abschied
Dienstag aus Licht - Invasion-Explosion mit Abschied
Act 2 of the opera TUESDAY from LIGH...
Play in Full Screen
Karlheinz Stockhausen - Invasion-Explosion mit Abschied
Karlheinz Stockhausen - Invasion-Explosion mit Abschied
Dienstag aus Licht - Invasion-Explosion mit Abschied
Act 2 of the opera TUESDAY from LIGHT. Eight-channel electronic music (called Oktophonie when performed separately) is projected from the corners of a cube surrounding the audience throughout Act 2. The act is divided into three large sections, together containing eleven scenes, though they run continuously without a break
(99 Subdivisions)
First Air-Defense. Beginning
First Air-Defense. 1st shot - 1st downing
First Air-Defense. 2nd shot
First Air-Defense. 3rd shot
First Air-Defense. 4th shot - second downing
First Air-Defense. Sound-bomb 24
First Air-Defense. 15th shot with 3rd downing
First Air-Defense. Sound-bomb 25
First Air-Defense. Grace-note before sound-bomb 26
First Air-Defense. Sound-bomb 27
First Invasion. Grace-note before sound-bomb 28 - signal 1
First Invasion. Sound-bomb 29 - signals 2 / 3
First Invasion. Sound-bomb 30 - signals 4-6
First Invasion. Grace-note before sound-bomb 31 - signals 7-10
First Invasion. Sound-bomb 32 - signals 11-15
First Invasion. Sound-bomb 33 - signals 16-21
First Invasion. 17th shot - 4th downing - signals 22-23
First Invasion. 18th shot - hit - signals 34-39
First Invasion. Double downing - signals 40-63
First Invasion. 19th shot - hit - signals 64-67
First Invasion. 20th shot - hit
First Invasion. Grace-note before the triple downing - signals 68-79
First Invasion. Sound-bomb 49 - signals 80-93
First Invasion. 21st shot - hit - signals 94-101
First Invasion. Sound-bomb 54 - signal 102
First Invasion. 22nd shot - hit - signal 103
First Invasion. Grace-note before the quadruple downing - signals 104-113
First Invasion. Sound-bomb 59 - signals 114-118
First Invasion. 23rd shot - hit - signals 119-122
First Invasion. Sound-bomb 63 - signal 123
First Invasion. 24th shot - hit - signals 124-126
First Invasion. Grace-note before the Eve-segment - Calm
Second Air-Defense.
Second Air-Defense.
2nd Invasion. Soprano
2nd Invasion. 26th shot - signals 127-131
2nd Invasion. Grace-note before the 27th shot - hit - signals 132-135
2nd Invasion. 28th shot - signals 136-141
2nd Invasion. 30th shot - signals 142-145
2nd Invasion. 33rd shot - Light - downing - signals 146-150
2nd Invasion. 35th shot - Fright - downing - signals 151-157
2nd Invasion. 37th shot - war - downing - signals 158-164
2nd Invasion. 38th shot - Luci - signals - 165-169
2nd Invasion. 40th shot - Lu-ci-fer's - signals 170-173
2nd Invasion. 41st shot - Trom-bone - signals 174-178
2nd Invasion. 42nd shot - a-against - signals - 179-182
2nd Invasion. 43rd shot - Michael's - signals - 183-185
2nd Invasion. 44th shot - Trumpets - signals - 186-189
2nd Invasion. 45th shot - Trombones - signals - 190-200
2nd Invasion. 47th shot - Trompets - signals - 201-206 - Calamity
2nd Invasion. Before the 48th shot - signal 207
2nd Invasion. End of the bass note
Pietà. Pietà 1. flugelhorn entry
Pietà. Pietà 23. soprano entry Michael trumpeter
Pietà. Pietà 32. entry of Bridge (tape 2 of the electron
Pietà. Pietà 84. before the re-entry (tape 2 of the electronic music band)
Pietà. Pietà 130. whistle
Pietà. Pietà 149. May love heal your wounds.
Pietà. Pietà 201. fou - angel-choirs...
3rd Invasion. 1st shot - hit - signals 208-213
3rd Invasion. 4th shot - downing - signals 214-218
3rd Invasion. 5th shot - hit - signals 219-221
3rd Invasion. 7th shot - hit - signals 222-226
3rd Invasion. 9th shot - hit - signals 227-229
3rd Invasion. 11th shot - 1st Explosion - signals 230-235
3rd Invasion. 12th shot - hit - signal 236
3rd Invasion. 13th shot - hit - signals 237-242
3rd Invasion. 2nd explosion - signals 243-249
3rd Invasion. 17th shot - 3rd Explosion - signals 250-252
Beyond. Beyond 1. entry of choir and solo synthesizer
Beyond. Beyond 3
Beyond. Boyond 7
Beyond. Beyond 14
Beyond. Beyond 18
Beyond. Beyond 22. HU-ran-tia...
Beyond.Beyond 24 Pla-ne-ton...
Beyond. Beyond 28. Fight-Time...
Beyond. Beyond 35. Explosions-Time...
Beyond. Beyond 39. War of time...
Synth-Fou. Synth-Fou 1.
Synth-Fou. Upbeat to Synth-Fou 11
Synth-Fou. 2/4 before Synth-Fou 16
Synth-Fou. 3/4 before Synth-Fou 22
Synth-Fou. 1/4 before the change in harmoni
Synth-Fou. Synth-Fou 36
Synth-Fou. 3/4 before Synth-Fou 37
Synth-Fou. Synth-Fou 45
Synth-Fou. 13/4 before farewell
Farewell. Farewell
Farewell. Farewell. Upbeat to farewell 11
Farewell. Farewell. 2/4 before farewell 16
Farewell. Farewell. 3/4 before farewell 22
Farewell. Farewell. 2/4 before farewell 29 bell accents
Farewell. Farewell. 11/4 before farewell 39
Farewell. Farewell. 5/4 before farewell 42
Farewell. Farewell. 5/4 before farewell 51
Farewell. Farewell. 1/4 before farewell 55
Farewell. Farewell. 1/4 before farewell 58
Farewell. Farewell. 1/4 before farewell 63 13 beats + fade out + end silence
www.stockhausenCDs.com
');
} 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));
}
});
});
});
// -->
Karlheinz Stockhausen - Invasion-Explosion mit Abs...
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 ');
}
});
});