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

Incidental music

Incidental music is music in a play, television program, radio program, video game, film, or some other presentation form that is not primarily musical. The term is less frequently applied to film music, with such music being referred to instead as the "film score" or "soundtrack".

Incidental music is often "background" music, and is intended to add atmosphere to the action. It may take the form of something as simple as a low, ominous tone suggesting an impending startling event or to enhance the depiction of a story-advancing sequence. It may also include pieces such as overtures, music played during scene changes, or at the end of an act, immediately preceding an interlude, as was customary with several nineteenth-century plays. It may also be required in plays that have musicians performing on-stage.

The use of incidental music dates back at least as far as Greek drama. A number of classical composers have written incidental music for various plays, with the more famous examples including Ludwig van Beethoven's Egmont music, Franz Schubert's Rosamunde music, Felix Mendelssohn's Midsummer Night's Dream music, Georges Bizet's L'Arlésienne music, and Edvard Grieg's music for Henrik Ibsen's Peer Gynt. Parts of all of these are often performed in concerts outside the context of the play. Vocal incidental music, which is included in the classical scores mentioned above, should never be confused with the score of a Broadway or film musical, in which the songs often reveal character and further the storyline. Since the score of a Broadway or film musical is what actually makes the work a musical, it is far more essential to the work than mere incidental music, which nearly always amounts to little more than a background score; indeed, many plays have no incidental music whatsoever.

Incidental Music 1991–95

Incidental Music 1991–95 is a collection of various b-sides and previously unreleased tracks by Superchunk. It was released by Merge Records in 1995. Despite the name of the collection, the songs included actually date from between 1990 to 1994.

A number of the tracks are covers: "100,000 Fireflies" is a song by The Magnetic Fields; "Lying in State" is a song by the Verlaines; "I'll Be Your Sister" was originally recorded by Motörhead; and "Night of Chill Blue" is a song by the Chills.

The unlisted track at the end is an alternate version of "Precision Auto," which originally led off the On the Mouth album.

The cover art is credited to Mac McCaughan, the band's singer and guitarist.

