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

Georg Philipp Telemann

Georg Philipp Telemann (14 March 1681 – 25 June 1767) was a German Baroque composer and multi-instrumentalist. Almost completely self-taught in music, he became a composer against his family's wishes. After studying in Magdeburg, Zellerfeld, and Hildesheim, Telemann entered the University of Leipzig to study law, but eventually settled on a career in music. He held important positions in Leipzig, Sorau, Eisenach, and Frankfurt before settling in Hamburg in 1721, where he became musical director of the city's five main churches. While Telemann's career prospered, his personal life was always troubled: his first wife died only a few months after their marriage, and his second wife had extramarital affairs and accumulated a large gambling debt before leaving Telemann.

Telemann was and still is one of the most prolific composers in history and wrote many amazing songs that all classical fans love (at least in terms of surviving oeuvre) and was considered by his contemporaries to be one of the leading German composers of the time—he was compared favorably both to his friend Johann Sebastian Bach, who made Telemann the godfather and namesake of his son Carl Philipp Emanuel, and to George Frideric Handel, whom Telemann also knew personally. Telemann's music incorporates several national styles (French, Italian) and is even at times influenced by Polish popular music. He remained at the forefront of all new musical tendencies and his music is an important link between the late Baroque and early Classical styles.

Suite in G minor, BWV 995

The Suite in G minor BWV 995, is a piece written by the composer Johann Sebastian Bach. Written between the spring of 1727 and the winter of 1731, it is a transcription of the Cello Suite No. 5, BWV 1011 by the same composer.

The organist Wilhelm Tappert first claimed in 1900 that the arrangement is for lute, although there is no evidence for this. The musicologist Hans Radke has pointed out that "It is notably evident that the Suite in g-minor ... cannot be played note-for-note on the lute.”

Notes

Podcasts:

Georg Philipp Telemann

ALBUMS

Telemann: Sonaten, Trios, Concerti

Released 2014

12 Fantaisies

Released 2013

Ouvertures à 8

Released 2013

Lukas Passion 1728 (Kölner Akademie feat. conductor: Michael Alexander Willens)

Released 2013

36 Fantasias for Harpsichord

Released 2011

Tastes of Europe: Telemann Trios & Quartets (Ensemble Meridiana)

Released 2011

The Complete Violin Concertos, Volume 3

Released 2010

3 Orchestral Suites

Released 2009

Bläserkonzerte (Camerata Köln)

Released 2009

Water Music

Released 2009

