- published: 15 May 2015
- views: 6086362
'+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; })); }); -->
Paul Hindemith (16 November 1895 – 28 December 1963) was a German composer, violist, violinist, teacher and conductor. Notable compositions include his song cycle Das Marienleben (1923) and opera Mathis der Maler (1938). Hindemith's most popular work, both on record and in the concert hall, is probably the Symphonic Metamorphosis of Themes by Carl Maria von Weber, written in 1943.
Born in Hanau, near Frankfurt am Main, Hindemith was taught the violin as a child. He entered Frankfurt's Hoch’sche Konservatorium, where he studied violin with Adolf Rebner, as well as conducting and composition with Arnold Mendelssohn and Bernhard Sekles. At first he supported himself by playing in dance bands and musical-comedy groups. He became deputy leader of the Frankfurt Opera Orchestra in 1914, and was promoted to leader in 1917. He played second violin in the Rebner String Quartet from 1914.
Hindemith was conscripted into the German army in September, 1917 and sent to join his regiment in Alsace in January, 1918. There he was assigned to play bass drum in the regiment band, and also formed a string quartet. In May 1918 he was deployed to the front in Flanders, where he served as a sentry; his diary shows him "surviving grenade attacks only by good luck," according to New Grove Dictionary. After the armistice he returned to Frankfurt and the Rebner Quartet.
A violin concerto is a concerto for solo violin (occasionally, two or more violins) and instrumental ensemble, customarily orchestra. Such works have been written since the Baroque period, when the solo concerto form was first developed, up through the present day. Many major composers have contributed to the violin concerto repertoire, with the best known works including those by Bach, Bartók, Beethoven, Brahms, Bruch, Mendelssohn, Mozart, Paganini, Prokofiev, Shostakovich, Sibelius, Tchaikovsky, and Vivaldi. Traditionally a three-movement work, the violin concerto has been structured in four movements by a number of modern composers, including Dmitri Shostakovich, Igor Stravinsky, and Alban Berg (in the latter, the first two and last two movements are connected, with the only break coming between the second and third). In some violin concertos, especially from the Baroque and modern eras, the violin (or group of violins) is accompanied by a chamber ensemble rather than an orchestra—for instance, Vivaldi's L'estro armonico, originally scored for four violins, two violas, cello, and continuo, and Allan Pettersson's first concerto, for violin and string quartet.
The Concerto for Violin and Orchestra is a work by Philip Glass, written for and performed by Dorothy Pixley-Rothschild in the summer of 1960 at the summer school of the Aspen Music Festival, under the guidance of Darius Milhaud.
The visiting composer Aaron Copland criticized Glass's orchestration of the piece, as Glass remembered in 1989: "We got into a big argument. He didn't like me very much. I kind of told him that I thought he was wrong. By the way, the concerto was played at the end of the summer, and it turned out I was right."
Dissatisfied with his works composed before 1966, the composer also withdrew this piece.
⭐ Download my practice app Tonic: https://tonicmusic.app/practice-together If you're going to be performing in front of people, then you'd best be practicing in front of people too, and Tonic helps you build your confidence with a supportive community of other musicians! Not to mention it just makes practicing so much fun! 🔔 Subscribe to the channel for the latest vids: https://www.youtube.com/@RayChenViolinist?sub_confirmation=1 ========== Live concert on 28th February, 2015 Ray Chen with the Gothenburg Symphony Orchestra and Maestro Kent Nagano I. Allegro molto appassionato II. Andante III. Allegretto non troppo – Allegro molto vivace _______________________________________ RAY CHEN m e r c h : https://www.raychen.plus/ d i s c o r d : https://discord.gg/raychen w e b s i t e : ...
Legendary violinist Itzhak Perlman performs the Beethoven Violin Concerto with the Berliner Philharmoniker and conductor Daniel Barenboim, recorded live in 1992 at Konzerthaus Berlin. Album available here: https://w.lnk.to/bvclLY 01:10 Allegro ma non troppo 25:42 Larghetto – 34:36 Rondo (Allegro) Itzhak Perlman (Violin) Daniel Barenboim (Conductor) Berliner Philharmoniker (Ensemble) Recorded Live: February 1992, Konzerthaus Berlin. __________ Warner Classics ► Website: http://www.warnerclassics.com Subscribe to our: ► YT- Channel: https://wnrcl.me/subscribeYT ► Newsletter https://wnrcl.me/subscribeNL Follow us on: ► Facebook: http://www.fb.com/WarnerClassicsErato ► Instagram: http://www.instagram.com/warner_classics ► Twitter: http://twitter.com/WarnerClassics ► YouTu...
🎵 Discover Classical Music with the Detroit Symphony Orchestra 🎵 Welcome to the official YouTube channel of the Detroit Symphony Orchestra. Whether you’re a classical music fan looking for world premieres and symphonic masterpieces or are searching for an inspiring background soundtrack for relaxing, studying, working, or sleeping, the DSO has you covered. Located in Midtown Detroit, historic Orchestra Hall has been the eminent music venue of Southeast Michigan for over a century, hosting top artists, living composers, and diverse orchestral voices from around the world. Get tickets to join us in person or catch the riveting live stream for free at dso.org. Stay in tune with the Detroit Symphony Orchestra - Visit our Website and explore events: dso.org - Follow us on Instagram: @det...
Download the Tonic App to practice your instrument with a community of other musicians: https://tonicmusic.app/practice-together 🔔 Subscribe to the channel for the latest vids: https://www.youtube.com/@RayChenViolinist?sub_confirmation=1 Performed live on March 26th, 2015 with the Gothenburg Symphony Orchestra and Maestro Kent Nagano. I. Allegro moderato II. Adagio di molto III. Allegro, ma non tanto
Wolfgang Amadeus Mozart (1756-1791) - Violin Concerto No. 3 in G major, K. 216 (1775) Cadenza by Hilary Hahn 1. Allegro (00:08) 2. Adagio (10:40) 3. Rondeau: Allegro (21:07) Hilary Hahn, violin Gustavo Dudamel, conductor Stuttgart Radio Symphony Orchestra Birthday Concert for Pope Benedict XVI (2007)
Peter Tschaikowsky: Violinkonzert D-Dur op. 35 ∙ I. Allegro moderato 00:00 ∙ II. Canzonetta. Andante 20:40 ∙ III. Finale. Allegro vivacissimo 27:46 ∙ hr-Sinfonieorchester – Frankfurt Radio Symphony ∙ Hilary Hahn, Violine ∙ Andrés Orozco-Estrada, Dirigent ∙ Extra-Konzert ∙ hr-Sendesaal Frankfurt, 7. September 2023 ∙ Website: http://www.hr-sinfonieorchester.de ∙ Facebook: http://www.facebook.com/hrsinfonieorchester ∙ ARD Mediathek: https://www.ardmediathek.de/hr/sendung/hr-sinfonieorchester/Y3JpZDovL2hyLW9ubGluZS8zODIyMDAxOQ/ ∙ Spenden / Donations: https://www.hr-sinfonieorchester.de/spende-102.html ∙ #4K © 2023 Hessischer Rundfunk (hr)
Subscribe and turn on notifications to be alerted of our uploads! https://bit.ly/3l3yzDc If you like our work, feel free to pay us a coffee ❤️ https://www.buymeacoffee.com/classicaltunes 2004 ITS Philharmonic Orchestra, Louis Jullien / All Rights Reserved Violin Concerto in A minor, BWV 1041 00:00:00 Allegro moderato 00:03:46 Andante 00:09:26 Allegro assai Violin Concerto in E major, BWV 1042 00:12:56 Allegro 00:20:47 Adagio 00:26:38 Allegro assai Double Violin Concerto in D minor, BWV 1043 00:29:16 Vivace 00:32:59 Largo, ma non tanto 00:39:19 Allegro Concerto for 3 Violins and Strings in D major, BWV 1064r 00:43:55 Adagio 00:50:30 Allegro 00:56:07 Allegro Violin Concerto G minor, BWV 1056r 01:00:42 Allegro 01:04:23 Largo 01:06:58 Presto Concerto for Violin and Oboe in C min...
Violin Concerto | Maestro's Orchera | Truly Live in Concert - Chennai | Mercuri Foundation #ilaiyaraaja #ViolinConcerto #chennailiveconcert #ilaiyaraaja #mercurilive #trulyliveinconcert #mestroilaiyaraaja #isaignani #stageshow #concert #liveshow #greatviolinconcertos #violinconcerto For the Latest Updates follow us on : YouTube: https://www.youtube.com/channel/UCPMdoWsrNn3qgFvmgMP9FHw Twitter: https://twitter.com/OneMercuri Facebook: https://www.facebook.com/onemercuri?mibextid=ZbWKwL Instagram: https://www.instagram.com/onemercuri?igsh=aTF0YTlua2JsY3Vv
謝謝收看 支持我們的頻道: https://ko-fi.com/teacherandy https://www.patreon.com/Teacher_Andy Facebook:https://www.facebook.com/安迪老師-Teacher-Andy-114371100204890/?modal=admin_todo_tour. 我們的器材 Sony Alpha 6400 https://amzn.to/3yU0jlq Sony a7ii https://amzn.to/3xHaDeY Rode Microphones Rode Wireless GO II https://amzn.to/3lZQn69 Deity Microphone https://amzn.to/3yRgDTN Behringer XENYX 1202FX https://amzn.to/3yU1vVW Moza AirCross 2 https://amzn.to/3xMWgWo
Jean Sibelius - The Violin Concerto in D minor, Op. 47 http://www.agoravox.tv/culture-loisirs/culture/article/barenboim-vengerov-repondent-a-31880 Violin : Maxim Vengerov Conductor : Daniel Barenboim ( http://www.agoravox.tv/culture-loisirs/culture/article/barenboim-vengerov-repondent-a-31880 "Barenboim & Vengerov répondent à Fergus - Concerto pour violon de Sibelius" ) Chicago Symphony Orchestra (CSO) Jean Sibelius - Le Concerto pour violon en ré mineur, op. 47 Violon : Maxim Vengerov Chef d'orchestre : Daniel Barenboim Orchestre Symphonique de Chicago 1. Allegro moderato in D minor 2. Adagio di molto in B-flat major 3. Allegro, ma non tanto in D major 1. Allegro moderato en ré mineur 2. Adagio di molto en si bémol majeur 3. Allegro ma non tanto en ré majeur Das Violinkonzert in d-...
The MSU College of Music is proud to present the MSU Symphony Orchestra led by guest conductor Christopher James Lees, featuring violinist Yvonne Lam making her debut since joining the MSU Music faculty as they present Philip Glass' Violin Concerto No. 1.
Wiener Philharmoniker Gidon Kremer (violin) Christoph von Dohnányi (conductor) Just for promotion. Please write me a direct message if you have complaints about this upload concerning copyright issues. In that case, I will delete the video immediately.
sadly underrated master piece by the low key Mr Glass,bridging the worlds of the classical tradition and the avant garde the violin concerto with its constantly shifting minor modes entice the listener to new levels of listening experience.
Philip Glass (1937) Violin concerto (1987) movement 1 GLASS, Philip (1937) Mvt1 http://www.youtube.com/watch?v=Ku6KTsr86bg Mvt2 http://www.youtube.com/watch?v=YZGnWFG7lVo Mvt3 http://www.youtube.com/watch?v=UVrRhijCkaw
Provided to YouTube by Universal Music Group Glass: Concerto for Violin and Orchestra - I. = 104 - = 120 · Gidon Kremer · Wiener Philharmoniker · Christoph von Dohnányi · Philip Glass Glass: Violin Concerto / Schnittke: Concerto Grosso ℗ 1993 Deutsche Grammophon GmbH, Berlin Released on: 1993-01-01 Producer, Recording Producer: Wolfgang Stengel Studio Personnel, Balance Engineer, Immersive Mix Engineer: Rainer Maillard Studio Personnel, Recording Engineer: Jobst Eberhardt Studio Personnel, Editor: Ingmar Haas Composer: Philip Glass Auto-generated by YouTube.
Provided to YouTube by Universal Music Group Glass: Violin Concerto, 2nd mvt. (Arr. Gelgotas) · Mari Samuelsen · Konzerthausorchester Berlin · Jonathan Stockhammer Mari ℗ 2019 Deutsche Grammophon GmbH, Berlin Released on: 2019-06-07 Producer: Tobias Lehmann Studio Personnel, Recording Engineer: Wolfgang Schiefermair Studio Personnel, Mastering Engineer: Götz-Michael Rieth Composer: Philip Glass Arranger, Work Arranger: Gediminas Gelgotas Auto-generated by YouTube.
Philip Glass: Violin Concerto / Prelude and Dance from Akhnaten / Company (2000) Ulster Orchestra Adele Anthony, violin Takuo Yuasa, conductor Recorded at Ulster Hall, Belfast, Northern Ireland from 19th to 21st May, 1999. Producer and Engineer: Tim Handley. Company I-IV Approximately Till 9:01 Violin Concerto I-III 9:01 - 33:53
sadly underrated master piece by the low key Mr Glass,bridging the worlds of the classical tradition and the avant garde the violin concerto with its constantly shifting minor modes entice the listener to new levels of listening experience.
Integrated contemporary dance group Lantern Dance Theatre performs "Correnti" in the Lady Chapel of Ely Cathedral, August 2016. Choreography: Helen Pettit, Artistic Director. Music: Philip Glass, Violin concerto movement 1, performed by Adele Anthony, Ulster Orchestra conducted by Takeo Yuasa, Naxos label.
Internationally acclaimed Australian saxophonist Amy Dickson in her music-video for Philip Glass' Violin Concerto No 1 (1st movement) . This track features on her second album called Amy Dickson: Glass, Tavener, Nyman which is available now from Sony Music / RCA Red Seal. Having arranged the piece for saxophone, Amy then had to spend a further 6 months learning how to circular breath (a technique where you can both inhale and exhale air at the same time) in order to actually be able to play it! This 'stripped down' video was filmed exclusively by the award winning music channel C Music TV. © C MUSIC ENTERTAINMENT LTD 2011 Credits: Director, Producer & Editor - Julian Rigamonti, Production Manager - Alexandra Edwards, DOP, Lighting & Cameras - James Clenaghan, Camera 2 - Chris Mead...
Paul Hindemith (16 November 1895 – 28 December 1963) was a German composer, violist, violinist, teacher and conductor. Notable compositions include his song cycle Das Marienleben (1923) and opera Mathis der Maler (1938). Hindemith's most popular work, both on record and in the concert hall, is probably the Symphonic Metamorphosis of Themes by Carl Maria von Weber, written in 1943.
Born in Hanau, near Frankfurt am Main, Hindemith was taught the violin as a child. He entered Frankfurt's Hoch’sche Konservatorium, where he studied violin with Adolf Rebner, as well as conducting and composition with Arnold Mendelssohn and Bernhard Sekles. At first he supported himself by playing in dance bands and musical-comedy groups. He became deputy leader of the Frankfurt Opera Orchestra in 1914, and was promoted to leader in 1917. He played second violin in the Rebner String Quartet from 1914.
Hindemith was conscripted into the German army in September, 1917 and sent to join his regiment in Alsace in January, 1918. There he was assigned to play bass drum in the regiment band, and also formed a string quartet. In May 1918 he was deployed to the front in Flanders, where he served as a sentry; his diary shows him "surviving grenade attacks only by good luck," according to New Grove Dictionary. After the armistice he returned to Frankfurt and the Rebner Quartet.