- published: 05 Feb 2015
- views: 3969008
'+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; })); }); -->
Sir John Eliot Gardiner, CBE (born 20 April 1943) is an English conductor.
Born in Fontmell Magna, Dorset, Gardiner's early musical experience came largely through singing with his family and in a local church choir. A self-taught musician who also played the violin, he began to study conducting at the age of 15. He was educated at Bryanston School, then studied history, Arabic, and medieval Spanish at King's College, Cambridge.
While an undergraduate at Cambridge he launched his career as a conductor with a performance of Vespro della Beata Vergine by Monteverdi, in King's College Chapel on 5 March 1964. This either featured or led to the foundation of the Monteverdi Choir, with which he made his London conducting debut at the Wigmore Hall in 1966.
Whilst at Cambridge, he conducted the Oxford and Cambridge Singers on a concert tour of the Middle East.
After graduating with a master's degree in history, Gardiner continued his musical studies at King's College London under Thurston Dart and in Paris with Nadia Boulanger, whose music had been a very early influence. In 1968 he founded the Monteverdi Orchestra. Upon changing from modern instruments to period instruments in 1977, the orchestra changed its name to the English Baroque Soloists in 1978. In 1969 Gardiner made his opera debut with a performance of Mozart's The Magic Flute at the English National Opera. Four years later, in 1973, he made his first appearance at the Covent Garden conducting Gluck's Iphigénie en Tauride. The English Baroque Soloists made their opera debut with him in the 1977 Innsbruck Festival of Early Music, performing Handel's Acis and Galatea on period instruments. His American debut came in 1979 when he conducted the Dallas Symphony Orchestra. He then became the lead conductor of Canada's CBC Vancouver Orchestra from 1980 to 1983.
John Eliot may refer to:
Sir John Eliot, 1st Baronet (1736 – 1786) was a Scottish physician.
Eliot, the son of a writer to the signet, was born in Edinburgh in 1736, and, after education under Nathaniel Jesse, became assistant to a London apothecary. He then sailed as surgeon to a privateer. Having obtained some prize-money in this service, he deecided to become a physician, graduated M.D. at St. Andrews University 6 November 1759, and was admitted a licentiate of the College of Physicians of London, 30 September 1762. A fellow Scot, Sir William Duncan, then the king's physician, gave him help, and he soon made a large income. In the 1760s Elizabeth Ogborne was born to a tea dealer in London and she reported that Sir John Eliot was her father. In 1776 he was knighted, was created a baronet 25 July 1778, and became physician to the Prince of Wales.
When attending the Prince during an illness in 1786, Eliot told Queen Charlotte that he had been preaching to him against intemperance "as any bishop could have done"; to which the Queen replied, "And probably with like success". On 19 October 1771 he married Grace Dalrymple, who ran away with Lord Valentia in 1774. Eliot obtained £12,000 damages.
Sir John Eliot (11 April 1592 – 27 November 1632) was an English statesman who was serially imprisoned in the Tower of London, where he eventually died, by King Charles I for advocating the rights and privileges of Parliament.
The son of Richard Eliot (1546 – 22 June 1609) and Bridget Carswell (c. 1542 – March 1617), he was born at Cuddenbeak, a farm on his father's Port Eliot estate at St Germans in Cornwall. He was baptised on 20 April at St Germans Church, immediately next to Port Eliot. The Eliot family were an old Devon family that had settled in Cornwall.
John Eliot was educated at Blundell's School, Tiverton, and matriculated at Exeter College, Oxford, on 4 December 1607, and, leaving the university after three years, he studied law at one of the Inns of Court. He also spent some months travelling in France, Spain and Italy, in company, for part of the time, with young George Villiers, afterwards 1st Duke of Buckingham.
Oedipus the King (Ancient Greek: Οἰδίπους Τύραννος IPA: [oidípuːs týranːos], Oidipous Tyrannos), also known by its Latin title Oedipus Rex, is an Athenian tragedy by Sophocles that was first performed around 429 BC. Of his three Theban Plays that deal with Oedipus, Oedipus the King was the second to be written. However, in terms of the chronology of events that the plays describe, it comes first, followed by Oedipus at Colonus and then Antigone.
Oedipus the King tells the story of Oedipus, a man who becomes the king of Thebes, while unwittingly fulfilling a prophecy that he would kill his father, Laius, and marry his mother, Jocasta.
Aristotle wrote in his Poetics that Oedipus the King was the great exemplar of Greek tragedy; the play is now widely regarded as Sophocles' masterpiece.
Many parts or elements of the myth of Oedipus take place before the opening scene of the play. They may be described or referred to in the text. In his youth, Laius was a guest of King Pelops of Elis, and became the tutor of Chrysippus, youngest of the king's sons, in chariot racing. He then violated the sacred laws of hospitality by abducting and raping Chrysippus, who according to some versions, killed himself in shame. This murder cast a doom over Laius, his son Oedipus, and all of his other descendants. However, most scholars are in agreement that the seduction or rape of Chrysippus was a late addition to the Theban myth.
Oedipus rex is an "Opera-oratorio after Sophocles" by Igor Stravinsky, scored for orchestra, speaker, soloists, and male chorus. The libretto, based on Sophocles's tragedy, was written by Jean Cocteau in French and then translated by Abbé Jean Daniélou into Latin (the narration, however, is performed in the language of the audience).
Oedipus rex was written towards the beginning of Stravinsky's neoclassical period. He had considered setting the work in Ancient Greek, but decided ultimately on Latin: in his words "a medium not dead but turned to stone."
Oedipus rex is sometimes performed in the concert hall as an oratorio, similarly to its original performance in the Théâtre Sarah Bernhardt in Paris on 30 May 1927, and at its American premiere the following year, given by the Boston Symphony Orchestra and the Harvard Glee Club.
It has also been presented on stage as an opera, the first such performance being at the Vienna State Opera on 23 February 1928. It was subsequently presented three times by the Santa Fe Opera in 1960, 1961, and 1962 with the composer in attendance. In January 1962 it was performed in Washington, D.C., by the Opera Society of Washington (now the Washington National Opera) with the composer conducting.
An Evening Wasted with Tom Lehrer is an album recorded by Tom Lehrer, the well-known satirist and Harvard lecturer. The recording was made on March 20-21, 1959 in Sanders Theater at Harvard.
The lyrics parody springtime songs.
As is common with Lehrer's songs, the self-described "corncrake-voiced" delivery is accompanied by a series of contrived rhymes. The poison names produce rhymes such as "try an' hide" with "cyanide", and "quickenin'" with "strychnine".
This song was also part of the studio-recorded album, More of Tom Lehrer, and had its moments. Before the first orchestra rehearsal, the pianist had seen the sheet music. It had only the notes, but no title or lyrics. At first glance, he recognized the style ("Oh, it's a waltz"). However, when the conductor announced the title, saying, "'Poisoning Pigeons in the Park', take one", the pianist shouted, "WHAT?!", and fell off his bench. Observing this, Lehrer remarked, "I had never seen anything like that."
Support us on Patreon and get more content: https://www.patreon.com/classicalvault --- George Frideric Handel Dixit Dominus, HWV 232 Monteverdi Choir English Baroque Soloists Sir John Eliot Gardiner June 2014
Ahead of his performance with the Orchestre Philharmonique du Luxembourg together with the Monteverdi Choir at the Philharmonie, we sat down with Sir John Eliot Gardiner for a new episode of our video series "The Art of Conducting" He talked to us about how the repertoire affects the gestures of conducting and music making, the sound of «period instruments» in today's orchestras, about the similarities between managing a bio-farm & leading an orchestra and much more!
John Eliot Gardiner: Bach's Habit of Imperfection Watch the newest video from Big Think: https://bigth.ink/NewVideo Join Big Think Edge for exclusive videos: https://bigth.ink/Edge ---------------------------------------------------------------------------------- Gardiner, author of the new book, Bach: Music in the Castle of Heaven, has a unique perspective on Bach. He is both a historian and a world-renowned conductor who has throughout his career made hundreds of recordings on the prestigious Deutsche Grammophon label. Bach, the orphan rebel, had a suspicion of authority that ran deep throughout his life, and made him an often domineering and unpleasant person to deal with. Gardiner doesn't see any contradiction here. "The very fact that this music is so profound and so uplifting and th...
__ Beethoven: Symphony no. 9 in D minor, op. 125 Lucy Crowe | Soprano Jess Dandy | Contralto Ed Lyon | Tenor Tareq Nazmi | Bass Orchestre Révolutionnaire et Romantique Monteverdi Choir Conducted by John Eliot Gardiner __
Georg Friedrich Handel (1685-1759) Israel in Egypt Oratorio. Click to activate the English subtitles for the presentation (00:00-00:04:08) Overture: Lamentations of the Israelites for the death of Joseph 00:00 Exodus 1. "Now here arose", récitatif P. Elliott 02:13 2. "And the children of Israel sighed by reason of the bondage: And their cry..." chorus 02:38 3. "Then sent He Moses", récitatif P. Elliott 06:34 4. "They loathed to drink", chorus 07:08 5. "Their land brought", aria A. Stafford 09:26 6. "He spake the word", chorus 11:43 7. "He gave them hailstones", chorus 13:51 8. "He sent a thick darkness", chorus 16:04 9. "He smote all the first-born", chorus 19:24 10. "But as for His people': chorus 21:51 11. "Egypt was glad", chorus 26:01 12. "He rebuked the Red Sea", chorus 29:04 13. "He ...
Filmed and recorded in the Sheldonian Theatre’s architectural splendour, this acclaimed performance from Good Friday 2021 marked Sir John Eliot Gardiner’s return to live concerts. He says: “I recorded the piece for the first time for Archiv Produktion back in 1986 and it remains truly special to me. Bach conceived the piece as much as an act of worship as a work of religious art. Almost 300 years after it was heard for the first time, it continues to move listeners of all faiths and none.” John Eliot Gardiner – Bach: Johannes-Passion, BWV 245 / Part I: 1. Herr, unser Herrscher Listen to 'St. John Passion': https://dgt.link/gardiner-bach Subscribe here for more classical video clips – The Best Of Classical Music: http://bit.ly/Subscribe-DG Discover full concert performances on DG Premium...
Listen to more Mendelssohn from Sir John Eliot Gardiner: https://smarturl.it/mendelssohnapple Buy Gardiner's Mendelssohn CD box set: https://smarturl.it/mendelssohncycle ---------------------------------------------------------------------------------------------------------------- Subscribe to the LSO's channel: http://bit.ly/LSOsubscribe Subscribe to LSO newsletter: https://smarturl.it/lsonewsletter Follow the LSO on Instagram: https://www.instagram.com/londonsymphony Facebook: https://www.facebook.com/londonsymphony Twitter: https://twitter.com/londonsymphony Website: http://lso.co.uk Apple Music: http://geni.us/yH0sXY Spotify: http://spoti.fi/291cCk0
This Month in Christian History: Today, Cody Crouch celebrates the life and work of John Eliot! Eliot was on a mission to translate the Bible for Native Americans in their own language. Up until this point, the Bible had never been translated into a language that wasn't native to the translator. Watch full episodes of This Month in Christian History on TBN: https://watch.tbn.org/this-month-in-christian-history SUBSCRIBE: https://www.youtube.com/channel/UCyJAa_BaiG3N09hoUL8ZXlQ?sub_confirmation=1 This Month in Christian History aims to honor the significance of the past. We’ve identified saints, athletes, missionaries, and regular people who did extraordinary things in the corresponding month throughout history. These people and events impacted everything from the smallest towns to the e...
Elton John's new album The Lockdown Sessions: https://EltonJohn.lnk.to/TheLockdownSessionsID Directed by Alek Keshishian and starring Yasmeen Ghauri and Chris Isaak, the video for "Sacrifice" was filmed in Los Angeles in 1989. This second single from Sleeping With The Past became Elton's first solo #1 in the UK. Explore the music of Elton John: https://eltonjohn.lnk.to/essentialsID Buy Diamonds 2CD: https://eltonjohn.lnk.to/DiamondsID Buy Diamonds Deluxe Boxset: https://eltonjohn.lnk.to/DiamondsDeluxeID Buy Diamonds Vinyl: https://eltonjohn.lnk.to/DiamondsVinylID Watch more Elton videos: https://EltonJohn.lnk.to/WatchMore Subscribe to Elton channel: http://bit.ly/EltonYTSubscribe About Elton John: Welcome to the official Elton John channel. Subscribe today for a vast video collecti...
John Eliot was a Puritan missionary to the American Indians who some called "the apostle to the Indians" and the founder of Roxbury Latin School in the Massachusetts Bay Colony in 1645. In 1660 he completed the enormous task of translating the Eliot Indian Bible into the Massachusetts Indian language, producing more than two thousand completed copies.
In this episode of Illuminating the Unseen, Jaimie examines the efforts of missionaries in the late 1700s and early 1800s to urge Indigenous people in Massachusetts to convert to Christianity. She focuses on Rev. John Eliot, a Congregational minister in Boston's North End, and his work with a prominent missionary group, the Society for Propagating the Gospel Among the Indians and Others in North America. Jaimie also considers the relationship between Congregational missionaries and Anglican missionaries as they both set out to impose their faith and cultural norms on Indigenous people.
Georg Friedrich Handel (1685-1759) Israel in Egypt Oratorio. Click to activate the English subtitles for the presentation (00:00-00:04:08) Overture: Lamentations of the Israelites for the death of Joseph 00:00 Exodus 1. "Now here arose", récitatif P. Elliott 02:13 2. "And the children of Israel sighed by reason of the bondage: And their cry..." chorus 02:38 3. "Then sent He Moses", récitatif P. Elliott 06:34 4. "They loathed to drink", chorus 07:08 5. "Their land brought", aria A. Stafford 09:26 6. "He spake the word", chorus 11:43 7. "He gave them hailstones", chorus 13:51 8. "He sent a thick darkness", chorus 16:04 9. "He smote all the first-born", chorus 19:24 10. "But as for His people': chorus 21:51 11. "Egypt was glad", chorus 26:01 12. "He rebuked the Red Sea", chorus 29:04 13. "He ...
This Month in Christian History: Today, we celebrate the life and work of John Eliot! Eliot was on a mission to translate the Bible more Native Americans in the own language. Up until this point, the Bible had never been translated into a language that wasn't native to the translator. Watch more full episodes on TBN On Demand: https://watch.tbn.org/videos/this-month-in-christian-history-july This Month in Christian History aims to honor the significance of the past. We’ve identified saints, athletes, missionaries, and regular people who did extraordinary things in the corresponding month throughout history. These people and events impacted everything from the smallest towns to the entire world. Some of them may not have a day dedicated to them on the calendar but are definitely worth lea...
Ahead of his performance with the Orchestre Philharmonique du Luxembourg together with the Monteverdi Choir at the Philharmonie, we sat down with Sir John Eliot Gardiner for a new episode of our video series "The Art of Conducting" He talked to us about how the repertoire affects the gestures of conducting and music making, the sound of «period instruments» in today's orchestras, about the similarities between managing a bio-farm & leading an orchestra and much more!
__ Beethoven: Symphony no. 9 in D minor, op. 125 Lucy Crowe | Soprano Jess Dandy | Contralto Ed Lyon | Tenor Tareq Nazmi | Bass Orchestre Révolutionnaire et Romantique Monteverdi Choir Conducted by John Eliot Gardiner __
Robert Schumann (1810 - 1856) Symphony No.1 In B Flat, Op.38, 'Spring' (00:00:00) 1. Andante Un Poco Maestoso (00:10:54) 2. Larghetto (00:17:16) 3. Scherzo- Molto Vivace (00:22:31) 4. Allegro Animato E Grazioso Symphony No.2 In C, Op.61 (00:30:23) 1. Sostenuto Assai (00:42:35) 2. Scherzo- Allegro Vivace (00:49:36) 3. Adagio Espressivo (00:59:44) 4. Allegro Molto Vivace Symphony No.3 In E Flat, 'Rhenish' (01:08:12) 1. Lebhaft (01:17:02) 2. Scherzo (01:22:56) 3. Nicht Schnell (01:27:33) 4. Feierlich (01:32:28) 5. Lebhaft Symphony No.4 In D Minor, Op.120 (revised version, 1851) (01:38:14) 1. Ziemlich Langsam, Lebhaft (01:48:12) 2. Romanze. Ziemlich langsam (01:51:51) 3. Scherzo. Lebhaft (01:56:42) 4. Etwas Zurückhaltend, Langsam (01:58:14) 5. Lebhaft Symphony No.4 In D Minor, Op.120 (ori...
Sir John Eliot Gardiner, CBE (born 20 April 1943) is an English conductor.
Born in Fontmell Magna, Dorset, Gardiner's early musical experience came largely through singing with his family and in a local church choir. A self-taught musician who also played the violin, he began to study conducting at the age of 15. He was educated at Bryanston School, then studied history, Arabic, and medieval Spanish at King's College, Cambridge.
While an undergraduate at Cambridge he launched his career as a conductor with a performance of Vespro della Beata Vergine by Monteverdi, in King's College Chapel on 5 March 1964. This either featured or led to the foundation of the Monteverdi Choir, with which he made his London conducting debut at the Wigmore Hall in 1966.
Whilst at Cambridge, he conducted the Oxford and Cambridge Singers on a concert tour of the Middle East.
After graduating with a master's degree in history, Gardiner continued his musical studies at King's College London under Thurston Dart and in Paris with Nadia Boulanger, whose music had been a very early influence. In 1968 he founded the Monteverdi Orchestra. Upon changing from modern instruments to period instruments in 1977, the orchestra changed its name to the English Baroque Soloists in 1978. In 1969 Gardiner made his opera debut with a performance of Mozart's The Magic Flute at the English National Opera. Four years later, in 1973, he made his first appearance at the Covent Garden conducting Gluck's Iphigénie en Tauride. The English Baroque Soloists made their opera debut with him in the 1977 Innsbruck Festival of Early Music, performing Handel's Acis and Galatea on period instruments. His American debut came in 1979 when he conducted the Dallas Symphony Orchestra. He then became the lead conductor of Canada's CBC Vancouver Orchestra from 1980 to 1983.
It seems that most of the songs that you hear these days on the radio played by the disc-jockeys, apart from rock-n-roll and other childrens' records, tend to be motion-picture title-songs. appa
Y producers feel that we will not attend their movies unless we have the titles well drilled into our heads in advance.
Of course, we don't go anyway, but at least this way they make back on the song some of what they've lost on the picture. with the rise of the motion-picture title-song, we've had such hits in t
St few years as the ten commandments mambo, brothers karamazov cha-cha, incredible shrinking man, I love you. I'm sure you're all familiar with these, but a few years ago a motion picture versio
Eared of sophocles' immortal tragedy oedipus rex. this picture played only in the so-called art theaters, and it was not a financial success. and I maintain that the reason it was not a financia
Cess...
(you're away ahead of me.) ...was, that it did not have a title tune, which the people could hum and which would make them actually eager to attend this particular play. so, I have attempted to
Y this and here then is the prospective title song from oedipus rex.
From the Bible to the popular song,
There's one theme that we find right along.
Of all ideals they hail as good,
The most sublime is motherhood.
There was a man, oh, who it seems,
Once carried this ideal to extremes.
He loved his mother and she loved him,
And yet his story is rather grim.
There once lived a man named oedipus rex.
You may have heard about his odd complex.
His name appears in freud's index
'cause he loved his mother.
His rivals used to say quite a bit,
That as a monarch he was most unfit.
But still in all they had to admit
That he loved his mother.
Yes he loved his mother like no other.
His daughter was his sister and his son was his brother.
One thing on which you can depend is,
He sure knew who a boy's best friend is!
When he found what he had done,
He tore his eyes out one by one.
A tragic end to a loyal son
Who loved his mother.
So be sweet and kind to mother,
Now and then have a chat.
Buy her candy or some flowers or a brand new hat.
But maybe you had better let it go at that!
Or you may find yourself with a quite complex complex,
And you may end up like oedipus.
I'd rather marry a duck-billed platypus,
Than end up like old oedipus rex.