'+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; })); }); -->

Carl Orff

Carl Heinrich Maria Orff (German: [ˈkaɐ̯l ˈɔɐ̯f]; July 10, 1895March 29, 1982) was a German composer, best known for his cantata Carmina Burana (1937). In addition to his career as a composer, Orff developed an influential approach toward music education for children.

Life

Early life

Carl Orff was born in Munich on July 10, 1895. His family was Bavarian and was active in the Army of the German Empire. His paternal grandfather was a Jew who converted to Catholicism.

Orff started studying the piano at the age of five, and he also took organ and cello lessons. He soon found that he was more interested in composing original music than in studying to be a performer. Orff wrote and staged puppet shows for his family, composing music for piano, violin, zither, and glockenspiel to accompany them. He had a short story published in a children's magazine in 1905 and started to write a book about nature. In his spare time, he enjoyed collecting insects.

By the time he was a teenager, having studied neither harmony nor composition, Orff was writing songs; his mother helped him set down his first works in musical notation. Orff wrote his own texts and, without a teacher, learned the art of composing by studying classical masterworks on his own.

Carmina Burana

Carmina Burana (/ˈkɑːrmnə 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 (Orff)

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".

Text

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 (album)

Carmina Burana is the third solo album by Ray Manzarek released in 1983. It is a recording of Carmina Burana by Carl Orff.

Track listing

Music composed by Carl Orff

  • "Destiny: Ruler of the World - The Wheel of Fortune (O Fortuna)"
  • "Destiny: Ruler of the World - The Wounds of Fate (Fortune Plango)"
  • "Springtime: The Face of Spring (Veris Leta Facies)"
  • "Springtime: Sunrise (Omnia Sol Temperat)"
  • "Springtime: Welcome (Ecce Gratum)"
  • "Springtime: The Dance (Tanz)" - (Tanz Mix: Ich Schau D mix)
  • "Springtime: Sweetest Boy (Dulcissime)"
  • "Springtime: If the Whole World Was Mine (Were Diu Werlt)"
  • "In the Tavern: Boiling Rage (Estuans Interius)"
  • "In the Tavern: The Roasted Swan (Olim Lacus)"
  • "In the Tavern: In the Tavern (In Taberna)"
  • "The Court of Love: Love Flies Everywhere (Amor Volat)"
  • "The Court of Love: A Young Girl (Stetit Puella)"
  • "The Court of Love: Come, My Beauty (Veni Veni Venias)"
  • "The Court of Love: The Lovers (Blanziflor et Helena)"
  • "Destiny: Ruler of the World - The Wheel of Fortune (O Fortuna)"
  • Podcasts:

    Carl Orff

    ALBUMS

    Carmina Burana

    Released 2011

    Carmina Burana - Catulli Carmina - Trionfo di Afrodite (Rundfunk-Sinfonie-Orchester Leipzig feat. conductor: Herbert Kegel)

    Released 2010

    Carmina Burana (Rundfunk-Sinfonie-Orchester Leipzig feat. conductor: Herbert Kegel)

    Released 2008

    Carmina Burana Suite / Serenade for Wind Instruments / La Fiesta Mexicana

    Released 2006

    Carmina Burana (The Philadelphia Orchestra, feat. conductor: Eugene Ormandy)

    Released 2004

    Catulli Carmina / Trionfo di Afrodite (Kölner Rundfunk-Sinfonie-Orchester & Rundfunkchor feat. conductor: Ferdinand Leitner))

    Released 2003

    Carmina Burana

    Released 1999

    Carmina Burana (Orchestre du Capitole de Toulouse feat. conductor: Michel Plasson)

    Released 1995

    Die Kluge / Der Mond (Philharmonia Orchestra & Chorus feat. conductor: Wolfgang Sawallisch)

    Released 1990

    Carmina Burana

    Released 1966

    Carmina Burana

    Carmina Burana (piano: Eric Chumachenco)

    Orff-Schulwerk - Volume 1 - Musica Poetica

    Carmina Burana

    Born: 1895-07-10

    Died: 1982-03-29

    • Carl Orff - O Fortuna ~ Carmina Burana

      Carl Orff - O Fortuna ~ Carmina Burana Irudiak: Joseph Mallord William Turner

      published: 17 Apr 2013
    • Carl Orff: CARMINA BURANA

      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...

      published: 08 Feb 2008
    • André Rieu - O Fortuna (Carmina Burana - Carl Orff)

      André Rieu performing 'O Fortuna' live in Maastricht 2012. Taken from the DVD "HAPPY BIRTHDAY! A celebration of 25 years of the Johann Strauss Orchestra". Available at: http://www.andrerieu.com/en/webshop/dvds For tour dates visit: http://www.andrerieu.com/en/calendar/all-events

      published: 20 Feb 2013
    • Carl Orff - O Fortuna - Latin and English Lyrics

      Enjoy :) Artwork : http://zipansion.com/1Ygev Copyright Disclaimer: Copyright Disclaimer Under Section 107 of the Copryrigt Act of 1976, allowance is made for "fair use" for purpose such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.

      published: 30 Sep 2014
    • Carl Orff - Gassenhauer

      Classic piece taken from Orff Schulwerk Volume 1: Musica Poetica. Personally, I believe Gassenhauer to be one of the greatest life pieces ever created and I always feel like taking a really deep breath and running around the world when I listen to it. I hope you all feel similar when you listen to it and please feel free to comment on your feelings when you listen. Enjoy!

      published: 30 Apr 2008
    • Carl Orff - Carmina Burana

      Discover our Naïve Essentials playlist on Spotify and Deezer : https://VA.lnk.to/NaiveClassiqueEssentials 00:00:00 Fortuna imperatrix mundi: "O Fortuna" 00:02:38 Fortuna imperatrix mundi: "Fortune plango vulnera" 00:05:16 Primo vere: "Veris leta facies" 00:08:42 Primo vere: "Omnia sol temperat" 00:10:29 Primo vere: "Ecce gratum" 00:13:03 Uf dem anger: Tanz 00:14:39 Uf dem anger: "Floret silva nobilis" 00:17:54 Uf dem anger: "Chramer, gip die varwe mir" 00:21:05 Uf dem anger: "Reie" 00:22:54 Uf dem anger: "Swaz hie gat umbe" 00:23:27 Uf dem anger: "Chume, chum, geselle min!" 00:25:24 In taberna: "Were diu werlt alle min" 00:26:16 In taberna: " Estuans interius" 00:28:27 In taberna: "Olim lacus colueram" 00:31:56 In taberna: "Ego sum abbas" 00:33:34 In taberna: "In taberna quando sumus" 00:...

      published: 08 Aug 2017
    • Carl Orff - Four Short Pieces (Schulwerk)

      Four pieces from Orff's Schulwerk.

      published: 12 Nov 2013
    • Excalibur • O Fortuna/Carmina Burana • Carl Orff

      *Help Support This Channel?* HD Film Tributes is a channel that currently has over three hundred movie homages posted and counting. We make zero money from YouTube as obviously none of this content will ever be monetized by us. Any and all ad revenue from these videos goes directly to Google as well as to the various copyright owners just as it should. -- Please consider supporting our editing efforts by leaving a small tip in our tip jar. Your help will be greatly appreciated. Thank you! - https://paypal.me/HDFilmTributes - Soundtrack from the 1981 John Boorman film "Excalibur" with Nigel Terry, Nicol Williamson, Helen Mirren, Cherie Lunghi, Nicholas Clay, Paul Geoffrey, Patrick Stewart, Gabriel Byrne & Liam Neeson

      published: 03 Feb 2019
    • Carl Orff - Catulli Carmina (complete recording)

      Carl Orff - Catulli Carmina Sopran: Arleen Auger Tenor: Wieslaw Ochman Choir of German Opera Berlin Conductor: Eugen Jochum 1. 00:04 - Prelude (Choir) 2. 13:06 - Act I 3. 21:03 - Act II/Act III 4. 27:54 - Exodus (Choir) Recorded from LP Deutsche Grammophon 2530 074. Turntable: Thorens TD 160. Cartridge: Ortofon FF 15XE MK II (MM) Preamp: Vivanco MX855EC. No copyright infringement intended. I don't make any money from this or any other video on my channel.

      published: 21 Jun 2015
    developed with YouTube
    Carl Orff - O Fortuna ~ Carmina Burana
    5:22

    Carl Orff - O Fortuna ~ Carmina Burana

    • Order:
    • Duration: 5:22
    • Uploaded Date: 17 Apr 2013
    • views: 60395896
    Carl Orff - O Fortuna ~ Carmina Burana Irudiak: Joseph Mallord William Turner
    https://wn.com/Carl_Orff_O_Fortuna_~_Carmina_Burana
    Carl Orff: CARMINA BURANA
    1:11:11

    Carl Orff: CARMINA BURANA

    • Order:
    • Duration: 1:11:11
    • Uploaded Date: 08 Feb 2008
    • views: 26954881
    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 ten campuses, three national labs and affiliated research institutions. UCTV explores a broad spectrum of subjects for a general audience, including science, health and medicine, public affairs, humanities, arts and music, business, education, and agriculture. Launched in January 2000, UCTV embraces the core missions of the University of California -- teaching, research, and public service – by providing quality, in-depth television far beyond the campus borders to inquisitive viewers around the world. (https://www.uctv.tv) 0:00 Introduction 1:17 FORTUNA IMPERATRIX MUNDI O Fortuna 4:10 Fortune plango vulnera 11:37 Omnia Sol temperat 16:58 UF DEM ANGER Tanz 18:58 Floret Silva 22:33 Chramer, gip die varwe mir 25:56 Reie 32:12 II. IN TABERNA Estuans interius 38:24 Ego sum abbas 43:29 III. COUR D'AMOURS Amor volat undique 47:19 Dies, nox et omnia 49:51 Stetit puella 52:31 Circa mea pectora 54:40 Sie puer cum puellula 56:40 In trutina 59:33 Tempus est iocundum
    https://wn.com/Carl_Orff_Carmina_Burana
    André Rieu - O Fortuna (Carmina Burana - Carl Orff)
    3:39

    André Rieu - O Fortuna (Carmina Burana - Carl Orff)

    • Order:
    • Duration: 3:39
    • Uploaded Date: 20 Feb 2013
    • views: 46254757
    André Rieu performing 'O Fortuna' live in Maastricht 2012. Taken from the DVD "HAPPY BIRTHDAY! A celebration of 25 years of the Johann Strauss Orchestra". Available at: http://www.andrerieu.com/en/webshop/dvds For tour dates visit: http://www.andrerieu.com/en/calendar/all-events
    https://wn.com/André_Rieu_O_Fortuna_(Carmina_Burana_Carl_Orff)
    Carl Orff - O Fortuna - Latin and English Lyrics
    5:21

    Carl Orff - O Fortuna - Latin and English Lyrics

    • Order:
    • Duration: 5:21
    • Uploaded Date: 30 Sep 2014
    • views: 10841935
    Enjoy :) Artwork : http://zipansion.com/1Ygev Copyright Disclaimer: Copyright Disclaimer Under Section 107 of the Copryrigt Act of 1976, allowance is made for "fair use" for purpose such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.
    https://wn.com/Carl_Orff_O_Fortuna_Latin_And_English_Lyrics
    Carl Orff - Gassenhauer
    2:37

    Carl Orff - Gassenhauer

    • Order:
    • Duration: 2:37
    • Uploaded Date: 30 Apr 2008
    • views: 1631575
    Classic piece taken from Orff Schulwerk Volume 1: Musica Poetica. Personally, I believe Gassenhauer to be one of the greatest life pieces ever created and I always feel like taking a really deep breath and running around the world when I listen to it. I hope you all feel similar when you listen to it and please feel free to comment on your feelings when you listen. Enjoy!
    https://wn.com/Carl_Orff_Gassenhauer
    Carl Orff - Carmina Burana
    57:38

    Carl Orff - Carmina Burana

    • Order:
    • Duration: 57:38
    • Uploaded Date: 08 Aug 2017
    • views: 242736
    Discover our Naïve Essentials playlist on Spotify and Deezer : https://VA.lnk.to/NaiveClassiqueEssentials 00:00:00 Fortuna imperatrix mundi: "O Fortuna" 00:02:38 Fortuna imperatrix mundi: "Fortune plango vulnera" 00:05:16 Primo vere: "Veris leta facies" 00:08:42 Primo vere: "Omnia sol temperat" 00:10:29 Primo vere: "Ecce gratum" 00:13:03 Uf dem anger: Tanz 00:14:39 Uf dem anger: "Floret silva nobilis" 00:17:54 Uf dem anger: "Chramer, gip die varwe mir" 00:21:05 Uf dem anger: "Reie" 00:22:54 Uf dem anger: "Swaz hie gat umbe" 00:23:27 Uf dem anger: "Chume, chum, geselle min!" 00:25:24 In taberna: "Were diu werlt alle min" 00:26:16 In taberna: " Estuans interius" 00:28:27 In taberna: "Olim lacus colueram" 00:31:56 In taberna: "Ego sum abbas" 00:33:34 In taberna: "In taberna quando sumus" 00:36:44 Cour d'amours: "Amor volat undique" 00:39:46 Cour d'amours: "Dies, nox et omnia" 00:41:56 Cour d'amours: "Stetit puella" 00:43:45 Cour d'amours: "Circa mea pectora" 00:45:54 Cour d'amours: "Si puer cum puellula" 00:46:53 Cour d'amours: "Veni, veni, venias" 00:47:56 Cour d'amours: "In truitina" 00:50:03 Cour d'amours: "Tempus est iocundum" 00:52:17 Cour d'amours: "Dulcissime" 00:52:56 Blanziflor et Helena: "Ave formosissima" 00:54:43 Fortuna imperatrix mundi: Finale. "O Fortuna" Subscribe now and never miss a video: http://bit.ly/1C1KlDZ Find the most beautiful pages of classical music on ClassicalExperience. Thousands of classical videos; Classical masterpieces remastered; Interviews & documentaries; All of the greats revisited by new artists on the rise."" Follow Classical Experience on : o Facebook = https://www.facebook.com/classicalexperience o Deezer = https://lnk.to/Classical_Deezer o Spotify = https://lnk.to/Classical_Spotify
    https://wn.com/Carl_Orff_Carmina_Burana
    Carl Orff - Four Short Pieces (Schulwerk)
    7:28

    Carl Orff - Four Short Pieces (Schulwerk)

    • Order:
    • Duration: 7:28
    • Uploaded Date: 12 Nov 2013
    • views: 206740
    Four pieces from Orff's Schulwerk.
    https://wn.com/Carl_Orff_Four_Short_Pieces_(Schulwerk)
    Excalibur • O Fortuna/Carmina Burana • Carl Orff
    2:50

    Excalibur • O Fortuna/Carmina Burana • Carl Orff

    • Order:
    • Duration: 2:50
    • Uploaded Date: 03 Feb 2019
    • views: 2049158
    *Help Support This Channel?* HD Film Tributes is a channel that currently has over three hundred movie homages posted and counting. We make zero money from YouTube as obviously none of this content will ever be monetized by us. Any and all ad revenue from these videos goes directly to Google as well as to the various copyright owners just as it should. -- Please consider supporting our editing efforts by leaving a small tip in our tip jar. Your help will be greatly appreciated. Thank you! - https://paypal.me/HDFilmTributes - Soundtrack from the 1981 John Boorman film "Excalibur" with Nigel Terry, Nicol Williamson, Helen Mirren, Cherie Lunghi, Nicholas Clay, Paul Geoffrey, Patrick Stewart, Gabriel Byrne & Liam Neeson
    https://wn.com/Excalibur_•_O_Fortuna_Carmina_Burana_•_Carl_Orff
    Carl Orff - Catulli Carmina (complete recording)
    36:15

    Carl Orff - Catulli Carmina (complete recording)

    • Order:
    • Duration: 36:15
    • Uploaded Date: 21 Jun 2015
    • views: 69939
    Carl Orff - Catulli Carmina Sopran: Arleen Auger Tenor: Wieslaw Ochman Choir of German Opera Berlin Conductor: Eugen Jochum 1. 00:04 - Prelude (Choir) 2. 13:06 - Act I 3. 21:03 - Act II/Act III 4. 27:54 - Exodus (Choir) Recorded from LP Deutsche Grammophon 2530 074. Turntable: Thorens TD 160. Cartridge: Ortofon FF 15XE MK II (MM) Preamp: Vivanco MX855EC. No copyright infringement intended. I don't make any money from this or any other video on my channel.
    https://wn.com/Carl_Orff_Catulli_Carmina_(Complete_Recording)
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Carl Orff - O Fortuna ~ Carmina Burana
      5:22
      Carl Orff - O Fortuna ~ Carmina Buranaremove from playlist
    • Carl Orff: CARMINA BURANA
      1:11:11
      Carl Orff: CARMINA BURANAremove from playlist
    • André Rieu - O Fortuna (Carmina Burana - Carl Orff)
      3:39
      André Rieu - O Fortuna (Carmina Burana - Carl Orff)remove from playlist
    • Carl Orff - O Fortuna - Latin and English Lyrics
      5:21
      Carl Orff - O Fortuna - Latin and English Lyricsremove from playlist
    • Carl Orff - Gassenhauer
      2:37
      Carl Orff - Gassenhauerremove from playlist
    • Carl Orff - Carmina Burana
      57:38
      Carl Orff - Carmina Buranaremove from playlist
    • Excalibur • O Fortuna/Carmina Burana • Carl Orff
      2:50
      Excalibur • O Fortuna/Carmina Burana • Carl Orffremove from playlist
    • Carl Orff - Catulli Carmina (complete recording)
      36:15
      Carl Orff - Catulli Carmina (complete recording)remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Carl Orff - O Fortuna ~ Carmina Burana

    Carl Orff - O Fortuna ~ Carmina Burana Irudiak: Joseph Mallord William Turner
    5:22
    Carl Orff - O Fortuna ~ Carmina Burana
    Carl Orff - O Fortuna ~ Carmina Burana Irudiak: Joseph Mallord William Turner
    published: 17 Apr 2013
    Play in Full Screen
    1:11:11
    Carl Orff: CARMINA BURANA
    Carl Orff's Carmina Burana is one of the most popular pieces of the classical music repert...
    published: 08 Feb 2008
    Play in Full Screen
    3:39
    André Rieu - O Fortuna (Carmina Burana - Carl Orff)
    André Rieu performing 'O Fortuna' live in Maastricht 2012. Taken from the DVD "HAPPY BIRTH...
    published: 20 Feb 2013
    Play in Full Screen
    5:21
    Carl Orff - O Fortuna - Latin and English Lyrics
    Enjoy :) Artwork : http://zipansion.com/1Ygev Copyright Disclaimer: Copyright Disclaimer...
    published: 30 Sep 2014
    Play in Full Screen
    2:37
    Carl Orff - Gassenhauer
    Classic piece taken from Orff Schulwerk Volume 1: Musica Poetica. Personally, I believe...
    published: 30 Apr 2008
    Play in Full Screen
    57:38
    Carl Orff - Carmina Burana
    Discover our Naïve Essentials playlist on Spotify and Deezer : https://VA.lnk.to/NaiveClas...
    published: 08 Aug 2017
    Play in Full Screen
    7:28
    Carl Orff - Four Short Pieces (Schulwerk)
    Four pieces from Orff's Schulwerk.
    published: 12 Nov 2013
    Play in Full Screen
    2:50
    Excalibur • O Fortuna/Carmina Burana • Carl Orff
    *Help Support This Channel?* HD Film Tributes is a channel that currently has over three h...
    published: 03 Feb 2019
    Play in Full Screen
    36:15
    Carl Orff - Catulli Carmina (complete recording)
    Carl Orff - Catulli Carmina Sopran: Arleen Auger Tenor: Wieslaw Ochman Choir of German O...
    published: 21 Jun 2015
    Play in Full Screen

    Carl Orff

    Carl Heinrich Maria Orff (German: [ˈkaɐ̯l ˈɔɐ̯f]; July 10, 1895March 29, 1982) was a German composer, best known for his cantata Carmina Burana (1937). In addition to his career as a composer, Orff developed an influential approach toward music education for children.

    Life

    Early life

    Carl Orff was born in Munich on July 10, 1895. His family was Bavarian and was active in the Army of the German Empire. His paternal grandfather was a Jew who converted to Catholicism.

    Orff started studying the piano at the age of five, and he also took organ and cello lessons. He soon found that he was more interested in composing original music than in studying to be a performer. Orff wrote and staged puppet shows for his family, composing music for piano, violin, zither, and glockenspiel to accompany them. He had a short story published in a children's magazine in 1905 and started to write a book about nature. In his spare time, he enjoyed collecting insects.

    By the time he was a teenager, having studied neither harmony nor composition, Orff was writing songs; his mother helped him set down his first works in musical notation. Orff wrote his own texts and, without a teacher, learned the art of composing by studying classical masterworks on his own.

    '); } 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)); } }); }); }); // -->
    ×