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

Wendy Carlos

Wendy Carlos (born Walter Carlos; November 14, 1939) is an American physicist, composer, and keyboardist best known for her electronic music and film scores. Born and raised in Rhode Island, Carlos studied physics and music at Brown University before moving to New York City in 1962 to study music composition at Columbia University. Studying and working with various electronic musicians and technicians at the city's Columbia-Princeton Electronic Music Center, she oversaw the development of the Moog synthesizer, then a relatively new and unknown keyboard instrument designed by Robert Moog.

Carlos came to prominence with Switched-On Bach (1968), an album of music by Johann Sebastian Bach performed on a Moog synthesizer which helped popularize its use in the 1970s and won Carlos three Grammy Awards. Its commercial success led to several more keyboard albums from Carlos of varying genres including further synthesized classical music adaptations and experimental and ambient music. Carlos composed the score to two Stanley Kubrick films, A Clockwork Orange (1971) and The Shining (1980), and Tron (1982) for Walt Disney Productions.

Peter and the Wolf

Peter and the Wolf (Russian: Петя и волк, Petya i volk), Op. 67, is a composition written by Sergei Prokofiev in 1936 in the USSR. It is a children's story (with both music and text by Prokofiev), spoken by a narrator accompanied by the orchestra.

History

In 1936, Sergei Prokofiev was commissioned by Natalya Sats and the Central Children's Theatre in Moscow to write a new musical symphony for children. The intent was to cultivate "musical tastes in children from the first years of school". Intrigued by the invitation, Prokofiev completed Peter and the Wolf in just four days. The debut on 2 May 1936 was, in the composer's words, inauspicious at best: "... [attendance] was poor and failed to attract much attention".

The first concert performance of the work outside Russia was by the Dublin Orchestral Players under the direction of Brian Boydell on 9 June 1942 in Dublin, Ireland.

Instrumentation

