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

Pavel Haas

Pavel Haas (21 June 1899  17 October 1944) was a Czech composer who was murdered during the Holocaust. He was an exponent of Leoš Janáček's school of composition, and also utilized elements of folk music and jazz. Although his output was not large, he is notable particularly for his song cycles and string quartets.

Pre-war

Haas was born in Brno, into a Jewish family. His father, Zikmund, a shoemaker by trade, was from the Moravian region, while his mother, Olga (née Epstein), was born in Odessa. After studying piano privately, Haas began his more formal musical education at the age of 14 and he studied composition at the Brno Conservatory from 1919 to 1921 under Jan Kunc and Vilém Petrželka. This was followed by two years of study in the master class of the noted Czech composer Leoš Janáček. Janáček was far and away Haas's most influential teacher, and Haas, in turn, proved to be Janáček's best student. In 1935 he married Soňa Jakobson, the former wife of Russian linguist Roman Jakobson.

String Quartet No. 2

String Quartet No. 2 may refer to:

  • String Quartet No. 2 (Bartók) – Béla Bartók
  • String Quartet No. 2 (Beethoven) – Ludwig van Beethoven
  • String Quartet No. 2 (Borodin) – Alexander Borodin
  • String Quartet No. 2 (Carter) – Elliott Carter
  • String Quartet No. 2 (Glass) – Philip Glass
  • String Quartet No. 2 (Haas), From the Monkey Mountains – Pavel Haas
  • String Quartet No. 2 (Janáček), Intimate Letters – Leoš Janáček
  • String Quartet No. 2 (Kernis) – Aaron Jay Kernis
  • String Quartet No. 2 (Ligeti) – György Ligeti
  • String Quartet No. 2 (Mendelssohn) – Felix Mendelssohn
  • String Quartet No. 2 (Mozart) – Wolfgang Amadeus Mozart
  • String Quartet No. 2 (Nielsen) – Carl Nielsen
  • String Quartet No. 2 (Piston) – Walter Piston
  • String Quartet No. 2 (Prokofiev) – Sergei Prokofiev
  • String Quartet No. 2 (Revueltas), Magueyes – Silvestre Revueltas
  • String Quartet No. 2 (Schoenberg) – Arnold Schoenberg
  • String Quartet No. 2 (Shostakovich) – Dmitri Shostakovich
  • String Quartet No. 2 (Smetana) – Bedřich Smetana
  • String Quartet No. 2 (Babbitt)

    String Quartet No. 2 (1954) is the second of six chamber-music works in the string quartet medium by the American composer Milton Babbitt.

    Analysis

    Its form evolves from and expounds features of a basic twelve-tone series.

    The pitch material is developed gradually in the opening bars. An interval of a rising minor third predominates in bars 1–3, followed by a concentration on falling major thirds in bars 4–6. The following bars continue in this way, presenting a single interval or pair of intervals, beneath which groupings defined by dynamics and register develop patterns suggested by these intervals, eventually involving all aspects of the musical structure. The quartet alternates such sections of intervallic exposition with sections that develop the intervals presented up to that point, until eleven different ordered pitch-class intervals have been presented and developed until, in a moment referred to by Babbitt as "telling you the butler did it", the set that controls the entire musical structure is revealed by a process of "disambiguation", as Babbitt himself described it (Straus 1986, 22).

    String Quartet No. 2 (Mendelssohn)

    The String Quartet No. 2 in A minor, Op. 13, was composed by Felix Mendelssohn in 1827. Written when he was 18 years old, it was, despite its official number, Mendelssohn's first mature string quartet. One of Mendelssohn's most passionate works, the A minor Quartet is one of the earliest and most significant examples of cyclic form in music.

    Movements

    This work has four movements:

  • Adagio – Allegro vivace
  • Adagio non lento
  • Intermezzo: Allegretto con moto – Allegro di molto
  • Presto – Adagio non lento
  • A typical performance lasts about 30 minutes.

    Composition

    Though Mendelssohn was still a teenager when he wrote this quartet, he was already an experienced composer of chamber music. He had already written the string quintet opus 18, the octet for strings opus 20, and three piano quartets, besides several youthful string quartets which remained unpublished. He had a few months before produced his opera Die Hochzeit des Camacho, which was not a success. (His quartet Opus 12, though it bears an earlier opus number, was actually written two years later.)

    No. 2 (band)

    No. 2 was an American indie rock band that originated in Portland, Oregon in 1996 and consisting of Neil Gust (guitar and vocals), Gilly Ann Hanner (bass, backing vocals; later to be replaced by Jim Talstra) and Paul Pulvirenti (drums).

    History

    No. 2 was formed by frontman Neil Gust after the breakup of Heatmiser. The band's name is a reference to the fact that this was Neil Gust's second band with Virgin Records:

    The band quickly picked up where Heatmiser left off, with songs on their debut album No Memory that echoed the sound and feel of Mic City Sons. No Memory quickly earned the band praise for its melodic hooks and finely crafted songs. No. 2 began small, with Neil Gust asking a few friends to help record some material for a new album.

    The band's first release, a 7" vinyl called "Allistair Chestnut", was released in mid-1999. The A-side, titled "Allistair Chestnut", is a song about falling for someone who is more interested in 'playing the field' than a relationship. The band's first full album, No Memory, was released within months of the "Allistair Chestnut" 7". A full tour followed, mostly opening for former bandmate Sam Coomes's band Quasi. A second album, What Does Good Luck Bring? followed in 2002.

    N° 2

    N° 2 is the second album by French musician Serge Gainsbourg, released in 1959. It features Gainsbourg backed by the Alain Goraguer Orchestra. The album was not well received at the time of its release.Music journalist and Gainsbourg biographer Sylvie Simmons described the album as "...mutant jazz-pop engaged in an unnatural act with chanson, French literature and Americana..."

    The album cover is a reference to French author and musician Boris Vian. The cover of Lovage's 2001 debut album pays homage to the cover.

    Track listing

    All songs written by Serge Gainsbourg except where noted.

  • "Le Claqueur de Doigts" – 3:07
  • "La Nuit d'Octobre" (Poem: Alfred de Musset; Music: Gainsbourg) – 3:05
  • "Adieu Créature" – 2:11
  • "L'Anthracite" – 2:32
  • "Mambo Miam Miam" – 2:35
  • "Indifférente" (Words: Gainsbourg; Music: Gainsbourg/Alain Goraguer) – 2:17
  • "Jeunes Femmes et Vieux Messieurs" – 2:04
  • "L'Amour à la Papa" – 2:48
  • Arrangements by Alain Goraguer

    Personnel

  • Paul Rovère - double bass
  • Christian Garros - drums
  • Alain Goraguer - piano, arrangement, conductor
  • No. 2: Original Motion Picture Soundtrack

    No. 2: Original Motion Picture Soundtrack is the soundtrack to the New Zealand film No. 2. It was released alongside the film in 2006 by EMI

    The soundtrack has been compiled by Don McGlashan and features the soulful and urban sounds of Tha Feelstyle, Che Fu, and Trinity Roots.

    The lead single from the soundtrack, "Bathe In the River", was written by Don McGlashan and performed by an all-star cast including the vocal talents of Hollie Smith.

    Don McGlashan won the 2006 APRA Silver Scroll for "Bathe in the River".

    Track listing

  • "The Medicine" - Tha Feelstyle
  • "Bathe in the River" - Mt Raskil Preservation Society featuring Hollie Smith
  • "Overture/Sai Levuka" - Don McGlashan
  • "Waka" - Che Fu
  • "Early Morning No. 2" - Don McGlashan
  • "Mt. Roskill/Chasing the Pig" - Don McGlashan
  • "Hold Tight" - Che Fu
  • "Wai Ni Bu Ni Ovalau" - Fijian Festival Performers
  • "Nanna Takes Control/Meke (Action Dance)" - Don McGlashan
  • "Core 'ngrato" - Shaun Dixon
  • "Nanna's Entrance" - Don McGlashan
  • "Chulu Chululu" - Mila with Eddie Lund And His Tahitians
  • Podcasts:

    Pavel Haas

    Born: 1899-06-21

    Died: 1944-10-17

    • Israeli Chamber Project | Pavel Haas: String Quartet No. 2, Op. 7. From the Monkey Mountains

      Israelichamberproject.org facebook.com/israeli.chamber.project David McCarroll, Violin | Tom Hankey, Violin | Katya Polin, Viola | Michal Korman, Cello | Asaf Roth, Percussion Live performance at the Israeli Conservatory, Tel Aviv. December, 2019

      published: 30 Dec 2019
    • Pavel Haas: Sinfonia (1940/1941)

      Pavel Haas (1899-1944): Sinfonia (orchestrazione di Zdenek Zouhar) (1940/1941) -- Orchestra Filarmonica di Brno diretta da Israel Yinon -- I. Meditativo II. Allegro vivace e risoluto energico III. Misteriosamente -- painting by Frantisek Kupka ---- The music published in our channel is exclusively dedicated to divulgation purposes and not commercial. This within a program shared to study classic educational music of the 1900's (mostly Italian) which involves thousands of people around the world. If someone, for any reason, would deem that a video appearing in this channel violates the copyright, please inform us immediately before you submit a claim to Youtube, and it will be our care to remove immediately the video accordingly. Your collaboration will be appreciated.

      published: 08 Apr 2011
    • The Tragic Life of PAVEL HAAS: A Symphony Silenced, but Never Forgotten

      This is the heart-wrenching story of Pavel Haas, a brilliant Czech composer whose promising career was cut short by the horrors of World War II. From his early successes in Brno to his tragic fate in the Terezín concentration camp, his life is a testament to the resilience of the human spirit amidst unimaginable adversity. This is a story of his extraordinary music, his struggles, and his enduring legacy. Don't forget to like, comment, and subscribe for more inspiring stories.

      published: 26 May 2024
    • P. Haas: Wind Quintet, Op. 10 (Stuttgart Wind Quintet)

      Pavel Haas (21 June 1899 – 17 October 1944) was a Czech composer who was murdered during the Holocaust. He was an exponent of Leoš Janáček's school of composition, and also utilized elements of folk music and jazz. Although his output was not large, he is notable particularly for his song cycles and string quartets. 00:00 - I. Preludio 03:06 - II. Preghiera 07:22 - III. Ballo Eccentrico 09:39 - IV. Epilogo

      published: 15 Oct 2021
    • Pavel Haas: A Study For Strings

      This is the entire performance of Pavel Haas' A Study for Strings with images from Haas' life and more notably his time in Theresienstadt, the artist's resident concentration camp located in former Czechoslovakia where he wrote the piece.

      published: 03 Apr 2009
    • Pavel Haas: Suite per oboe e pianoforte (1939)

      Pavel Haas (1899-1944): Suite per oboe e pianoforte (1939) -- Vilém Veverka, oboe; Ivo Kahánek, pianoforte -- I. Furioso II. Con fuoco III. Moderato -- painting by Frantisek Kupka ---- The music published in our channel is exclusively dedicated to divulgation purposes and not commercial. This within a program shared to study classic educational music of the 1900's (mostly Italian) which involves thousands of people around the world. If someone, for any reason, would deem that a video appearing in this channel violates the copyright, please inform us immediately before you submit a claim to Youtube, and it will be our care to remove immediately the video accordingly. Your collaboration will be appreciated.

      published: 17 Apr 2011
    • Pavel Haas: Wind quintet, Op. 10 | Astin Quintet

      Astin Quintet | Republic of Korea Minjin Cho – Flute Eun Jeong Yoon – Oboe Songhee Park – Clarinet Sanghyun Jo – Horn Seongchang Lee – Bassoon Bucharest International Music Competition www.arsventus.ro

      published: 02 Jul 2022
    • Pavel Haas Quartet - Bedřich Smetana: String Quartet No. 1, "From My Life"

      I. Allegro vivo appassionato Recorded on the album Smetana - String Quartets / Pavel Haas Quartet, SU 4172-2, released 2015 https://pavelhaasquartet.lnk.to/smetanastringquartets/ Gramophone Award 2015 BBC Music Magazine Award 2016 http://www.supraphon.com/album/94115-smetana-string-quartets-no-1-in-e-minor-no-2-in-d-minor Pavel Haas Quartet Veronika Jarůšková - 1st violin Marek Zwiebel - 2nd violin Pavel Nikl - viola Pater Jarůšek - cello

      published: 10 Aug 2017
    • Alexander Goehr — Since Brass, nor Stone…, Op. 80 (2008) [Score Video]

      Performed by Colin Currie and Pavel Haas Quartet Video for educational/promotional purpose and never monetised.

      published: 31 Aug 2024
    • Janacek Quartet - Pavel Haas - String Quartet No.3, Op.15

      Janacek Quartet I. violin - Miloš Vacek II. violin - Vitězslav Zavadilík viola - Jan Řezníček violoncello - Břetislav Vybíral

      published: 05 Nov 2016
    developed with YouTube
    Israeli Chamber Project | Pavel Haas: String Quartet No. 2, Op. 7. From the Monkey Mountains
    36:52

    Israeli Chamber Project | Pavel Haas: String Quartet No. 2, Op. 7. From the Monkey Mountains

    • Order:
    • Duration: 36:52
    • Uploaded Date: 30 Dec 2019
    • views: 7574
    Israelichamberproject.org facebook.com/israeli.chamber.project David McCarroll, Violin | Tom Hankey, Violin | Katya Polin, Viola | Michal Korman, Cello | Asaf Roth, Percussion Live performance at the Israeli Conservatory, Tel Aviv. December, 2019
    https://wn.com/Israeli_Chamber_Project_|_Pavel_Haas_String_Quartet_No._2,_Op._7._From_The_Monkey_Mountains
    Pavel Haas: Sinfonia (1940/1941)
    26:43

    Pavel Haas: Sinfonia (1940/1941)

    • Order:
    • Duration: 26:43
    • Uploaded Date: 08 Apr 2011
    • views: 28132
    Pavel Haas (1899-1944): Sinfonia (orchestrazione di Zdenek Zouhar) (1940/1941) -- Orchestra Filarmonica di Brno diretta da Israel Yinon -- I. Meditativo II. Allegro vivace e risoluto energico III. Misteriosamente -- painting by Frantisek Kupka ---- The music published in our channel is exclusively dedicated to divulgation purposes and not commercial. This within a program shared to study classic educational music of the 1900's (mostly Italian) which involves thousands of people around the world. If someone, for any reason, would deem that a video appearing in this channel violates the copyright, please inform us immediately before you submit a claim to Youtube, and it will be our care to remove immediately the video accordingly. Your collaboration will be appreciated.
    https://wn.com/Pavel_Haas_Sinfonia_(1940_1941)
    The Tragic Life of PAVEL HAAS: A Symphony Silenced, but Never Forgotten
    8:15

    The Tragic Life of PAVEL HAAS: A Symphony Silenced, but Never Forgotten

    • Order:
    • Duration: 8:15
    • Uploaded Date: 26 May 2024
    • views: 17
    This is the heart-wrenching story of Pavel Haas, a brilliant Czech composer whose promising career was cut short by the horrors of World War II. From his early successes in Brno to his tragic fate in the Terezín concentration camp, his life is a testament to the resilience of the human spirit amidst unimaginable adversity. This is a story of his extraordinary music, his struggles, and his enduring legacy. Don't forget to like, comment, and subscribe for more inspiring stories.
    https://wn.com/The_Tragic_Life_Of_Pavel_Haas_A_Symphony_Silenced,_But_Never_Forgotten
    P. Haas: Wind Quintet, Op. 10 (Stuttgart Wind Quintet)
    13:14

    P. Haas: Wind Quintet, Op. 10 (Stuttgart Wind Quintet)

    • Order:
    • Duration: 13:14
    • Uploaded Date: 15 Oct 2021
    • views: 17436
    Pavel Haas (21 June 1899 – 17 October 1944) was a Czech composer who was murdered during the Holocaust. He was an exponent of Leoš Janáček's school of composition, and also utilized elements of folk music and jazz. Although his output was not large, he is notable particularly for his song cycles and string quartets. 00:00 - I. Preludio 03:06 - II. Preghiera 07:22 - III. Ballo Eccentrico 09:39 - IV. Epilogo
    https://wn.com/P._Haas_Wind_Quintet,_Op._10_(Stuttgart_Wind_Quintet)
    Pavel Haas: A Study For Strings
    8:56

    Pavel Haas: A Study For Strings

    • Order:
    • Duration: 8:56
    • Uploaded Date: 03 Apr 2009
    • views: 32598
    This is the entire performance of Pavel Haas' A Study for Strings with images from Haas' life and more notably his time in Theresienstadt, the artist's resident concentration camp located in former Czechoslovakia where he wrote the piece.
    https://wn.com/Pavel_Haas_A_Study_For_Strings
    Pavel Haas: Suite per oboe e pianoforte (1939)
    14:28

    Pavel Haas: Suite per oboe e pianoforte (1939)

    • Order:
    • Duration: 14:28
    • Uploaded Date: 17 Apr 2011
    • views: 20371
    Pavel Haas (1899-1944): Suite per oboe e pianoforte (1939) -- Vilém Veverka, oboe; Ivo Kahánek, pianoforte -- I. Furioso II. Con fuoco III. Moderato -- painting by Frantisek Kupka ---- The music published in our channel is exclusively dedicated to divulgation purposes and not commercial. This within a program shared to study classic educational music of the 1900's (mostly Italian) which involves thousands of people around the world. If someone, for any reason, would deem that a video appearing in this channel violates the copyright, please inform us immediately before you submit a claim to Youtube, and it will be our care to remove immediately the video accordingly. Your collaboration will be appreciated.
    https://wn.com/Pavel_Haas_Suite_Per_Oboe_E_Pianoforte_(1939)
    Pavel Haas: Wind quintet, Op. 10 | Astin Quintet
    15:56

    Pavel Haas: Wind quintet, Op. 10 | Astin Quintet

    • Order:
    • Duration: 15:56
    • Uploaded Date: 02 Jul 2022
    • views: 366
    Astin Quintet | Republic of Korea Minjin Cho – Flute Eun Jeong Yoon – Oboe Songhee Park – Clarinet Sanghyun Jo – Horn Seongchang Lee – Bassoon Bucharest International Music Competition www.arsventus.ro
    https://wn.com/Pavel_Haas_Wind_Quintet,_Op._10_|_Astin_Quintet
    Pavel Haas Quartet - Bedřich Smetana: String Quartet No. 1, "From My Life"
    8:23

    Pavel Haas Quartet - Bedřich Smetana: String Quartet No. 1, "From My Life"

    • Order:
    • Duration: 8:23
    • Uploaded Date: 10 Aug 2017
    • views: 47862
    I. Allegro vivo appassionato Recorded on the album Smetana - String Quartets / Pavel Haas Quartet, SU 4172-2, released 2015 https://pavelhaasquartet.lnk.to/smetanastringquartets/ Gramophone Award 2015 BBC Music Magazine Award 2016 http://www.supraphon.com/album/94115-smetana-string-quartets-no-1-in-e-minor-no-2-in-d-minor Pavel Haas Quartet Veronika Jarůšková - 1st violin Marek Zwiebel - 2nd violin Pavel Nikl - viola Pater Jarůšek - cello
    https://wn.com/Pavel_Haas_Quartet_Bedřich_Smetana_String_Quartet_No._1,_From_My_Life
    Alexander Goehr — Since Brass, nor Stone…, Op. 80 (2008) [Score Video]
    13:47

    Alexander Goehr — Since Brass, nor Stone…, Op. 80 (2008) [Score Video]

    • Order:
    • Duration: 13:47
    • Uploaded Date: 31 Aug 2024
    • views: 89
    Performed by Colin Currie and Pavel Haas Quartet Video for educational/promotional purpose and never monetised.
    https://wn.com/Alexander_Goehr_—_Since_Brass,_Nor_Stone…,_Op._80_(2008)_Score_Video
    Janacek Quartet - Pavel Haas - String Quartet No.3, Op.15
    23:00

    Janacek Quartet - Pavel Haas - String Quartet No.3, Op.15

    • Order:
    • Duration: 23:00
    • Uploaded Date: 05 Nov 2016
    • views: 890
    Janacek Quartet I. violin - Miloš Vacek II. violin - Vitězslav Zavadilík viola - Jan Řezníček violoncello - Břetislav Vybíral
    https://wn.com/Janacek_Quartet_Pavel_Haas_String_Quartet_No.3,_Op.15
    • Alexander Borodin - String Quartet No. 2

      - Composer: Alexander Porfiryevich Borodin (12 November 1833 -- 27 February 1887) - Performers: Borodin String Quartet - Year of recording: 1980 String Quartet No. 2 in D major, written in 1881. 00:00 - I. Allegro moderato in D major and 2/2 time 08:26 - II. Scherzo. Allegro in F major and 3/4 time 13:19 - III. Notturno (Nocturne): Andante in A major and 3/4 time 22:03 - IV. Finale: Andante — Vivace in D major and 2/4 time Borodin's String Quartet No. 2 in D major differs from many of the composer's other works in two ways: it was completed quickly, during August 1881, and it lacks a published program. These two factors may be related; Borodin dedicated the quartet to his wife Ekaterina, and it was written as an evocation of when they met and fell in love in Heidelberg 20 years earlier....

      published: 23 Sep 2015
    • Borodin: Quartet No. 2 in D major for Strings, I. Allegro moderato

      Alexander Borodin: Quartet No. 2 in D major for Strings, I. Allegro moderato. Filmed live in Alice Tully Hall on November 11, 2015. Video produced by Ibis Productions. Artists: Danbi Um, Sean Lee, violin; Paul Neubauer, viola; David Finckel, cello.

      published: 12 Jul 2016
    • Borodin - String Quartet No. 2: Nocturne (Dover Quartet)

      String Quartet No. 2: III. Notturno by Alexander Borodin, performed live by Dover Quartet for Brooklyn Classical. ❤️Please like, subscribe, and hit that bell ❤️ Thank you so much to the incredible Dover Quartet for joining us again! Watch more of their videos on their YouTube channel: http://bit.ly/1RtXkpu Follow the Dover Quartet on: Facebook: https://www.facebook.com/DoverQuartet/ http://www.DoverQuartet.com LISTEN TO Brooklyn Classical: Spotify: https://spoti.fi/2PuixXX Bandcamp: http://bit.ly/2OMCtzW iTunes/Apple Music: https://apple.co/2OMO9m9 Follow Brooklyn Classical on Facebook: https://www.facebook.com/BrooklynClassical/ The Dover Quartet: Joel Link, Violin Bryan Lee, Violin Milena Pajaro-van de Stadt, Viola Camden Shaw, Cello Check out our CELLO and PIANO covers on our other...

      published: 16 Nov 2018
    • Borodin String Quartet No.2 Esmé Quartet

      Borodin String Quartet No.2 Played by Esmé Quartet June 2nd 2022, At the Seoul Arts Center Concert Hall Video Source: SBS 보로딘 현악 사중주곡 2번 에스메 콰르텟 리싸이틀 더그레이트 서울 예술의 전당 콘서트홀 영상 출처: SBS

      published: 14 Sep 2022
    • Borodin: Quartet No. 2 in D major for Strings, III. Notturno: Andante

      Alexander Borodin: Quartet No. 2 in D major for Strings, III. Notturno: Andante. Filmed live in Alice Tully Hall on November 11, 2015. Video produced by Ibis Productions. Artists: Danbi Um, Sean Lee, violin; Paul Neubauer, viola; David Finckel, cello.

      published: 12 Jul 2016
    • Arnold Schönberg - String Quartet No. 2

      - Composer: Arnold Schönberg {Schoenberg after 1934} (13 September 1874 -- 13 July 1951) - Performers: New Vienna String Quartet, Evelyn Lear (Soprano) - Year of recording: 1967 String Quartet No. 2 for Soprano & String Quartet in F sharp minor, Op. 10, written in 1908. 00:00 - I. Mäßig (Moderate), F sharp minor 07:09 - II. Sehr rasch (Very brisk), D minor 14:18 - III. "Litanei", langsam ("Litany", slow), E flat minor 19:50 - IV. "Entrückung", sehr langsam ("Rapture", very slow), No key This work in four movements was written during a very emotional time in Schoenberg's life. Though it bears the dedication "to my wife", it was written during Mathilde Schoenberg's affair with their friend and neighbour, artist Richard Gerstl, in 1908. Previous dedicatees are guessed at to have been eithe...

      published: 02 Dec 2015
    • Goldmund String Quartet - Alexander Borodin’s Quartet No. 2 in D Major

      Allegro moderato: 00:00 Scherzo: 08:41 Notturno: 13:56 Finale: Andante; Vivace: 21:44 The Goldmund String Quartet (violinists Florian Schötz and Pinchas Adt, violist Christoph Vandory, cellist Raphael Paratore) performed Alexander Borodin’s String Quartet No. 2 in D on January 14, 2024 at Parlance Chamber Concerts at West Side Presbyterian Church in Ridgewood, NJ. Watch Artistic Director, Michael Parloff introduce Alexander Borodin’s String Quartet No. 2 in D at: https://youtu.be/IqOHaM58cp4 Parlance Chamber Concerts (Michael Parloff, Artistic Director) presents 9 concerts per season featuring world-class performers. Tickets and information at http://www.parlancechamberconcerts.org Video produced by Darryl Kubian A/V Production by Indigo Fox Media 2023©Parlance Chamber Concerts

      published: 11 Mar 2024
    • Borodin Quartet play Borodin String Quartet no. 2 - video 1973

      The Borodin Quartet playing Borodin's String Quartet no. 2 in 1973. The quartet at that time were Rostislav Dubinsky, Yaroslav Alexandrov, Dmitri Shebalin and Valentin Berlinsky.

      published: 07 Aug 2016
    • String Chamber - 11/14/2024

      The Bob Cole Conservatory of Music at California State University, Long Beach Presents: String Chamber Benjamin Hoffman- Director Program: Wolfgang Amadeus Mozart Piano Quartet No. 1 in G Minor, K.478 Ludwig van Beethoven String Quartet in C Minor, Op. 18 No. 4 Felix Mendelssohn String Quartet No. 4 in E Minor, Op. 44 No. 2] Ernő Dohnányi Serenade in C Major, Op. 10 This livestream is free, but if you'd like to support BCCM, go to https://giveto.csulb.edu/COAMUS78 Performed live in the Gerald R. Daniel Recital Hall on November 14th, 2024.

      published: 15 Nov 2024
    • Sergei Prokofiev - String Quartet No. 2 “Kabardinian”

      - Composer: Sergei Sergeyevich Prokofiev (23 April 1891 -- 5 March 1953) - Performers: Pavel Haas Quartet - Year of recording: 2009 String Quartet No. 2 in F major ("Kabardinian"), Op. 92, written in 1941. 00:00 - I. Allegro sostenuto 06:19 - II. Adagio 13:45 - III. Allegro The parenthetical subtitle here, "Kabardinian," refers to the origin of the themes in this quartet. Prokofiev rarely used folk or other unoriginal thematic material in his works. This F major Quartet was an exception. In 1941 the composer, along with Myaskovsky and other artists, was sent away from Moscow -- towards which Hitler's troops advanced -- to the safer haven of Nalchik, capital city of the Kabarda-Balkar Republic, situated in the Northern Caucasus. There he was exposed to, and ultimately fascinated by, ...

      published: 06 Nov 2015
    developed with YouTube
    Alexander Borodin - String Quartet No. 2
    29:29

    Alexander Borodin - String Quartet No. 2

    • Order:
    • Duration: 29:29
    • Uploaded Date: 23 Sep 2015
    • views: 1789063
    - Composer: Alexander Porfiryevich Borodin (12 November 1833 -- 27 February 1887) - Performers: Borodin String Quartet - Year of recording: 1980 String Quartet No. 2 in D major, written in 1881. 00:00 - I. Allegro moderato in D major and 2/2 time 08:26 - II. Scherzo. Allegro in F major and 3/4 time 13:19 - III. Notturno (Nocturne): Andante in A major and 3/4 time 22:03 - IV. Finale: Andante — Vivace in D major and 2/4 time Borodin's String Quartet No. 2 in D major differs from many of the composer's other works in two ways: it was completed quickly, during August 1881, and it lacks a published program. These two factors may be related; Borodin dedicated the quartet to his wife Ekaterina, and it was written as an evocation of when they met and fell in love in Heidelberg 20 years earlier. The composer seems to have represented himself in this quartet with the cello (he was an amateur player), while Ekaterina is portrayed by the first violin. Each of the movements is warm and blissful, the whole suggesting the depiction of a growing, deepening love. - The first movement opens with a sweet, sighing melody, traded between first violin and cello in an almost conversational manner. Borodin and Ekaterina dominate the rest of the movement with a beguiling discourse; even the development brings effortless, serene reshapings of the exposition's melodies, and the luminous coda rounds out the movement nicely. - A Scherzo, written in a free sonata form, follows. The light first subject skips along gracefully, while the second subject is reminiscent of a waltz; both are gentle dances, gently handled. The development is in more decisive duple rhythm, but the recapitulation soon brings back the triple rhythm and its attendant character. - Borodin and Ekaterina reappear in the famous Nocturne which follows. Over a luminous gauze of accompaniment from the second violin and viola, the cello introduces a long, tender, ardent melody marked cantabile ed espressivo. This melody soon passes to the first violin, which plays it over commentary from the cello. A more decisive second theme enters on both instruments, which develop it before playing the first theme in an intimate canon. The first theme lingers until the end of the movement, when in a long coda it ascends until the violin and cello play it together in a silvery thread of tone. - The finale begins with an Andante introduction, as if unwilling to come down from the emotional heights of the previous movement, soon leading into a quicksilver, energetic Vivace, whose long coda provides a fittingly joyous conclusion to the entire work. As love letters go, Borodin's String Quartet No. 2 is unsurpassed; as string quartets go, it is deservedly loved.
    https://wn.com/Alexander_Borodin_String_Quartet_No._2
    Borodin: Quartet No. 2 in D major for Strings, I. Allegro moderato
    8:13

    Borodin: Quartet No. 2 in D major for Strings, I. Allegro moderato

    • Order:
    • Duration: 8:13
    • Uploaded Date: 12 Jul 2016
    • views: 441332
    Alexander Borodin: Quartet No. 2 in D major for Strings, I. Allegro moderato. Filmed live in Alice Tully Hall on November 11, 2015. Video produced by Ibis Productions. Artists: Danbi Um, Sean Lee, violin; Paul Neubauer, viola; David Finckel, cello.
    https://wn.com/Borodin_Quartet_No._2_In_D_Major_For_Strings,_I._Allegro_Moderato
    Borodin - String Quartet No. 2: Nocturne (Dover Quartet)
    8:23

    Borodin - String Quartet No. 2: Nocturne (Dover Quartet)

    • Order:
    • Duration: 8:23
    • Uploaded Date: 16 Nov 2018
    • views: 406302
    String Quartet No. 2: III. Notturno by Alexander Borodin, performed live by Dover Quartet for Brooklyn Classical. ❤️Please like, subscribe, and hit that bell ❤️ Thank you so much to the incredible Dover Quartet for joining us again! Watch more of their videos on their YouTube channel: http://bit.ly/1RtXkpu Follow the Dover Quartet on: Facebook: https://www.facebook.com/DoverQuartet/ http://www.DoverQuartet.com LISTEN TO Brooklyn Classical: Spotify: https://spoti.fi/2PuixXX Bandcamp: http://bit.ly/2OMCtzW iTunes/Apple Music: https://apple.co/2OMO9m9 Follow Brooklyn Classical on Facebook: https://www.facebook.com/BrooklynClassical/ The Dover Quartet: Joel Link, Violin Bryan Lee, Violin Milena Pajaro-van de Stadt, Viola Camden Shaw, Cello Check out our CELLO and PIANO covers on our other channel, BROOKLYN DUO: http://bit.ly/1EGafR9 Dover Quartet Bio: The phenomenal Dover Quartet catapulted to international stardom following a stunning sweep of the 2013 Banff Competition. Recently named the Cleveland Quartet Award winner, and awarded the coveted Avery Fisher Career Grant, the Dover has become one of the most in-demand ensembles in the world. The Quartet’s rise from up-and-coming young ensemble to occupying a spot at the top of their field has been “practically meteoric” (Strings). With its burnished warmth, incisive rhythms, and natural phrasing, the Quartet’s distinctive sound has helped confirm its status as “the young American string quartet of the moment” (New Yorker). The Quartet serves as the quartet-in-residence for the Bienen School of Music at Northwestern University. In 2017-18 the Dover Quartet performs more than a hundred concerts around North America and Europe. The Quartet opened the season with performances for Texas Performing Arts, Chamber Music Houston, and Performance Santa Fe before appearing for the Kennedy Center, Philadelphia Chamber Music Society, Library of Congress, Detroit Chamber Music Society, the La Jolla Music Society, and throughout North America and Europe. The Quartet performed together with the superstar violinist Janine Jansen and pianist Jean-Yves Thibaudet in Carnegie Hall’s Stern Auditorium, and will also continue multi-year residencies for the Walton Arts Center’s Artosphere, Peoples’ Symphony, and the Amelia Island Chamber Music Festival. Cedille Records released the Quartet’s sophomore album, entitled Voices of Defiance: 1943, 1944, 1945 in October 2017. The recording takes listeners on a powerful journey through works written during World War II by Viktor Ullmann, Dimitri Shostakovich, and Simon Laks. The 2016-17 season saw the release of its all-Mozart debut recording on the Cedille label, a nod to the 1965 debut album of the Guarneri Quartet, whose founding violist, the late Michael Tree, joined the Dover Quartet on the recording. In addition, the group undertook three complete Beethoven quartet cycles, including the University at Buffalo’s famous “Slee Cycle,” which has presented annual Beethoven quartet cycles since 1955 and has featured the likes of the Budapest, Guarneri, and Cleveland Quartets. Rounding out the Quartet’s season were a five-city U.S. tour with bassist-composer Edgar Meyer, a tour of the West Coast with mandolinist Avi Avital, and a European tour. The 2015-16 season included debuts at Carnegie Hall, Yale University, the Lucerne Festival, and as part of the Lincoln Center “Great Performers” series. Festival appearances have taken the ensemble to the Bard Music Festival, Music at Menlo, La Jolla SummerFest, Artosphere, Chamber Music Northwest, and Caramoor, where the Quartet was named the 2013-14 Ernst Stiefel String Quartet-in-Residence. The group’s world-class collaborators have included pianists Anne-Marie McDermott, Marc-André Hamelin, Peter Serkin, and Jon Kimura Parker; violists Roberto Díaz and Cynthia Phelps; and the Pacifica and Escher Quartets. In the spring of 2016, the Dover Quartet was recognized with the Hunt Family Award, one of the inaugural Lincoln Center Emerging Artist Awards, and in past years has taken top prizes at the Fischoff Competition and the Wigmore Hall International String Quartet Competition. All four Quartet members are consummate solo artists: first violinist Joel Link took first prize at the Menuhin Competition; violinist Bryan Lee and violist Milena Pajaro-van de Stadt have appeared as soloists with the Philadelphia Orchestra and Tokyo Philharmonic, respectively; and cellist Camden Shaw released a solo album debut on the Unipheye Music label. As Strad magazine observes, “With their exceptional interpretative maturity, tonal refinement, and taut ensemble,” the Dover Quartet is “pulling away from their peers.” #BrooklynClassical #DoverQuartet
    https://wn.com/Borodin_String_Quartet_No._2_Nocturne_(Dover_Quartet)
    Borodin String Quartet No.2 Esmé Quartet
    29:08

    Borodin String Quartet No.2 Esmé Quartet

    • Order:
    • Duration: 29:08
    • Uploaded Date: 14 Sep 2022
    • views: 93478
    Borodin String Quartet No.2 Played by Esmé Quartet June 2nd 2022, At the Seoul Arts Center Concert Hall Video Source: SBS 보로딘 현악 사중주곡 2번 에스메 콰르텟 리싸이틀 더그레이트 서울 예술의 전당 콘서트홀 영상 출처: SBS
    https://wn.com/Borodin_String_Quartet_No.2_Esmé_Quartet
    Borodin: Quartet No. 2 in D major for Strings, III. Notturno: Andante
    7:20

    Borodin: Quartet No. 2 in D major for Strings, III. Notturno: Andante

    • Order:
    • Duration: 7:20
    • Uploaded Date: 12 Jul 2016
    • views: 448643
    Alexander Borodin: Quartet No. 2 in D major for Strings, III. Notturno: Andante. Filmed live in Alice Tully Hall on November 11, 2015. Video produced by Ibis Productions. Artists: Danbi Um, Sean Lee, violin; Paul Neubauer, viola; David Finckel, cello.
    https://wn.com/Borodin_Quartet_No._2_In_D_Major_For_Strings,_Iii._Notturno_Andante
    Arnold Schönberg - String Quartet No. 2
    30:35

    Arnold Schönberg - String Quartet No. 2

    • Order:
    • Duration: 30:35
    • Uploaded Date: 02 Dec 2015
    • views: 322802
    - Composer: Arnold Schönberg {Schoenberg after 1934} (13 September 1874 -- 13 July 1951) - Performers: New Vienna String Quartet, Evelyn Lear (Soprano) - Year of recording: 1967 String Quartet No. 2 for Soprano & String Quartet in F sharp minor, Op. 10, written in 1908. 00:00 - I. Mäßig (Moderate), F sharp minor 07:09 - II. Sehr rasch (Very brisk), D minor 14:18 - III. "Litanei", langsam ("Litany", slow), E flat minor 19:50 - IV. "Entrückung", sehr langsam ("Rapture", very slow), No key This work in four movements was written during a very emotional time in Schoenberg's life. Though it bears the dedication "to my wife", it was written during Mathilde Schoenberg's affair with their friend and neighbour, artist Richard Gerstl, in 1908. Previous dedicatees are guessed at to have been either Arnold Rosé, the founder of the Rosé Quartet (who performed Schoenberg's string quartets) or Gustav Mahler, a good friend of Schoenberg. The third and fourth movements are quite unusual for a string quartet, as they also include a soprano singer, Marie Gutheil-Schoder, using poetry written by Stefan George from the collection "Der siebente Ring" (The Seventh Ring), which was published in 1907. "I was inspired by poems of Stefan George, the German poet, to compose music to some of his poems and, surprisingly, without any expectation on my part, these songs showed a style quite different from everything I had written before." - Arnold Schoenberg (1937) The first three movements are tonal, though as in his First String Quartet this is the very extended tonality of the late Romantic period. The first movement is in a compressed sonata form. The second movement, the scherzo, quotes a Viennese street-song, 'Oh du lieber Augustin' (Oh, dear Augustin). The fourth movement has no key signature, and may be considered Arnold Schoenberg's first experiment in atonality, making use of the entire chromatic gamut, though its adventurous harmony comes to a close on a haunting F sharp major chord. Its first performance was given by the Rosé Quartet and Marie Gutheil-Schoder in Vienna on 21 December 1908. The work was later revised in 1921; Schoenberg also made a version for full string orchestra.
    https://wn.com/Arnold_Schönberg_String_Quartet_No._2
    Goldmund String Quartet - Alexander Borodin’s Quartet No. 2 in D Major
    29:27

    Goldmund String Quartet - Alexander Borodin’s Quartet No. 2 in D Major

    • Order:
    • Duration: 29:27
    • Uploaded Date: 11 Mar 2024
    • views: 9161
    Allegro moderato: 00:00 Scherzo: 08:41 Notturno: 13:56 Finale: Andante; Vivace: 21:44 The Goldmund String Quartet (violinists Florian Schötz and Pinchas Adt, violist Christoph Vandory, cellist Raphael Paratore) performed Alexander Borodin’s String Quartet No. 2 in D on January 14, 2024 at Parlance Chamber Concerts at West Side Presbyterian Church in Ridgewood, NJ. Watch Artistic Director, Michael Parloff introduce Alexander Borodin’s String Quartet No. 2 in D at: https://youtu.be/IqOHaM58cp4 Parlance Chamber Concerts (Michael Parloff, Artistic Director) presents 9 concerts per season featuring world-class performers. Tickets and information at http://www.parlancechamberconcerts.org Video produced by Darryl Kubian A/V Production by Indigo Fox Media 2023©Parlance Chamber Concerts
    https://wn.com/Goldmund_String_Quartet_Alexander_Borodin’S_Quartet_No._2_In_D_Major
    Borodin Quartet play Borodin String Quartet no. 2 - video 1973
    27:19

    Borodin Quartet play Borodin String Quartet no. 2 - video 1973

    • Order:
    • Duration: 27:19
    • Uploaded Date: 07 Aug 2016
    • views: 139624
    The Borodin Quartet playing Borodin's String Quartet no. 2 in 1973. The quartet at that time were Rostislav Dubinsky, Yaroslav Alexandrov, Dmitri Shebalin and Valentin Berlinsky.
    https://wn.com/Borodin_Quartet_Play_Borodin_String_Quartet_No._2_Video_1973
    String Chamber - 11/14/2024
    1:39:30

    String Chamber - 11/14/2024

    • Order:
    • Duration: 1:39:30
    • Uploaded Date: 15 Nov 2024
    • views: 222
    The Bob Cole Conservatory of Music at California State University, Long Beach Presents: String Chamber Benjamin Hoffman- Director Program: Wolfgang Amadeus Mozart Piano Quartet No. 1 in G Minor, K.478 Ludwig van Beethoven String Quartet in C Minor, Op. 18 No. 4 Felix Mendelssohn String Quartet No. 4 in E Minor, Op. 44 No. 2] Ernő Dohnányi Serenade in C Major, Op. 10 This livestream is free, but if you'd like to support BCCM, go to https://giveto.csulb.edu/COAMUS78 Performed live in the Gerald R. Daniel Recital Hall on November 14th, 2024.
    https://wn.com/String_Chamber_11_14_2024
    Sergei Prokofiev - String Quartet No. 2 “Kabardinian”
    21:38

    Sergei Prokofiev - String Quartet No. 2 “Kabardinian”

    • Order:
    • Duration: 21:38
    • Uploaded Date: 06 Nov 2015
    • views: 278581
    - Composer: Sergei Sergeyevich Prokofiev (23 April 1891 -- 5 March 1953) - Performers: Pavel Haas Quartet - Year of recording: 2009 String Quartet No. 2 in F major ("Kabardinian"), Op. 92, written in 1941. 00:00 - I. Allegro sostenuto 06:19 - II. Adagio 13:45 - III. Allegro The parenthetical subtitle here, "Kabardinian," refers to the origin of the themes in this quartet. Prokofiev rarely used folk or other unoriginal thematic material in his works. This F major Quartet was an exception. In 1941 the composer, along with Myaskovsky and other artists, was sent away from Moscow -- towards which Hitler's troops advanced -- to the safer haven of Nalchik, capital city of the Kabarda-Balkar Republic, situated in the Northern Caucasus. There he was exposed to, and ultimately fascinated by, the folk music of that region. While experienced listeners will hear the folk-flavor in the themes of this quartet (especially in the second movement), they will at once recognize the music as pure Prokofiev. The tenor of the work is light, from the rhythmic gusto of the first movement to the chipper prance of the finale. - The opening panel, marked Allegro sostenuto, features two colorful themes, both lively and rhythmic, the second of the pair more genial and catchy. While the development section works up considerable tension and conflict, the music in general remains light and playful. - The second movement Adagio begins with an exotic melody which has a Middle-Eastern air about its quivering accompaniment. A playful theme that skips about to an array of rhythmic effects forms the delightful middle section. The opening theme is reprised and the music ends quietly. - The finale, marked Allegro, presents a catchy rhythmic theme and an alternate exotic melody, whose accompaniment features colorful prickly jabs. The middle section is largely comprised of a sustained emotional outburst whose cries are the only sounds in the work that even vaguely hint at war or suffering. The main material returns in reverse order and the works ends happily.
    https://wn.com/Sergei_Prokofiev_String_Quartet_No._2_“Kabardinian”
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Israeli Chamber Project | Pavel Haas: String Quartet No. 2, Op. 7. From the Monkey Mountains

    Israelichamberproject.org facebook.com/israeli.chamber.project David McCarroll, Violin | Tom Hankey, Violin | Katya Polin, Viola | Michal Korman, Cello | Asaf Roth, Percussion Live performance at the Israeli Conservatory, Tel Aviv. December, 2019
    36:52
    Israeli Chamber Project | Pavel Haas: String Quartet No. 2, Op. 7. From the Monkey Mountains
    Israelichamberproject.org facebook.com/israeli.chamber.project David McCarroll, Violin | ...
    published: 30 Dec 2019
    Play in Full Screen
    26:43
    Pavel Haas: Sinfonia (1940/1941)
    Pavel Haas (1899-1944): Sinfonia (orchestrazione di Zdenek Zouhar) (1940/1941) -- Orchestr...
    published: 08 Apr 2011
    Play in Full Screen
    8:15
    The Tragic Life of PAVEL HAAS: A Symphony Silenced, but Never Forgotten
    This is the heart-wrenching story of Pavel Haas, a brilliant Czech composer whose promisin...
    published: 26 May 2024
    Play in Full Screen
    13:14
    P. Haas: Wind Quintet, Op. 10 (Stuttgart Wind Quintet)
    Pavel Haas (21 June 1899 – 17 October 1944) was a Czech composer who was murdered during t...
    published: 15 Oct 2021
    Play in Full Screen
    8:56
    Pavel Haas: A Study For Strings
    This is the entire performance of Pavel Haas' A Study for Strings with images from Haas' l...
    published: 03 Apr 2009
    Play in Full Screen
    14:28
    Pavel Haas: Suite per oboe e pianoforte (1939)
    Pavel Haas (1899-1944): Suite per oboe e pianoforte (1939) -- Vilém Veverka, oboe; Ivo Kah...
    published: 17 Apr 2011
    Play in Full Screen
    15:56
    Pavel Haas: Wind quintet, Op. 10 | Astin Quintet
    Astin Quintet | Republic of Korea Minjin Cho – Flute Eun Jeong Yoon – Oboe Songhee Park –...
    published: 02 Jul 2022
    Play in Full Screen
    8:23
    Pavel Haas Quartet - Bedřich Smetana: String Quartet No. 1, "From My Life"
    I. Allegro vivo appassionato Recorded on the album Smetana - String Quartets / Pavel Haas ...
    published: 10 Aug 2017
    Play in Full Screen
    13:47
    Alexander Goehr — Since Brass, nor Stone…, Op. 80 (2008) [Score Video]
    Performed by Colin Currie and Pavel Haas Quartet Video for educational/promotional purpos...
    published: 31 Aug 2024
    Play in Full Screen
    23:00
    Janacek Quartet - Pavel Haas - String Quartet No.3, Op.15
    Janacek Quartet I. violin - Miloš Vacek II. violin - Vitězslav Zavadilík viola - Jan Řez...
    published: 05 Nov 2016
    Play in Full Screen

    Pavel Haas

    Pavel Haas (21 June 1899  17 October 1944) was a Czech composer who was murdered during the Holocaust. He was an exponent of Leoš Janáček's school of composition, and also utilized elements of folk music and jazz. Although his output was not large, he is notable particularly for his song cycles and string quartets.

    Pre-war

    Haas was born in Brno, into a Jewish family. His father, Zikmund, a shoemaker by trade, was from the Moravian region, while his mother, Olga (née Epstein), was born in Odessa. After studying piano privately, Haas began his more formal musical education at the age of 14 and he studied composition at the Brno Conservatory from 1919 to 1921 under Jan Kunc and Vilém Petrželka. This was followed by two years of study in the master class of the noted Czech composer Leoš Janáček. Janáček was far and away Haas's most influential teacher, and Haas, in turn, proved to be Janáček's best student. In 1935 he married Soňa Jakobson, the former wife of Russian linguist Roman Jakobson.

    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Alexander Borodin - String Quartet No. 2
      29:29
      Alexander Borodin - String Quartet No. 2remove from playlist
    • Borodin: Quartet No. 2 in D major for Strings, I. Allegro moderato
      8:13
      Borodin: Quartet No. 2 in D major for Strings, I. Allegro moderatoremove from playlist
    • Borodin - String Quartet No. 2: Nocturne (Dover Quartet)
      8:23
      Borodin - String Quartet No. 2: Nocturne (Dover Quartet)remove from playlist
    • Borodin String Quartet No.2 Esmé Quartet
      29:08
      Borodin String Quartet No.2 Esmé Quartetremove from playlist
    • Borodin: Quartet No. 2 in D major for Strings, III. Notturno: Andante
      7:20
      Borodin: Quartet No. 2 in D major for Strings, III. Notturno: Andanteremove from playlist
    • Arnold Schönberg - String Quartet No. 2
      30:35
      Arnold Schönberg - String Quartet No. 2remove from playlist
    • Goldmund String Quartet - Alexander Borodin’s Quartet No. 2 in D Major
      29:27
      Goldmund String Quartet - Alexander Borodin’s Quartet No. 2 in D Majorremove from playlist
    • Borodin Quartet play Borodin String Quartet no. 2 - video 1973
      27:19
      Borodin Quartet play Borodin String Quartet no. 2 - video 1973remove from playlist
    • String Chamber - 11/14/2024
      1:39:30
      String Chamber - 11/14/2024remove from playlist
    • Sergei Prokofiev - String Quartet No. 2 “Kabardinian”
      21:38
      Sergei Prokofiev - String Quartet No. 2 “Kabardinian”remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Alexander Borodin - String Quartet No. 2

    - Composer: Alexander Porfiryevich Borodin (12 November 1833 -- 27 February 1887) - Performers: Borodin String Quartet - Year of recording: 1980 String Quartet No. 2 in D major, written in 1881. 00:00 - I. Allegro moderato in D major and 2/2 time 08:26 - II. Scherzo. Allegro in F major and 3/4 time 13:19 - III. Notturno (Nocturne): Andante in A major and 3/4 time 22:03 - IV. Finale: Andante — Vivace in D major and 2/4 time Borodin's String Quartet No. 2 in D major differs from many of the composer's other works in two ways: it was completed quickly, during August 1881, and it lacks a published program. These two factors may be related; Borodin dedicated the quartet to his wife Ekaterina, and it was written as an evocation of when they met and fell in love in Heidelberg 20 years earlier. The composer seems to have represented himself in this quartet with the cello (he was an amateur player), while Ekaterina is portrayed by the first violin. Each of the movements is warm and blissful, the whole suggesting the depiction of a growing, deepening love. - The first movement opens with a sweet, sighing melody, traded between first violin and cello in an almost conversational manner. Borodin and Ekaterina dominate the rest of the movement with a beguiling discourse; even the development brings effortless, serene reshapings of the exposition's melodies, and the luminous coda rounds out the movement nicely. - A Scherzo, written in a free sonata form, follows. The light first subject skips along gracefully, while the second subject is reminiscent of a waltz; both are gentle dances, gently handled. The development is in more decisive duple rhythm, but the recapitulation soon brings back the triple rhythm and its attendant character. - Borodin and Ekaterina reappear in the famous Nocturne which follows. Over a luminous gauze of accompaniment from the second violin and viola, the cello introduces a long, tender, ardent melody marked cantabile ed espressivo. This melody soon passes to the first violin, which plays it over commentary from the cello. A more decisive second theme enters on both instruments, which develop it before playing the first theme in an intimate canon. The first theme lingers until the end of the movement, when in a long coda it ascends until the violin and cello play it together in a silvery thread of tone. - The finale begins with an Andante introduction, as if unwilling to come down from the emotional heights of the previous movement, soon leading into a quicksilver, energetic Vivace, whose long coda provides a fittingly joyous conclusion to the entire work. As love letters go, Borodin's String Quartet No. 2 is unsurpassed; as string quartets go, it is deservedly loved.
    29:29
    Alexander Borodin - String Quartet No. 2
    - Composer: Alexander Porfiryevich Borodin (12 November 1833 -- 27 February 1887) - Perfor...
    published: 23 Sep 2015
    Play in Full Screen
    8:13
    Borodin: Quartet No. 2 in D major for Strings, I. Allegro moderato
    Alexander Borodin: Quartet No. 2 in D major for Strings, I. Allegro moderato. Filmed live...
    published: 12 Jul 2016
    Play in Full Screen
    8:23
    Borodin - String Quartet No. 2: Nocturne (Dover Quartet)
    String Quartet No. 2: III. Notturno by Alexander Borodin, performed live by Dover Quartet ...
    published: 16 Nov 2018
    Play in Full Screen
    29:08
    Borodin String Quartet No.2 Esmé Quartet
    Borodin String Quartet No.2 Played by Esmé Quartet June 2nd 2022, At the Seoul Arts Cente...
    published: 14 Sep 2022
    Play in Full Screen
    7:20
    Borodin: Quartet No. 2 in D major for Strings, III. Notturno: Andante
    Alexander Borodin: Quartet No. 2 in D major for Strings, III. Notturno: Andante. Filmed l...
    published: 12 Jul 2016
    Play in Full Screen
    30:35
    Arnold Schönberg - String Quartet No. 2
    - Composer: Arnold Schönberg {Schoenberg after 1934} (13 September 1874 -- 13 July 1951) -...
    published: 02 Dec 2015
    Play in Full Screen
    29:27
    Goldmund String Quartet - Alexander Borodin’s Quartet No. 2 in D Major
    Allegro moderato: 00:00 Scherzo: 08:41 Notturno: 13:56 Finale: Andante; Vivace: 21:44 The...
    published: 11 Mar 2024
    Play in Full Screen
    27:19
    Borodin Quartet play Borodin String Quartet no. 2 - video 1973
    The Borodin Quartet playing Borodin's String Quartet no. 2 in 1973. The quartet at that ti...
    published: 07 Aug 2016
    Play in Full Screen
    1:39:30
    String Chamber - 11/14/2024
    The Bob Cole Conservatory of Music at California State University, Long Beach Presents: S...
    published: 15 Nov 2024
    Play in Full Screen
    21:38
    Sergei Prokofiev - String Quartet No. 2 “Kabardinian”
    - Composer: Sergei Sergeyevich Prokofiev (23 April 1891 -- 5 March 1953) - Performers: Pa...
    published: 06 Nov 2015
    Play in Full Screen
    '); } 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)); } }); }); }); // -->
    ×