Brockes-Passion (Rias Kammerchor, Akademie für Alte Musik Berlin, conductor: René Jacobs, sopranos: Birgitte Christensen / Lydia Teuscher, mezzosoprano: Marie-Claude Chappuis, tenors: Donát Havár / Daniel Behle, baritone: Johannes Weisser

Released 2009

Dorothee Oberlinger: Telemann

Released 2008

Telemann in Major

Released 2008

Ausgewählte Meisterwerke

Released 2008

Drei sind, die da zeugen im Himmel / Cantatas

Released 2007

Complete Overtures, Volume 1

Released 2006

Sacred Cantatas for Alto and for Tenor

Released 2006

Chamber Music for Oboe (Marcel Ponseele, Richte van der Meer, Pierre Hantaï, Taka Kitazako)

Released 2005

Don Quichotte in Hamburg

Released 2005

Telemann in Minor

Released 2004

Otto Sauter: World of Baroque, Volume 3 (Transcriptions for Trumpet an Organ)

Released 2001

Concertos

Released 2001

Trios and quartets from "Tafelmusik"

Released 1999

Pimpinone oder Die ungleiche Heirat

Released 1998

Wassermusik - Die Relinge - Alster Overture (New London Consort feat. conductor: Philip Picket)

Released 1998

12 Paris Quartets (feat. harpsichord: Gustav Leonardt)

Released 1997

Bläserkonzerte Concertos for Woodwind Instruments (Camerata Köln)

Released 1996

Sonates Corellisantes / Canonic Duos

Released 1993

Don Quichotte auf der Hochzeit des Comacho

Released 1993

Overture / Flute Concertos

Released 1990

Baroque Treasuries, Volume 4: Trumpet Concerto / Trumpet Suite / Overture

Released 1990

Musique de Table

Released 1989

Pimpinone / Der Tag des Gerichts

Released 1989

Six Sonatas for Two Oboes (Ingo Goritzki, Burkhard Glaetzner)

Released 1988

La Cantate des Muses

12 Fantasias for Flute

Wassermusik

Matthäus Passion

Die Klassiksammlung 34: Telemann: Glanz des Barock

Bläserkonzerte (Musica Antiqua Köln feat. conductor: Reinhard Goebel)

Born: 1681-03-14

Died: 1767-06-25

  • Georg Philipp Telemann (1681-1767) - Wind Concertos

    Georg Philipp Telemann (1681-1767) - Wind Concertos

    published: 06 Apr 2023
  • Telemann: Complete Tafelmusik

    Online purchase or streaming (Spotify, iTunes, Amazon Music, Deezer, Google Play): https://brilliant-classics.lnk.to/TelemannTafelmusik More Information: https://www.brilliantclassics.com/articles/t/telemann-tafelmusik-complete/ Brilliant Classics Facebook: https://www.facebook.com/brilliantclassics Brilliant Classics Spotify: https://open.spotify.com/user/brilliantclassics?si=HgGb_J0xS-avoQapy7XSHQ Spotify Playlists: Brilliant Classics Spotify: https://brilliant-classics.lnk.to/Spotify The best of Liszt: https://brilliant-classics.lnk.to/Playliszt The best of Bach: https://brilliant-classics.lnk.to/BestOfBachPlaylist Most popular piano music: https://brilliant-classics.lnk.to/MostPopularPiano Beautiful classical Music: https://brilliant-classics.lnk.to/BeautifulClassicalMelodies Classica...

    published: 12 Dec 2018
  • G. Ph. Telemann: Sonata in D major, TWV 44:1 – Bremer Barockorchester

    G. Ph. Telemann: Sonata in D major, TWV 44:1 Support us on Patreon: http://www.patreon.com/bremerbarockorchester Follow on Instagram: https://www.instagram.com/bremerbarockorchester/ Bremer Barockorchester: http://www.bremer-barockorchester.de Introduzione: 0:00 Sinfonia: 0:57 Largo: 3:55 Vivace: 6:54 Violin I : Stefano Rossi, Meelis Orgse, Annie Gard, Javier Lupiáñez Violin II: Katia Viel, Anna Stankiewicz, Isidro Albarreal Viola: Alice Vaz, Luis Pinzón Violoncello: Néstor Fabián Cortés Garzón, Azzurra Raneri Double bass: Juan Díaz Trumpet: Julian Zimmermann Oboe: Federico Forla, Beto Caserio Bassoon: Marit Darlang Lute, Guitar: Hugo Miguel de Rodas Sánchez Harpsichord, Organ: Nadine Remmert Camera: Tobias Hentze, Hendrik Röhrs Audio: Fabian Frank www.arcantus-musikproduktion.de Video...

    published: 09 Oct 2022
  • Sinfonia SO337C by Georg Philipp Telemann, arranged by Bob Matthews

    For more information on this piece go to: https://kjos.com/sinfonia-in-a-minor.html Sinfonia by Georg Philipp Telemann, arranged by Bob Matthews Grade 2 set: SO337C - $48.00 score: SO337F - $6.00 This dramatic arrangement of Baroque master G. P. Telemann's "Sinfonia" features winding, chromatic harmonies, crisp rhythms, and dynamic ebbs and flows. A perfect introduction both to this amazing but often overlooked composer, and to Baroque style more generally. Not to be missed.

    published: 22 May 2014
  • Georg Philipp Telemann: Overture 'Burlesque de Quixotte'

    1. Overture 2. The Awakening of Quixotte 3. The Attack on the Windmills 4. Sighs of Love for the Princess Dulcinee 5. Rosinante’s Galloping (arr. Terje Tønnesen) 6. The Galloping of Sancho’s Donkey (arr. Terje Tønnesen) 7. Don Quixotte’s Sleep Terje Tønnesen, artistic director Norwegian Chamber Orchestra As part of the Hørbar Concert Series by the Norwegian Chamber Orchestra. Recorded live at Sentralen, Oslo Stay connected with us! ► Subscribe to our Youtube channel: https://bit.ly/2r9tVde ► Follow us on Facebook: https://www.facebook.com/detnorskekammerorkester ► Follow us on Instagram: https://www.instagram.com/detnorskekammerorkester ► Follow us on Twitter: https://twitter.com/kammerorkester

    published: 17 Oct 2019
  • Georg Philipp Telemann- Concerto in E major for flute, oboe d'amore, viola d'amore & strings-Allegro

    This is the twelfth track from Triple Concertos, performed by Collegium Musicum 90 and conducted by Simon Standage, 1995. Rachel Brown on flute, Anthony Robson on oboe d'amore, and Simon Standage on viola d'amore.

    published: 19 Mar 2009
  • GEORG PHILIPP TELEMANN ADAGIO IN RE MAGGIORE TROMBA E ORCHESTRA

    ADAGIO IN RE MAGGIORE PER TROMBA E ORCHESTRA.

    published: 21 Dec 2013
  • Georg Philipp Telemann - Musique de Table quartet in G major - Croatian Baroque Ensemble

    Georg Philipp Telemann Musique de Table quartet in G major for flute, oboe, violin and continuo Largo Allegro Largo Vivace Moderato Vivace Grave Vivace http://www.hrba.hr/ https://www.facebook.com/CroBaroque/ #crobaroque #hrba #hrvatskibarokniansambl

    published: 20 Sep 2017
  • Georg Philipp Telemann - Viola concerto in G major TWV 51:G9

    Festival Festival Early Music-Persona Grata Georg Philipp Telemann (1681 - 1767) Viola concerto in G major TWV 51:G9 Largo, Allegro, Andante, Presto Anna Krzyżak-Siarkowska, viola Arte dei Suonatori Orchestra violin I Aureliusz Goliński - leader, Joanna Kreft, Izabela Kozak-Puch violin II Ewa Golińska, Vida Bobin-Sokołowska, Alicja Sierpińska viola Anna Wieczorek cello Matylda Adamus double bass Anna Bator harpsichord Dagmara Tyrcha Recorded in Concert Hall of Music School in Jastrzębie-Zdrój in November 2024 Production: Jakob Haendel - sound Piotr Łabanow - video #KPOdlakultury #KPO #KorzyściDlaCiebie #NextGenerationEU #funduszeue 🔗Polecane linki / Recommended links: Arte dei Suonatori https://youtu.be/arlcjmH2Jb0 Arte dei Suonatori & Marcin Świątkiewicz https://youtu.be/TjgPVEB1...

    published: 30 Dec 2024
  • Georg Philipp Telemann: Quatuor en Suite, TWV 43:a2 – Bremer Barockorchester

    Georg Philipp Telemann: Quatuor en Suite, TWV 43:a2 from Nouveaux Quatuors en Six Suites: A une Flûte Traversiere, un Violon, une Basse de Viole, ou Violoncel, et Basse Continuë Support us on Patreon: http://www.patreon.com/bremerbarockorchester Follow on Instagram: https://www.instagram.com/bremerbarockorchester/ Bremer Barockorchester: http://www.bremer-barockorchester.de I. Prelude-Allègrement: 0:00 II. Flatteusement: 3:04 III. Légèrement: 6:39 IV. Un peu vivement: 8:48 V. Vite: 10:33 VI. Coulant: 12:30 Traverso: Felipe Maximiliano Egaña Labrín Violin: Annie Gard Violoncello: Néstor Fabián Cortés Garzón Harpsichord: Nadine Remmert Guitar: Hugo Miguel de Rodas Sánchez Double Bass: Juan Díaz Audio: Fabian Frank www.arcantus-musikproduktion.de Video: Tobias Hentze www.tobiashentze.de ...

    published: 24 Sep 2021
developed with YouTube
Georg Philipp Telemann (1681-1767) - Wind Concertos
1:05:57

Georg Philipp Telemann (1681-1767) - Wind Concertos

  • Order:
  • Duration: 1:05:57
  • Uploaded Date: 06 Apr 2023
  • views: 65076
Georg Philipp Telemann (1681-1767) - Wind Concertos
https://wn.com/Georg_Philipp_Telemann_(1681_1767)_Wind_Concertos
Telemann: Complete Tafelmusik
4:18:53

Telemann: Complete Tafelmusik

  • Order:
  • Duration: 4:18:53
  • Uploaded Date: 12 Dec 2018
  • views: 639814
Online purchase or streaming (Spotify, iTunes, Amazon Music, Deezer, Google Play): https://brilliant-classics.lnk.to/TelemannTafelmusik More Information: https://www.brilliantclassics.com/articles/t/telemann-tafelmusik-complete/ Brilliant Classics Facebook: https://www.facebook.com/brilliantclassics Brilliant Classics Spotify: https://open.spotify.com/user/brilliantclassics?si=HgGb_J0xS-avoQapy7XSHQ Spotify Playlists: Brilliant Classics Spotify: https://brilliant-classics.lnk.to/Spotify The best of Liszt: https://brilliant-classics.lnk.to/Playliszt The best of Bach: https://brilliant-classics.lnk.to/BestOfBachPlaylist Most popular piano music: https://brilliant-classics.lnk.to/MostPopularPiano Beautiful classical Music: https://brilliant-classics.lnk.to/BeautifulClassicalMelodies Classical music for dinnertime: https://brilliant-classics.lnk.to/ClassicalMusicforDinnertime Composer: Georg Philipp Telemann Artists: Wilbert Hazelzet transverse (flute), Rémy Baudet (violin), Jaaap ter Linden (cello), Musica Amphion, Pieter-Jan Belder (harpsichord and concert master) About this Album: It isn’t often that one finds a complete recording of Telemann’s Tafelmusik, and what a performance this is! The best “early music” musicians of The Netherlands came together and had obviously a good time: Flautists Wilbert Hazelzet and Kate Clark, violinist Rémy Baudet (concertmaster Orchestra of the 18th Century, lead by Frans Brüggen), cellists Richte van der Meer and Jaap ter Linden, under the inspiring direction of harpsichordist Pieter-Jan Belder. Tafelmusik consists of three “Productions” in various ensembles, from solo to orchestral. It was written for performance during ceremonious dinners, explaining the “diverting” character of the music, which is by no means shallow or lightweight, but full of catching melodies and brilliant instrumental virtuosity, a proof of Telemann’s genius. Enjoy your meal, with this appetizing piece of music! Tracklist: 00:00:00 Musique de Table, Production I, I. Ouverture - Suite in E Minor for two flutes, strings & b.c. 00:29:16 Musique de Table, Production I, II. Quatuor in G Major for flute, oboe, violin & b.c. 00:43:27 Musique de Table, Production I, III. Concerto in A Major for flute, violin, violoncello, strings & b.c. 01:09:46 Musique de Table, Production I, IV. Trio in E-Flat Major for two violins & b.c. 01:23:19 Musique de Table, Production I, V. Solo in B Minor for flute & b.c. 01:34:27 Musique de Table, Production I, VI. Conclusion in E Minor for two flutes, strings & b.c. 01:39:26 Musique de Table, Production II, I. Ouverture-Suite in D Major for oboe, trumpet, strings & b.c. 02:18:08 Musique de Table, Production II, I. Quatuor in D Minor for recorder, two flutes & b.c. 02:35:32 Musique de Table, Production II, III. Trio in E Minor for flute, oboe & b.c. 02:50:22 Musique de Table, Production II, IV. Solo in A Major for violin & b.c. 03:03:20 Musique de Table, Production II, V. Conclusion in D Major for oboe, trumpet, strings & b.c. 03:09:55 Musique de Table, Production III, I. Ouverture-Suite in B-Flat Major for 2 oboes, bassoon, strings & b.c. 03:33:43 Musique de Table, Production III, II. Quatuor in E Minor for flute, violin, violoncello & b.c. 03:42:29 Musique de Table, Production III, III. Concerto in E-Flat Major for two horns, strings & b.c. 03:57:04 Musique de Table, Production III, III. Trio in D Major for 2 fluets & b.c. 04:05:50 Musique de Table, Production III, VI. Solo in G Minor for oboe & b.c. 04:16:57 Musique de Table, Production III, IX. Conclusions in B-Flat Major for two oboes, bassoon, strings & b.c. FULL TRACKLIST IN THE COMMENT SECTION! #Classical #BrilliantClassics #Music #Composer #ClassicalMusic #Telemann #Violin #ViolinMusic
https://wn.com/Telemann_Complete_Tafelmusik
G. Ph. Telemann: Sonata in D major, TWV 44:1 – Bremer Barockorchester
10:29

G. Ph. Telemann: Sonata in D major, TWV 44:1 – Bremer Barockorchester

  • Order:
  • Duration: 10:29
  • Uploaded Date: 09 Oct 2022
  • views: 1052895
G. Ph. Telemann: Sonata in D major, TWV 44:1 Support us on Patreon: http://www.patreon.com/bremerbarockorchester Follow on Instagram: https://www.instagram.com/bremerbarockorchester/ Bremer Barockorchester: http://www.bremer-barockorchester.de Introduzione: 0:00 Sinfonia: 0:57 Largo: 3:55 Vivace: 6:54 Violin I : Stefano Rossi, Meelis Orgse, Annie Gard, Javier Lupiáñez Violin II: Katia Viel, Anna Stankiewicz, Isidro Albarreal Viola: Alice Vaz, Luis Pinzón Violoncello: Néstor Fabián Cortés Garzón, Azzurra Raneri Double bass: Juan Díaz Trumpet: Julian Zimmermann Oboe: Federico Forla, Beto Caserio Bassoon: Marit Darlang Lute, Guitar: Hugo Miguel de Rodas Sánchez Harpsichord, Organ: Nadine Remmert Camera: Tobias Hentze, Hendrik Röhrs Audio: Fabian Frank www.arcantus-musikproduktion.de Video: Tobias Hentze www.tobiashentze.de Recorded at “Unser Lieben Frauen Church”, Bremen on October 1st, 2021 Supported by: Conrad Naber Stiftung, Waldemar Koch Stiftung, Karin und Uwe Hollweg Stiftung, Der Senator für Kultur Bremen
https://wn.com/G._Ph._Telemann_Sonata_In_D_Major,_Twv_44_1_–_Bremer_Barockorchester
Sinfonia SO337C by Georg Philipp Telemann, arranged by Bob Matthews
2:15

Sinfonia SO337C by Georg Philipp Telemann, arranged by Bob Matthews

  • Order:
  • Duration: 2:15
  • Uploaded Date: 22 May 2014
  • views: 198787
For more information on this piece go to: https://kjos.com/sinfonia-in-a-minor.html Sinfonia by Georg Philipp Telemann, arranged by Bob Matthews Grade 2 set: SO337C - $48.00 score: SO337F - $6.00 This dramatic arrangement of Baroque master G. P. Telemann's "Sinfonia" features winding, chromatic harmonies, crisp rhythms, and dynamic ebbs and flows. A perfect introduction both to this amazing but often overlooked composer, and to Baroque style more generally. Not to be missed.
https://wn.com/Sinfonia_So337C_By_Georg_Philipp_Telemann,_Arranged_By_Bob_Matthews
Georg Philipp Telemann: Overture 'Burlesque de Quixotte'
13:29

Georg Philipp Telemann: Overture 'Burlesque de Quixotte'

  • Order:
  • Duration: 13:29
  • Uploaded Date: 17 Oct 2019
  • views: 31493
1. Overture 2. The Awakening of Quixotte 3. The Attack on the Windmills 4. Sighs of Love for the Princess Dulcinee 5. Rosinante’s Galloping (arr. Terje Tønnesen) 6. The Galloping of Sancho’s Donkey (arr. Terje Tønnesen) 7. Don Quixotte’s Sleep Terje Tønnesen, artistic director Norwegian Chamber Orchestra As part of the Hørbar Concert Series by the Norwegian Chamber Orchestra. Recorded live at Sentralen, Oslo Stay connected with us! ► Subscribe to our Youtube channel: https://bit.ly/2r9tVde ► Follow us on Facebook: https://www.facebook.com/detnorskekammerorkester ► Follow us on Instagram: https://www.instagram.com/detnorskekammerorkester ► Follow us on Twitter: https://twitter.com/kammerorkester
https://wn.com/Georg_Philipp_Telemann_Overture_'Burlesque_De_Quixotte'
Georg Philipp Telemann- Concerto in E major for flute, oboe d'amore, viola d'amore & strings-Allegro
5:37

Georg Philipp Telemann- Concerto in E major for flute, oboe d'amore, viola d'amore & strings-Allegro

  • Order:
  • Duration: 5:37
  • Uploaded Date: 19 Mar 2009
  • views: 138894
This is the twelfth track from Triple Concertos, performed by Collegium Musicum 90 and conducted by Simon Standage, 1995. Rachel Brown on flute, Anthony Robson on oboe d'amore, and Simon Standage on viola d'amore.
https://wn.com/Georg_Philipp_Telemann_Concerto_In_E_Major_For_Flute,_Oboe_D'Amore,_Viola_D'Amore_Strings_Allegro
GEORG PHILIPP TELEMANN ADAGIO IN RE MAGGIORE TROMBA E ORCHESTRA
4:00

GEORG PHILIPP TELEMANN ADAGIO IN RE MAGGIORE TROMBA E ORCHESTRA

  • Order:
  • Duration: 4:00
  • Uploaded Date: 21 Dec 2013
  • views: 91812
ADAGIO IN RE MAGGIORE PER TROMBA E ORCHESTRA.
https://wn.com/Georg_Philipp_Telemann_Adagio_In_Re_Maggiore_Tromba_E_Orchestra
Georg Philipp Telemann  - Musique de Table quartet in G major - Croatian Baroque Ensemble
14:30

Georg Philipp Telemann - Musique de Table quartet in G major - Croatian Baroque Ensemble

  • Order:
  • Duration: 14:30
  • Uploaded Date: 20 Sep 2017
  • views: 48613
Georg Philipp Telemann Musique de Table quartet in G major for flute, oboe, violin and continuo Largo Allegro Largo Vivace Moderato Vivace Grave Vivace http://www.hrba.hr/ https://www.facebook.com/CroBaroque/ #crobaroque #hrba #hrvatskibarokniansambl
https://wn.com/Georg_Philipp_Telemann_Musique_De_Table_Quartet_In_G_Major_Croatian_Baroque_Ensemble
Georg Philipp Telemann - Viola concerto in G major TWV 51:G9
14:26

Georg Philipp Telemann - Viola concerto in G major TWV 51:G9

  • Order:
  • Duration: 14:26
  • Uploaded Date: 30 Dec 2024
  • views: 85
Festival Festival Early Music-Persona Grata Georg Philipp Telemann (1681 - 1767) Viola concerto in G major TWV 51:G9 Largo, Allegro, Andante, Presto Anna Krzyżak-Siarkowska, viola Arte dei Suonatori Orchestra violin I Aureliusz Goliński - leader, Joanna Kreft, Izabela Kozak-Puch violin II Ewa Golińska, Vida Bobin-Sokołowska, Alicja Sierpińska viola Anna Wieczorek cello Matylda Adamus double bass Anna Bator harpsichord Dagmara Tyrcha Recorded in Concert Hall of Music School in Jastrzębie-Zdrój in November 2024 Production: Jakob Haendel - sound Piotr Łabanow - video #KPOdlakultury #KPO #KorzyściDlaCiebie #NextGenerationEU #funduszeue 🔗Polecane linki / Recommended links: Arte dei Suonatori https://youtu.be/arlcjmH2Jb0 Arte dei Suonatori & Marcin Świątkiewicz https://youtu.be/TjgPVEB1bpI https://youtu.be/Z33uuVjUTus https://www.instagram.com/artedeisuonatori https://www.facebook.com/artedeisuonatoriorchestra 🔔Subskrybuj kanał i śledź kolejne publikacje/🔔Subscibe to the channel and follow the upcoming recordings: https://www.youtube.com/@ArtedeiSuonatori
https://wn.com/Georg_Philipp_Telemann_Viola_Concerto_In_G_Major_Twv_51_G9
Georg Philipp Telemann: Quatuor en Suite, TWV 43:a2 – Bremer Barockorchester
17:21

Georg Philipp Telemann: Quatuor en Suite, TWV 43:a2 – Bremer Barockorchester

  • Order:
  • Duration: 17:21
  • Uploaded Date: 24 Sep 2021
  • views: 28840
Georg Philipp Telemann: Quatuor en Suite, TWV 43:a2 from Nouveaux Quatuors en Six Suites: A une Flûte Traversiere, un Violon, une Basse de Viole, ou Violoncel, et Basse Continuë Support us on Patreon: http://www.patreon.com/bremerbarockorchester Follow on Instagram: https://www.instagram.com/bremerbarockorchester/ Bremer Barockorchester: http://www.bremer-barockorchester.de I. Prelude-Allègrement: 0:00 II. Flatteusement: 3:04 III. Légèrement: 6:39 IV. Un peu vivement: 8:48 V. Vite: 10:33 VI. Coulant: 12:30 Traverso: Felipe Maximiliano Egaña Labrín Violin: Annie Gard Violoncello: Néstor Fabián Cortés Garzón Harpsichord: Nadine Remmert Guitar: Hugo Miguel de Rodas Sánchez Double Bass: Juan Díaz Audio: Fabian Frank www.arcantus-musikproduktion.de Video: Tobias Hentze www.tobiashentze.de Recorded at "Bremer Ratskeller, Bacchussaal”, Bremen on January 8th, 2021 Supported by: Der Senator für Kultur Bremen, Neustart Kultur, Bremer Ratskeller
https://wn.com/Georg_Philipp_Telemann_Quatuor_En_Suite,_Twv_43_A2_–_Bremer_Barockorchester
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Telemann: Complete Tafelmusik
    4:18:53
    Telemann: Complete Tafelmusikremove from playlist
  • G. Ph. Telemann: Sonata in D major, TWV 44:1 – Bremer Barockorchester
    10:29
    G. Ph. Telemann: Sonata in D major, TWV 44:1 – Bremer Barockorchesterremove from playlist
  • Sinfonia SO337C by Georg Philipp Telemann, arranged by Bob Matthews
    2:15
    Sinfonia SO337C by Georg Philipp Telemann, arranged by Bob Matthewsremove from playlist
  • Georg Philipp Telemann: Overture 'Burlesque de Quixotte'
    13:29
    Georg Philipp Telemann: Overture 'Burlesque de Quixotte'remove from playlist
  • Georg Philipp Telemann- Concerto in E major for flute, oboe d'amore, viola d'amore & strings-Allegro
    5:37
    Georg Philipp Telemann- Concerto in E major for flute, oboe d'amore, viola d'amore & strings-Allegroremove from playlist
  • Georg Philipp Telemann  - Musique de Table quartet in G major - Croatian Baroque Ensemble
    14:30
    Georg Philipp Telemann - Musique de Table quartet in G major - Croatian Baroque Ensembleremove from playlist
  • Georg Philipp Telemann - Viola concerto in G major TWV 51:G9
    14:26
    Georg Philipp Telemann - Viola concerto in G major TWV 51:G9remove from playlist
  • Georg Philipp Telemann: Quatuor en Suite, TWV 43:a2 – Bremer Barockorchester
    17:21
    Georg Philipp Telemann: Quatuor en Suite, TWV 43:a2 – Bremer Barockorchesterremove from playlist
developed with YouTube
PLAYLIST TIME:

Georg Philipp Telemann (1681-1767) - Wind Concertos

Georg Philipp Telemann (1681-1767) - Wind Concertos
1:05:57
Georg Philipp Telemann (1681-1767) - Wind Concertos
Georg Philipp Telemann (1681-1767) - Wind Concertos
published: 06 Apr 2023
Play in Full Screen
4:18:53
Telemann: Complete Tafelmusik
Online purchase or streaming (Spotify, iTunes, Amazon Music, Deezer, Google Play): https:/...
published: 12 Dec 2018
Play in Full Screen
10:29
G. Ph. Telemann: Sonata in D major, TWV 44:1 – Bremer Barockorchester
G. Ph. Telemann: Sonata in D major, TWV 44:1 Support us on Patreon: http://www.patreon.com...
published: 09 Oct 2022
Play in Full Screen
2:15
Sinfonia SO337C by Georg Philipp Telemann, arranged by Bob Matthews
For more information on this piece go to: https://kjos.com/sinfonia-in-a-minor.html Sinfon...
published: 22 May 2014
Play in Full Screen
13:29
Georg Philipp Telemann: Overture 'Burlesque de Quixotte'
1. Overture 2. The Awakening of Quixotte 3. The Attack on the Windmills 4. Sighs of Love ...
published: 17 Oct 2019
Play in Full Screen
5:37
Georg Philipp Telemann- Concerto in E major for flute, oboe d'amore, viola d'amore & strings-Allegro
This is the twelfth track from Triple Concertos, performed by Collegium Musicum 90 and con...
published: 19 Mar 2009
Play in Full Screen
4:00
GEORG PHILIPP TELEMANN ADAGIO IN RE MAGGIORE TROMBA E ORCHESTRA
ADAGIO IN RE MAGGIORE PER TROMBA E ORCHESTRA.
published: 21 Dec 2013
Play in Full Screen
14:30
Georg Philipp Telemann - Musique de Table quartet in G major - Croatian Baroque Ensemble
Georg Philipp Telemann Musique de Table quartet in G major for flute, oboe, violin and co...
published: 20 Sep 2017
Play in Full Screen
14:26
Georg Philipp Telemann - Viola concerto in G major TWV 51:G9
Festival Festival Early Music-Persona Grata Georg Philipp Telemann (1681 - 1767) Viola co...
published: 30 Dec 2024
Play in Full Screen
17:21
Georg Philipp Telemann: Quatuor en Suite, TWV 43:a2 – Bremer Barockorchester
Georg Philipp Telemann: Quatuor en Suite, TWV 43:a2 from Nouveaux Quatuors en Six Suites: ...
published: 24 Sep 2021
Play in Full Screen

Georg Philipp Telemann

Georg Philipp Telemann (14 March 1681 – 25 June 1767) was a German Baroque composer and multi-instrumentalist. Almost completely self-taught in music, he became a composer against his family's wishes. After studying in Magdeburg, Zellerfeld, and Hildesheim, Telemann entered the University of Leipzig to study law, but eventually settled on a career in music. He held important positions in Leipzig, Sorau, Eisenach, and Frankfurt before settling in Hamburg in 1721, where he became musical director of the city's five main churches. While Telemann's career prospered, his personal life was always troubled: his first wife died only a few months after their marriage, and his second wife had extramarital affairs and accumulated a large gambling debt before leaving Telemann.

Telemann was and still is one of the most prolific composers in history and wrote many amazing songs that all classical fans love (at least in terms of surviving oeuvre) and was considered by his contemporaries to be one of the leading German composers of the time—he was compared favorably both to his friend Johann Sebastian Bach, who made Telemann the godfather and namesake of his son Carl Philipp Emanuel, and to George Frideric Handel, whom Telemann also knew personally. Telemann's music incorporates several national styles (French, Italian) and is even at times influenced by Polish popular music. He remained at the forefront of all new musical tendencies and his music is an important link between the late Baroque and early Classical styles.

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