Track listing

  • "Shallow End" (1994)
  • "Mower" (1991)
  • "On the Mouth" (1991)
  • "Cadmium" (1992)
  • "Who Needs Light" (1993)
  • "Ribbon" (1993)
  • "Foolish" (1993)
  • "100,000 Fireflies" (1992)
  • "Invitation" (1991)
  • "Makeout Bench" (1990)
  • "Baxter" (1992)
  • "Connecticut" (1993)
  • "Lying in State" (1992)
  • "Throwing Things (acoustic)" (1992)
  • Podcasts:

    • Interstellar: Incidental Music

      Roger Sayer plays incidental music from the soundtrack to Interstellar from the original score used in the movie and at the live performance at the Royal Albert Hall. The score has markings and additions by Hans Zimmer as changes were sometimes made on the day of the recording!

      published: 30 Apr 2019
    • THE POWER OF MUSIC IN FILM - How music affects film

      We look at how music can manipulate characters or scenes in films. https://www.jackpiercemusic.com/ Contact me: contactjackpierce@gmail.com Free to download here: https://sellfy.com/p/VTeD/ Donations go towards filming funds for 'Power of Music Part 2'! All original music composed by Jack Pierce https://soundcloud.com/jackpiercemusic © "True" by Spandau Ballet, Composed by Gary Kemp

      published: 07 Apr 2017
    • Jean Sibelius - Incidental music from "Belshazzar's Feast" Op. 51 (audio + sheet music)

      The early 1900s, a heady time for theatre in Finland, was also the time of Sibelius’s most intense activity in writing for the stage. Very quickly after Kuolema (1902) and Pelleas and Melisande (1905), he produced music for Hjalmar Procope’s play Belshazzar’s Feast. In contrast to Maeterlinck’s masterpiece, Procope’s play really only survives now through Sibelius’s music—and critics at the time were not slow to point out the superiority of the music to the drama. Belshazzar’s Feast was premiered at the Swedish Theatre in Helsinki in November 1906. Sibelius provided a score of ten numbers, and although the concert suite (which Sibelius premiered himself in 1907) has only four movements, it incorporates all the significant material from the full score. Though infrequently performed, the f...

      published: 22 Oct 2016
    • ‘Yellowstone’ Official Theme Music Composed by Brian Tyler | Paramount Network

      Go behind the scenes of the recording of the theme to ‘Yellowstone’ from renowned composer Brian Tyler. Listen to the full soundtrack at https://soundtracks.lnk.to/Yellowstone #Yellowstone #BrianTyler #ParamountNetwork Subscribe for More! https://goo.gl/vnHLxY Yellowstone is a drama series that follows the Dutton family, led by patriarch John Dutton. The Duttons control the largest contiguous ranch in the U.S. and must contend with constant attacks by land developers, clashes with an Indian reservation and conflict with America's first national park. Follow Paramount Network Website: http://www.paramountnetwork.com Facebook: @ParamountNetwork Instagram: @ParamountNetwork Twitter: @ParamountNet

      published: 22 Aug 2018
    • Alec Koff - The Dark Night (Suspense Background Music / Suspenseful background music)

      https://audiojungle.net/item/the-dark-night/40496452 🔵 Apple Music ►https://apple.co/2ATATLF 🔵 Spotify ►https://spoti.fi/3g8SQow 🔵 TikTok ►https://www.tiktok.com/@alec_koff_music 🔵 Audiojungle ►https://1.envato.market/AlecKoff 🔵 Instagram ►https://www.instagram.com/alec.koff/ 🔵 Twitter (X) ►https://twitter.com/KoffAlec33401 🔵 Amazon ►http://bit.ly/Alec_Albums 🔵 Deezer ►https://bit.ly/2VwuPA7 🔵 Yandex Music ►https://bit.ly/2YNjE6O ------------------------------------------------------------------------------------------------------ ►►►►►►►INSTAGRAM: All my music is available on the Instagram platform. Use the search term "Alec Koff" to find my music to use in your videos. Use Shazam to find out the name of th...

      published: 31 Jul 2020
    • Incidental Music

      Provided to YouTube by Universal Music Group Incidental Music · Stephen Sondheim Unsung Sondheim ℗ 1993 Concord Theatricals., Distributed by Concord. Released on: 1993-09-28 Musical Director: James Stenborg Producer, Recording Producer: Bruce Kimmel Studio Personnel, Mastering Engineer: Joe Gastwirt Studio Personnel, Recording Engineer: Geoffrey Daking Studio Personnel, Recording Engineer: Ken Feldman Studio Personnel, Mix Engineer: Vincent Cirilli Associated Performer, Programming, Keyboards: Rich Ruttenberg Associated Performer, Flute: John Blanchard Associated Performer, Clarinet: Larry Guy Associated Performer, Horn: Susan Panny Associated Performer, Trumpet: Dave Rogers Associated Performer, Harp: Karen Lindquist Composer Lyricist: Stephen Sondheim Auto-generate...

      published: 17 Nov 2022
    • Great Incidental Music

      No soundtrack album released for this top film, Sweeney 2 (1978)

      published: 19 Aug 2017
    • Incidental Music to Abdelazer: II.Rondeau

      Provided to YouTube by Audio Network Limited Incidental Music to Abdelazer: II.Rondeau · Julian Gallant · David Tobin · Jeff Meegan · Royal Philharmonic Orchestra · Henry Purcell Classical Collection - Grand, Majestic ℗ 2019 Audio Network Ltd Released on: 2019-10-25 Engineer: Lewis Jones Orchestra: Royal Philharmonic Orchestra Engineer: Andrew Dudman Conductor: Julian Gallant Producer: Andrew Sunnucks Music Publisher: Audio Network Ltd Arranger: David Tobin Arranger: Jeff Meegan Arranger: Julian Gallant Composer: Henry Purcell Auto-generated by YouTube.

      published: 24 Oct 2019
    • 1 Orchestra | 30 Film & TV Themes [Orchestral Film & TV Music Arrangement]

      30 orchestra themes from popular Film and TV soundtracks arranged for orchestra by Stuart Bramwell. *NEW 2024 ORCHESTRAL CHRISTMAS MUSIC* - https://youtu.be/2jq4eqgcy54 WITHOUT COPYRIGHT MUTES -- https://youtu.be/GnOSTBTQNM0 00:00 Avatar - Becoming One Of The People (Horner) 01:18 Game Of Thrones - Titles (Ramin Djawadi) 02:10 Star Trek Next Generation - Titles - (Jerry Goldsmith) *MUTED* 02:35 How To Train Your Dragon - Romantic Flight (John Powell) 03:45 How To Train Your Dragon - This Is Berk (John Powell) 04:00 How To Train Your Dragon - Test Drive (John Powell) 04:30 How To Train Your Dragon - Together We Map The World (John Powell) 05:00 The Lord Of The Rings - The Shire (Howard Shore) 05:42 Wall-E - Define Dancing (Thomas Newman) 06:16 How To Train Your Dragon - Forbidden Friendshi...

      published: 30 Apr 2020
    • Incidental Music to "A Midsummer Night's Dream", Op.61: I. Overture Op.21

      Provided to YouTube by Phoenix Music International Ltd Incidental Music to "A Midsummer Night's Dream", Op.61: I. Overture Op.21 · Walter Weller · Royal Scottish Orchestra Mendlessohn: "A Midsummer Night's Dream" Complete Incidental Music ℗ Collins Classics Released on: 1992-07-01 Artist: Royal Scottish Orchestra Artist: Walter Weller Auto-generated by YouTube.

      published: 08 Jan 2020
    Interstellar: Incidental Music
    1:14

    Interstellar: Incidental Music

    • Order:
    • Duration: 1:14
    • Uploaded Date: 30 Apr 2019
    • views: 21181
    Roger Sayer plays incidental music from the soundtrack to Interstellar from the original score used in the movie and at the live performance at the Royal Albert Hall. The score has markings and additions by Hans Zimmer as changes were sometimes made on the day of the recording!
    https://wn.com/Interstellar_Incidental_Music
    THE POWER OF MUSIC IN FILM - How music affects film
    5:49

    THE POWER OF MUSIC IN FILM - How music affects film

    • Order:
    • Duration: 5:49
    • Uploaded Date: 07 Apr 2017
    • views: 747433
    We look at how music can manipulate characters or scenes in films. https://www.jackpiercemusic.com/ Contact me: contactjackpierce@gmail.com Free to download here: https://sellfy.com/p/VTeD/ Donations go towards filming funds for 'Power of Music Part 2'! All original music composed by Jack Pierce https://soundcloud.com/jackpiercemusic © "True" by Spandau Ballet, Composed by Gary Kemp
    https://wn.com/The_Power_Of_Music_In_Film_How_Music_Affects_Film
    Jean Sibelius - Incidental music from "Belshazzar's Feast" Op. 51 (audio + sheet music)
    14:47

    Jean Sibelius - Incidental music from "Belshazzar's Feast" Op. 51 (audio + sheet music)

    • Order:
    • Duration: 14:47
    • Uploaded Date: 22 Oct 2016
    • views: 22923
    The early 1900s, a heady time for theatre in Finland, was also the time of Sibelius’s most intense activity in writing for the stage. Very quickly after Kuolema (1902) and Pelleas and Melisande (1905), he produced music for Hjalmar Procope’s play Belshazzar’s Feast. In contrast to Maeterlinck’s masterpiece, Procope’s play really only survives now through Sibelius’s music—and critics at the time were not slow to point out the superiority of the music to the drama. Belshazzar’s Feast was premiered at the Swedish Theatre in Helsinki in November 1906. Sibelius provided a score of ten numbers, and although the concert suite (which Sibelius premiered himself in 1907) has only four movements, it incorporates all the significant material from the full score. Though infrequently performed, the four pieces that make up the suite from Sibelius' incidental score for the play are typical of the composer's music in that genre. Though perhaps not ideally suited to concert performance, the music, which contains moments of great poignancy, serves its original purpose extremely well. Steering clear of any traditional means of musical development, Sibelius instead relies on extended formal repetition and the use of ostinato to portray the local color of the drama. (00:14) The opening "Oriental March" depicts a Babylonian procession; here Sibelius' natural affinity for fusing traditional harmonies with various modal flavors comes to the fore. (02:56) "Solitude" is a poetic, introspective vision which relies heavily upon ostinato and hushed effects in the strings section. (06:20) The dissonant, sobbing gestures of "Night Music" remain philosophically in the same vein as "Solitude." (10:41) The final piece, "Khadra's Dance," is lighter in mood, though features an oboe melody of some pathos. (Hyperion, AllMusic) Please take note that the audio AND the sheet music ARE NOT mine. Change the quality to a minimum of 480p if the video is blurry. Original audio: https://www.youtube.com/watch?v=gPHM3lTJ4nc (Performance by: New Zealand Symphony Orchestra, conducted by Pietari Inkinen) Original sheet music: http://imslp.org/wiki/Belshazzar's_Feast,_Op.51_(Sibelius,_Jean)
    https://wn.com/Jean_Sibelius_Incidental_Music_From_Belshazzar's_Feast_Op._51_(Audio_Sheet_Music)
    ‘Yellowstone’ Official Theme Music Composed by Brian Tyler | Paramount Network
    2:41

    ‘Yellowstone’ Official Theme Music Composed by Brian Tyler | Paramount Network

    • Order:
    • Duration: 2:41
    • Uploaded Date: 22 Aug 2018
    • views: 2477285
    Go behind the scenes of the recording of the theme to ‘Yellowstone’ from renowned composer Brian Tyler. Listen to the full soundtrack at https://soundtracks.lnk.to/Yellowstone #Yellowstone #BrianTyler #ParamountNetwork Subscribe for More! https://goo.gl/vnHLxY Yellowstone is a drama series that follows the Dutton family, led by patriarch John Dutton. The Duttons control the largest contiguous ranch in the U.S. and must contend with constant attacks by land developers, clashes with an Indian reservation and conflict with America's first national park. Follow Paramount Network Website: http://www.paramountnetwork.com Facebook: @ParamountNetwork Instagram: @ParamountNetwork Twitter: @ParamountNet
    https://wn.com/‘Yellowstone’_Official_Theme_Music_Composed_By_Brian_Tyler_|_Paramount_Network
    Alec Koff - The Dark Night (Suspense Background Music / Suspenseful background music)
    1:38

    Alec Koff - The Dark Night (Suspense Background Music / Suspenseful background music)

    • Order:
    • Duration: 1:38
    • Uploaded Date: 31 Jul 2020
    • views: 3511660
    https://audiojungle.net/item/the-dark-night/40496452 🔵 Apple Music ►https://apple.co/2ATATLF 🔵 Spotify ►https://spoti.fi/3g8SQow 🔵 TikTok ►https://www.tiktok.com/@alec_koff_music 🔵 Audiojungle ►https://1.envato.market/AlecKoff 🔵 Instagram ►https://www.instagram.com/alec.koff/ 🔵 Twitter (X) ►https://twitter.com/KoffAlec33401 🔵 Amazon ►http://bit.ly/Alec_Albums 🔵 Deezer ►https://bit.ly/2VwuPA7 🔵 Yandex Music ►https://bit.ly/2YNjE6O ------------------------------------------------------------------------------------------------------ ►►►►►►►INSTAGRAM: All my music is available on the Instagram platform. Use the search term "Alec Koff" to find my music to use in your videos. Use Shazam to find out the name of the track you like and find this track in Instagram (Stories, Reels). ------------------------------------------------------------------------------------------------------ ►►►►►►►TIKTOK: All my music is available on the TikTok platform. Use the search term "Alec Koff" to find my music to use in your videos. Use Shazam to find out the name of the track you like and find this track in TikTok. ------------------------------------------------------------------------------------------------------ YouTube Copyright Protection: Since all of my music tracks are protected by copyright, your videos may receive claims. This is how YouTube copyright works. I have to protect my copyrights because so many people want to take my music tracks for themselves. If I do not protect copyrights, then all my clients, all the people who use my music, that is, millions of people around the world, may suffer. If your video has received a complaint, that's fine, don't worry, there's nothing to worry about. If you have a license, you can dispute the claim yourself in your YouTube studio. On This Channel You Can Find: background music, background music for videos, music for youtube, music for studying, music for working, vlog music, #bgm #backgroundmusic Thanks For Listening! Do not forget: Like, Share and Subscribe! ------------------------------------------------------------------------------------------------------ - You can NOT claim the music as your own - You can NOT sell the music anywhere - You can NOT remix the music without the author's consent - You can NOT use third-party software to download the video/track, always use our download links All music is protected by DMCA.
    https://wn.com/Alec_Koff_The_Dark_Night_(Suspense_Background_Music_Suspenseful_Background_Music)
    Incidental Music
    13:40

    Incidental Music

    • Order:
    • Duration: 13:40
    • Uploaded Date: 17 Nov 2022
    • views: 1045
    Provided to YouTube by Universal Music Group Incidental Music · Stephen Sondheim Unsung Sondheim ℗ 1993 Concord Theatricals., Distributed by Concord. Released on: 1993-09-28 Musical Director: James Stenborg Producer, Recording Producer: Bruce Kimmel Studio Personnel, Mastering Engineer: Joe Gastwirt Studio Personnel, Recording Engineer: Geoffrey Daking Studio Personnel, Recording Engineer: Ken Feldman Studio Personnel, Mix Engineer: Vincent Cirilli Associated Performer, Programming, Keyboards: Rich Ruttenberg Associated Performer, Flute: John Blanchard Associated Performer, Clarinet: Larry Guy Associated Performer, Horn: Susan Panny Associated Performer, Trumpet: Dave Rogers Associated Performer, Harp: Karen Lindquist Composer Lyricist: Stephen Sondheim Auto-generated by YouTube.
    https://wn.com/Incidental_Music
    Great Incidental Music
    2:24

    Great Incidental Music

    • Order:
    • Duration: 2:24
    • Uploaded Date: 19 Aug 2017
    • views: 4219
    No soundtrack album released for this top film, Sweeney 2 (1978)
    https://wn.com/Great_Incidental_Music
    Incidental Music to Abdelazer: II.Rondeau
    1:33

    Incidental Music to Abdelazer: II.Rondeau

    • Order:
    • Duration: 1:33
    • Uploaded Date: 24 Oct 2019
    • views: 5409
    Provided to YouTube by Audio Network Limited Incidental Music to Abdelazer: II.Rondeau · Julian Gallant · David Tobin · Jeff Meegan · Royal Philharmonic Orchestra · Henry Purcell Classical Collection - Grand, Majestic ℗ 2019 Audio Network Ltd Released on: 2019-10-25 Engineer: Lewis Jones Orchestra: Royal Philharmonic Orchestra Engineer: Andrew Dudman Conductor: Julian Gallant Producer: Andrew Sunnucks Music Publisher: Audio Network Ltd Arranger: David Tobin Arranger: Jeff Meegan Arranger: Julian Gallant Composer: Henry Purcell Auto-generated by YouTube.
    https://wn.com/Incidental_Music_To_Abdelazer_Ii.Rondeau
    1 Orchestra | 30 Film & TV Themes [Orchestral Film & TV Music Arrangement]
    30:46

    1 Orchestra | 30 Film & TV Themes [Orchestral Film & TV Music Arrangement]

    • Order:
    • Duration: 30:46
    • Uploaded Date: 30 Apr 2020
    • views: 3664774
    30 orchestra themes from popular Film and TV soundtracks arranged for orchestra by Stuart Bramwell. *NEW 2024 ORCHESTRAL CHRISTMAS MUSIC* - https://youtu.be/2jq4eqgcy54 WITHOUT COPYRIGHT MUTES -- https://youtu.be/GnOSTBTQNM0 00:00 Avatar - Becoming One Of The People (Horner) 01:18 Game Of Thrones - Titles (Ramin Djawadi) 02:10 Star Trek Next Generation - Titles - (Jerry Goldsmith) *MUTED* 02:35 How To Train Your Dragon - Romantic Flight (John Powell) 03:45 How To Train Your Dragon - This Is Berk (John Powell) 04:00 How To Train Your Dragon - Test Drive (John Powell) 04:30 How To Train Your Dragon - Together We Map The World (John Powell) 05:00 The Lord Of The Rings - The Shire (Howard Shore) 05:42 Wall-E - Define Dancing (Thomas Newman) 06:16 How To Train Your Dragon - Forbidden Friendship (John Powell) 08:23 Harry Potter - Titles (John Williams) 08:43 Harry Potter - Defending Hogwarts (Alexandre Desplat) 09:28 Harry Potter - Hedwig's Theme (John Williams) 10:00 Overwatch - Victory Theme (Neal Acree) 10:45 Monster Hunter: World - Bazelgeuse (Tadayoshi Makino) 10:50 Interstellar - Cornfield Chase (Hans Zimmer) 12:41 Downton Abbey - Titles (John Lunn) 14:55 Howls Moving Castle - Merry-Go-Round of Life (Joe Hisaishi) *MUTED* 15:56 How To Train Your Dragon - Furies In Love (John Powell) 17:08 Star Trek Into Darkness - Sub-Prime Directive (Michael Giacchino) *MUTED* 18:05 Inception - Time (Hans Zimmer) 20:50 The Mandalorian - Titles (Ludwig Göransson) 21:45 Jurassic Park - Titles (John Williams) 22:42 ET - Forest Chase (John Williams) 23:20 The Peacemakers - Titles (Stuart Bramwell) 23:50 Fantastic Beasts: The Crimes of Grindelwald - Titles (James Newton Howard) 25:06 Avengers: Endgame - Portals (Alan Silvestri) 26:04 Star Wars - Imperial March (John Williams) 26:30 IT - Titles (Benjamin Wallfisch) 27:30 How To Train Your Dragon - The Hidden World (John Powell) 29:12 *CREDITS* Music - 'Flying High' - (Stuart Bramwell) *Sheet Music* - https://stuartbramwellsheetmusic.bigcartel.com/ Composition/Arrangement/Recording/Editing/Concertmaster - Stuart Bramwell Conductor - Konstantinos Terzakis Piano - Valerie Tjota *IMPORTANT DISCLAIMERS* -This recording took place right before the COVID-19 virus outbreak, resulting in limitations in the size of the ensemble (no woodwinds/brass due to particulates in the air). - With the exception of 'The Peacemakers' and 'Flying High', all of this music was written by other composers and ONLY arranged by Stuart Bramwell. - Yes I like the HTTYD score, can you tell? *****A VERY IMPORTANT NOTE FOR COPYRIGHT HOLDERS***** If you DO NOT want your music featured in this arrangement, submit a shared revenue claim on the video and I will mute the segment out in response, as I have already done with a few of the pieces. I WILL NOT accept shared revenue 'cover' claims on this video. This is because YouTube calculates the share based on the *total* video revenue, and not based on the segment you claim. tags: Film Music Arrangement Medley Mashup Live Orchestra Main Theme
    https://wn.com/1_Orchestra_|_30_Film_Tv_Themes_Orchestral_Film_Tv_Music_Arrangement
    Incidental Music to "A Midsummer Night's Dream", Op.61: I. Overture Op.21
    12:00

    Incidental Music to "A Midsummer Night's Dream", Op.61: I. Overture Op.21

    • Order:
    • Duration: 12:00
    • Uploaded Date: 08 Jan 2020
    • views: 46457
    Provided to YouTube by Phoenix Music International Ltd Incidental Music to "A Midsummer Night's Dream", Op.61: I. Overture Op.21 · Walter Weller · Royal Scottish Orchestra Mendlessohn: "A Midsummer Night's Dream" Complete Incidental Music ℗ Collins Classics Released on: 1992-07-01 Artist: Royal Scottish Orchestra Artist: Walter Weller Auto-generated by YouTube.
    https://wn.com/Incidental_Music_To_A_Midsummer_Night's_Dream_,_Op.61_I._Overture_Op.21
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Interstellar: Incidental Music
      1:14
      Interstellar: Incidental Musicremove from playlist
    • THE POWER OF MUSIC IN FILM - How music affects film
      5:49
      THE POWER OF MUSIC IN FILM - How music affects filmremove from playlist
    • Jean Sibelius - Incidental music from
      14:47
      Jean Sibelius - Incidental music from "Belshazzar's Feast" Op. 51 (audio + sheet music)remove from playlist
    • ‘Yellowstone’ Official Theme Music Composed by Brian Tyler | Paramount Network
      2:41
      ‘Yellowstone’ Official Theme Music Composed by Brian Tyler | Paramount Networkremove from playlist
    • Alec Koff - The Dark Night (Suspense Background Music / Suspenseful background music)
      1:38
      Alec Koff - The Dark Night (Suspense Background Music / Suspenseful background music)remove from playlist
    • Incidental Music
      13:40
      Incidental Musicremove from playlist
    • Great Incidental Music
      2:24
      Great Incidental Musicremove from playlist
    • Incidental Music to Abdelazer: II.Rondeau
      1:33
      Incidental Music to Abdelazer: II.Rondeauremove from playlist
    • 1 Orchestra | 30 Film & TV Themes [Orchestral Film & TV Music Arrangement]
      30:46
      1 Orchestra | 30 Film & TV Themes [Orchestral Film & TV Music Arrangement]remove from playlist
    • Incidental Music to
      12:00
      Incidental Music to "A Midsummer Night's Dream", Op.61: I. Overture Op.21remove from playlist
    PLAYLIST TIME: 0:00 / 1:26:32

    Interstellar: Incidental Music

    Roger Sayer plays incidental music from the soundtrack to Interstellar from the original score used in the movie and at the live performance at the Royal Albert Hall. The score has markings and additions by Hans Zimmer as changes were sometimes made on the day of the recording!
    1:14
    Interstellar: Incidental Music
    Roger Sayer plays incidental music from the soundtrack to Interstellar from the original s...
    published: 30 Apr 2019
    Play in Full Screen
    5:49
    THE POWER OF MUSIC IN FILM - How music affects film
    We look at how music can manipulate characters or scenes in films. https://www.jackpiercem...
    published: 07 Apr 2017
    Play in Full Screen
    14:47
    Jean Sibelius - Incidental music from "Belshazzar's Feast" Op. 51 (audio + sheet music)
    The early 1900s, a heady time for theatre in Finland, was also the time of Sibelius’s most...
    published: 22 Oct 2016
    Play in Full Screen
    2:41
    ‘Yellowstone’ Official Theme Music Composed by Brian Tyler | Paramount Network
    Go behind the scenes of the recording of the theme to ‘Yellowstone’ from renowned composer...
    published: 22 Aug 2018
    Play in Full Screen
    1:38
    Alec Koff - The Dark Night (Suspense Background Music / Suspenseful background music)
    https://audiojungle.net/item/the-dark-night/40496452 🔵 Apple Music ►https://apple.co/2A...
    published: 31 Jul 2020
    Play in Full Screen
    13:40
    Incidental Music
    Provided to YouTube by Universal Music Group Incidental Music · Stephen Sondheim Unsung ...
    published: 17 Nov 2022
    Play in Full Screen
    2:24
    Great Incidental Music
    No soundtrack album released for this top film, Sweeney 2 (1978)
    published: 19 Aug 2017
    Play in Full Screen
    1:33
    Incidental Music to Abdelazer: II.Rondeau
    Provided to YouTube by Audio Network Limited Incidental Music to Abdelazer: II.Rondeau · ...
    published: 24 Oct 2019
    Play in Full Screen
    30:46
    1 Orchestra | 30 Film & TV Themes [Orchestral Film & TV Music Arrangement]
    30 orchestra themes from popular Film and TV soundtracks arranged for orchestra by Stuart ...
    published: 30 Apr 2020
    Play in Full Screen
    12:00
    Incidental Music to "A Midsummer Night's Dream", Op.61: I. Overture Op.21
    Provided to YouTube by Phoenix Music International Ltd Incidental Music to "A Midsummer N...
    published: 08 Jan 2020
    Play in Full Screen

    Incidental music

    Incidental music is music in a play, television program, radio program, video game, film, or some other presentation form that is not primarily musical. The term is less frequently applied to film music, with such music being referred to instead as the "film score" or "soundtrack".

    Incidental music is often "background" music, and is intended to add atmosphere to the action. It may take the form of something as simple as a low, ominous tone suggesting an impending startling event or to enhance the depiction of a story-advancing sequence. It may also include pieces such as overtures, music played during scene changes, or at the end of an act, immediately preceding an interlude, as was customary with several nineteenth-century plays. It may also be required in plays that have musicians performing on-stage.

    The use of incidental music dates back at least as far as Greek drama. A number of classical composers have written incidental music for various plays, with the more famous examples including Ludwig van Beethoven's Egmont music, Franz Schubert's Rosamunde music, Felix Mendelssohn's Midsummer Night's Dream music, Georges Bizet's L'Arlésienne music, and Edvard Grieg's music for Henrik Ibsen's Peer Gynt. Parts of all of these are often performed in concerts outside the context of the play. Vocal incidental music, which is included in the classical scores mentioned above, should never be confused with the score of a Broadway or film musical, in which the songs often reveal character and further the storyline. Since the score of a Broadway or film musical is what actually makes the work a musical, it is far more essential to the work than mere incidental music, which nearly always amounts to little more than a background score; indeed, many plays have no incidental music whatsoever.

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

    Latest News for: incidental music

    Edit

    Aliens in Anglia: The Pasts and Futures of Central European �migr� Composers in Britain

    The Quietus 30 Mar 2025
    Gerhard is the better known of the two, still largely as a classical composer, but he has also been claimed as the first electronic composer in Britain, due to his incidental music for a 1955 RSC production of King Lear.
    Edit

    Review: Under-the-radar gems from SPCO

    Pioneer Press 28 Mar 2025
    Starting things off, the SPCO performs two pieces of incidental music from a play Franz Schubert wrote for called “Rosamunde.” Zimmermann sways her head subtly before the music begins, as if setting the time.
    Edit

    Premature Evaluation: Deafheaven Lonely People With Power

    Stereogum 25 Mar 2025
    I’m puzzled, then, by the fact of it being relegated to the role of “Incidental,” not because it couldn’t serve or function as incidental music someplace – I mean, the music ...
    Edit

    They Might Be Giants never saw making kids' albums as a permanent career pivot

    AV Club 24 Mar 2025
    So they didn’t want the music package to feel too contemporary ... He just loved doing kind of interesting music, but also shiny pop music ... We’re doing the Malcolm In The Middle incidental music, and the first children’s album, No!, and making Mink Car.
    Edit

    How to beat the algo-rhythm: Sanjoy Narayan writes on keeping the beat

    Hindustan Times 15 Mar 2025
    At Bandcamp (where, incidentally, artists can sell their music directly), a team of human writers and editors — essentially music journalists — digs into niche genres, underground artists and specific ...
    Edit

    Kelly McCaughrain on Carnegie Medal shortlist

    The Irish Times 14 Mar 2025
    A particular highlight will be a rehearsed reading of The Tinker and the Fairy, a play by Douglas Hyde first performed in George Moore’s Ely Place garden in 1902, with incidental music composed by Michele Esposito.
    Edit

    It's Bob Dylan season at the Shore: Rockers delve into music, songs of American Bard

    app 12 Mar 2025
    In Asbury Park, Andy Burton, Muddy Shews, Dave Moore, Mike McKernan will be joining Ribler on stage to perform the folk rock music of Dylan, the Byrds and the Band, who incidentally were the house ...
    Edit

    Maggie Baugh performs her style of country and bluegrass at Blockhouse Bar in Bloomington

    Reporter-Times - Martinsville 10 Mar 2025
    Baugh will perform on her own March 14 at Bloomington's Blockhouse Bar as part of her 2025 tour, which incidentally she booked entirely by herself ... She also has performed on stages from the Country Music Hall of Fame to Nissan Stadium.
    • 1
    ×