Peter and the Wolf is scored for the following orchestra:

  • Brass: 3 horns in F, a trumpet in B and a trombone
  • Peter and the Wolf (band)

    Peter and the Wolf is the American folk band formed by musician Red Hunter. Hunter says about his song writing, "I carry a journal everywhere with me. I will stop in the middle of whatever I'm doing to write down an idea, whether it's something I think about, hear, observe, or whatever. It's my highest priority to make sure I capture these ideas, as the craft of songwriting is a lifelong pursuit". The band's record label offers early demos called Peter and the Wolf and Experiments in Junk, but the first official CD released was Lightness. After the release of Lightness the band performed several shows in graveyards, islands, as well as more regular venues.The Ivori Palms became the act's second official release in September 2007, followed by Mellow Owl and Traffique's Endless Weekend Mixtape, the newest album, Easy Mountain, was released in December, 2011.

    Mellow Owl was written and recorded on a farm in Canada, and an undisclosed location in Vermont, according to liner notes. As Red Hunter told Splice Today in a recent interview, "I'm trying out all kinds of new stuff here to see what works. I'm really influenced by these native dudes I met in Fiji who sang super mellow beach harmonies, so I guess it'll be some island jams."

    Peter and the Wolf (2006 film)

    Peter & the Wolf (Polish: Piotruś i wilk, also known as Sergei Prokofiev's Peter and the Wolf) is a short Polish-British-Norwegian-Mexican model animation film released in 2006. It was written and directed by Suzie Templeton, scenography - Marek Skrobecki, made in Se-ma-for Studios in Łódź, and has been shown both in cinemas and with live musical accompaniment.

    The film is based on the story of Peter and the Wolf and is set to the music Sergei Prokofiev wrote for the story in 1936. In common with other animated shorts such as The Snowman the film has no vocals but relies on music and action to tell the story.

    A new recording of Prokofiev's music was made to accompany the cinema and television release. The recording was made by the Philharmonia Orchestra and conducted by Mark Stephenson.

    Plot

    On the edge of the vast forests of Russia, where wolves still roam, lies a little cottage surrounded by a big, high fence. This is where Peter lives with his grumpy Grandfather. Grandfather will not let Peter go out into the forest. Peter has a friend, the lovable Ducky (a runner duck in this version), with whom he hangs around Grandfather's yard. A Bird (a hooded crow in this version) with a broken wing arrives in the yard. Bird is very impatient with Peter and signals to go into the forest. His heart beating fast, Peter tiptoes into the cottage and reaches over his sleeping Grandfather and his snoring, fat cat. Ever so carefully Peter takes the keys to the gate.

    Podcasts:

    Wendy Carlos

    • David Bowie Narrates Disney's Peter And The Wolf (Full)

      Uploading this for my mom.

      published: 24 Feb 2019
    • 피터와 늑대 - 벤쿠버 심파니 오케스트라 Sergei Prokofiev- Peter and the Wolf. Vancouver Symphony Orchestra.

      Sergei Prokofiev- Peter and the Wolf. Vancouver Symphony Orchestra. 피터와 늑대 - 세르게이 프로코피예프 - 벤쿠버 심파니 오케스트라 (음악 거꾸로수업용 영상입니다. 이진경선생님.)

      published: 12 Oct 2018
    • Peter & the Wolf (2006 film | 4K Remade)

      Peter & the Wolf (Polish: Piotruś i wilk) is a short Polish–British–Norwegian stop-motion animated film released in 2006. Written and directed by Suzie Templeton and scenography by Marek Skrobecki, it was made in Se-ma-for Studios in Łódź and has been shown in cinemas, sometimes with live musical accompaniment. The film won the Academy Award for the Best Animated Short Film at the 80th Academy Awards. The film is based on the story of Peter and the Wolf as set to the music Sergei Prokofiev in 1936. Unlike the usual version of Prokofiev's work, the film has no narrator but relies on music and images to tell the story. A new recording of Prokofiev's music was made to accompany the cinema and television release. The recording was made by the Philharmonia Orchestra and conducted by Mark Steph...

      published: 10 Feb 2022
    • Peter and the Wolf | Sergei Prokofiev, arr. Wind Quintet

      This performance was created through Yale School of Music's chamber program during the 2020 fall semester. Due to COVID pandemic restrictions on in-person playing for wind instruments, this project is extra unique: all audio and video was recorded remotely, and as a newly formed group, we never had the chance to play together, or even meet in-person. We hope you enjoy this special performance! Performers: Danielle Maeng, flute (Instagram: https://www.instagram.com/daniandtheflute/) Elise Conti, oboe (Instagram: https://www.instagram.com/eliseconti/) Nikki Pet, clarinet (Instagram: https://www.instagram.com/clari.pet/) Olivia Martinez, horn (Instagram: https://www.instagram.com/oliviamartinez23/, Youtube: https://www.youtube.com/channel/UC_GTd5ZJK6gtBqa9nuO_Cqg) Katia Osorio, bassoon (In...

      published: 27 Feb 2021
    • Peter and the Wolf, Op. 67: Nos. 1-14 (music only)

      Provided to YouTube by The Orchard Enterprises Peter and the Wolf, Op. 67: Nos. 1-14 (music only) · Sergei Prokofiev · Leopold Stokowski · Stadium Symphony Orchestra of New York The Works of Sergei Prokofiev ℗ 2013 Ameritz Music Ltd Released on: 2013-12-12 Auto-generated by YouTube.

      published: 01 Aug 2015
    • Peter and the Wolf

      25 years ago, when my children were young, we would sit and listen to this recording of Peter and the Wolf and look at the book from where all the images in the video are from. I created this video for them as a Christmas gift in 2013. The music is from a recording by the Israel Philharmonic conducted by Zubin Mehta. The Narrator is Itzhak Perlman. The images are from the book we always read along with while listening to the CD. Publisher: Poegsma - A children's book publisher in the Netherlands Text by: Loriot Illustrations by: Jorg Muller

      published: 02 Jan 2014
    • Peter And The Wolf (1995) Remasted

      This is a good remastered i did

      published: 12 Nov 2017
    • Peter and the Wolf by Sergei Prokofiev - Academy of London Orchestra - Narrated by John Gielgud

      Peter and the Wolf by Sergei Prokofiev Conductor: Richard Stamp Orchestra: Academy of London Narrator: Sir John Gielgud

      published: 19 Apr 2015
    • Prokofiev - Peter and the Wolf March

      Peter and the Wolf, Op. 67, a "symphonic fairy tale for children", is a musical composition written by Sergei Prokofiev in 1936. ▶️ More from Prokofiev: https://youtube.com/playlist?list=PL5BD80ABF8A438689 🔔 Subscribe to The Wicked North for the very best in classical music: https://www.youtube.com/c/TheWickedNorth #ClassicalMusic #Prokofiev

      published: 19 Aug 2008
    developed with YouTube
    David Bowie Narrates Disney's Peter And The Wolf (Full)
    14:40

    David Bowie Narrates Disney's Peter And The Wolf (Full)

    • Order:
    • Duration: 14:40
    • Uploaded Date: 24 Feb 2019
    • views: 3279974
    Uploading this for my mom.
    https://wn.com/David_Bowie_Narrates_Disney's_Peter_And_The_Wolf_(Full)
    피터와 늑대 - 벤쿠버 심파니 오케스트라 Sergei Prokofiev- Peter and the Wolf. Vancouver Symphony Orchestra.
    29:31

    피터와 늑대 - 벤쿠버 심파니 오케스트라 Sergei Prokofiev- Peter and the Wolf. Vancouver Symphony Orchestra.

    • Order:
    • Duration: 29:31
    • Uploaded Date: 12 Oct 2018
    • views: 507823
    Sergei Prokofiev- Peter and the Wolf. Vancouver Symphony Orchestra. 피터와 늑대 - 세르게이 프로코피예프 - 벤쿠버 심파니 오케스트라 (음악 거꾸로수업용 영상입니다. 이진경선생님.)
    https://wn.com/피터와_늑대_벤쿠버_심파니_오케스트라_Sergei_Prokofiev_Peter_And_The_Wolf._Vancouver_Symphony_Orchestra.
    Peter & the Wolf (2006 film | 4K Remade)
    32:23

    Peter & the Wolf (2006 film | 4K Remade)

    • Order:
    • Duration: 32:23
    • Uploaded Date: 10 Feb 2022
    • views: 229298
    Peter & the Wolf (Polish: Piotruś i wilk) is a short Polish–British–Norwegian stop-motion animated film released in 2006. Written and directed by Suzie Templeton and scenography by Marek Skrobecki, it was made in Se-ma-for Studios in Łódź and has been shown in cinemas, sometimes with live musical accompaniment. The film won the Academy Award for the Best Animated Short Film at the 80th Academy Awards. The film is based on the story of Peter and the Wolf as set to the music Sergei Prokofiev in 1936. Unlike the usual version of Prokofiev's work, the film has no narrator but relies on music and images to tell the story. A new recording of Prokofiev's music was made to accompany the cinema and television release. The recording was made by the Philharmonia Orchestra and conducted by Mark Stephenson.
    https://wn.com/Peter_The_Wolf_(2006_Film_|_4K_Remade)
    Peter and the Wolf | Sergei Prokofiev, arr. Wind Quintet
    27:56

    Peter and the Wolf | Sergei Prokofiev, arr. Wind Quintet

    • Order:
    • Duration: 27:56
    • Uploaded Date: 27 Feb 2021
    • views: 835299
    This performance was created through Yale School of Music's chamber program during the 2020 fall semester. Due to COVID pandemic restrictions on in-person playing for wind instruments, this project is extra unique: all audio and video was recorded remotely, and as a newly formed group, we never had the chance to play together, or even meet in-person. We hope you enjoy this special performance! Performers: Danielle Maeng, flute (Instagram: https://www.instagram.com/daniandtheflute/) Elise Conti, oboe (Instagram: https://www.instagram.com/eliseconti/) Nikki Pet, clarinet (Instagram: https://www.instagram.com/clari.pet/) Olivia Martinez, horn (Instagram: https://www.instagram.com/oliviamartinez23/, Youtube: https://www.youtube.com/channel/UC_GTd5ZJK6gtBqa9nuO_Cqg) Katia Osorio, bassoon (Instagram: https://www.instagram.com/_k_celeste/, Website: https://katiaosorio.com/) Russell Fisher, percussion John Horzen, narrator (Instagram: https://www.instagram.com/johnhorzen/, Website: https://www.johnhorzen.com/) Coached by Ransom Wilson, Yale School of Music Professor of Flute Produced and animated by Nikki Pet Audio Engineering by Matt LeFevre, Ben Schwartz, and Nikki Pet Music composed by Sergei Prokofiev, arranged by Earl North If you enjoyed this performance and want to support bigger and better projects like it, please subscribe! I have also received several requests for blank coloring sheets for kids to supplement their viewing experience--they are now available to download for anyone who is interested! Purchase link: https://www.claripet.com/shop/p/peter-and-the-wolf-coloring-sheets
    https://wn.com/Peter_And_The_Wolf_|_Sergei_Prokofiev,_Arr._Wind_Quintet
    Peter and the Wolf, Op. 67: Nos. 1-14 (music only)
    20:19

    Peter and the Wolf, Op. 67: Nos. 1-14 (music only)

    • Order:
    • Duration: 20:19
    • Uploaded Date: 01 Aug 2015
    • views: 1446947
    Provided to YouTube by The Orchard Enterprises Peter and the Wolf, Op. 67: Nos. 1-14 (music only) · Sergei Prokofiev · Leopold Stokowski · Stadium Symphony Orchestra of New York The Works of Sergei Prokofiev ℗ 2013 Ameritz Music Ltd Released on: 2013-12-12 Auto-generated by YouTube.
    https://wn.com/Peter_And_The_Wolf,_Op._67_Nos._1_14_(Music_Only)
    Peter and the Wolf
    27:39

    Peter and the Wolf

    • Order:
    • Duration: 27:39
    • Uploaded Date: 02 Jan 2014
    • views: 2675032
    25 years ago, when my children were young, we would sit and listen to this recording of Peter and the Wolf and look at the book from where all the images in the video are from. I created this video for them as a Christmas gift in 2013. The music is from a recording by the Israel Philharmonic conducted by Zubin Mehta. The Narrator is Itzhak Perlman. The images are from the book we always read along with while listening to the CD. Publisher: Poegsma - A children's book publisher in the Netherlands Text by: Loriot Illustrations by: Jorg Muller
    https://wn.com/Peter_And_The_Wolf
    Peter And The Wolf (1995) Remasted
    25:18

    Peter And The Wolf (1995) Remasted

    • Order:
    • Duration: 25:18
    • Uploaded Date: 12 Nov 2017
    • views: 706969
    This is a good remastered i did
    https://wn.com/Peter_And_The_Wolf_(1995)_Remasted
    Peter and the Wolf by Sergei Prokofiev - Academy of London Orchestra - Narrated by John Gielgud
    28:48

    Peter and the Wolf by Sergei Prokofiev - Academy of London Orchestra - Narrated by John Gielgud

    • Order:
    • Duration: 28:48
    • Uploaded Date: 19 Apr 2015
    • views: 360168
    Peter and the Wolf by Sergei Prokofiev Conductor: Richard Stamp Orchestra: Academy of London Narrator: Sir John Gielgud
    https://wn.com/Peter_And_The_Wolf_By_Sergei_Prokofiev_Academy_Of_London_Orchestra_Narrated_By_John_Gielgud
    Prokofiev - Peter and the Wolf March
    4:11

    Prokofiev - Peter and the Wolf March

    • Order:
    • Duration: 4:11
    • Uploaded Date: 19 Aug 2008
    • views: 3098048
    Peter and the Wolf, Op. 67, a "symphonic fairy tale for children", is a musical composition written by Sergei Prokofiev in 1936. ▶️ More from Prokofiev: https://youtube.com/playlist?list=PL5BD80ABF8A438689 🔔 Subscribe to The Wicked North for the very best in classical music: https://www.youtube.com/c/TheWickedNorth #ClassicalMusic #Prokofiev
    https://wn.com/Prokofiev_Peter_And_The_Wolf_March
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    David Bowie Narrates Disney's Peter And The Wolf (Full)

    Uploading this for my mom.
    14:40
    David Bowie Narrates Disney's Peter And The Wolf (Full)
    Uploading this for my mom.
    published: 24 Feb 2019
    Play in Full Screen
    29:31
    피터와 늑대 - 벤쿠버 심파니 오케스트라 Sergei Prokofiev- Peter and the Wolf. Vancouver Symphony Orchestra.
    Sergei Prokofiev- Peter and the Wolf. Vancouver Symphony Orchestra. 피터와 늑대 - 세르게이 프로코피예프 -...
    published: 12 Oct 2018
    Play in Full Screen
    32:23
    Peter & the Wolf (2006 film | 4K Remade)
    Peter & the Wolf (Polish: Piotruś i wilk) is a short Polish–British–Norwegian stop-motion ...
    published: 10 Feb 2022
    Play in Full Screen
    27:56
    Peter and the Wolf | Sergei Prokofiev, arr. Wind Quintet
    This performance was created through Yale School of Music's chamber program during the 202...
    published: 27 Feb 2021
    Play in Full Screen
    20:19
    Peter and the Wolf, Op. 67: Nos. 1-14 (music only)
    Provided to YouTube by The Orchard Enterprises Peter and the Wolf, Op. 67: Nos. 1-14 (mus...
    published: 01 Aug 2015
    Play in Full Screen
    27:39
    Peter and the Wolf
    25 years ago, when my children were young, we would sit and listen to this recording of Pe...
    published: 02 Jan 2014
    Play in Full Screen
    25:18
    Peter And The Wolf (1995) Remasted
    This is a good remastered i did
    published: 12 Nov 2017
    Play in Full Screen
    28:48
    Peter and the Wolf by Sergei Prokofiev - Academy of London Orchestra - Narrated by John Gielgud
    Peter and the Wolf by Sergei Prokofiev Conductor: Richard Stamp Orchestra: Academy of Lon...
    published: 19 Apr 2015
    Play in Full Screen
    4:11
    Prokofiev - Peter and the Wolf March
    Peter and the Wolf, Op. 67, a "symphonic fairy tale for children", is a musical compositio...
    published: 19 Aug 2008
    Play in Full Screen

    Wendy Carlos

    Wendy Carlos (born Walter Carlos; November 14, 1939) is an American physicist, composer, and keyboardist best known for her electronic music and film scores. Born and raised in Rhode Island, Carlos studied physics and music at Brown University before moving to New York City in 1962 to study music composition at Columbia University. Studying and working with various electronic musicians and technicians at the city's Columbia-Princeton Electronic Music Center, she oversaw the development of the Moog synthesizer, then a relatively new and unknown keyboard instrument designed by Robert Moog.

    Carlos came to prominence with Switched-On Bach (1968), an album of music by Johann Sebastian Bach performed on a Moog synthesizer which helped popularize its use in the 1970s and won Carlos three Grammy Awards. Its commercial success led to several more keyboard albums from Carlos of varying genres including further synthesized classical music adaptations and experimental and ambient music. Carlos composed the score to two Stanley Kubrick films, A Clockwork Orange (1971) and The Shining (1980), and Tron (1982) for Walt Disney Productions.

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