- published: 21 Mar 2020
- views: 216113
'+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; })); }); -->
John Milford Rutter CBE (born 24 September 1945) is a British composer, conductor, editor, arranger and record producer, mainly of choral music.
Born in London, the son of an industrial chemist and his wife, Rutter grew up living over the Globe pub on London's Marylebone Road. He was educated at Highgate School, where his fellow pupils included John Tavener, Howard Shelley, Brian Chapple and Nicholas Snowman; he then read music at Clare College, Cambridge, where he was a member of the choir. He served as director of music at Clare College from 1975 to 1979 and led the choir to international prominence.
In 1981, Rutter founded his own choir, the Cambridge Singers, which he conducts and with which he has made many recordings of sacred choral repertoire (including his own works), particularly under his own label Collegium Records. He resides at Duxford in Cambridgeshire and frequently conducts many choirs and orchestras around the world.
In 1980, he was made an honorary Fellow of Westminster Choir College, Princeton, and in 1988 a Fellow of the Guild of Church Musicians. In 1996, the Archbishop of Canterbury conferred a Lambeth Doctorate of Music upon him in recognition of his contribution to church music. In 2008, he was made an honorary Bencher of the Middle Temple while playing a significant role in the 2008 Temple Festival.
John Rutter is an American football coach in the United States.
Coach John Rutter was the head college football coach for the Southwest Minnesota State Mustangs located in Marshall, Minnesota. He held that position for 3 seasons, from 1968 until 1970. His coaching record at Southwest Minnesota State was 7 wins and 19 losses. As of the conclusion of the 2010 season, this ranks him #7 at Southwest Minnesota State in total wins and #7 at the school in winning percentage (.269).
Cambridge Singers is an English mixed voice chamber/choral group formed in 1981 by their director John Rutter with the primary purpose of making recordings under their own label "Collegium".
The group initially comprised former singers from Clare College, where Rutter had previously been the music director.
They have been involved in the last four Fresh Aire albums (about "mankind's curiosities") of the Mannheim Steamroller band, by composer Chip Davis, but they are primarily a classical choral group.
They have recorded several highly acclaimed Christmas albums, including Christmas Night, Christmas Star, Christmas with the Cambridge Singers, and The Cambridge Singers Christmas Album.
"Come Live With Me" is a single from synthpop trio Heaven 17 which appeared on the album The Luxury Gap. It was written by all three members. The single was released in mid-1983 and peaked at #5 in the UK, spending 11 weeks on the chart. This would be the band's last top 10 hit in the UK singles chart until 1992 which saw the release of "Temptation (Brothers In Rhythm Remix)".
The track peaked at #2 on the Readers charts for Number One magazine. Record Mirror's list for Top 12" singles featured the single at number #9.
The track remains one of Heaven 17's most performed songs.
Cambridge is a city in Middlesex County, Massachusetts, United States, in the Boston metropolitan area. Situated directly north of the city of Boston, across the Charles River, it was named in honor of the University of Cambridge in the United Kingdom, an important center of the Puritan theology embraced by the town's founders. Cambridge is home to two of the world's most prominent universities, Harvard University and the Massachusetts Institute of Technology. Cambridge has also been home to Radcliffe College, once one of the leading colleges for women in the United States before it merged with Harvard. According to the 2010 Census, the city's population was 105,162.As of July 2014, it was the fifth most populous city in the state, behind Boston, Worcester, Springfield, and Lowell. Cambridge was one of the two seats of Middlesex County prior to the abolition of county government in 1997; Lowell was the other.
Cambridge is a brand of cigarettes made by Philip Morris USA.
Cambridge is a federal electoral district in Ontario, Canada, that has been represented in the House of Commons of Canada since 1979.
The district consists of the city of Cambridge, Ontario and the Township of North Dumfries, Ontario.
The federal electoral district was created in 1976 and consisted of the city of Cambridge and the Township of North Dumfries. In 1987, part of the city of Kitchener was added to the district. In 1996, the boundaries were redrawn again to include a slightly different section of Kitchener. The current boundaries, which are the same as the original definition and contain no parts of Kitchener, were defined in 2003.
This riding lost territory to Kitchener South—Hespeler and gained some territory from Brant during the 2012 electoral redistribution.
Note: Conservative vote is compared to the total of the Canadian Alliance vote and Progressive Conservative vote in 2000 election. John Gots' vote as a CHP candidate is compared to his vote in 2000 as an unaffiliated candidate.
John Rutter's popular music embraces hymn settings for choirs, Christmas carols, and epic choral works such as the Gloria and the Requiem. He's also written orchestral and instrumental pieces and TV soundtracks. Rutter's larger choral works, Gloria (1974), Requiem (1985), Magnificat (1990), Psalmfest (1993) and Mass of the Children (2003) have been performed countless times in Britain, North America, and a growing number of other countries. Rutter's music is eclectic, showing the influences of the French and English choral traditions of the early 20th century, as well as of light music and American classic song writing. Almost every choral anthem and hymn that he writes, in addition to the standard piano or organ accompaniment, has a subsequent orchestral accompaniment as well, using varie...
Conducted by John Rutter Cathedral of Our Lady of the Angels, February 17, 2008 The Mark Thallander Foundation Choir Festival
'For the Beauty of the Earth' From the album ‘Be Thou My Vision’ - Sacred Music by John Rutter Composer John Rutter Conductor John Rutter Choir The Cambridge Singers Orchestra City of London Sinfonia Buy, download or stream here: lnk.to/Bethoumyvision Buy sheet music: https://bit.ly/3T7inTs An audio learning guide for this title is available from ChoirGuides: https://bit.ly/3dnhMNC Find more of the catalogue and curated playlists by subscribing to the channel: http://bit.ly/2uQMe9P Social Media Links: Facebook: https://www.facebook.com/johnruttermusic Twitter: https://twitter.com/johnmrutter Instagram: https://www.instagram.com/johnrutter.composer/ Website: https://www.johnrutter.com LYRICS: For the beauty of the earth, For the beauty of the skies, For the love which from our birth ...
Conducted by John Rutter Cathedral of Our Lady of the Angels, February 17, 2008 The Mark Thallander Foundation Choir Festival
Conducted by John Rutter Cathedral of Our Lady of the Angels, February 17, 2008 The Mark Thallander Foundation Choir Festival
LIVE by Bel Canto Choir Vilnius at the concert "Open to the World '22" (November 2022). Apple Music: https://apple.co/3s4hVJL Spotify: https://spoti.fi/3F0cPDI Amazon Music: https://amzn.to/3Kz9mwS "For the Beauty of the Earth" (John Rutter). Live by Bel Canto Choir Vilnius and Motiejus Bazaras (piano), conducted by the choir's conductor Egidijus Kaveckas. Live at the concert "Open to the World '22: Zero8 & Bel Canto Choir Vilnius" at the Vilnius Philharmonics on November 27, 2022. Credits: Audrius Valatkevičius (Executive Producer). Video & Audio Production by Baltic Mobile Recordings (http://www.bmr.lt): Vilius Keras & Aleksandra Kerienė (Recording Producers), Mažvydas Tautkus (Video Director), Evelina Bajorinienė (Assistant Director). Lighting Design: Lech Bedulskij (Mano Disco). The...
'The Lord Bless You and Keep You' From the album ‘Be Thou My Vision’ - Sacred Music by John Rutter Composer John Rutter Conductor John Rutter Choir The Cambridge Singers Orchestra City of London Sinfonia Buy, download or stream here: lnk.to/Bethoumyvision Buy sheet music: https://bit.ly/3TewMNB An audio learning guide for this title is available from ChoirGuides: https://bit.ly/3dnhMNC Find more of the catalogue and curated playlists by subscribing to the channel: http://bit.ly/2uQMe9P Social Media Links: Facebook: https://www.facebook.com/johnruttermusic Twitter: https://twitter.com/johnmrutter Instagram: https://www.instagram.com/johnrutter.composer/ Website: https://www.johnrutter.com LYRICS: The Lord bless you and keep you: the Lord make his face to shine upon you and be gracio...
http://rivertreesingers.org — If you would like to be a participant in the Rivertree Singers & Friends Choral Festival, please check our website for details each spring. Jump to a specific movement: 01:11 - Requiem aeternam 06:59 - Psalm 130: Out of the deep 12:42 - Pie Jesu 16:47 - Sanctus – Benedictus 19:04 - Agnus Dei 24:45 - Psalm 23: The Lord is my shepherd 29:53 - Lux aeterna The soloists’ names in order of appearance: Heather Huron, Nikki Eoute Warren Cook and Rivertree Singers hosted the second Rivertree Singers & Friends, a choral festival and concert in Greenville, SC. 120 additional singers from 11 states joined the 42-voice Rivertree Singers and orchestra for a beautiful performance of John Rutter’s well-loved Requiem. The performance was dedicated to the congregation and l...
2024中美合唱团30周年音乐会 20240622 Contents: 0:00 introduction 11:35 Look at the World
This song, filmed on the beautiful campus of Great Lakes Adventist Academy, combines the youthful enthusiasm of the students with the rich harmonies of Rutter. Played by the Advent Heralds Symphony and Singers, this song is our effort to reveal the true beauty and love of the God we serve. We hope you enjoy this video and share it with all your friends and loved ones. Special thanks to the students of of Great Lakes Adventist Academy who used their talents to glorify God’s name in the making of this video! For more information on Great Lakes Adventist Academy: www.GLAA.net Producer: Craig Cleveland Director: Mark Paden Director of Music: James Cleveland Audio Engineering: Advent Herald Studios Audio Mastered by: Ryo Fusamae
Online purchase or streaming (Spotify, iTunes, Amazon Music, Deezer, Google Play): https://brilliant-classics.lnk.to/ChoralClassics More Information: https://www.brilliantclassics.com/articles/c/choral-classics-from-cambridge/ Social media: Brilliant Classics Facebook: https://brilliant-classics.lnk.to/Facebook Brilliant Classics Instagram: https://brilliant-classics.lnk.to/Instagram Spotify Playlists: Brilliant Classics Spotify: https://brilliant-classics.lnk.to/Spotify New Classical Releases: https://brilliant-classics.lnk.to/NewReleases The Best of Liszt: https://brilliant-classics.lnk.to/Playliszt The Best of Bach: https://brilliant-classics.lnk.to/BestOfBachPlaylist Most Popular Piano Music: https://brilliant-classics.lnk.to/MostPopularPiano Beautiful Classical Music: https://brilli...
I. Lowell Mason arr. Rutter : Joy To The World 00:00-02:35 II. J. P. Sweelinck : Hodie Christus natus est 02:35-05:30 III. John Rutter : Angels' Carol 05:30-08:50 IV. Arr. Charles Wood : Ding Dong! Merrily On High 08:50-10:35 V. Arr. Rutter : Twas in the Moon of Winter Time 10:35-12:25 VI. Arr. Rutter : Personent Hodie 12:25-14:10 VII. Arr. David Willocks : Sussex Carol 14:10-15:55 VIII. Samuel Scheidt : In Dulci Jubilo 15:55-19:25 IX. Arr. Rutter : Somerset Wassail 19:25-21:30 X. Handel : For Unto Us A Child Is Born 21:30-25:45 XI. Adolphe Adam arr. Rutter : O Holy Night 25:45-32:25 XII. John Rutter : What Sweeter Music 32:25-36:45 XIII. T.L. de Victoria : O Magnum Mysterium 36:45-40:50 XIV. Arr. Rutter : Still, Still, Still 40:50-43:10 XV. Trad : Coventry Carol 43:10-45:50 XVI. Arr. R...
SATB version.
Psalm 42 Sicut cervus desiderat ad fontes aquarum, ita desiderat anima mea ad te, Deus. *****-----*****-----***** Like as the hart desireth the water-brooks: so longeth my soul after thee, O God. *****-----*****-----*****
The Choir of Trinity College Cambridge recorded in Trinity College Chapel Conductor: Stephen Layton Organ: Harrison Cole What Sweeter Music by John Rutter, setting words by Robert Herrick. Video production and editing: David Hinitt Adrian Peacock Paul Nicholson Photo of Great Court: Jehangir Cama - To join Trinity College Choir see: http://www.trinitycollegechoir.com/join/ - To watch Trinity College Choir singing live in Trinity Chapel see: http://www.youtube.com/user/TrinityCollegeChoir - To search and browse the Listen Again archive see: http://trinitycollegechoir.com/webcasts/ - Like us on Facebook: https://www.facebook.com/TrinCollChoir/ - Follow us on Twitter: https://twitter.com/TrinCollChoir
Carols From King’s – The Choir of King’s College, Cambridge (Full Album) https://youtu.be/zieoBKkN9qE
Provided to YouTube by NAXOS of America The Lord bless you and keep you · Cambridge Singers Be Thou My Vision - Sacred Music by John Rutter ℗ 2004 Collegium Released on: 2004-10-01 Choir: Cambridge Singers Conductor: John Rutter Orchestra: City of London Sinfonia Composer: John Rutter Auto-generated by YouTube.
John Milford Rutter CBE (born 24 September 1945) is a British composer, conductor, editor, arranger and record producer, mainly of choral music.
Born in London, the son of an industrial chemist and his wife, Rutter grew up living over the Globe pub on London's Marylebone Road. He was educated at Highgate School, where his fellow pupils included John Tavener, Howard Shelley, Brian Chapple and Nicholas Snowman; he then read music at Clare College, Cambridge, where he was a member of the choir. He served as director of music at Clare College from 1975 to 1979 and led the choir to international prominence.
In 1981, Rutter founded his own choir, the Cambridge Singers, which he conducts and with which he has made many recordings of sacred choral repertoire (including his own works), particularly under his own label Collegium Records. He resides at Duxford in Cambridgeshire and frequently conducts many choirs and orchestras around the world.
In 1980, he was made an honorary Fellow of Westminster Choir College, Princeton, and in 1988 a Fellow of the Guild of Church Musicians. In 1996, the Archbishop of Canterbury conferred a Lambeth Doctorate of Music upon him in recognition of his contribution to church music. In 2008, he was made an honorary Bencher of the Middle Temple while playing a significant role in the 2008 Temple Festival.
How do you capture the wind on the water?
How do you count all the stars in the sky?
How do you measure the love of a mother
Or how can you write down a baby's first cry?
Candlelight, angel light, firelight and star-glow
Shine on his cradle till breaking of dawn
Silent night, holy night, all is calm and all is bright
Angels are singing; the Christ child is born
Shepherds and wise men will kneel and adore him
Seraphim round him their vigil will keep
Nations proclaim him their Lord and their Saviour
But Mary will hold him and sing him to sleep
Candlelight, angel light, firelight and star-glow
Shine on his cradle till breaking of dawn
Silent night, holy night, all is calm and all is bright
Angels are singing; the Christ child is born
Find him at Bethlehem laid in a manger
Christ our Redeemer asleep in the hay
Godhead incarnate and hope of salvation
A child with his mother that first Christmas Day
Candlelight, angel light, firelight and star-glow
Shine on his cradle till breaking of dawn
Silent night, holy night, all is calm and all is bright