- published: 11 Nov 2015
- views: 69457
'+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; })); }); -->
Carmina Burana (/ˈkɑːrmᵻnə bʊˈrɑːnə/; Latin for "Songs from Beuern" ("Beuern" is short for Benediktbeuern) is the name given to a manuscript of 254 poems and dramatic texts mostly from the 11th or 12th century, although some are from the 13th century. The pieces are mostly bawdy, irreverent, and satirical. They were written principally in Medieval Latin; a few in Middle High German, and some with traces of Old French or Provençal. Some are macaronic, a mixture of Latin and German or French vernacular.
They were written by students and clergy when the Latin idiom was the lingua franca across Italy and western Europe for travelling scholars, universities and theologians. Most of the poems and songs appear to be the work of Goliards, clergy (mostly students) who set up and satirized the Catholic Church. The collection preserves the works of a number of poets, including Peter of Blois, Walter of Châtillon, and an anonymous poet, referred to as the Archpoet.
The collection was found in 1803 in the Benedictine monastery of Benediktbeuern, Bavaria, and is now housed in the Bavarian State Library in Munich. Along with the Carmina Cantabrigiensia, the Carmina Burana is considered to be the most important collection of Goliard and vagabond songs.
Carmina Burana is a scenic cantata composed by Carl Orff in 1935 and 1936, based on 24 poems from the medieval collection Carmina Burana. Its full Latin title is Carmina Burana: Cantiones profanæ cantoribus et choris cantandæ comitantibus instrumentis atque imaginibus magicis ("Songs of Beuern: Secular songs for singers and choruses to be sung together with instruments and magic images"). Carmina Burana is part of Trionfi, a musical triptych that also includes Catulli Carmina and Trionfo di Afrodite. The first and last movements of the piece are called Fortuna Imperatrix Mundi ("Fortune, Empress of the World") and start with the very well known "O Fortuna".
In 1934, Orff encountered the text for this work in the 1847 edition of the Carmina Burana by Johann Andreas Schmeller, the original text dating mostly from the 11th or 12th century, including some from the 13th century. Michel Hofmann, then a young law student and Latin and Greek enthusiast, assisted Orff in the selection and organization of 24 of these poems into a libretto, mostly in Latin verse, with a small amount of Middle High German and Old Provençal. The selection covers a wide range of topics, as familiar in the 13th century as they are in the 21st century: the fickleness of fortune and wealth, the ephemeral nature of life, the joy of the return of Spring, and the pleasures and perils of drinking, gluttony, gambling and lust.
Carmina Burana is the third solo album by Ray Manzarek released in 1983. It is a recording of Carmina Burana by Carl Orff.
Music composed by Carl Orff
1. O Fortuna 2. Fortuna plango vulnera 2:26 3. Veries leta facies 5:13 4. Omnia sol temperat 8:39 5. Ecce Gratum 10:40 6. Tanz 13:09 7. Floret silva 14:54 8. Chramer, gip die varwe mir 17:59 9. Reie 21:14 10. Swaz hie gat umbe 23:12 11. Chume, chum, geselle min 24:01 12. Swaz hie gat umbe 25:40 13. Were diu werit alle min 26:12 14. Estuans interius 27:06 15. Olim lacus colueram 29:28 16. Ego sum abbas 33:01 17. In taberna quando sumus 34:31 18. Amor volat undique 37:27 19. Dies, nox et omnia 40:21 20. Stetit puella 42:57 21. Circa mea pectora 44:46 22. Si puer cum puellula 46:55 23. Veni, veni, venias 47:52 24. In trutina 48:49 25. Tempus est iocundum 50:56 26. Dulcissime 53:15 27. Ave, formosissima 53:50 28. O Fortuna 55:30
Carl Orff's Carmina Burana is one of the most popular pieces of the classical music repertoire. Here the UC Davis Symphony Orchestra, the University Chorus and Alumni Chorus, and the Pacific Boychoir perform at the Mondavi Center at UC Davis. [6/2007] [Show ID: 11787] Donate to UCTV to support informative & inspiring programming: https://www.uctv.tv/donate UC Davis Symphony and Chorus (https://www.uctv.tv/series/579) Explore More Arts & Music on UCTV (https://www.uctv.tv/arts) Art can excite, provoke, calm and inspire us. UCTV showcases excellence in arts and music from classical, jazz, folk, opera and contemporary music to theater, poetry, media arts, dance and fine arts. UCTV is the broadcast and online media platform of the University of California, featuring programming from its te...
Carl Orff Carmina Burana Full HD Full Concert Complete in Full HD Carl Orff's Carmina Burana is one of the most popular pieces of the classical music repertoire. Here the UC Davis Symphony Orchestra, the University Chorus and Alumni Chorus, and the Pacific Boychoir perform at the Mondavi Center at UC Davis. Series: "Mondavi Center Presents" Carmina Burana is a scenic cantata composed by Carl Orff in 1935 and 1936. It is based on 24 of the poems found in the medieval collection Carmina Burana. Its full Latin title is Carmina Burana: Cantiones profanæ cantoribus et choris cantandæ comitantibus instrumentis atque imaginibus magicis ("Songs of Beuern: Secular songs for singers and choruses to be sung together with instruments and magic images.") Carmina Burana is part of Trionfi, the musica...
Carl Orffs “Carmina Burana”, gespielt vom WDR Sinfonieorchester unter der Leitung seines Chefdirigenten Cristian Măcelaru zu seinem 75 jährigen Jubiläumskonzert am 29.10.2022 in der Kölner Philharmonie. Solisten waren Sarah Aristidou, Wolfgang Ablinger-Sperrhacke und Markus Werba, die Chor-Partien wurden gesungen vom WDR Rundfunkchor, dem NDR Vokalensemble und den Knaben und Mädchen der Kölner Dommusik. Carl Orff - Carmina Burana Fortuna Imperatrix Mundi 00:00:00 Nr. 1: O Fortuna 00:02:26 Nr. 2: O Fortune plango vulnera I. Primo vere 00:05:13 Nr. 3: Veris leta facies 00:09:55 Nr.: 4: Omnia sol temperat 00:12:04 Nr. 5: Ecce gratum | I. Uf dem anger 00:14:53 Nr. 6: Tanz 00:16:34 Nr. 7: Floret silva 00:19:58 Nr. 8: Chramer, gip die varwe mir 00:23:38 Nr. 9: Reie, Swaz hie gat umbe, Chume,...
Filmproductie van Videoclub Multimedia97 Niel van de volledige uitvoering van de Carmina Burana van Carl Orff in De Singel Antwerpen 2011 en de Stadsschouwburg Antwerpen 2011 Dirigent: Paul Dinneweth Koor: Koninklijke Chorale Caecilia Antwerpen (deCHORALE) - Repetitor: Peter Maus Stemcoaching: Kristien Vercammen Koninklijke Gente Oratoriumvereniging - Dirigent: Jan Vuye - Repetitoren: Tom Van Der Biest -- Johannes De Wilde. Beauvarletkoor Kokzijde - Dirigent Griet De Meyer Kinderkoor Muziekacademie Wilrijk - Dirigent Marleen Willems Kamerorkest La Passione Lier - Vera Van Eyndhoven - Concertmeester: Wietse Beels - Hilde Van Keer Sopraan: Martine Reyners - Tenor: Philip Defrancq - Bariton: Joris Derder Camera: Leo De Borger - Antoine Luyten - Freddy Van Bulck - Andre Van Rompaey -...
Kathleen Battle, Thomas Allen, Frank Lopardo, Paul Groves, Berlin Philharmonic Orchestra
Performed in Verizon Hall at The Kimmel Center, April 1, 2016 Andreas Delfs, conductor Robert Orth, baritone Caitlyn Lynch, soprano Michael Maniaci, male soprano Temple University Combined Choirs Temple University Symphony Orchestra
Carl Orff - Carmina Burana mkv 3,6 gb
Provided to YouTube by CDBaby Ifayoywana · Carmina Burana Hermoso, Todo Junto, Difunto y Podrido ℗ 2003 Carmina Burana Released on: 2003-01-01 Auto-generated by YouTube.
Rodolfo Barráez, Director huesped. Anabel de la Mora, soprano. Andrés Carrillo, tenor. Daniel Cerón, barítono. Coros: Orquesta Sinfónica de Minería - Grupo Coral Ágape - Facultades UNAM: Ingeniería, Química y Medicina. Oscar Herrera, coordinador coral. Programa Carl Orff (1895 - 1982) Carmina Burana Camara 1: Luis Alberto Santoyo Cruz Editor: Leslie Viridiana Figueroa González Concierto en la Sala Nezahualcóyotl el pasado 17 de octubre de 2019.
Carmina Burana (/ˈkɑːrmᵻnə bʊˈrɑːnə/; Latin for "Songs from Beuern" ("Beuern" is short for Benediktbeuern) is the name given to a manuscript of 254 poems and dramatic texts mostly from the 11th or 12th century, although some are from the 13th century. The pieces are mostly bawdy, irreverent, and satirical. They were written principally in Medieval Latin; a few in Middle High German, and some with traces of Old French or Provençal. Some are macaronic, a mixture of Latin and German or French vernacular.
They were written by students and clergy when the Latin idiom was the lingua franca across Italy and western Europe for travelling scholars, universities and theologians. Most of the poems and songs appear to be the work of Goliards, clergy (mostly students) who set up and satirized the Catholic Church. The collection preserves the works of a number of poets, including Peter of Blois, Walter of Châtillon, and an anonymous poet, referred to as the Archpoet.
The collection was found in 1803 in the Benedictine monastery of Benediktbeuern, Bavaria, and is now housed in the Bavarian State Library in Munich. Along with the Carmina Cantabrigiensia, the Carmina Burana is considered to be the most important collection of Goliard and vagabond songs.
1. Fortuna Imperatrix Mundi (Fortune, Empress of the World)
O Fortuna (Chorus) O Fortune
O Fortuna O Fortune,
velut luna like the moon
statu variabilis, you are changeable,
semper crescis ever waxing
aut decrescis; and waning;
vita detestabilis hateful life
nunc obdurat first oppresses
et tunc curat and then soothes
ludo mentis aciem, as fancy takes it;
egestatem, poverty
potestatem and power
dissolvit ut glaciem. it melts them like ice.
Sors immanis Fate - monstrous
et inanis, and empty,
rota tu volubilis, you whirling wheel,
status malus, you are malevolent,
vana salus well-being is vain
semper dissolubilis, and always fades to nothing,
obumbrata shadowed
et velata and veiled
michi quoque niteris; you plague me too;
nunc per ludum now through the game
dorsum nudum I bring my bare back
fero tui sceleris. to your villainy.
Sors salutis Fate is against me
et virtutis in health
michi nunc contraria, and virtue,
est affectus driven on
et defectus and weighted down,
semper in angaria. always enslaved.
Hac in hora So at this hour
sine mora without delay
corde pulsum tangite; pluck the vibrating strings;
quod per sortem since Fate
sternit fortem, strikes down the string man,
mecum omnes plangite! everyone weep with me!
2. Fortune plango vulnera (I bemoan the wounds of Fortune)
Fortune plango vulnera I bemoan the wounds of Fortune
stillantibus ocellis with weeping eyes,
quod sua michi munera for the gifts she made me
subtrahit rebellis. she perversely takes away.
Verum est, quod legitur, It is written in truth,
fronte capillata, that she has a fine head of hair,
sed plerumque sequitur but, when it comes to seizing an opportunity
Occasio calvata. she is bald.
In Fortune solio On Fortune's throne
sederam elatus, I used to sit raised up,
prosperitatis vario crowned with
flore coronatus; the many-coloured flowers of prosperity;
quicquid enim florui though I may have flourished
felix et beatus, happy and blessed,
nunc a summo corrui now I fall from the peak
gloria privatus. deprived of glory.
Fortune rota volvitur: The wheel of Fortune turns;
descendo minoratus; I go down, demeaned;
alter in altum tollitur; another is raised up;
nimis exaltatus far too high up
rex sedet in vertice sits the king at the summit -
caveat ruinam! let him fear ruin!
nam sub axe legimus for under the axis is written