CINXE.COM

Fanfare - TV Tropes

<!DOCTYPE html> <html> <head lang="en"> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=newest_pages" /> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=most_popular" /> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=updated_content" /> <link rel="preload" href="/images/loading-graphic.png" as="image"> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-XPPLXMRF6Z"></script> <script> var pbjs = pbjs || {}; // Used for Video players on Tropes var tropes_videos_commands = tropes_videos_commands || []; window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-XPPLXMRF6Z'); window.googletag = window.googletag || {cmd: []}; </script> <script> function object(objectId) { if (document.getElementById && document.getElementById(objectId)) { return document.getElementById(objectId); } else if (document.all && document.all(objectId)) { return document.all(objectId); } else if (document.layers && document.layers[objectId]) { return document.layers[objectId]; } else { return false; } } // JAVASCRIPT COOKIES CODE: for getting and setting user viewing preferences var cookies = { create: function (name, value, days2expire, path) { var date = new Date(); date.setTime(date.getTime() + (days2expire * 24 * 60 * 60 * 1000)); var expires = date.toUTCString(); document.cookie = name + '=' + value + ';' + 'expires=' + expires + ';domain=.tvtropes.org;' + 'path=' + path + ';'; }, createWithExpire: function(name, value, expires, path) { document.cookie = name + '=' + value + ';' + 'expires=' + expires + ';domain=.tvtropes.org;' + 'path=' + path + ';'; }, read: function (name) { var cookie_value = "", current_cookie = "", name_expr = name + "=", all_cookies = document.cookie.split(';'), n = all_cookies.length; for (var i = 0; i < n; i++) { current_cookie = all_cookies[i].trim(); if (current_cookie.indexOf(name_expr) === 0) { cookie_value = current_cookie.substring(name_expr.length, current_cookie.length); break; } } return cookie_value; }, update: function (name, val) { this.create(name, val, 300, "/"); }, remove: function (name) { //delete cookie with and without domain setting document.cookie = name + "=; expires=Thu, 01 Jan 1970 00:00:00 GMT; domain=.tvtropes.org; path=/;"; document.cookie = name + "=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/;"; } }; function updateUserPrefs() { //GENERAL: detect and set browser, if not cookied (will be treated like a user-preference and added to the #user-pref element) if( !cookies.read('user-browser') ){ var broswer = ''; if(navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i) ){ browser = 'iOS'; } else if (/Opera[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'opera'; } else if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) { browser = 'MSIE'; } else if (/Navigator[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'netscape'; } else if (/Chrome[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'chrome'; } else if (/Safari[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'safari'; /Version[\/\s](\d+\.\d+)/.test(navigator.userAgent); browserVersion = new Number(RegExp.$1); } else if (/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'firefox'; } else { browser = 'internet_explorer'; } cookies.create('user-browser',browser,1,'/'); document.getElementById('user-prefs').classList.add('browser-' + browser); } else { document.getElementById('user-prefs').classList.add('browser-' + cookies.read('user-browser')); } //update user preference settings if (cookies.read('wide-load') !== '') document.getElementById('user-prefs').classList.add('wide-load'); if (cookies.read('mono-font') !== '') document.getElementById('user-prefs').classList.add('mono-font'); if (cookies.read('night-vision') !== '') document.getElementById('user-prefs').classList.add('night-vision'); if (cookies.read('sticky-header') !== '') document.getElementById('user-prefs').classList.add('sticky-header'); if (cookies.read('show-spoilers') !== '') document.getElementById('user-prefs').classList.add('show-spoilers'); if (cookies.read('tvtropes-editor-on') !== '') document.getElementById('user-prefs').classList.add('tvtropes-editor-on'); if (cookies.read('folders-open') !== '') document.getElementById('user-prefs').classList.add('folders-open'); if (cookies.read('lefthand-sidebar') !== '') document.getElementById('user-prefs').classList.add('lefthand-sidebar'); if (cookies.read('highlight-links') !== '') document.getElementById('user-prefs').classList.add('highlight-links'); if (cookies.read('forum-gingerbread') !== '') document.getElementById('user-prefs').classList.add('forum-gingerbread'); //if the user is logged in, update cookies based on their database settings //updates element if(cookies.read('shared-avatars') !== '') document.getElementById('user-prefs').classList.add('shared-avatars'); if(cookies.read('new-search') !== '') document.getElementById('user-prefs').classList.add('new-search'); if(cookies.read('stop-auto-play-video') !== '') document.getElementById('user-prefs').classList.add('stop-auto-play-video'); //desktop view on mobile if (cookies.read('desktop-on-mobile') !== ''){ document.getElementById('user-prefs').classList.add('desktop-on-mobile'); var viewport = document.querySelector("meta[name=viewport]"); viewport.setAttribute('content', 'width=1000'); } } function updateDesktopPrefs() { if (cookies.read('wide-load') !== '') document.getElementById('sidebar-toggle-wideload').classList.add('active'); if (cookies.read('night-vision') !== '') document.getElementById('sidebar-toggle-nightvision').classList.add('active'); if (cookies.read('sticky-header') !== '') document.getElementById('sidebar-toggle-stickyheader').classList.add('active'); if (cookies.read('show-spoilers') !== '') document.getElementById('sidebar-toggle-showspoilers').classList.add('active'); } function updateMobilePrefs() { if (cookies.read('show-spoilers') !== '') document.getElementById('mobile-toggle-showspoilers').classList.add('active'); if (cookies.read('night-vision') !== '') document.getElementById('mobile-toggle-nightvision').classList.add('active'); if (cookies.read('sticky-header') !== '') document.getElementById('mobile-toggle-stickyheader').classList.add('active'); if (cookies.read('highlight-links') !== '') document.getElementById('mobile-toggle-highlightlinks').classList.add('active'); } function is_mobile() { if(document.body.clientWidth && document.body.clientWidth<=768) return true; else return false; } </script> <script type="text/javascript"> var country_code_list = ['AT','BE','BG','CH','CY','CZ','DE','DK','EE','ES','FI','FR','GB','GF','GP','GR','HR','HU','IC','IE','IS','IT','LI','LT','LU','LV','MF','MQ','MT','NL','NO','PL','PT','RE','RO','SE','SI','SK','SX','YT']; var site_htl_settings = { "adx" : "yes", // yes/no if we should include adx on page "groupname" : "Main", // track groupname in htl/gam "has_folders" : "yes", // track folder pages in htl/gam "user_type" : "guest", // track member/guest in htl/gam "is_testing" : "no", // yes/no if in testing mode "split_testing" : "1", // 0/1, 0=control, 1=test, for a/b testing "send_reports" : "1", // true/false if reports should be sent for logging in DataBricks "report_url" : "https://analytics.tvtropes.org/analytics-data/tvtropes/", // Endpoint for logging (data stream) "logging_turned_on": "1", // true/false if console logging should be turned on "site_name" : "tvtropes", // Site name for display in logging "sticky_slot_names": ["tvtropes_dt_sticky", "tvtropes_m_sticky"], // Possible slot names for the sticky slot } </script> <script> // Create the ad project var ads_project = (function(sent_in_settings){ //default settings var setting_defaults = { "adx" : "yes", "groupname" : "", "has_folders" : "unknown", "user_type" : "guest", "is_testing" : "no", "split_testing" : "0", "send_reports" : "0", "logging_turned_on": "false", "site_name" : "site_name", "report_url" : "", "page_template" : "", "sticky_slot_names": [] } // Combine defaults with sent in parameters var project_settings = {...setting_defaults, ...sent_in_settings}; /*************************************** --------------- AD CODE --------------- ***************************************/ window.BCLighthouseTag = window.BCLighthouseTag || {}; window.BCLighthouseTag.cmd = window.BCLighthouseTag.cmd || []; // If user type is a member if(project_settings.user_type == "member"){ // Check for UID2 cookie var uid2_cookie = cookies.read('uid2_identity'); var json_cookie = (uid2_cookie) ? JSON.parse(uid2_cookie) : ""; // If UID2 cookie exists and it's not in the banned country list, set UID2 if(!uid2_cookie || (json_cookie && json_cookie.response)){ var request = new XMLHttpRequest(); request.open("post", "/ajax/uid2_creation.php", 1); request.setRequestHeader("Content-Type", "application/json; charset=UTF-8") request.onload = function(){ if(request.status == 200){ var json = JSON.parse(request.responseText); // Create cookie with response from request cookies.create('uid2_identity', json.response, 7, '/'); output_logging("UID2 cookie created"); // Refresh specific modules pbjs.refreshUserIds({ submoduleNames: ['uid2'] }); } else output_logging("Failed to create UID2 cookie"); } request.send(); } } BCLighthouseTag.cmd.push(function() { // Only set these if given in settings if(project_settings.groupname != "") BCLighthouseTag.setTargeting("groupname", project_settings.groupname); if(project_settings.page_template != "") BCLighthouseTag.setTargeting("page_template", project_settings.page_template); BCLighthouseTag.setTargeting("adx", project_settings.adx); BCLighthouseTag.setTargeting('website', project_settings.site_name); BCLighthouseTag.setTargeting('user_type', project_settings.user_type); BCLighthouseTag.setTargeting('has_folders', project_settings.has_folders); }); // Logging function output_logging(content){ if(project_settings.logging_turned_on){ if(typeof content == "string") console.log(project_settings.site_name + " Ads: " + content); else console.log(content); } } })(site_htl_settings); </script> <script type="text/javascript"> var tvtropes_config = { asteri_stream_enabled : "1", is_logged_in : "", live_server : "1", bigcrunch_live : "1", handle : "", email_popup : "0", troper_email : "", get_asteri_stream : "", revnum : "2ee58fb49f74484952c2d172f55c446e74ca485c", img_domain : "https://static.tvtropes.org", adblock : "1", adblock_url : "propermessage.io", universal_page_type : "Article", pause_editing : "0", pause_editing_msg : "", pause_site_changes : "0", assets_domain : "https://assets.tvtropes.org" }; // This will track the total number of ads inserted over time var globalAdInsertionCount = 0; </script> <script> // Add second script to the head var htl_script = document.createElement('script'); htl_script.async = "async"; // Add the fundingchoices script to the head var script = document.createElement('script'); script.src = "https://fundingchoicesmessages.google.com/i/pub-6608306193529351?ers=1"; script.async = true; script.nonce = "rczD8qB5ececf2fL1Vj9XQ"; // Add second script to the head var script2 = document.createElement('script'); script2.nonce = "rczD8qB5ececf2fL1Vj9XQ"; script2.innerHTML = "(function() {function signalGooglefcPresent() {if (!window.frames['googlefcPresent']) {if (document.body) {const iframe = document.createElement('iframe'); iframe.style = 'width: 0; height: 0; border: none; z-index: -1000; left: -1000px; top: -1000px;'; iframe.style.display = 'none'; iframe.name = 'googlefcPresent'; document.body.appendChild(iframe);} else {setTimeout(signalGooglefcPresent, 0);}}}signalGooglefcPresent();})();"; // Add both scripts to head document.head.appendChild(script); document.head.appendChild(script2); var bigcrunch_url = window.tvtropes_config.bigcrunch_live == 1 ? "https://lh.bigcrunch.com/main.js" : "https://dev-lh.bigcrunch.com/main.js"; htl_script.src = bigcrunch_url; htl_script.id = "bigcrunchtag"; htl_script.setAttribute('data-property-id', '34a5ddec-697b-424e-81d2-e6bb46a1b83e'); // Add both scripts to head document.head.appendChild(htl_script); </script> <script> // Add HTL script to head document.head.appendChild(htl_script); </script> <script>(function(){/* Copyright The Closure Library Authors. SPDX-License-Identifier: Apache-2.0 */ 'use strict';var aa=function(a){var b=0;return function(){return b<a.length?{done:!1,value:a[b++]}:{done:!0}}},ba="function"==typeof Object.create?Object.create:function(a){var b=function(){};b.prototype=a;return new b},k;if("function"==typeof Object.setPrototypeOf)k=Object.setPrototypeOf;else{var m;a:{var ca={a:!0},n={};try{n.__proto__=ca;m=n.a;break a}catch(a){}m=!1}k=m?function(a,b){a.__proto__=b;if(a.__proto__!==b)throw new TypeError(a+" is not extensible");return a}:null} var p=k,q=function(a,b){a.prototype=ba(b.prototype);a.prototype.constructor=a;if(p)p(a,b);else for(var c in b)if("prototype"!=c)if(Object.defineProperties){var d=Object.getOwnPropertyDescriptor(b,c);d&&Object.defineProperty(a,c,d)}else a[c]=b[c];a.v=b.prototype},r=this||self,da=function(){},t=function(a){return a};var u;var w=function(a,b){this.g=b===v?a:""};w.prototype.toString=function(){return this.g+""};var v={},x=function(a){if(void 0===u){var b=null;var c=r.trustedTypes;if(c&&c.createPolicy){try{b=c.createPolicy("goog#html",{createHTML:t,createScript:t,createScriptURL:t})}catch(d){r.console&&r.console.error(d.message)}u=b}else u=b}a=(b=u)?b.createScriptURL(a):a;return new w(a,v)};var A=function(){return Math.floor(2147483648*Math.random()).toString(36)+Math.abs(Math.floor(2147483648*Math.random())^Date.now()).toString(36)};var B={},C=null;var D="function"===typeof Uint8Array;function E(a,b,c){return"object"===typeof a?D&&!Array.isArray(a)&&a instanceof Uint8Array?c(a):F(a,b,c):b(a)}function F(a,b,c){if(Array.isArray(a)){for(var d=Array(a.length),e=0;e<a.length;e++){var f=a[e];null!=f&&(d[e]=E(f,b,c))}Array.isArray(a)&&a.s&&G(d);return d}d={};for(e in a)Object.prototype.hasOwnProperty.call(a,e)&&(f=a[e],null!=f&&(d[e]=E(f,b,c)));return d} function ea(a){return F(a,function(b){return"number"===typeof b?isFinite(b)?b:String(b):b},function(b){var c;void 0===c&&(c=0);if(!C){C={};for(var d="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".split(""),e=["+/=","+/","-_=","-_.","-_"],f=0;5>f;f++){var h=d.concat(e[f].split(""));B[f]=h;for(var g=0;g<h.length;g++){var l=h[g];void 0===C[l]&&(C[l]=g)}}}c=B[c];d=Array(Math.floor(b.length/3));e=c[64]||"";for(f=h=0;h<b.length-2;h+=3){var y=b[h],z=b[h+1];l=b[h+2];g=c[y>>2];y=c[(y&3)<< 4|z>>4];z=c[(z&15)<<2|l>>6];l=c[l&63];d[f++]=""+g+y+z+l}g=0;l=e;switch(b.length-h){case 2:g=b[h+1],l=c[(g&15)<<2]||e;case 1:b=b[h],d[f]=""+c[b>>2]+c[(b&3)<<4|g>>4]+l+e}return d.join("")})}var fa={s:{value:!0,configurable:!0}},G=function(a){Array.isArray(a)&&!Object.isFrozen(a)&&Object.defineProperties(a,fa);return a};var H;var J=function(a,b,c){var d=H;H=null;a||(a=d);d=this.constructor.u;a||(a=d?[d]:[]);this.j=d?0:-1;this.h=null;this.g=a;a:{d=this.g.length;a=d-1;if(d&&(d=this.g[a],!(null===d||"object"!=typeof d||Array.isArray(d)||D&&d instanceof Uint8Array))){this.l=a-this.j;this.i=d;break a}void 0!==b&&-1<b?(this.l=Math.max(b,a+1-this.j),this.i=null):this.l=Number.MAX_VALUE}if(c)for(b=0;b<c.length;b++)a=c[b],a<this.l?(a+=this.j,(d=this.g[a])?G(d):this.g[a]=I):(d=this.l+this.j,this.g[d]||(this.i=this.g[d]={}),(d=this.i[a])? G(d):this.i[a]=I)},I=Object.freeze(G([])),K=function(a,b){if(-1===b)return null;if(b<a.l){b+=a.j;var c=a.g[b];return c!==I?c:a.g[b]=G([])}if(a.i)return c=a.i[b],c!==I?c:a.i[b]=G([])},M=function(a,b){var c=L;if(-1===b)return null;a.h||(a.h={});if(!a.h[b]){var d=K(a,b);d&&(a.h[b]=new c(d))}return a.h[b]};J.prototype.toJSON=function(){var a=N(this,!1);return ea(a)}; var N=function(a,b){if(a.h)for(var c in a.h)if(Object.prototype.hasOwnProperty.call(a.h,c)){var d=a.h[c];if(Array.isArray(d))for(var e=0;e<d.length;e++)d[e]&&N(d[e],b);else d&&N(d,b)}return a.g},O=function(a,b){H=b=b?JSON.parse(b):null;a=new a(b);H=null;return a};J.prototype.toString=function(){return N(this,!1).toString()};var P=function(a){J.call(this,a)};q(P,J);function ha(a){var b,c=(a.ownerDocument&&a.ownerDocument.defaultView||window).document,d=null===(b=c.querySelector)||void 0===b?void 0:b.call(c,"script[nonce]");(b=d?d.nonce||d.getAttribute("nonce")||"":"")&&a.setAttribute("nonce",b)};var Q=function(a,b){b=String(b);"application/xhtml+xml"===a.contentType&&(b=b.toLowerCase());return a.createElement(b)},R=function(a){this.g=a||r.document||document};R.prototype.appendChild=function(a,b){a.appendChild(b)};var S=function(a,b,c,d,e,f){try{var h=a.g,g=Q(a.g,"SCRIPT");g.async=!0;g.src=b instanceof w&&b.constructor===w?b.g:"type_error:TrustedResourceUrl";ha(g);h.head.appendChild(g);g.addEventListener("load",function(){e();d&&h.head.removeChild(g)});g.addEventListener("error",function(){0<c?S(a,b,c-1,d,e,f):(d&&h.head.removeChild(g),f())})}catch(l){f()}};var ia=r.atob("aHR0cHM6Ly93d3cuZ3N0YXRpYy5jb20vaW1hZ2VzL2ljb25zL21hdGVyaWFsL3N5c3RlbS8xeC93YXJuaW5nX2FtYmVyXzI0ZHAucG5n"),ja=r.atob("WW91IGFyZSBzZWVpbmcgdGhpcyBtZXNzYWdlIGJlY2F1c2UgYWQgb3Igc2NyaXB0IGJsb2NraW5nIHNvZnR3YXJlIGlzIGludGVyZmVyaW5nIHdpdGggdGhpcyBwYWdlLg=="),ka=r.atob("RGlzYWJsZSBhbnkgYWQgb3Igc2NyaXB0IGJsb2NraW5nIHNvZnR3YXJlLCB0aGVuIHJlbG9hZCB0aGlzIHBhZ2Uu"),la=function(a,b,c){this.h=a;this.j=new R(this.h);this.g=null;this.i=[];this.l=!1;this.o=b;this.m=c},V=function(a){if(a.h.body&&!a.l){var b= function(){T(a);r.setTimeout(function(){return U(a,3)},50)};S(a.j,a.o,2,!0,function(){r[a.m]||b()},b);a.l=!0}},T=function(a){for(var b=W(1,5),c=0;c<b;c++){var d=X(a);a.h.body.appendChild(d);a.i.push(d)}b=X(a);b.style.bottom="0";b.style.left="0";b.style.position="fixed";b.style.width=W(100,110).toString()+"%";b.style.zIndex=W(2147483544,2147483644).toString();b.style["background-color"]=ma(249,259,242,252,219,229);b.style["box-shadow"]="0 0 12px #888";b.style.color=ma(0,10,0,10,0,10);b.style.display= "flex";b.style["justify-content"]="center";b.style["font-family"]="Roboto, Arial";c=X(a);c.style.width=W(80,85).toString()+"%";c.style.maxWidth=W(750,775).toString()+"px";c.style.margin="24px";c.style.display="flex";c.style["align-items"]="flex-start";c.style["justify-content"]="center";d=Q(a.j.g,"IMG");d.className=A();d.src=ia;d.style.height="24px";d.style.width="24px";d.style["padding-right"]="16px";var e=X(a),f=X(a);f.style["font-weight"]="bold";f.textContent=ja;var h=X(a);h.textContent=ka;Y(a, e,f);Y(a,e,h);Y(a,c,d);Y(a,c,e);Y(a,b,c);a.g=b;a.h.body.appendChild(a.g);b=W(1,5);for(c=0;c<b;c++)d=X(a),a.h.body.appendChild(d),a.i.push(d)},Y=function(a,b,c){for(var d=W(1,5),e=0;e<d;e++){var f=X(a);b.appendChild(f)}b.appendChild(c);c=W(1,5);for(d=0;d<c;d++)e=X(a),b.appendChild(e)},W=function(a,b){return Math.floor(a+Math.random()*(b-a))},ma=function(a,b,c,d,e,f){return"rgb("+W(Math.max(a,0),Math.min(b,255)).toString()+","+W(Math.max(c,0),Math.min(d,255)).toString()+","+W(Math.max(e,0),Math.min(f, 255)).toString()+")"},X=function(a){a=Q(a.j.g,"DIV");a.className=A();return a},U=function(a,b){0>=b||null!=a.g&&0!=a.g.offsetHeight&&0!=a.g.offsetWidth||(na(a),T(a),r.setTimeout(function(){return U(a,b-1)},50))},na=function(a){var b=a.i;var c="undefined"!=typeof Symbol&&Symbol.iterator&&b[Symbol.iterator];b=c?c.call(b):{next:aa(b)};for(c=b.next();!c.done;c=b.next())(c=c.value)&&c.parentNode&&c.parentNode.removeChild(c);a.i=[];(b=a.g)&&b.parentNode&&b.parentNode.removeChild(b);a.g=null};var pa=function(a,b,c,d,e){var f=oa(c),h=function(l){l.appendChild(f);r.setTimeout(function(){f?(0!==f.offsetHeight&&0!==f.offsetWidth?b():a(),f.parentNode&&f.parentNode.removeChild(f)):a()},d)},g=function(l){document.body?h(document.body):0<l?r.setTimeout(function(){g(l-1)},e):b()};g(3)},oa=function(a){var b=document.createElement("div");b.className=a;b.style.width="1px";b.style.height="1px";b.style.position="absolute";b.style.left="-10000px";b.style.top="-10000px";b.style.zIndex="-10000";return b};var L=function(a){J.call(this,a)};q(L,J);var qa=function(a){J.call(this,a)};q(qa,J);var ra=function(a,b){this.l=a;this.m=new R(a.document);this.g=b;this.i=K(this.g,1);b=M(this.g,2);this.o=x(K(b,4)||"");this.h=!1;b=M(this.g,13);b=x(K(b,4)||"");this.j=new la(a.document,b,K(this.g,12))};ra.prototype.start=function(){sa(this)}; var sa=function(a){ta(a);S(a.m,a.o,3,!1,function(){a:{var b=a.i;var c=r.btoa(b);if(c=r[c]){try{var d=O(P,r.atob(c))}catch(e){b=!1;break a}b=b===K(d,1)}else b=!1}b?Z(a,K(a.g,14)):(Z(a,K(a.g,8)),V(a.j))},function(){pa(function(){Z(a,K(a.g,7));V(a.j)},function(){return Z(a,K(a.g,6))},K(a.g,9),K(a.g,10),K(a.g,11))})},Z=function(a,b){a.h||(a.h=!0,a=new a.l.XMLHttpRequest,a.open("GET",b,!0),a.send())},ta=function(a){var b=r.btoa(a.i);a.l[b]&&Z(a,K(a.g,5))};(function(a,b){r[a]=function(c){for(var d=[],e=0;e<arguments.length;++e)d[e-0]=arguments[e];r[a]=da;b.apply(null,d)}})("__h82AlnkH6D91__",function(a){"function"===typeof window.atob&&(new ra(window,O(qa,window.atob(a)))).start()});}).call(this); window.__h82AlnkH6D91__("WyJwdWItMjU3NTc4ODY5MDc5ODI4MiIsW251bGwsbnVsbCxudWxsLCJodHRwczovL2Z1bmRpbmdjaG9pY2VzbWVzc2FnZXMuZ29vZ2xlLmNvbS9iL3B1Yi0yNTc1Nzg4NjkwNzk4MjgyIl0sbnVsbCxudWxsLCJodHRwczovL2Z1bmRpbmdjaG9pY2VzbWVzc2FnZXMuZ29vZ2xlLmNvbS9lbC9BR1NLV3hWV0tMOXhFeS1ZVk1sOTdzcC10MW5mbkxvWmZweWVjaGRJdUxJU244LXpjbUwxM1R5Mlhhb2RoQTJFU3VNS3ljQm1kVHgxSUNlMVBrX2hIeUxHa1ZZNHJ3XHUwMDNkXHUwMDNkP3RlXHUwMDNkVE9LRU5fRVhQT1NFRCIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFZCeVhDdDlWajY1eXNrMWFHVW9LUUpLdktrTlh4WVdlRDBhYnhmS3RVUi00eDZfRTNWOXpqSm5vYkFfVzIxeGNDb3F3M1RmN1dYRmxXZFZaazVMMFlQQ2dcdTAwM2RcdTAwM2Q/YWJcdTAwM2QxXHUwMDI2c2JmXHUwMDNkMSIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFV4bEsxQ0dxcEpGY3lvcXZXZ0ZnWWRBRjhMMzBOU0Y1ci1paGZSd1VRNzV4YmF6NGxydWVfRUhoWmU1ai00UUhRYXc4MUVZREFkQ2pBN21Tb1BxUUsxaFFcdTAwM2RcdTAwM2Q/YWJcdTAwM2QyXHUwMDI2c2JmXHUwMDNkMSIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFZJUWxpOV9jN0NuWWlHWkU3S2xIV2JWVi10NlpYQ2hQTnlHVTRobGhmSjdLQnJnNjllSFhHYm9aSXRqRm42MDViNWpuaG5KYkxCcU1ySURyY2lLVEk0VmdcdTAwM2RcdTAwM2Q/c2JmXHUwMDNkMiIsImRpdi1ncHQtYWQiLDIwLDEwMCwiY0hWaUxUSTFOelUzT0RnMk9UQTNPVGd5T0RJXHUwMDNkIixbbnVsbCxudWxsLG51bGwsImh0dHBzOi8vd3d3LmdzdGF0aWMuY29tLzBlbW4vZi9wL3B1Yi0yNTc1Nzg4NjkwNzk4MjgyLmpzP3VzcXBcdTAwM2RDQkEiXSwiaHR0cHM6Ly9mdW5kaW5nY2hvaWNlc21lc3NhZ2VzLmdvb2dsZS5jb20vZWwvQUdTS1d4V1hNUEJXZjVaNURyT1VGdDZwVVR5eGh1YzBFNlVGQnJJZUhuUUNCMVlUOWVtYlJTbGxYQ3F6NDV5ODdqT3RVWC1SX3JkcmdudFdjejdtazA2WkZYWDQyd1x1MDAzZFx1MDAzZCJd"); </script> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Fanfare - TV Tropes</title> <meta name="description" content="The Fanfare trope as used in popular culture. A type of Mood Motif that was traditionally used in medieval Europe to celebrate the arrival of a royal person &hellip;" /> <link rel="canonical" href="https://tvtropes.org/pmwiki/pmwiki.php/Main/Fanfare" /> <link rel="shortcut icon" href="https://assets.tvtropes.org/img/icons/favicon.ico" type="image/x-icon" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:site" content="@tvtropes" /> <meta name="twitter:owner" content="@tvtropes" /> <meta name="twitter:title" content="Fanfare - TV Tropes" /> <meta name="twitter:description" content="The Fanfare trope as used in popular culture. A type of Mood Motif that was traditionally used in medieval Europe to celebrate the arrival of a royal person &hellip;" /> <meta name="twitter:image:src" content="https://static.tvtropes.org/pmwiki/pub/images/logo_light.png" /> <meta property="og:site_name" content="TV Tropes" /> <meta property="og:locale" content="en_US" /> <meta property="article:publisher" content="https://www.facebook.com/tvtropes" /> <meta property="og:title" content="Fanfare - TV Tropes" /> <meta property="og:type" content="website" /> <meta property="og:url" content="https://tvtropes.org/pmwiki/pmwiki.php/Main/Fanfare" /> <meta property="og:image" content="https://static.tvtropes.org/pmwiki/pub/images/logo_light.png" /> <meta property="og:description" content="A type of Mood Motif that was traditionally used in medieval Europe to celebrate the arrival of a royal person. The form usually involved trumpets played in a bombastic and stirring manner. Today, it is still present in music as a form of &hellip;" /> <meta name="robots" content="max-image-preview:large"> <link rel="apple-touch-icon" sizes="57x57" href="https://assets.tvtropes.org/img/icons/apple-icon-57x57.png" type="image/png"> <link rel="apple-touch-icon" sizes="60x60" href="https://assets.tvtropes.org/img/icons/apple-icon-60x60.png" type="image/png"> <link rel="apple-touch-icon" sizes="72x72" href="https://assets.tvtropes.org/img/icons/apple-icon-72x72.png" type="image/png"> <link rel="apple-touch-icon" sizes="76x76" href="https://assets.tvtropes.org/img/icons/apple-icon-76x76.png" type="image/png"> <link rel="apple-touch-icon" sizes="114x114" href="https://assets.tvtropes.org/img/icons/apple-icon-114x114.png" type="image/png"> <link rel="apple-touch-icon" sizes="120x120" href="https://assets.tvtropes.org/img/icons/apple-icon-120x120.png" type="image/png"> <link rel="apple-touch-icon" sizes="144x144" href="https://assets.tvtropes.org/img/icons/apple-icon-144x144.png" type="image/png"> <link rel="apple-touch-icon" sizes="152x152" href="https://assets.tvtropes.org/img/icons/apple-icon-152x152.png" type="image/png"> <link rel="apple-touch-icon" sizes="180x180" href="https://assets.tvtropes.org/img/icons/apple-icon-180x180.png" type="image/png"> <link rel="icon" sizes="16x16" href="https://assets.tvtropes.org/img/icons/favicon-16x16.png" type="image/png"> <link rel="icon" sizes="32x32" href="https://assets.tvtropes.org/img/icons/favicon-32x32.png" type="image/png"> <link rel="icon" sizes="96x96" href="https://assets.tvtropes.org/img/icons/favicon-96x96.png" type="image/png"> <link rel="icon" sizes="192x192" href="https://assets.tvtropes.org/img/icons/favicon-192x192.png" type="image/png"> <meta id="viewport" name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"> <link rel="stylesheet" href="https://assets.tvtropes.org/design/assets/bundle.css?rev=2ee58fb49f74484952c2d172f55c446e74ca485c" /> <script type="text/javascript"> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-3821842-1', 'auto'); ga('send', 'pageview'); </script> <script> !function(f,b,e,v,n,t,s) {if(f.fbq)return;n=f.fbq=function(){n.callMethod? n.callMethod.apply(n,arguments):n.queue.push(arguments)}; if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0'; n.queue=[];t=b.createElement(e);t.async=!0; t.src=v;s=b.getElementsByTagName(e)[0]; s.parentNode.insertBefore(t,s)}(window, document,'script', 'https://connect.facebook.net/en_US/fbevents.js'); fbq('init', '850567933835915'); fbq('track', 'PageView'); </script> <noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=850567933835915&ev=PageView&noscript=1" /></noscript> <script> !function(w,d){if(!w.rdt){var p=w.rdt=function(){p.sendEvent?p.sendEvent.apply(p,arguments):p.callQueue.push(arguments)};p.callQueue=[];var t=d.createElement("script");t.src="https://www.redditstatic.com/ads/pixel.js",t.async=!0;var s=d.getElementsByTagName("script")[0];s.parentNode.insertBefore(t,s)}}(window,document); rdt('init','a2_fksv8rryv493'); rdt('track', 'PageVisit'); </script> </head> <body class=""> <i id="user-prefs"></i> <script>updateUserPrefs();</script> <div id="fb-root"></div> <div id="modal-box"> <div class="modal-loading-graphic"></div> </div> <style> @keyframes rotate-forever { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } #modal-box > .modal-loading-graphic { display: none; /* Hidden by default */ background: no-repeat center url('/images/loading-graphic.png'); background-size: 80px 80px; width: 80px; height: 80px; border-radius: 50%; position: absolute; top: calc(30% - 40px); left: calc(50% - 40px); z-index: 2; animation: rotate-forever 0.34s linear infinite; } #modal-box.active > .modal-loading-graphic { display: block; /* Show only when modal is active */ } </style> <header id="main-header-bar" class="headroom-element "> <div id="main-header-bar-inner"> <span id="header-spacer-left" class="header-spacer"></span> <a href="#mobile-menu" id="main-mobile-toggle" class="mobile-menu-toggle-button tablet-on"><span></span><span></span><span></span></a> <a href="/" id="main-header-logoButton" class="no-dev"></a> <span id="header-spacer-right" class="header-spacer"></span> <nav id="main-header-nav" class="tablet-off"> <a href="/pmwiki/pmwiki.php/Main/Tropes">Tropes</a> <a href="/pmwiki/pmwiki.php/Main/Media">Media</a> <a href="/pmwiki/browse.php" class="nav-browse">Browse</a> <a href="/pmwiki/popular-pages.php">Popular</a> <a href="/pmwiki/topics.php">Forums</a> <a href="/pmwiki/recent_videos.php" class="nav-browse">Videos</a> </nav> <div id="main-header-bar-right"> <div id="signup-login-box" class="font-xs mobile-off"> <a href="#" class="hover-underline bold" data-modal-target="signup">Join</a> <a href="#" class="hover-underline bold" data-modal-target="login">Login</a> </div> <div id="signup-login-mobileToggle" class="mobile-on inline"> <a href="#" data-modal-target="login"><i class="fa fa-user"></i></a> </div> <div id="search-box"> <form class="search" action="/pmwiki/search_result.php"> <input type="text" name="q" class="search-box" placeholder="Search" value="" required> <input type="submit" class="submit-button" value="&#xf002;" /> <input type="hidden" name="search_type" value="article"> <input type="hidden" name="page_type" value="all"> <input type="hidden" name="cx" value="partner-pub-6610802604051523:amzitfn8e7v"> <input type="hidden" name="cof" value="FORID:10"> <input type="hidden" name="ie" value="ISO-8859-1"> <input name="siteurl" type="hidden" value=""> <input name="ref" type="hidden" value=""> <input name="ss" type="hidden" value=""> </form> <a href="#close-search" class="mobile-on mobile-search-toggle close-x"><i class="fa fa-close"></i></a> </div> <div id="random-box"> <a href="/pmwiki/pmwiki.php/Main/Duck" class="button-random-trope" rel="nofollow" onclick="gtag('event', 'trope_random_button_click', {'is_user': 0});"></a> <a href="/pmwiki/pmwiki.php/ComicBook/PatsyWalker" class="button-random-media" rel="nofollow" onclick="gtag('event', 'media_random_button_click', {'is_user': 0});"></a> </div> </div> </div> <div id="mobile-menu" class="tablet-on"><div class="mobile-menu-options"> <div class="nav-wrapper"> <a href="/pmwiki/pmwiki.php/Main/Tropes" class="xl">Tropes</a> <a href="/pmwiki/pmwiki.php/Main/Media" class="xl">Media</a> <a href="/pmwiki/browse.php" class="xl">Browse</a> <a href="/pmwiki/popular-pages.php" class="xl">Popular</a> <a href="/pmwiki/index_report.php" class="xl">Indexes</a> <a href="/pmwiki/topics.php" class="xl">Forums</a> <a href="/pmwiki/recent_videos.php" class="xl">Videos</a> <a href="/pmwiki/query.php?type=att">Ask The Tropers</a> <a href="/pmwiki/query.php?type=tf">Trope Finder</a> <a href="/pmwiki/query.php?type=ykts">Media Finder</a> <a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a> <a href="/pmwiki/query.php?type=wl">Tech Wishlist</a> <a href="/pmwiki/review_activity.php">Reviews</a> <a href="#tools" data-click-toggle="active">Tools <i class="fa fa-chevron-down"></i></a> <div class="tools-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/cutlist.php" data-modal-target="login" rel="nofollow">Cut List</a> <a href="/pmwiki/image-fixer.php" data-modal-target="login" rel="nofollow">Image Fixer</a> <a href="/pmwiki/changes.php">New Edits</a> <a href="/pmwiki/articles_new.php">New Articles</a> <a href="/pmwiki/recent_edit_reasons.php">Edit Reasons</a> <a href="/pmwiki/launches.php" data-modal-target="login" rel="nofollow">Launches</a> <a href="/pmwiki/img_list.php" data-modal-target="login" rel="nofollow">Images List</a> <a href="/pmwiki/crown_activity.php">Crowner Activity</a> <a href="/pmwiki/no_types.php">Un-typed Pages</a> <a href="/pmwiki/page_type_audit.php">Recent Page Type Changes</a> <a href="/pmwiki/changelog.php">Changelog</a> </div> <a href="#tips" data-click-toggle="active">Tips <i class="fa fa-chevron-down"></i></a> <div class="tips-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/pmwiki.php/Administrivia/CreatingNewRedirects">Creating New Redirects</a> <a href="/pmwiki/pmwiki.php/Administrivia/Crosswicking">Cross Wicking</a> <a href="/pmwiki/pmwiki.php/Administrivia/TipsForEditing">Tips for Editing</a> <a href="/pmwiki/pmwiki.php/Administrivia/TextFormattingRules">Text Formatting Rules</a> <a href="/pmwiki/pmwiki.php/Administrivia/TVTropesGlossary?from=Main.TVTropesGlossary">Glossary</a> <a href="/pmwiki/pmwiki.php/Administrivia/EditReasonsAndWhyYouShouldUseThem">Edit Reasons</a> <a href="/pmwiki/pmwiki.php/Administrivia/HandlingSpoilers">Handling Spoilers</a> <a href="/pmwiki/pmwiki.php/Administrivia/WordCruft">Word Cruft</a> <a href="/pmwiki/pmwiki.php/Main/Administrivia">Administrivia</a> <a href="/pmwiki/pmwiki.php/Main/FAQ">FAQ</a> </div> <a href="#hq" data-click-toggle="active">Tropes HQ <i class="fa fa-chevron-down"></i></a> <div class="tools-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/about.php">About Us</a> <a href="/pmwiki/contact.php">Contact Us</a> <a href="/pmwiki/dmca.php">DMCA Notice</a> <a href="/pmwiki/privacypolicy.php">Privacy Policy</a> <a href="/pmwiki/query.php?type=bug">Report Bug</a> </div> <a href="/pmwiki/ad-free-subscribe.php">Go Ad-Free</a> <a href="/pmwiki/changelog.php">Changelog</a></li> <div class="toggle-switches"> <ul class="mobile-menu display-toggles"> <li>Show Spoilers <div id="mobile-toggle-showspoilers" class="display-toggle show-spoilers"></div></li> <li>Night Vision <div id="mobile-toggle-nightvision" class="display-toggle night-vision"></div></li> <li>Sticky Header <div id="mobile-toggle-stickyheader" class="display-toggle sticky-header"></div></li> <li>Highlight Links <div id="mobile-toggle-highlightlinks" class="display-toggle highlight-links"></div></li> </ul> <script>updateMobilePrefs();</script> </div> </div> </div> </div> </header> <div id="homepage-introBox-mobile" class="mobile-on"> <a href="/"><img src="/images/logo-white-big.png" class="logo-small" /></a> <form class="search" action="/pmwiki/search_result.php" style="margin:10px -5px -6px -5px;"> <input type="text" name="q" class="search-box" placeholder="Search" value="" required> <input type="submit" class="submit-button" value="&#xf002;" /> <input type="hidden" name="search_type" value="article"> <input type="hidden" name="page_type" value="all"> <input type="hidden" name="cx" value="partner-pub-6610802604051523:amzitfn8e7v"> <input type="hidden" name="cof" value="FORID:10"> <input type="hidden" name="ie" value="ISO-8859-1"> <input name="siteurl" type="hidden" value=""> <input name="ref" type="hidden" value=""> <input name="ss" type="hidden" value=""> </form> </div> <script> // Get device type function get_device_type(){ var ua = navigator.userAgent.toLowerCase(); var device_type = ""; // This is usually "tablet", but for this case we are going to call it mobile if(/(ipad|tablet|(android(?!.*mobile))|(windows(?!.*phone)(.*touch))|kindle|playbook|silk|(puffin(?!.*(IP|AP|WP))))/.test(ua)) device_type = "mobile"; // This is mobile else if(/(mobi|ipod|phone|blackberry|opera mini|fennec|minimo|symbian|psp|nintendo ds|archos|skyfire|puffin|blazer|bolt|gobrowser|iris|maemo|semc|teashark|uzard)/.test(ua)) device_type = "mobile"; // Otherwise desktop else device_type = "desktop"; return device_type; } var show_modal_loaded = false; //// MOBILE MENU TOGGLE FUNCTIONS //// function show_modal(type, message, confirmation_url, call_back, fb_token, groupname, title, video_id) { console.log("showing modal " + type); const modalBox = document.getElementById('modal-box'); const childDivs = modalBox.querySelectorAll(':scope > div'); // Check if there are more than one child divs in the modal box, indicating a modal is already there if (childDivs.length > 1) { kill_modal(); } // Show the modal and the loading graphic modalBox.classList.add('active'); let alert = ''; if (typeof message === 'object' && message !== null) { Object.keys(message).forEach(function(key) { alert += '&' + key + '=' + encodeURIComponent(message[key]); }); } else { alert = '&message=' + encodeURIComponent(message); } // Construct the URL with parameters const url = '/design/parts/component-modalBox.php?window=' + type + alert + (confirmation_url ? '&curl=' + encodeURIComponent(confirmation_url) : "") + (fb_token ? '&fb_token=' + encodeURIComponent(fb_token) : "") + (groupname ? '&groupname=' + groupname : "") + (video_id ? '&video_id=' + encodeURIComponent(video_id) : ""); fetch(url) .then(response => response.text()) .then(html => { modalBox.innerHTML = html; // Find and execute scripts const scripts = modalBox.querySelectorAll('script'); scripts.forEach(script => { const newScript = document.createElement('script'); newScript.type = 'text/javascript'; if (script.src) { newScript.src = script.src; // Wait for Dropzone.js to load before adding the imguploader.js if(newScript.src.includes('/design/js/dropzone.js')) { newScript.onload = function() { // Now load the imguploader.js script const img_uploader_script = document.createElement('script'); img_uploader_script.type = 'text/javascript'; img_uploader_script.src = "/design/js/imguploader.js"; img_uploader_script.onload = function (){ myAwesomeDropzone = new Dropzone("#myAwesomeDropzone", { url: "/ajax/uploadImg.php" }); } document.body.appendChild(img_uploader_script); } } } else { newScript.textContent = script.textContent; } // Remove the old script and add the new one script.parentNode.removeChild(script); modalBox.appendChild(newScript); }); if(call_back) { call_back(); } }); if(show_modal_loaded == false){ // Kill modal if blackout is clicked modalBox.addEventListener('click', function(e) { if (e.target === e.currentTarget) { kill_modal(); } }); } show_modal_loaded = true; } // Modal kill function function kill_modal() { console.log("killing modal"); const modalBox = document.getElementById('modal-box'); modalBox.classList.remove('active'); // Replace the content directly with the new loading graphic modalBox.innerHTML = '<div class="modal-loading-graphic"></div>'; } // Modal "loading" mode, without killing function pause_modal() { var modal = document.querySelector('#modal-box > div.modal'); if(!modal) modal = document.querySelector('#modal-box'); modal.classList.add('hidden'); const modalBox = document.getElementById('modal-box'); modalBox.classList.add('paused'); const loadingGraphic = document.createElement('div'); loadingGraphic.className = 'modal-loading-graphic'; modalBox.appendChild(loadingGraphic); } function unpause_modal() { const modalBox = document.getElementById('modal-box'); modalBox.classList.remove('paused'); var modal = document.querySelector('#modal-box > div.modal'); if(!modal) modal = document.querySelector('#modal-box'); modal.classList.remove('hidden'); const loadingGraphic = document.querySelector('#modal-box > div.modal-loading-graphic'); if (loadingGraphic) { modalBox.removeChild(loadingGraphic); } } // COMPONENT: LOAD GRAPHIC function show_loader() { console.log("Displaying loading graphic"); kill_modal(); const modalBox = document.getElementById('modal-box'); modalBox.classList.add('active'); const loadingGraphic = document.createElement('div'); loadingGraphic.className = 'modal-loading-graphic'; modalBox.appendChild(loadingGraphic); } // TOGGLE NOTES function togglenote(id){ var ele=object(id); var state = ele.style.display; if(state=='none') ele.style.display='inline'; if(state=='inline')ele.style.display='none'; } // Toggle more menu function toggle_more_menu(position){ var more_menu = document.getElementById(position+"_more_list"); more_menu.classList.toggle("hidden_more_list"); more_menu.classList.toggle("display"); var menu_button = document.getElementById(position+"_more_button"); menu_button.classList.toggle("is-open"); } // scroll to top of page function scroll_to_top(duration) { var start = window.pageYOffset; var start_time = performance.now(); if ('requestAnimationFrame' in window === false) { window.scrollTo(0, 0); return; } function scroll() { var current_time = performance.now(); var elapsed_time = current_time - start_time; var progress = elapsed_time / duration; var ease_in_out_quad = progress < 0.5 ? 2 * progress * progress : -1 + (4 - 2 * progress) * progress; window.scrollTo(0, start * (1 - ease_in_out_quad)); if (elapsed_time < duration) { requestAnimationFrame(scroll); } else { window.scrollTo(0, 0); } } scroll(); } // FOLDER BUTTONS (unused) - declared to prevent console errors. function toggleAllFolders() {} function togglefolder(id) {} var device_type = get_device_type(); const mobile_menu_button = document.querySelector('.mobile-menu-toggle-button'); if (mobile_menu_button) { mobile_menu_button.addEventListener('click', function(e) { e.preventDefault(); const header = document.querySelector('header#main-header-bar'); if (header.classList.contains('mobile-menu-active')) { header.classList.remove('mobile-menu-active'); } else { header.classList.add('mobile-menu-active'); } }); } // tracking height for multiple folders to insert ads var global_pHeight = 0; // MODAL - FOLDER - SPOILER BUTTONS document.body.addEventListener('click', function(e) { // WATCH / FOLLOW BUTTONS const target = e.target.closest('.watch-button'); const loggedInElement = document.getElementById('logged_in'); const loggedIn = loggedInElement ? loggedInElement.value : null; //special code for the desktop-on-mobile-toggle cookie link if (e.target.closest('#desktop-on-mobile-toggle > a')) { e.preventDefault(); var body_class = "desktop-on-mobile"; var userPrefs = document.getElementById('user-prefs'); if (userPrefs.classList.contains(body_class)) { cookies.remove(body_class); } else { cookies.create(body_class, 'true', 300, '/'); } location.reload(); } // Display toggle buttons for user preferences if (e.target.closest('.display-toggles > li')) { var toggle = e.target; if(toggle.tagName.toLowerCase() === 'li') toggle = toggle.children[0]; var body_class = ''; var pref = ''; var val = 0; // SIDEBAR AND MOBILE MENU OPTIONS if (toggle.classList.contains('wide-load')) { body_class = "wide-load"; } else if (toggle.classList.contains('sticky-header')) { body_class = "sticky-header"; } else if (toggle.classList.contains('night-vision')) { body_class = "night-vision"; } else if (toggle.classList.contains('show-spoilers')) { body_class = "show-spoilers"; } else if (toggle.classList.contains('tvtropes-editor-on')) { body_class = "tvtropes-editor-on"; } // PROFILE PAGE OPTIONS else if (toggle.classList.contains('folders-open')) { body_class = "folders-open"; } else if (toggle.classList.contains('wysiwyg-toggle')) { body_class = "wysiwyg-toggle"; } else if (toggle.classList.contains('mono-font')) { body_class = "mono-font"; } else if (toggle.classList.contains('lefthand-sidebar')) { body_class = "lefthand-sidebar"; } else if (toggle.classList.contains('highlight-links')) { body_class = "highlight-links"; } else if (toggle.classList.contains('forum-gingerbread')) { body_class = "forum-gingerbread"; } else if (toggle.classList.contains('shared-avatars')) { body_class = "shared-avatars"; pref = 'accept_share'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('new-search')) { body_class = "new-search"; pref = 'new_search'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('stop-auto-play-video')) { body_class = "stop-auto-play-video"; pref = 'stop_auto_play_video'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-pm')) { body_class = 'notification-pm'; pref = 'toggle_notification_pm'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-video')) { body_class = 'notification-video'; pref = 'toggle_notification_video'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-query')) { body_class = 'notification-query'; pref = 'toggle_notification_query'; val = toggle.classList.contains('active') ? 0 : 1; } if (pref === 'accept_share' || pref === 'new_search' || pref === 'stop_auto_play_video' || pref === 'toggle_notification_query' || pref === 'toggle_notification_pm' || pref === 'toggle_notification_video') { if (pref === 'new_search' && document.querySelector('#new-search-toggle')) show_loader(); fetch('/ajax/toggle_user_prefs.php', { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: 'pref=' + encodeURIComponent(pref) + '&value=' + encodeURIComponent(val) }) .then(response => response.json()) .then(json => { if (pref === 'new_search') { const newSearchToggle = document.querySelector('#new-search-toggle'); const searchInput = document.getElementById('srch-term').value; const pageType = document.getElementsByName('page_type')[0].value; if (newSearchToggle && newSearchToggle.classList.contains('active')) { kill_modal(); window.location.href = '/pmwiki/elastic_search_result.php?new_search=true&q=' + encodeURIComponent(searchInput) + '&page_type=' + encodeURIComponent(pageType); } else if (newSearchToggle) { kill_modal(); window.location.href = '/pmwiki/search_result.php?new_search=false&q=' + encodeURIComponent(searchInput); } } }) .catch(error => { console.error('Error:', error); }); document.querySelector('form.search').addEventListener('submit', function(e) { if (cookies.read('new-search') === 'true') { e.preventDefault(); this.setAttribute('action', "/pmwiki/elastic_search_result.php"); } }); } // Toggle 'active' class based on body_class var displayToggles = document.querySelectorAll('.display-toggle.' + body_class); displayToggles.forEach(item_to_toggle => { item_to_toggle.classList.toggle('active'); }); var userPrefs = document.getElementById('user-prefs'); userPrefs.classList.toggle(body_class); console.log('BODY CLASS:',body_class); if (userPrefs.classList.contains(body_class)) { cookies.create(body_class, 'true', 300, '/'); } else { cookies.remove(body_class); // Specific logic for 'show-spoilers' class if (body_class === "show-spoilers") { document.querySelectorAll('.spoiler').forEach(spoiler => { spoiler.classList.remove('off'); }); } } } if (target && loggedIn !== null) { e.preventDefault(); if (loggedIn === 'true') { target.classList.add('processing'); } // Article if (target.getAttribute('data-watch-info')) { var data = target.dataset.watchInfo.split(','); if (!data.length) return; var addOrDrop = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? 'drop' : 'add'; handleWatchItem(addOrDrop, data[0], data[1], target); // Discussion page } else if (target.getAttribute('data-watch-discussion-info')) { var data = target.dataset.watchDiscussionInfo.split(','); if (!data.length) return; var addOrDrop = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? 'drop' : 'add'; var pageType = 'Discussion'; handleWatchItem(addOrDrop, data[0], data[1], target, pageType); // Forum thread } else if (target.getAttribute('data-watch-thread-id')) { var threadId = target.getAttribute('data-watch-thread-id'); var url = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? '/pmwiki/thread_watch_drop.php?thread=' : '/pmwiki/setthreadwatch.php?d_id='; url += threadId; handleWatchThread(url, target); } } // Check for kill modal button click if (e.target.classList.contains('kill-modal-button')) { e.preventDefault(); kill_modal(); } // Check for data-click-toggle without data-click-toggle-target const targetWithoutToggleTarget = e.target.closest('*[data-click-toggle]:not([data-click-toggle-target])'); if (targetWithoutToggleTarget) { e.preventDefault(); const toggleClass = targetWithoutToggleTarget.getAttribute('data-click-toggle'); targetWithoutToggleTarget.classList.toggle(toggleClass); } // Check for data-click-toggle with data-click-toggle-target const targetWithToggleTarget = e.target.closest('*[data-click-toggle][data-click-toggle-target]'); if (targetWithToggleTarget) { e.preventDefault(); // Check if the target contains fetch_articles in the onclick attribute const hasFetchArticles = targetWithToggleTarget.getAttribute('onclick') && targetWithToggleTarget.getAttribute('onclick').includes('fetch_articles'); // If fetch_articles is not in the onclick attribute, stop propagation if (!hasFetchArticles) { e.stopPropagation(); } const toggleTarget = targetWithToggleTarget.getAttribute('data-click-toggle-target'); const toggleClass = targetWithToggleTarget.getAttribute('data-click-toggle'); if (toggleTarget.indexOf(',') > -1) { const targets = toggleTarget.split(","); targets.forEach(t => { document.querySelectorAll('#' + t).forEach(el => { el.classList.toggle(toggleClass); }); }); } else { document.querySelectorAll('#' + toggleTarget).forEach(el => { el.classList.toggle(toggleClass); }); } } // initiate all modals const modalTarget = e.target.closest('*[data-modal-target]'); if(modalTarget) { if (!modalTarget) { return; // Skip, if no target found with the specified attribute } // Get modal details let modal = modalTarget.getAttribute('data-modal-target'); let msg = modalTarget.getAttribute('data-modal-vars') ? modalTarget.getAttribute('data-modal-vars') : modalTarget.getAttribute('data-modal-confirmation-message'); let url = modalTarget.getAttribute('data-modal-confirmation-url'); // convert to json if possible try { var obj = JSON.parse(msg); if (obj && typeof obj === "object") { msg = obj; } } catch (e) { } // Skip modal and go straight to the link if (modal === "allow") return; // Don't allow link since we are showing a modal instead e.preventDefault(); // Add support for alert tags if (modal.substring(0, 6) === "alert-") { // Message array const msgArr = { "alert-banned": "Your permissions for this area have been suspended. Please visit <a href='/pmwiki/pmwiki.php/Administrivia/WhatToDoIfYouAreSuspended'>this page</a> for more details.", "alert-bounced": "This account has committed severe or repeated violations of our rules and is permanently denied access to many of the account features of the site. If you feel that this may be an error, please <a href=\"/pmwiki/contact.php\">contact the mods</a>.", "alert-denied": "Your account was denied by a moderator. If you believe this was done in error please <a href=\"/pmwiki/contact.php\">contact the mods</a>.", "alert-verify": "You must verify your email address before doing this. Check your email for a link.", "alert-approval": "Your account must be approved by a moderator before you can do this. If you still have this problem in a couple hours try <a href=\"/pmwiki/contact.php\">contacting the mods</a>.", "alert-age": "Your account is not old enough. Give it a little more time.", "alert-mod": "This page is only for moderators. Try something else.", "alert-db": "We are currently updating our database systems to UTF-8MB4. Please try again in 10-12 hours." }; if (modal in msgArr) { msg = msgArr[modal]; } else { msg = "Unknown error. Please <a href=\"/pmwiki/contact.php\">Contact us</a> if the problem persists."; } modal = "alert"; } // Bring up modal now show_modal(modal, msg, url); } // SPOILERS const spoilers = e.target.closest('.spoiler'); if (spoilers) { spoilers.classList.toggle('off'); } // OPEN INDIVIDUAL FOLDERS const folders = e.target.closest('.folderlabel'); if (folders && e.target.getAttribute('onclick') !== "toggleAllFolders();") { e.preventDefault(); folders.classList.toggle('is-open'); let folder = folders.nextElementSibling; if (folders.classList.contains('is-open')) { gtag('event', 'folder_click', {'device_type': device_type}); } if (folder && folders.classList.contains('is-open') && live_ads == 1 && (document.body.clientWidth && document.body.clientWidth<=768) && tvtropes_config.universal_page_type == 'Article') { if (folder.querySelectorAll('.tvtropes-ad-unit').length === 0) { global_pHeight = insert_ads_in_content(folder, globalAdInsertionCount, global_pHeight); } } } // OPEN ALL FOLDERS const allFolders = e.target.closest('div[onclick*="toggleAllFolders()"]'); if (allFolders) { let parentElement = allFolders.parentNode; // If the button is inside an H2, select the parent div of it if (parentElement.tagName === 'H2') parentElement = parentElement.parentNode; let isCurrentlyOpen = e.target.classList.contains('is-open'); // Select only folder labels that are inside the same parent div as the clicked button let foldersAndButtons = parentElement.querySelectorAll('.folderlabel, .toggle-all-folders-button'); foldersAndButtons.forEach(function(element) { if (isCurrentlyOpen) { element.classList.remove('is-open'); } else { element.classList.add('is-open'); } }); if (!isCurrentlyOpen) { gtag('event', 'all_folders_click', {'device_type': device_type}); // Also target only .folder elements within the same parent div parentElement.querySelectorAll('.folder').forEach(function(folder) { if (!folder.querySelector('.tvtropes-ad-unit') && live_ads == 1 && (document.body.clientWidth && document.body.clientWidth<=768) && tvtropes_config.universal_page_type == 'Article') { global_pHeight = insert_ads_in_content(folder, globalAdInsertionCount, global_pHeight); } }); } } }, true); // Add/remove watched article var handleWatchItem = function(addOrDrop, groupname, title, obj, pageType = '') { fetch("/ajax/watchlist.php", { method: "POST", headers: { 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8' }, body: `groupname=${encodeURIComponent(groupname)}&title=${encodeURIComponent(title)}&type=${encodeURIComponent(addOrDrop)}&json=1&pageType=${encodeURIComponent(pageType)}` }) .then(response => response.json()) .then(data => { obj.classList.remove('processing'); if (obj.classList.contains('tile-watch-button')) { obj.parentNode.classList.toggle('watching'); } else { obj.classList.toggle('watching'); } }) .catch(error => { obj.classList.remove('processing'); show_modal('alert-red', 'Whoops, something went wrong. Please try adding again.'); }); } // add/remove watched forum thread var handleWatchThread = function(url, obj) { fetch(url) .then(response => response.text()) // assuming the server responds with plain text .then(data => { obj.classList.remove('processing'); if (obj.classList.contains('tile-watch-button')) { obj.parentNode.classList.toggle('watching'); } else { obj.classList.toggle('watching'); } }) .catch(error => { obj.classList.remove('processing'); show_modal('alert-red', 'Whoops, something went wrong. Please try adding again.'); }); } </script> <script> if(is_mobile()) { document.write("<div class=\"htlad-tvtropes_m_sticky\"></div>"); } else { document.write("<div class=\"htlad-tvtropes_dt_sticky\"></div>"); } </script> <div id="tvtropes_oop_ad_slot" style="display: none;"></div> <div id="top_container_spacing"></div> <div id="main-container"> <div id="action-bar-top" class="action-bar mobile-off"> <div class="action-bar-right"> <p>Follow TV Tropes</p> <a href="https://www.facebook.com/TVTropes" class="button-fb"> <i class="fa fa-facebook"></i></a> <a href="https://www.twitter.com/TVTropes" class="button-tw"> <i class="fa fa-twitter"></i></a> </div> <nav class="actions-wrapper" itemscope itemtype="http://schema.org/SiteNavigationElement"> <ul id="top_main_list" class="page-actions"> <li class="link-edit"> <a rel = "nofollow" class = "article-edit-button"data-modal-target= "login"href = "/pmwiki/pmwiki.php/Main/Fanfare?action=edit"> <i class="fa fa-pencil"></i> Edit Page</a></li><li class="link-related"><a href="/pmwiki/relatedsearch.php?term=Main/Fanfare"> <i class="fa fa-share-alt"></i> Related</a></li><li class="link-history"><a href="/pmwiki/article_history.php?article=Main.Fanfare" data-modal-target="login" rel="nofollow"> <i class="fa fa-history"></i> History</a></li><li class="link-discussion"><a href="/pmwiki/remarks.php?trope=Main.Fanfare" data-modal-target="login" rel="nofollow"> <i class="fa fa-comment"></i> Discussion</a></li><li class="link-todo tuck-always"><a href="#todo" data-modal-target="login" rel="nofollow"><i class="fa fa-check-circle"></i> To Do</a></li> </ul> <button id="top_more_button" onclick="toggle_more_menu('top');" type="button" class="nav__dropdown-toggle">More</button> <ul id="top_more_list" class="more_menu hidden_more_list"> <li class="link-pageSource tuck-always more_list_item"><a href="/pmwiki/pmwiki.php/Main/Fanfare?action=source" target="_blank" rel="nofollow"data-modal-target= "login"><i class="fa fa-code"></i> Page Source</a></li> </ul> </nav> <div class="WikiWordModalStub"></div> <div class="ImgUploadModalStub" data-page-type="Article"></div> <div class="login-alert" style="display: none;"> You need to <a href="/pmwiki/login.php" style="color:#21A0E8">login</a> to do this. <a href="/pmwiki/login.php?tab=register_account" style="color:#21A0E8">Get Known</a> if you don't have an account </div> </div> <div id="main-content" class="page-Article "> <article id="main-entry" class="with-sidebar"> <!-- HIDDEN INPUTS FOR JS --> <input type="hidden" id="groupname-hidden" value="Main"/> <input type="hidden" id="title-hidden" value="Fanfare"/> <input type="hidden" id="article_id" value="14848" /> <input type="hidden" id="logged_in" value="false" /> <p id="current_url" class="hidden">http://tvtropes.org/pmwiki/pmwiki.php/Main/Fanfare</p> <meta itemprop="datePublished" content=""/> <meta itemprop="articleSection" content="" /> <meta itemprop="image" content=""> <div class="watch_rank_wrap"> <a href="#watch" class="watch-button " data-modal-target="login" >Follow<span>ing</span></a> </div> <h1 itemprop="headline" class="entry-title"> Fanfare </h1> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "BreadcrumbList", "itemListElement": [{ "@type": "ListItem", "position": 1, "name": "TV Tropes", "item": "https://tvtropes.org/" },{ "@type": "ListItem", "position": 2, "name": "Tropes", "item": "https://tvtropes.org/pmwiki/pmwiki.php/Main/Tropes" },{ "@type": "ListItem", "position": 3, "name": "Fanfare", "item": "https://tvtropes.org/pmwiki/pmwiki.php/Main/Fanfare" }] } </script> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Article", "name": "Fanfare", "headline": "Fanfare", "url": "https://tvtropes.org/pmwiki/pmwiki.php/Main/Fanfare", "image": "https://static.tvtropes.org/pmwiki/pub/images/logo_light.png", "author": { "@type": "Organization", "name": "Contributors to TV Tropes (aka Tropers)" }, "datePublished": "2008-06-18T00:00:00-07:00", "dateModified": "2024-10-24T08:17:00-07:00" } </script> <a href="#mobile-actions-toggle" id="mobile-actionbar-toggle" class="mobile-actionbar-toggle mobile-on" data-click-toggle="active" > <p class="tiny-off">Go To</p><span></span><span></span><span></span><i class="fa fa-pencil"></i></a> <nav id="mobile-actions-bar" class="mobile-actions-wrapper mobile-on"></nav> <script> //duplicate action bar to the mobile-action-bar holder if (document.getElementById("mobile-actions-bar")) { // Clone the main list var top_main_list = document.getElementById('top_main_list'); var top_main_list_cln = top_main_list.cloneNode(true); // Clone the more list var top_more_list = document.getElementById('top_more_list'); var top_more_list_cln = top_more_list.cloneNode(true); top_more_list_cln.querySelectorAll("li").forEach(function(child){ top_main_list_cln.appendChild(child); }); document.getElementById("mobile-actions-bar").appendChild(top_main_list_cln); } </script> <nav class="body-options" itemscope itemtype="http://schema.org/SiteNavigationElement"> <ul class="subpage-links"> <li> <a href="/pmwiki/pmwiki.php/Main/Fanfare" class="subpage-link curr-subpage" title="The Main page"> <span class="wrapper"><span class="spi main-page"></span>Main</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/VideoExamples/Fanfare" class="subpage-link video-examples-tab " title="Video Examples"> <img src="/images/play-button-logo.png" alt="play" class=""> <span class="wrapper">VideoExamples</span> </a> </li> <li class="create-subpage dropdown"> <a href="javascript:void(0);" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"> <span class="wrapper">Create Subpage <i class="fa fa-plus-circle"></i></span> </a> <select onchange="this.options[this.selectedIndex].value && (window.location = this.options[this.selectedIndex].value);"> <option value="">- Create New -</option> <option value="/pmwiki/pmwiki.php/Analysis/Fanfare?action=edit">Analysis</option> <option value="/pmwiki/pmwiki.php/Archive/Fanfare?action=edit">Archive</option> <option value="/pmwiki/pmwiki.php/Awesome/Fanfare?action=edit">Awesome</option> <option value="/pmwiki/pmwiki.php/Characters/Fanfare?action=edit">Characters</option> <option value="/pmwiki/pmwiki.php/DerivativeWorks/Fanfare?action=edit">DerivativeWork&#8230;</option> <option value="/pmwiki/pmwiki.php/FanWorks/Fanfare?action=edit">FanWorks</option> <option value="/pmwiki/pmwiki.php/FanficRecs/Fanfare?action=edit">FanficRecs</option> <option value="/pmwiki/pmwiki.php/Fridge/Fanfare?action=edit">Fridge</option> <option value="/pmwiki/pmwiki.php/Funny/Fanfare?action=edit">Funny</option> <option value="/pmwiki/pmwiki.php/Haiku/Fanfare?action=edit">Haiku</option> <option value="/pmwiki/pmwiki.php/Headscratchers/Fanfare?action=edit">Headscratchers</option> <option value="/pmwiki/pmwiki.php/Heartwarming/Fanfare?action=edit">Heartwarming</option> <option value="/pmwiki/pmwiki.php/ImageLinks/Fanfare?action=edit">ImageLinks</option> <option value="/pmwiki/pmwiki.php/ImageSource/Fanfare?action=edit">ImageSource</option> <option value="/pmwiki/pmwiki.php/Laconic/Fanfare?action=edit">Laconic</option> <option value="/pmwiki/pmwiki.php/MediaNotes/Fanfare?action=edit">MediaNotes</option> <option value="/pmwiki/pmwiki.php/Newsletter/Fanfare?action=edit">Newsletter</option> <option value="/pmwiki/pmwiki.php/NightmareFuel/Fanfare?action=edit">NightmareFuel</option> <option value="/pmwiki/pmwiki.php/PlayingWith/Fanfare?action=edit">PlayingWith</option> <option value="/pmwiki/pmwiki.php/QuoteSource/Fanfare?action=edit">QuoteSource</option> <option value="/pmwiki/pmwiki.php/Quotes/Fanfare?action=edit">Quotes</option> <option value="/pmwiki/pmwiki.php/Recap/Fanfare?action=edit">Recap</option> <option value="/pmwiki/pmwiki.php/ReferencedBy/Fanfare?action=edit">ReferencedBy</option> <option value="/pmwiki/pmwiki.php/Shocking/Fanfare?action=edit">Shocking</option> <option value="/pmwiki/pmwiki.php/TearJerker/Fanfare?action=edit">TearJerker</option> <option value="/pmwiki/pmwiki.php/Timeline/Fanfare?action=edit">Timeline</option> <option value="/pmwiki/pmwiki.php/Trivia/Fanfare?action=edit">Trivia</option> <option value="/pmwiki/pmwiki.php/WMG/Fanfare?action=edit">WMG</option> <option value="/pmwiki/pmwiki.php/YMMV/Fanfare?action=edit">YMMV</option> </select> </li> </ul> </nav> <div id="main-article" class="article-content retro-folders"> <p><div class='indent'><em>"And as 'Superman' came on the screen, I swear to God, if you listen carefully, it literally, the music speaks the word."</em> <div class='indent'>&#8212; <strong><a class='twikilink' href='/pmwiki/pmwiki.php/Creator/RichardDonner' title='/pmwiki/pmwiki.php/Creator/RichardDonner' data-format='Q3JlYXRvci9SaWNoYXJkRG9ubmVy'>Richard Donner</a></strong> (on the opening theme for <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/SupermanTheMovie' title='/pmwiki/pmwiki.php/Film/SupermanTheMovie' data-format='RmlsbS9TdXBlcm1hblRoZU1vdmll'>Superman: The Movie</a></em>) </div></div></p><p>A type of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MoodMotif' title='/pmwiki/pmwiki.php/Main/MoodMotif' data-format='TW9vZE1vdGlm'>Mood Motif</a> that was traditionally used in medieval Europe to celebrate the arrival of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RoyalBlood' title='/pmwiki/pmwiki.php/Main/RoyalBlood' data-format='W1tSb3lhbEJsb29kIGEgcm95YWwgcGVyc29uXV0='>a royal person</a>. The form usually involved trumpets played in a bombastic and stirring manner. </p><p>Today, it is still present in music as a form of celebrating something. A fanfare today also uses brass instruments, or the closest digital music equivalent, and if not bombastic, it is still meant to be stirring and uplifting. </p><p>A <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SisterTrope' title='/pmwiki/pmwiki.php/Main/SisterTrope' data-format='U2lzdGVyVHJvcGU='>Sister Trope</a> to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/VictoriousChorus' title='/pmwiki/pmwiki.php/Main/VictoriousChorus' data-format='VmljdG9yaW91c0Nob3J1cw=='>Victorious Chorus</a>. May often accompany a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HellYesMoment' title='/pmwiki/pmwiki.php/Main/HellYesMoment' data-format='SGVsbFllc01vbWVudA=='>"Hell, Yes!" Moment</a> or a <a class='twikilink' href='/pmwiki/pmwiki.php/SugarWiki/MomentOfAwesome' title='/pmwiki/pmwiki.php/SugarWiki/MomentOfAwesome' data-format='U3VnYXJXaWtpL01vbWVudE9mQXdlc29tZQ=='>Moment of Awesome</a>. </p><p>Compare <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OrchestralBombing' title='/pmwiki/pmwiki.php/Main/OrchestralBombing' data-format='T3JjaGVzdHJhbEJvbWJpbmc='>Orchestral Bombing</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DramaticTimpani' title='/pmwiki/pmwiki.php/Main/DramaticTimpani' data-format='RHJhbWF0aWNUaW1wYW5p'>Dramatic Timpani</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DrumRollPlease' title='/pmwiki/pmwiki.php/Main/DrumRollPlease' data-format='RHJ1bVJvbGxQbGVhc2U='>Drum Roll, Please</a>, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ErmineCapeEffect' title='/pmwiki/pmwiki.php/Main/ErmineCapeEffect' data-format='RXJtaW5lQ2FwZUVmZmVjdA=='>Ermine Cape Effect</a> (having the same effect for royalty, but with clothes). </p><p>Contrast <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LosingHorns' title='/pmwiki/pmwiki.php/Main/LosingHorns' data-format='TG9zaW5nSG9ybnM='>Losing Horns</a>. </p><p><hr data-format='&#8212;&#8212;' /> <h2>Examples:</h2> </p><p><div class="folderlabel" onclick="toggleAllFolders();">&nbsp;&nbsp;&nbsp;&nbsp;open/close all folders&nbsp; </div> </p><p><div class="folderlabel" onclick="togglefolder('folder0');">&nbsp;&nbsp;&nbsp;&nbsp;Advertising&nbsp;</div><div id="folder0" class="folder" isfolder="true" style="display:block;"> <ul ><li> In commercials for Imperial margarine, whenever someone ate something spread with the product, a fanfare would sound and a crown appeared on the person's head. </li><li> The <a class='urllink' href='https://www.youtube.com/watch?v=Wb7sN7axblc'>theme song<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> for <a class='twikilink' href='/pmwiki/pmwiki.php/Advertising/SegataSanshiro' title='/pmwiki/pmwiki.php/Advertising/SegataSanshiro' data-format='QWR2ZXJ0aXNpbmcvU2VnYXRhU2Fuc2hpcm8='>Segata Sanshiro</a> begins with a triumphant fanfare. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder1');">&nbsp;&nbsp;&nbsp;&nbsp;Anime&nbsp;</div><div id="folder1" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/MatchlessRaijinOh' title='/pmwiki/pmwiki.php/Anime/MatchlessRaijinOh' data-format='QW5pbWUvTWF0Y2hsZXNzUmFpamluT2g='>Matchless Raijin-Oh</a></em> has an awesome one in its <a class='urllink' href='https://www.youtube.com/watch?v=ynG9c8QqyT4'>transformation sequence<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. </li><li> The <a class='urllink' href='https://www.youtube.com/watch?v=tW8JKCouIA4'>original opening<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> for <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/UFORoboGrendizer' title='/pmwiki/pmwiki.php/Anime/UFORoboGrendizer' data-format='QW5pbWUvVUZPUm9ib0dyZW5kaXplcg=='>UFO Robo Grendizer</a></em> is a very uplifting fanfare. Also used by several adaptations, like the <a class='urllink' href='https://www.youtube.com/watch?v=dOO3LgzXdYg'>French<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> or <a class='urllink' href='https://www.youtube.com/watch?v=uQERjZOCtvM'>Arabic<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> versions. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/Voltron' title='/pmwiki/pmwiki.php/Anime/Voltron' data-format='QW5pbWUve3tWb2x0cm9ufX0='>Voltron</a></em> replaced <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/GoLion' title='/pmwiki/pmwiki.php/Anime/GoLion' data-format='QW5pbWUvR29MaW9u'>GoLion</a></em>'s simple theme song insert with <a class='urllink' href='https://www.youtube.com/watch?v=tZZv5Z2Iz_s'>a fanfare<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder2');">&nbsp;&nbsp;&nbsp;&nbsp;Films &#8212; Animation&nbsp;</div><div id="folder2" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Shrek2' title='/pmwiki/pmwiki.php/WesternAnimation/Shrek2' data-format='V2VzdGVybkFuaW1hdGlvbi9TaHJlazI='>Shrek 2</a></em>: The traditional fanfare is followed by one guy playing the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/HawaiiFiveO' title='/pmwiki/pmwiki.php/Series/HawaiiFiveO' data-format='U2VyaWVzL0hhd2FpaUZpdmVP'>Hawaii Five-O</a></em> theme. "Enough, Reggie!" indeed. In fact, the traditional fanfare was itself a stylized portion of the <em>Hawaii Five-O</em> theme. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheLittleMermaid1989' title='/pmwiki/pmwiki.php/WesternAnimation/TheLittleMermaid1989' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVMaXR0bGVNZXJtYWlkMTk4OQ=='>The Little Mermaid (1989)</a></em>, Triton first appears to a fanfare. Sebastian is introduced with the same fanfare, only played on a kazoo. </li><li> The recobbled version of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheThiefAndTheCobbler' title='/pmwiki/pmwiki.php/WesternAnimation/TheThiefAndTheCobbler' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVUaGllZkFuZFRoZUNvYmJsZXI='>The Thief and the Cobbler</a></em> has many, most memorably: <div class='indent'>"Beautiful! Princess! Yum Yum!" <!--* "March of the Cards" from ''WesternAnimation/AliceInWonderland''.--> </div></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/ABoyNamedCharlieBrown' title='/pmwiki/pmwiki.php/WesternAnimation/ABoyNamedCharlieBrown' data-format='V2VzdGVybkFuaW1hdGlvbi9BQm95TmFtZWRDaGFybGllQnJvd24='>A Boy Named Charlie Brown</a></em>. "Champion Charlie Brown" is such a triumphant, catchy tune, the instrumental is used for the production credits bumper. </li><li> After Genie makes <a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/Aladdin1992Disney' title='/pmwiki/pmwiki.php/WesternAnimation/Aladdin1992Disney' data-format='V2VzdGVybkFuaW1hdGlvbi97e0FsYWRkaW58MTk5MkRpc25leX19'>Aladdin</a> into a prince, "Prince Ali" is given a burst of fanfare when being introduced to Agrabah before the horns become a full-on musical number. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder3');">&nbsp;&nbsp;&nbsp;&nbsp;Films &#8212; Live-Action&nbsp;</div><div id="folder3" class="folder" isfolder="true" style="display:block;"> <ul ><li> This has been around for about as long as film had original music. Studios tried to have a fanfare as their theme, but only <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/TwentiethCenturyStudios' title='/pmwiki/pmwiki.php/Creator/TwentiethCenturyStudios' data-format='Q3JlYXRvci9Ud2VudGlldGhDZW50dXJ5U3R1ZGlvcw=='>20th Century Studios</a>'s theme has lasted. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/OurMissBrooks' title='/pmwiki/pmwiki.php/Film/OurMissBrooks' data-format='RmlsbS9PdXJNaXNzQnJvb2tz'>Our Miss Brooks</a></em>, the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheMovie' title='/pmwiki/pmwiki.php/Main/TheMovie' data-format='W1tUaGVNb3ZpZSBjaW5lbWF0aWNdXQ=='>cinematic</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GrandFinale' title='/pmwiki/pmwiki.php/Main/GrandFinale' data-format='W1tHcmFuZEZpbmFsZSBzZXJpZXMgZmluYWxlXV0='>series finale</a> to the long-running radio and television program of the same name, dispenses with the usual series theme, and opens with a fanfare-heavy composition. </li><li> The late, great <a class='twikilink' href='/pmwiki/pmwiki.php/Music/JerryGoldsmith' title='/pmwiki/pmwiki.php/Music/JerryGoldsmith' data-format='TXVzaWMvSmVycnlHb2xkc21pdGg='>Jerry Goldsmith</a> was the master of fanfares. He notably composed the music for: <ul ><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/Universal' title='/pmwiki/pmwiki.php/Creator/Universal' data-format='Q3JlYXRvci97e1VuaXZlcnNhbH19'>Universal</a> <a class='urllink' href='https://www.youtube.com/watch?v=bNJW113tbKk'>Logo<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> is nothing short of EPIC. (it's quite the contrast to the calm <a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Creator/JamesHorner' title='/pmwiki/pmwiki.php/Creator/JamesHorner' data-format='Q3JlYXRvci9KYW1lc0hvcm5lcg=='>James Horner</a> <a class='urllink' href='https://www.youtube.com/watch?v=KHx7KTN7KdM'>jingle that immediately preceded it<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>) </li><li> The <em><a class='urllink' href='https://www.youtube.com/watch?v=Bho_zzm1ALE'>Fanfare for Oscar<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></em> which was commissioned for the Academy Awards ceremony. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/AirForceOne' title='/pmwiki/pmwiki.php/Film/AirForceOne' data-format='RmlsbS9BaXJGb3JjZU9uZQ=='>Air Force One</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/CapricornOne' title='/pmwiki/pmwiki.php/Film/CapricornOne' data-format='RmlsbS9DYXByaWNvcm5PbmU='>Capricorn One</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/OmenIIITheFinalConflict' title='/pmwiki/pmwiki.php/Film/OmenIIITheFinalConflict' data-format='RmlsbS9PbWVuSUlJVGhlRmluYWxDb25mbGljdA=='>Omen III: The Final Conflict</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/FirstKnight' title='/pmwiki/pmwiki.php/Film/FirstKnight' data-format='RmlsbS9GaXJzdEtuaWdodA=='>First Knight</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/KingSolomonsMines' title='/pmwiki/pmwiki.php/Literature/KingSolomonsMines' data-format='TGl0ZXJhdHVyZS9LaW5nU29sb21vbnNNaW5lcw=='>King Solomon's Mines</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/RichardTheLionHeart' title='/pmwiki/pmwiki.php/UsefulNotes/RichardTheLionHeart' data-format='W1tVc2VmdWxOb3Rlcy9SaWNoYXJkVGhlTGlvbkhlYXJ0IExpb25oZWFydF1d'>Lionheart</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheMummyTrilogy' title='/pmwiki/pmwiki.php/Film/TheMummyTrilogy' data-format='RmlsbS97e1RoZSBNdW1teXxUcmlsb2d5fX0='>The Mummy</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Supergirl1984' title='/pmwiki/pmwiki.php/Film/Supergirl1984' data-format='RmlsbS9TdXBlcmdpcmwxOTg0'>Supergirl (1984)</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TotalRecall1990' title='/pmwiki/pmwiki.php/Film/TotalRecall1990' data-format='RmlsbS9Ub3RhbFJlY2FsbDE5OTA='>Total Recall (1990)</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TwilightZoneTheMovie' title='/pmwiki/pmwiki.php/Film/TwilightZoneTheMovie' data-format='RmlsbS9Ud2lsaWdodFpvbmVUaGVNb3ZpZQ=='>Twilight Zone: The Movie</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheWindAndTheLion' title='/pmwiki/pmwiki.php/Film/TheWindAndTheLion' data-format='RmlsbS9UaGVXaW5kQW5kVGhlTGlvbg=='>The Wind and the Lion</a></em> </li></ul></li><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/WarnerBros' title='/pmwiki/pmwiki.php/Creator/WarnerBros' data-format='Q3JlYXRvci9XYXJuZXJCcm9z'>Warner Bros.</a>. one made a brief return in <em>Pee-Wee's Big Adventure</em> (though within the movie itself, and not the opening). It was also once used in synthesized form for the Warner Home Video logo. Warner nowadays uses an excerpt of "<a class='twikilink' href='/pmwiki/pmwiki.php/Film/Casablanca' title='/pmwiki/pmwiki.php/Film/Casablanca' data-format='W1tGaWxtL3t7Q2FzYWJsYW5jYX19IEFzIFRpbWUgR29lcyBCeV1d'>As Time Goes By</a>", though it appears more on their TV logo than on movies. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/Paramount' title='/pmwiki/pmwiki.php/Creator/Paramount' data-format='Q3JlYXRvci97e1BhcmFtb3VudH19'>Paramount</a> had one that was rarely used; it mostly appeared on their VHS-era home video releases. <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/DeepImpact' title='/pmwiki/pmwiki.php/Film/DeepImpact' data-format='RmlsbS9EZWVwSW1wYWN0'>Deep Impact</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/MeanGirls' title='/pmwiki/pmwiki.php/Film/MeanGirls' data-format='RmlsbS9NZWFuR2lybHM='>Mean Girls</a></em> began with this fanfare, which was replaced in 2013. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Music/JohnWilliams' title='/pmwiki/pmwiki.php/Music/JohnWilliams' data-format='TXVzaWMvSm9obldpbGxpYW1z'>John Williams</a> is fond of this. <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/StarWars' title='/pmwiki/pmwiki.php/Franchise/StarWars' data-format='RnJhbmNoaXNlL1N0YXJXYXJz'>Star Wars</a></em>. The opening music, and the medal ceremony at the end of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/ANewHope' title='/pmwiki/pmwiki.php/Film/ANewHope' data-format='RmlsbS9BTmV3SG9wZQ=='>A New Hope</a></em>. And all parodies worth their salt, including <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Spaceballs' title='/pmwiki/pmwiki.php/Film/Spaceballs' data-format='RmlsbS97e1NwYWNlYmFsbHN9fQ=='>Spaceballs</a></em>. </li><li> Theme to <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/SupermanTheMovie' title='/pmwiki/pmwiki.php/Film/SupermanTheMovie' data-format='RmlsbS9TdXBlcm1hblRoZU1vdmll'>Superman: The Movie</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/IndianaJones' title='/pmwiki/pmwiki.php/Franchise/IndianaJones' data-format='RnJhbmNoaXNlL0luZGlhbmFKb25lcw=='>Indiana Jones</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/JurassicPark' title='/pmwiki/pmwiki.php/Franchise/JurassicPark' data-format='RnJhbmNoaXNlL0p1cmFzc2ljUGFyaw=='>Jurassic Park</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/HarryPotter' title='/pmwiki/pmwiki.php/Film/HarryPotter' data-format='RmlsbS9IYXJyeVBvdHRlcg=='>Harry Potter</a></em> is an evolving piece that is growing into a fanfare. </li></ul></li><li> At this point we really should acknowledge Maurice Murphy, principal trumpeter of the London Symphony Orchestra at the time they recorded the original <em>Star Wars</em> score. John Williams was so impressed by Murphy's "heroic brass sound" that he personally asked for him as lead trumpet on several of his film scores, including all the rest of the <em>Star Wars</em> series. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheLastStarfighter' title='/pmwiki/pmwiki.php/Film/TheLastStarfighter' data-format='RmlsbS9UaGVMYXN0U3RhcmZpZ2h0ZXI='>The Last Starfighter</a></em> hits you right in the face with one in the opening moment. </li><li> <a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Music/MiklosRozsa' title='/pmwiki/pmwiki.php/Music/MiklosRozsa' data-format='TXVzaWMvTWlrbG9zUm96c2E='>Miklos Rozsa</a> and his magnum opus music for <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/BenHur1959' title='/pmwiki/pmwiki.php/Film/BenHur1959' data-format='W1tGaWxtL0Jlbkh1cjE5NTkgQmVuLUh1cl1d'>Ben-Hur</a></em>. Seriously, he <a class='urllink' href='https://www.youtube.com/watch?v=9L_z2OcL8-U'>out-fanfares John Williams in the fanfare department.<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/IndependenceDay' title='/pmwiki/pmwiki.php/Film/IndependenceDay' data-format='RmlsbS9JbmRlcGVuZGVuY2VEYXk='>Independence Day</a></em> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Music/ElmerBernstein' title='/pmwiki/pmwiki.php/Music/ElmerBernstein' data-format='TXVzaWMvRWxtZXJCZXJuc3RlaW4='>Elmer Bernstein</a> also made some memorable fanfares. <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheTenCommandments1956' title='/pmwiki/pmwiki.php/Film/TheTenCommandments1956' data-format='RmlsbS9UaGVUZW5Db21tYW5kbWVudHMxOTU2'>The Ten Commandments (1956)</a></em> </li><li> The theme to <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheMagnificentSeven1960' title='/pmwiki/pmwiki.php/Film/TheMagnificentSeven1960' data-format='W1tGaWxtL1RoZU1hZ25pZmljZW50U2V2ZW4xOTYwIFRoZSBNYWduaWZpY2VudCBTZXZlbl1d'>The Magnificent Seven</a></em>. </li><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/NationalGeographicChannel' title='/pmwiki/pmwiki.php/Creator/NationalGeographicChannel' data-format='Q3JlYXRvci97e05hdGlvbmFsIEdlb2dyYXBoaWN8Q2hhbm5lbH19'>National Geographic</a> Fanfare, which can be usually heard during the introduction of their TV programs. </li></ul></li><li> The theme to <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Tombstone' title='/pmwiki/pmwiki.php/Film/Tombstone' data-format='RmlsbS97e1RvbWJzdG9uZX19'>Tombstone</a></em> is on the dramatic end of this, but still has the elements. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Rocky' title='/pmwiki/pmwiki.php/Film/Rocky' data-format='RmlsbS97e1JvY2t5fX0='>Rocky</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/StarTrek' title='/pmwiki/pmwiki.php/Franchise/StarTrek' data-format='RnJhbmNoaXNlL1N0YXJUcmVr'>Star Trek</a></em>: <ul ><li> The theme to <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/StarTrekTheMotionPicture' title='/pmwiki/pmwiki.php/Film/StarTrekTheMotionPicture' data-format='RmlsbS9TdGFyVHJla1RoZU1vdGlvblBpY3R1cmU='>Star Trek: The Motion Picture</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/StarTrekIITheWrathOfKhan' title='/pmwiki/pmwiki.php/Film/StarTrekIITheWrathOfKhan' data-format='RmlsbS97e1N0YXIgVHJlayBJSXxUaGUgV3JhdGggb2YgS2hhbn19'>Star Trek II</a></em> were fanfares (the former becoming the theme for <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/StarTrekTheNextGeneration' title='/pmwiki/pmwiki.php/Series/StarTrekTheNextGeneration' data-format='W1tTZXJpZXMvU3RhclRyZWtUaGVOZXh0R2VuZXJhdGlvbiBUaGUgTmV4dCBHZW5lcmF0aW9uXV0='>The Next Generation</a></em>). </li><li> The Klingon theme from <em>The Motion Picture</em> was not a fanfare at first, but after the Klingons became the greatest warriors of the franchise (even when they were not good guys), the theme was remixed into a fanfare. </li></ul></li><li> Humperdinck's entrance in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/ThePrincessBride' title='/pmwiki/pmwiki.php/Film/ThePrincessBride' data-format='RmlsbS9UaGVQcmluY2Vzc0JyaWRl'>The Princess Bride</a></em> gets a sinister fanfare. </li><li> The background trumpets of "Comedy Tonight" from <em>A Funny Thing Happened on the Way to Forum</em> counts, or at least does during the final reprise. The stage version has fanfares heralding the grandiose entrance of Miles Gloriosus. A portion of the following song ("Bring Me My Bride") is recognizable in the fanfare that opens the show. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheGoldenVoyageOfSinbad' title='/pmwiki/pmwiki.php/Film/TheGoldenVoyageOfSinbad' data-format='RmlsbS9UaGVHb2xkZW5Wb3lhZ2VPZlNpbmJhZA=='>The Golden Voyage of Sinbad</a></em>, a fanfare is played for the Grand Vizier of Marabia. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheThreeMusketeers1973' title='/pmwiki/pmwiki.php/Film/TheThreeMusketeers1973' data-format='RmlsbS97e1RoZSBUaHJlZSBNdXNrZXRlZXJzfDE5NzN9fQ=='>The Three Musketeers</a></em> (1973), a fanfare is to be played for the King of France. One of the Musketeers (D'Artagnan?) needs a distraction, so he tries to play the fanfare and fails badly. However, the other musicians think it's time and play the fanfare correctly. </li><li> <a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Music/ErichWolfgangKorngold' title='/pmwiki/pmwiki.php/Music/ErichWolfgangKorngold' data-format='TXVzaWMvRXJpY2hXb2xmZ2FuZ0tvcm5nb2xk'>Erich Wolfgang Korngold</a>'s composed several for <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheAdventuresOfRobinHood' title='/pmwiki/pmwiki.php/Film/TheAdventuresOfRobinHood' data-format='RmlsbS9UaGVBZHZlbnR1cmVzT2ZSb2Jpbkhvb2Q='>The Adventures of Robin Hood</a></em> (the <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/ErrolFlynn' title='/pmwiki/pmwiki.php/Creator/ErrolFlynn' data-format='Q3JlYXRvci9FcnJvbEZseW5u'>Errol Flynn</a> version). </li><li> The opening of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/RobinHoodPrinceOfThieves' title='/pmwiki/pmwiki.php/Film/RobinHoodPrinceOfThieves' data-format='RmlsbS9Sb2Jpbkhvb2RQcmluY2VPZlRoaWV2ZXM='>Robin Hood: Prince of Thieves</a></em>. </li><li> Hilariously <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ParodiedTrope' title='/pmwiki/pmwiki.php/Main/ParodiedTrope' data-format='e3twYXJvZGllZHxUcm9wZX19'>parodied</a> in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/RobinHoodMenInTights' title='/pmwiki/pmwiki.php/Film/RobinHoodMenInTights' data-format='RmlsbS9Sb2Jpbkhvb2RNZW5JblRpZ2h0cw=='>Robin Hood: Men in Tights</a></em>: <ul ><li> First, there's the scene where the Sheriff and the soldiers ride up to Robin after his castle gets taken by the repo guys, where the fanfare is the soldiers miming trumpet noise. </li><li> Later when an actual trumpet fanfare is played directly into Prince John's ears at full blast. </li></ul></li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/GalaxyQuest' title='/pmwiki/pmwiki.php/Film/GalaxyQuest' data-format='RmlsbS9HYWxheHlRdWVzdA=='>Galaxy Quest</a></em> theme. </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/JamesBond' title='/pmwiki/pmwiki.php/Film/JamesBond' data-format='RmlsbS9KYW1lc0JvbmQ='>James Bond</a></em> scores of <a class='twikilink' href='/pmwiki/pmwiki.php/Music/JohnBarry' title='/pmwiki/pmwiki.php/Music/JohnBarry' data-format='TXVzaWMvSm9obkJhcnJ5'>John Barry</a> are practically <em>made</em> of fanfare. <ul ><li> Heck, there's a track on the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/AViewToAKill' title='/pmwiki/pmwiki.php/Film/AViewToAKill' data-format='RmlsbS9BVmlld1RvQUtpbGw='>A View to a Kill</a></em> score that's called "Fanfare", listenable <a class='urllink' href='http://www.indyarocks.com/videos/Fanfare-A-View-to-a-Kill-with-FXs-2250172'>here.<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/Goldfinger' title='/pmwiki/pmwiki.php/Film/Goldfinger' data-format='RmlsbS97e0dvbGRmaW5nZXJ9fQ=='>Goldfinger</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/YouOnlyLiveTwice' title='/pmwiki/pmwiki.php/Film/YouOnlyLiveTwice' data-format='RmlsbS9Zb3VPbmx5TGl2ZVR3aWNl'>You Only Live Twice</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/AViewToAKill' title='/pmwiki/pmwiki.php/Film/AViewToAKill' data-format='RmlsbS9BVmlld1RvQUtpbGw='>A View to a Kill</a></em> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheLivingDaylights' title='/pmwiki/pmwiki.php/Film/TheLivingDaylights' data-format='RmlsbS9UaGVMaXZpbmdEYXlsaWdodHM='>The Living Daylights</a></em> </li></ul></li><li> Several <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Leitmotif' title='/pmwiki/pmwiki.php/Main/Leitmotif' data-format='e3tsZWl0bW90aWZ9fXM='>leitmotifs</a> in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheLordOfTheRings' title='/pmwiki/pmwiki.php/Film/TheLordOfTheRings' data-format='RmlsbS9UaGVMb3JkT2ZUaGVSaW5ncw=='>The Lord of the Rings</a></em> get the fanfare treatment, most notably the Fellowship theme and the themes for Gondor and Rohan. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/HowTheWestWasWon' title='/pmwiki/pmwiki.php/Film/HowTheWestWasWon' data-format='RmlsbS9Ib3dUaGVXZXN0V2FzV29u'>How the West Was Won</a></em> </li><li> Despite being labeled as a march in the title, the main theme from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/CaptainAmericaTheFirstAvenger' title='/pmwiki/pmwiki.php/Film/CaptainAmericaTheFirstAvenger' data-format='RmlsbS9DYXB0YWluQW1lcmljYVRoZUZpcnN0QXZlbmdlcg=='>Captain America: The First Avenger</a></em> (called the Captain America March) certainly opens as a fanfare. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/SkyCaptainAndTheWorldOfTomorrow' title='/pmwiki/pmwiki.php/Film/SkyCaptainAndTheWorldOfTomorrow' data-format='RmlsbS9Ta3lDYXB0YWluQW5kVGhlV29ybGRPZlRvbW9ycm93'>Sky Captain and the World of Tomorrow</a></em> </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder4');">&nbsp;&nbsp;&nbsp;&nbsp;Literature&nbsp;</div><div id="folder4" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheHandsOfTheEmperor' title='/pmwiki/pmwiki.php/Literature/TheHandsOfTheEmperor' data-format='TGl0ZXJhdHVyZS9UaGVIYW5kc09mVGhlRW1wZXJvcg=='>The Hands of the Emperor</a></em>: The imperial salute that has to be played when the emperor enters a building/room in official capacity. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/RobertEHoward' title='/pmwiki/pmwiki.php/Creator/RobertEHoward' data-format='Q3JlYXRvci9Sb2JlcnRFSG93YXJk'>Robert E. Howard</a>'s <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Kull' title='/pmwiki/pmwiki.php/Literature/Kull' data-format='TGl0ZXJhdHVyZS97e0t1bGx9fQ=='>Kull</a></em> story <em>The Shadow Kingdom</em> opens with "the blare of the trumpets." </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder5');">&nbsp;&nbsp;&nbsp;&nbsp;Live-Action TV&nbsp;</div><div id="folder5" class="folder" isfolder="true" style="display:block;"> <ul ><li> Popular with British TV companies for their opening logos, particularly in the 1960s-80s. Anglia Television, <span class='esc-seq' title='non-wikiword'>ATV</span>, <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/Channel4' title='/pmwiki/pmwiki.php/Creator/Channel4' data-format='Q3JlYXRvci9DaGFubmVsNA=='>Channel 4</a>, <span class='esc-seq' title='non-wikiword'>LWT</span>, Rediffusion, Thames, TVS and Yorkshire Television all used fanfares at one time or another. Hilarious in the US, where many viewers exposure to British programming was limited to <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MontyPythonsFlyingCircus' title='/pmwiki/pmwiki.php/Series/MontyPythonsFlyingCircus' data-format='U2VyaWVzL01vbnR5UHl0aG9uc0ZseWluZ0NpcmN1cw=='>Monty Python's Flying Circus</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheBennyHillShow' title='/pmwiki/pmwiki.php/Series/TheBennyHillShow' data-format='U2VyaWVzL1RoZUJlbm55SGlsbFNob3c='>The Benny Hill Show</a></em>. The stirring fanfare of Thames Television was followed by a half-hour of watching a pudgy guy chase half-naked women around. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Airwolf' title='/pmwiki/pmwiki.php/Series/Airwolf' data-format='U2VyaWVzL3t7QWlyd29sZn19'>Airwolf</a></em> has a massive fanfare as part of its opening theme. </li><li> The original <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/BattlestarGalactica1978' title='/pmwiki/pmwiki.php/Series/BattlestarGalactica1978' data-format='U2VyaWVzL3t7QmF0dGxlc3RhciBHYWxhY3RpY2F8MTk3OH19'>Battlestar Galactica</a></em> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InstrumentalThemeTune' title='/pmwiki/pmwiki.php/Main/InstrumentalThemeTune' data-format='SW5zdHJ1bWVudGFsVGhlbWVUdW5l'>Instrumental Theme Tune</a>. Reused in the <a class='twikilink' href='/pmwiki/pmwiki.php/Series/BattlestarGalactica2003' title='/pmwiki/pmwiki.php/Series/BattlestarGalactica2003' data-format='W1tTZXJpZXMvQmF0dGxlc3RhckdhbGFjdGljYTIwMDMgMjAwMyByZXZpdmFsXV0='>2003 revival</a> as the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MythologyGag' title='/pmwiki/pmwiki.php/Main/MythologyGag' data-format='W1tNeXRob2xvZ3lHYWcgQ29sb25pYWwgQW50aGVtXV0='>Colonial Anthem</a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/EntertainmentTonight' title='/pmwiki/pmwiki.php/Series/EntertainmentTonight' data-format='U2VyaWVzL0VudGVydGFpbm1lbnRUb25pZ2h0'>Entertainment Tonight</a></em>, composed by <a class='urllink' href='http://en.wikipedia.org/wiki/Michael_Mark_%28musician%29'>Michael Mark.<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/FortBoyard' title='/pmwiki/pmwiki.php/Series/FortBoyard' data-format='U2VyaWVzL0ZvcnRCb3lhcmQ='>Fort Boyard</a></em>: The <a class='urllink' href='https://www.youtube.com/watch?v=csO5xeM20F4'>main theme<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> has moments with other instruments (notably percussion, violin or xylophone), but its most triumphant and iconic part is heavy on the brass. </li><li> <a class='urllink' href='https://www.youtube.com/watch?v=uQ9xfNn09eQ'>The famous theme tune<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> for <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/HawaiiFiveO' title='/pmwiki/pmwiki.php/Series/HawaiiFiveO' data-format='U2VyaWVzL0hhd2FpaUZpdmVP'>Hawaii Five-O</a></em>. The 2010 remake <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/HawaiiFive0' title='/pmwiki/pmwiki.php/Series/HawaiiFive0' data-format='U2VyaWVzL0hhd2FpaUZpdmUw'>Hawaii Five-0</a></em> at first attempted <a class='urllink' href='https://www.youtube.com/watch?v=rLKdYXyQa90'>a techno remix<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, but the backlash was <em>intense</em>. So, the producers brought back <a class='urllink' href='https://www.youtube.com/watch?v=lUt558jdHqk'>most of the original band members<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> for a <a class='urllink' href='https://www.youtube.com/watch?v=hwhvByj8YG8'>much closer version<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> that stays a fanfare! </li><li> The opening theme of another <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/DonaldPBellisario' title='/pmwiki/pmwiki.php/Creator/DonaldPBellisario' data-format='Q3JlYXRvci9Eb25hbGRQQmVsbGlzYXJpbw=='>Donald P. Bellisario</a> creation named <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/JAG' title='/pmwiki/pmwiki.php/Series/JAG' data-format='U2VyaWVzL3t7SkFHfX0='>JAG</a></em>. </li><li> The Theme Tune for <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/LoisAndClark' title='/pmwiki/pmwiki.php/Series/LoisAndClark' data-format='U2VyaWVzL0xvaXNBbmRDbGFyaw=='>Lois & Clark</a></em>, clearly inspired by the <a class='twikilink' href='/pmwiki/pmwiki.php/Music/JohnWilliams' title='/pmwiki/pmwiki.php/Music/JohnWilliams' data-format='TXVzaWMvSm9obldpbGxpYW1z'>John Williams</a> score from the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/SupermanTheMovie' title='/pmwiki/pmwiki.php/Film/SupermanTheMovie' data-format='RmlsbS97e1N1cGVybWFufFRoZU1vdmllfX0='>Superman</a></em> movie. </li><li> One of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MysteryScienceTheater3000' title='/pmwiki/pmwiki.php/Series/MysteryScienceTheater3000' data-format='U2VyaWVzL015c3RlcnlTY2llbmNlVGhlYXRlcjMwMDA='>Mystery Science Theater 3000</a></em>'s <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RunningGag' title='/pmwiki/pmwiki.php/Main/RunningGag' data-format='e3tSdW5uaW5nIEdhZ319cw=='>Running Gags</a> involves someone (usually Tom Servo) announcing "The King approaches!" in a pompous tone of voice whenever the movie plays a fanfare. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheLordOfTheRingsTheRingsOfPower' title='/pmwiki/pmwiki.php/Series/TheLordOfTheRingsTheRingsOfPower' data-format='U2VyaWVzL1RoZUxvcmRPZlRoZVJpbmdzVGhlUmluZ3NPZlBvd2Vy'>The Lord of the Rings: The Rings of Power</a></em>: <ul ><li> <em>In the beginning</em> theme has fanfare and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EtherealChoir' title='/pmwiki/pmwiki.php/Main/EtherealChoir' data-format='RXRoZXJlYWxDaG9pcg=='>Ethereal Choir</a> in the segment showing the city of Tirion and the Two Trees of Valinor before changing to a dark fanfare. </li><li> Lindon has a more subdued score. </li><li> The theme of Numenor contains a very uplifting fanfare heralding the arrival of Galadriel and Halbrand in Numenor to show the grandiosity of Armenelos. </li><li> Visiting Khazad&#8212;dum for the first time in two decades, even Elrond feels the fanfare score. </li></ul></li><li> "<a class='urllink' href='https://www.youtube.com/watch?v=AqwhF6vcylg'>The Mission<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>", John Williams's theme for <em><a class='twikilink' href='/pmwiki/pmwiki.php/Creator/NBC' title='/pmwiki/pmwiki.php/Creator/NBC' data-format='W1tDcmVhdG9yL3t7TkJDfX0gTkJDIE5ld3NdXQ=='>NBC News</a></em>. </li><li> "Window Shopping," the theme for the original NBC edition of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/ThePriceIsRight' title='/pmwiki/pmwiki.php/Series/ThePriceIsRight' data-format='U2VyaWVzL1RoZVByaWNlSXNSaWdodA=='>The Price Is Right</a></em> starting in 1961, had a five-note fanfare as the scene dissolves from the contestants to the show's logo. The fanfare was discarded when the show moved to ABC in 1963. </li><li> The first season opening credits of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Space1999' title='/pmwiki/pmwiki.php/Series/Space1999' data-format='U2VyaWVzL1NwYWNlMTk5OQ=='>Space: 1999</a></em> start with a grand fanfare, heralding the arrival of... Martin Landau and Barbara Bain. </li><li> <a class='urllink' href='https://www.youtube.com/watch?v=_9kwVoHgtzo'>The opening theme tune<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> of French series <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/ThierryLaFronde' title='/pmwiki/pmwiki.php/Series/ThierryLaFronde' data-format='U2VyaWVzL1RoaWVycnlMYUZyb25kZQ=='>Thierry la Fronde</a></em> may have its softer moments, but it starts right away as a fanfare and is really not shy with the brass overall. </li><li> "Song of the High Seas", the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InstrumentalThemeTune' title='/pmwiki/pmwiki.php/Main/InstrumentalThemeTune' data-format='SW5zdHJ1bWVudGFsVGhlbWVUdW5l'>Instrumental Theme Tune</a> from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/VictoryAtSea' title='/pmwiki/pmwiki.php/Series/VictoryAtSea' data-format='U2VyaWVzL1ZpY3RvcnlBdFNlYQ=='>Victory at Sea</a></em>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder6');">&nbsp;&nbsp;&nbsp;&nbsp;Music&nbsp;</div><div id="folder6" class="folder" isfolder="true" style="display:block;"> <ul ><li> The theme to <em>Masterpiece Theatre</em> is actually an old piece titled "Fanfare for trumpets, timpani, violins and oboes". It's on the more relaxing and graceful end, but it is a fanfare. </li><li> The Triumphal Chorus from Verdi's <em>Aida</em>. </li><li> <em>Fanfare for the Common Man</em> by Aaron Copland. Composed in WWII, it even got a rock version by Emerson, Lake and Palmer. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Music/GustavMahler' title='/pmwiki/pmwiki.php/Music/GustavMahler' data-format='TXVzaWMvR3VzdGF2TWFobGVy'>Gustav Mahler</a> started off his Fifth Symphony with a trumpet solo. He grew up in a barracks town, so bugle calls and bits of military marches often find their way into his compositions. </li><li> Symphony No. 4 in F Minor by <a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Music/PyortIlyichTchaikovsky' title='/pmwiki/pmwiki.php/Music/PyortIlyichTchaikovsky' data-format='TXVzaWMvUHlvcnRJbHlpY2hUY2hhaWtvdnNreQ=='>Pyort Ilyich Tchaikovsky</a> begins with a stark fanfare in the horns and bassoons that is then taken up by the trumpets. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CallBack' title='/pmwiki/pmwiki.php/Main/CallBack' data-format='W1tDYWxsQmFjayBJdCBhYnJ1cHRseSBjb21lcyBiYWNrXV0='>It abruptly comes back</a> in the final movement. </li><li> Rimsky-Korsakov's <em>Mlada</em> has the "Procession of the Nobles". </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Music/TheMoodyBlues' title='/pmwiki/pmwiki.php/Music/TheMoodyBlues' data-format='TXVzaWMvVGhlTW9vZHlCbHVlcw=='>The Moody Blues</a>' <em>Days of Future Past</em>. </li><li> <em>Mirdautas Vras</em> by <a class='twikilink' href='/pmwiki/pmwiki.php/Music/Summoning' title='/pmwiki/pmwiki.php/Music/Summoning' data-format='TXVzaWMve3tTdW1tb25pbmd9fQ=='>Summoning</a>. Perhaps the only example of a fanfare for a <strong>villain</strong>. Listen <a class='urllink' href='https://www.youtube.com/watch?v=P5IMCH7INcE'>here<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. </li><li> Rimsky-Korsakov's arrangement of <em>Night On Bald Mountain</em> by Mussorgsky features a fanfare that announces the entrance of Chernobog/Devil. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Music/FelixMendelssohn' title='/pmwiki/pmwiki.php/Music/FelixMendelssohn' data-format='TXVzaWMvRmVsaXhNZW5kZWxzc29obg=='>Felix Mendelssohn</a>'s "Wedding March" opens with a fanfare that is repeated at intervals, though the main body of the piece relies rather more heavily on strings than the other examples here. </li><li> In settings of the Requiem Mass, "Tuba mirum" is a good place to look for fanfares combined with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OminousLatinChanting' title='/pmwiki/pmwiki.php/Main/OminousLatinChanting' data-format='T21pbm91c0xhdGluQ2hhbnRpbmc='>Ominous Latin Chanting</a>. Mozart's only has a relatively tame trombone solo, but the Berlioz and Verdi Requiems pile on the brass magnificently. </li><li> Tchaikovsky's <em>Capriccio Italien</em> opens with the reveille call that he heard while on vacation in Spain. </li><li> Gustav Mahler's music is filled with fanfares and marches, thanks to growing up in a town with a barracks. </li><li> "Fanfare" from <a class='twikilink' href='/pmwiki/pmwiki.php/Music/Kiss' title='/pmwiki/pmwiki.php/Music/Kiss' data-format='TXVzaWMve3tLaXNzfX0='>KISS</a>' <em><a class='twikilink' href='/pmwiki/pmwiki.php/Music/MusicFromTheElder' title='/pmwiki/pmwiki.php/Music/MusicFromTheElder' data-format='TXVzaWMvTXVzaWNGcm9tVGhlRWxkZXI='>Music from "The Elder"</a></em>. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Music/JohnWilliams' title='/pmwiki/pmwiki.php/Music/JohnWilliams' data-format='TXVzaWMvSm9obldpbGxpYW1z'>John Williams</a> again, for his <a class='urllink' href='https://www.youtube.com/watch?v=YWdOFgDQIn0'>Olympic Fanfare and Theme<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. He has made other contributions to the Olympics in years to come; this one was his first. </li><li> The classic <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/DoctorWho' title='/pmwiki/pmwiki.php/Series/DoctorWho' data-format='U2VyaWVzL0RvY3Rvcldobw=='>Doctor Who</a></em> theme gets <a class='urllink' href='https://www.youtube.com/watch?v=f6DdbgaGf_4'>revamped as a fanfare<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> for the intro to <em><a class='twikilink' href='/pmwiki/pmwiki.php/Recap/DoctorWhoTVMTheTVMovie' title='/pmwiki/pmwiki.php/Recap/DoctorWhoTVMTheTVMovie' data-format='W1tSZWNhcC9Eb2N0b3JXaG9UVk1UaGVUVk1vdmllIERvY3RvciBXaG86IFRoZSBUViBNb3ZpZV1d'>Doctor Who: The TV Movie</a></em>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder7');">&nbsp;&nbsp;&nbsp;&nbsp;Theatre&nbsp;</div><div id="folder7" class="folder" isfolder="true" style="display:block;"> <ul ><li> Several <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Leitmotif' title='/pmwiki/pmwiki.php/Main/Leitmotif' data-format='e3tMZWl0bW90aWZ9fXM='>Leitmotifs</a> in <a class='twikilink' href='/pmwiki/pmwiki.php/Music/RichardWagner' title='/pmwiki/pmwiki.php/Music/RichardWagner' data-format='TXVzaWMvUmljaGFyZFdhZ25lcg=='>Richard Wagner</a>'s <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/TheRingOfTheNibelung' title='/pmwiki/pmwiki.php/Theatre/TheRingOfTheNibelung' data-format='VGhlYXRyZS9UaGVSaW5nT2ZUaGVOaWJlbHVuZw=='>The Ring of the Nibelung</a></em> have a fanfare-like character, such as the Sword motif and the Valkyries' theme (exploited in the famous "<a class='twikilink' href='/pmwiki/pmwiki.php/StandardSnippet/RideOfTheValkyries' title='/pmwiki/pmwiki.php/StandardSnippet/RideOfTheValkyries' data-format='U3RhbmRhcmRTbmlwcGV0L1JpZGVPZlRoZVZhbGt5cmllcw=='>Ride of the Valkyries</a>"). Of Siegfried's two themes, one is only slightly fanfare-like; the other (the famous horn call) is much more so. <ul ><li> In <em>Parsifal</em>, Parsifal's theme is very much a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Fanfare' title='/pmwiki/pmwiki.php/Main/Fanfare' data-format='e3tGYW5mYXJlfX0='>Fanfare</a>, indicating that while he may be a fool, he's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheHero' title='/pmwiki/pmwiki.php/Main/TheHero' data-format='VGhlSGVybw=='>The Hero</a> nonetheless. </li><li> In <em>Lohengrin</em>, there is a simple fanfare that plays whenever <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HistoricalDomainCharacter' title='/pmwiki/pmwiki.php/Main/HistoricalDomainCharacter' data-format='W1tIaXN0b3JpY2FsRG9tYWluQ2hhcmFjdGVyIEhlbnJ5IHRoZSBGb3dsZXIsIEtpbmcgb2YgR2VybWFueV1d'>Henry the Fowler, King of Germany</a>, enters the scene. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/Camelot' title='/pmwiki/pmwiki.php/Theatre/Camelot' data-format='VGhlYXRyZS97e0NhbWVsb3R9fQ=='>Camelot</a></em> has a recurring fanfare derived from the title song ("Ca-me-lot!"). </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/OfTheeISing' title='/pmwiki/pmwiki.php/Theatre/OfTheeISing' data-format='VGhlYXRyZS9PZlRoZWVJU2luZw=='>Of Thee I Sing</a></em> has a trumpet fanfare derived from its title song, which plays before various important entrances and announcements. This is subverted in the final scene by <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RuleOfThree' title='/pmwiki/pmwiki.php/Main/RuleOfThree' data-format='UnVsZU9mVGhyZWU='>Rule of Three</a>. </li><li> Da-da-da-DAH! Arguably the best overture of a musical ever written, Jule Styne and Stephen Sondheim's <em>Gypsy</em> revolves around four notes and four central words: "I had a dream!" </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/Candide' title='/pmwiki/pmwiki.php/Literature/Candide' data-format='TGl0ZXJhdHVyZS97e0NhbmRpZGV9fQ=='>Candide</a></em>: <ul ><li> Similarly, the overture of Leonard Berstein's version is so epic and widely regarded it is performed by symphonies as a modern classical piece completely separate from the musical. Its opening fanfare is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EpicRiff' title='/pmwiki/pmwiki.php/Main/EpicRiff' data-format='W1tFcGljUmlmZiBpbnN0YW50bHkgcmVjb2duaXphYmxlXV0='>instantly recognizable</a>. </li><li> There's also the Governor's fanfare, derived from his song "My Love", and a shofar-like Inquisition fanfare which sounds quite scary. </li></ul></li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/CinderellaRodgersAndHammerstein' title='/pmwiki/pmwiki.php/Theatre/CinderellaRodgersAndHammerstein' data-format='VGhlYXRyZS9DaW5kZXJlbGxhUm9kZ2Vyc0FuZEhhbW1lcnN0ZWlu'>Cinderella (Rodgers and Hammerstein)</a></em>, "The Prince Is Giving a Ball" opens with a trumpet fanfare based on the first line of the song; a variation on this fanfare is repeated throughout. </li><li> Two examples by <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/GilbertAndSullivan' title='/pmwiki/pmwiki.php/Creator/GilbertAndSullivan' data-format='Q3JlYXRvci9HaWxiZXJ0QW5kU3VsbGl2YW4='>Gilbert and Sullivan</a>, in both cases played on trumpets and sung by the chorus: <ul ><li> "When the Foeman Bares His Steel" in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/ThePiratesOfPenzance' title='/pmwiki/pmwiki.php/Theatre/ThePiratesOfPenzance' data-format='VGhlYXRyZS9UaGVQaXJhdGVzT2ZQZW56YW5jZQ=='>The Pirates of Penzance</a></em>. </li></ul><div class='indent'>There is nothing brings it 'round<br data-format="\\" />Like the trumpet's martial sound,<br data-format="\\" />Like the trumpet's martial sound, tarantara! </div><ul ><li> "Loudly Let The Trumpets Bray" from <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/Iolanthe' title='/pmwiki/pmwiki.php/Theatre/Iolanthe' data-format='VGhlYXRyZS97e0lvbGFudGhlfX0='>Iolanthe</a></em> </li></ul><div class='indent'>Bow, bow, ye lower-middle classes!<br data-format="\\" />Bow, bow, ye tradesmen! Bow ye masses!<br data-format="\\" />Blow the trumpets! Bang the brasses!<br data-format="\\" />Tatantara! Tzing! Boom! </div></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder8');">&nbsp;&nbsp;&nbsp;&nbsp;Video Games&nbsp;</div><div id="folder8" class="folder" isfolder="true" style="display:block;"> <ul ><li> Numerous games released by Apogee Software in the early-to-mid 90s opened with a screen displaying the company's logo accompanied by the "Apogee Fanfare." </li><li> Part of the <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/BaldursGateII' title='/pmwiki/pmwiki.php/VideoGame/BaldursGateII' data-format='VmlkZW9HYW1lL0JhbGR1cnNHYXRlSUk='>Baldur's Gate II</a></em> main theme, <a class='urllink' href='https://www.youtube.com/watch?v=U88zyFLzIXQ&amp;list=QL&amp;playnext=2'>from about 0:15 to 0:50 here<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/CaveStory' title='/pmwiki/pmwiki.php/VideoGame/CaveStory' data-format='VmlkZW9HYW1lL0NhdmVTdG9yeQ=='>Cave Story</a></em> has "item acquired" and "boss defeated" fanfares. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/ChronoTrigger' title='/pmwiki/pmwiki.php/VideoGame/ChronoTrigger' data-format='VmlkZW9HYW1lL0Nocm9ub1RyaWdnZXI='>Chrono Trigger</a></em>: <ul ><li> "Lucca's Theme." In fact, one of the things that annoyed some gamers about <em>Cross</em> was that even though that tune was upgraded to a full victory tune, and given two remixes, both of them <em>slowed the tempo down</em>. </li><li> A different sort of fanfare is "Courage and Pride", the castle theme &#8212; there is a remix of it that plays it as it would be in "real life", outdoors with chattering voices. </li></ul></li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/DragonQuest' title='/pmwiki/pmwiki.php/Franchise/DragonQuest' data-format='RnJhbmNoaXNlL0RyYWdvblF1ZXN0'>Dragon Quest</a></em> overture (<a class='urllink' href='https://www.youtube.com/watch?v=fcDniHIc3Bc'>especially obvious<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> in <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/DragonQuestVIII' title='/pmwiki/pmwiki.php/VideoGame/DragonQuestVIII' data-format='W1tWaWRlb0dhbWUvRHJhZ29uUXVlc3RWSUlJIFZJSUldXQ=='>VIII</a></em>). It also has several triumphant themes <a class='urllink' href='https://www.youtube.com/watch?v=5Va2XO3f0NA'>mostly heard when scoring in the casino.<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> Finally, the series consistently uses the same fanfare for when a character gains a level. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Fallout' title='/pmwiki/pmwiki.php/Franchise/Fallout' data-format='RnJhbmNoaXNlL3t7RmFsbG91dH19'>Fallout</a></em> has always had a subdued ambient soundtrack, so the short drumroll and <a class='urllink' href='https://www.youtube.com/watch?v=T7frZL4xM8Q'>fanfare<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> that plays when you level up might not seem very amazing, but in context of the game, it is nothing short of triumphant. </li><li> <a class='urllink' href='https://www.youtube.com/watch?v=WQtiSjGb74U'>Listen to the theme<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> that first plays when a character is promoted in <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/FireEmblemPathOfRadiance' title='/pmwiki/pmwiki.php/VideoGame/FireEmblemPathOfRadiance' data-format='VmlkZW9HYW1lL0ZpcmVFbWJsZW1QYXRoT2ZSYWRpYW5jZQ=='>Fire Emblem: Path of Radiance</a></em>, and swell with pride. It doesn't matter who you are or even if you've ever played this game... You'll find a reason to be proud. </li><li> The aptly-named <a class='urllink' href='https://www.youtube.com/watch?v=dP-G87M-RzQ'>Victory Fanfare<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, which has appeared in almost every game of the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/FinalFantasy' title='/pmwiki/pmwiki.php/Franchise/FinalFantasy' data-format='RnJhbmNoaXNlL0ZpbmFsRmFudGFzeQ=='>Final Fantasy</a></em> series. <ul ><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/FinalFantasyVII' title='/pmwiki/pmwiki.php/VideoGame/FinalFantasyVII' data-format='VmlkZW9HYW1lL0ZpbmFsRmFudGFzeVZJSQ=='>Final Fantasy VII</a></em>, the victory fanfare also plays when the player wins a chocobo race. If the player loses a chocobo race, a minor <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Scales' title='/pmwiki/pmwiki.php/Main/Scales' data-format='W1t7e1NjYWxlc319IGtleV1d'>key</a> version of the fanfare is played. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/DissidiaFinalFantasy' title='/pmwiki/pmwiki.php/VideoGame/DissidiaFinalFantasy' data-format='VmlkZW9HYW1lL0Rpc3NpZGlhRmluYWxGYW50YXN5'>Dissidia Final Fantasy</a></em>, a heavy-rock version is played when you win a match playing as an evil character. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/FinalFantasyX2' title='/pmwiki/pmwiki.php/VideoGame/FinalFantasyX2' data-format='VmlkZW9HYW1lL0ZpbmFsRmFudGFzeVgy'>Final Fantasy X-2</a></em>, <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/FinalFantasyXIII' title='/pmwiki/pmwiki.php/VideoGame/FinalFantasyXIII' data-format='VmlkZW9HYW1lL0ZpbmFsRmFudGFzeVhJSUk='>Final Fantasy XIII</a></em>, and <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/FinalFantasyXIII2' title='/pmwiki/pmwiki.php/VideoGame/FinalFantasyXIII2' data-format='VmlkZW9HYW1lL0ZpbmFsRmFudGFzeVhJSUky'>Final Fantasy XIII-2</a></em> have fanfares that sound completely unlike previous mixes of it. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FanDumb' title='/pmwiki/pmwiki.php/Main/FanDumb' data-format='W1tGYW5EdW1iIE9oLCBob3cgdGhlIGZhbmRvbSByYWdlZC5dXQ=='>Oh, how the fandom raged.</a> </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/FrozenFreeFall' title='/pmwiki/pmwiki.php/VideoGame/FrozenFreeFall' data-format='VmlkZW9HYW1lL0Zyb3plbkZyZWVGYWxs'>Frozen Free Fall</a> Icy Shot</em> uses the chorus of "Let It Go" when you win a level, as an instrumental with triumphant brass horns. </li><li> The theme to <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/GoldenSun' title='/pmwiki/pmwiki.php/VideoGame/GoldenSun' data-format='VmlkZW9HYW1lL0dvbGRlblN1bg=='>Golden Sun</a></em>. Which was rearranged for <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/GoldenSunDarkDawn' title='/pmwiki/pmwiki.php/VideoGame/GoldenSunDarkDawn' data-format='VmlkZW9HYW1lL0dvbGRlblN1bkRhcmtEYXdu'>Golden Sun: Dark Dawn</a></em>. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MemeticMutation' title='/pmwiki/pmwiki.php/Main/MemeticMutation' data-format='W1tNZW1ldGljTXV0YXRpb24gWW8gZGF3ZywgSSBoZWFyZCB5b3UgbGlrZSBmYW5mYXJlc11d'>Yo dawg, I heard you like fanfares</a>, <a class='urllink' href='https://www.youtube.com/watch?v=WRgg5a63n2A'>so I put a fanfare in your fanfare...<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> </li><li> From 1:40 onward, "<a class='urllink' href='https://www.youtube.com/watch?v=JIJFXt_erac'>The Greatest Journey<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>" from <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Halo3' title='/pmwiki/pmwiki.php/VideoGame/Halo3' data-format='VmlkZW9HYW1lL3t7SGFsbyAzfX0='>Halo 3</a></em> is a Fanfare version of the original Halo Theme. </li><li> The victory music (especially the "defended town" one) in <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/HeroesOfMightAndMagic' title='/pmwiki/pmwiki.php/VideoGame/HeroesOfMightAndMagic' data-format='VmlkZW9HYW1lL0hlcm9lc09mTWlnaHRBbmRNYWdpYw=='>Heroes of Might and Magic</a> III</em>. </li><li> <em>Kessen</em> is absolutely overloaded with sweeping fanfares, both for victory and for battles. <em>Kessen III</em> replaced some of the fanfares with odd rock/techno orchestral mixes though, which sort of worked, but didn't make your hair stand on end like some previous songs in the series did. </li><li> The victory tune in Capcom's <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/KnightsOfTheRound' title='/pmwiki/pmwiki.php/VideoGame/KnightsOfTheRound' data-format='VmlkZW9HYW1lL0tuaWdodHNPZlRoZVJvdW5k'>Knights of the Round</a></em>. Oddly, it's just the SNES port, not the arcade version, which sounds more like chimes than trumpets. </li><li> In <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Luftrausers' title='/pmwiki/pmwiki.php/VideoGame/Luftrausers' data-format='VmlkZW9HYW1lL3t7THVmdHJhdXNlcnN9fQ=='>Luftrausers</a></em>, the normal wubs in the soundtrack will eventually change to a synthetic fanfare sounds while you hear an army marching in the background. It does really give you the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WarIsGlorious' title='/pmwiki/pmwiki.php/Main/WarIsGlorious' data-format='TWFpbi9XYXJJc0dsb3Jpb3Vz'>War Is Glorious</a> feel of the game, while you mow down enemies as an ace dogfighter. </li><li> The theme to <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/TheLegendOfZelda' title='/pmwiki/pmwiki.php/Franchise/TheLegendOfZelda' data-format='RnJhbmNoaXNlL1RoZUxlZ2VuZE9mWmVsZGE='>The Legend of Zelda</a></em> series may have been intended as a fanfare at first, but the audio limitations of the Famicom/<span class='esc-seq' title='non-wikiword'>NES</span> made it difficult to make clear. The <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TheLegendOfZelda1989' title='/pmwiki/pmwiki.php/WesternAnimation/TheLegendOfZelda1989' data-format='V2VzdGVybkFuaW1hdGlvbi9UaGVMZWdlbmRPZlplbGRhMTk4OQ=='>The Legend of Zelda (1989)</a></em> series made it clear that the theme is a fanfare, and was also played as one in <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/TheLegendOfZeldaALinkToThePast' title='/pmwiki/pmwiki.php/VideoGame/TheLegendOfZeldaALinkToThePast' data-format='VmlkZW9HYW1lL1RoZUxlZ2VuZE9mWmVsZGFBTGlua1RvVGhlUGFzdA=='>The Legend of Zelda: A Link to the Past</a></em>. There is also the major <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ItemGet' title='/pmwiki/pmwiki.php/Main/ItemGet' data-format='W1tJdGVtR2V0IGl0ZW0tZmluZGluZ11d'>item-finding</a> cues in the games. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/RiseOfNations' title='/pmwiki/pmwiki.php/VideoGame/RiseOfNations' data-format='VmlkZW9HYW1lL1Jpc2VPZk5hdGlvbnM='>Rise of Nations</a></em> plays victorious fanfares whenever you're winning a battle, as well as during the victory debriefing screen. </li><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/MegaManClassic' title='/pmwiki/pmwiki.php/VideoGame/MegaManClassic' data-format='W1tWaWRlb0dhbWUvTWVnYU1hbkNsYXNzaWMgQ2xhc3NpY11d'>Classic</a> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/MegaManClassic' title='/pmwiki/pmwiki.php/VideoGame/MegaManClassic' data-format='VmlkZW9HYW1lL3t7TWVnYSBNYW58Q2xhc3NpY319'>Mega Man</a></em> games feature jingles used when introducing the Robot Master bosses and after defeating them. The pieces frequently used for this originate respectively from <a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/MegaMan1' title='/pmwiki/pmwiki.php/VideoGame/MegaMan1' data-format='W1tWaWRlb0dhbWUvTWVnYU1hbjEgdGhlIG9yaWdpbmFsIGdhbWVdXQ=='>the original game</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/MegaMan2' title='/pmwiki/pmwiki.php/VideoGame/MegaMan2' data-format='W1tWaWRlb0dhbWUvTWVnYU1hbjIgaXRzIHNlcXVlbF1d'>its sequel</a>. The individual iterations also feature their own fanfare, such as the weapon obtained, password/load/save, and fortress map screens. </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Metroid' title='/pmwiki/pmwiki.php/Franchise/Metroid' data-format='RnJhbmNoaXNlL3t7TWV0cm9pZH19'>Metroid</a></em> series has two regular appearing fanfares that debut in the first game, one that plays after selecting a save file as Samus appears, and another that plays when picking up a major upgrade. </li><li> "The Musashi Legend" from <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/BraveFencerMusashi' title='/pmwiki/pmwiki.php/VideoGame/BraveFencerMusashi' data-format='VmlkZW9HYW1lL0JyYXZlRmVuY2VyTXVzYXNoaQ=='>Brave Fencer Musashi</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/Mother3' title='/pmwiki/pmwiki.php/VideoGame/Mother3' data-format='VmlkZW9HYW1lL01vdGhlcjM='>Mother 3</a></em> has <a class='urllink' href='https://www.youtube.com/watch?v=8fJV0l-UGbY'>"LOG-O-TYPE,"<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> which plays at the conclusion of the prologue. It later becomes the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Leitmotif' title='/pmwiki/pmwiki.php/Main/Leitmotif' data-format='e3tMZWl0bW90aWZ9fQ=='>Leitmotif</a> of the Pigmask Army rearranged as "His Highness' Theme." </li><li> The <a class='urllink' href='https://www.youtube.com/watch?v=E_Xa6XECzSg'>title screen music<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> for the original <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Pokemon' title='/pmwiki/pmwiki.php/Franchise/Pokemon' data-format='RnJhbmNoaXNlL3t7UG9rZW1vbn19'>Pok茅mon</a></em> has been a recurring fanfare and main theme for the series. There are few various victory fanfares as well, but this is without the most recognizable one from the games. </li><li> The victory music in the first <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/StarFox1' title='/pmwiki/pmwiki.php/VideoGame/StarFox1' data-format='VmlkZW9HYW1lL1N0YXJGb3gx'>Star Fox</a></em> game. The reprise during the <a class='urllink' href='http://uk.youtube.com/watch?v=O7wkh1oHqqY'>Credits<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> also qualify, as well as the <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/SuperSmashBrosBrawl' title='/pmwiki/pmwiki.php/VideoGame/SuperSmashBrosBrawl' data-format='VmlkZW9HYW1lL1N1cGVyU21hc2hCcm9zQnJhd2w='>Super Smash Bros. Brawl</a></em> <a class='urllink' href='http://uk.youtube.com/watch?v=hZzbjtzeDXA'>remix.<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/SuperMarioBros1' title='/pmwiki/pmwiki.php/VideoGame/SuperMarioBros1' data-format='VmlkZW9HYW1lL1N1cGVyTWFyaW9Ccm9zMQ=='>Super Mario Bros.</a></em> has the music played whenever Mario/Luigi touches a flagpole at the end of a level. A different fanfare is used at the end of each Castle level after he defeats a Fake Bowser (or the real one at the end of the final level) and rescues a Toad (or Princess Peach, again at the end of the final level). </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/SuperSmashBros' title='/pmwiki/pmwiki.php/VideoGame/SuperSmashBros' data-format='VmlkZW9HYW1lL1N1cGVyU21hc2hCcm9z'>Super Smash Bros.</a></em> series has a fanfare for whenever a fighter wins a match. Each of these vary depending on the fighter, reflecting their series. Interestingly, <a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Tekken' title='/pmwiki/pmwiki.php/Franchise/Tekken' data-format='W1tGcmFuY2hpc2Uve3tUZWtrZW59fSBLYXp1eWEgTWlzaGltYV1d'>Kazuya Mishima</a> does not have a traditional music fanfare, which instead has the Smash announcer gets replaced by the announcer from his own series accompanied by no music. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/WingCommander' title='/pmwiki/pmwiki.php/VideoGame/WingCommander' data-format='VmlkZW9HYW1lL1dpbmdDb21tYW5kZXI='>Wing Commander</a></em> has an <a class='urllink' href='https://www.youtube.com/watch?v=EJkJbUbvYJA#t=0m25s'>especially<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> <a class='urllink' href='https://www.youtube.com/watch?v=YsWcy2M_EgI'>memorable<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> <a class='urllink' href='https://www.youtube.com/watch?v=ZRfEdcy-buw'>one<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> as its main theme. In the second game, the Kilrathi get <a class='urllink' href='https://www.youtube.com/watch?v=fyV-6_-sij4'>an evil minor-key fanfare<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> of their own. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/TeenageMutantNinjaTurtles1989' title='/pmwiki/pmwiki.php/VideoGame/TeenageMutantNinjaTurtles1989' data-format='VmlkZW9HYW1lL1RlZW5hZ2VNdXRhbnROaW5qYVR1cnRsZXMxOTg5'>Teenage Mutant Ninja Turtles (1989)</a></em> has a fanfare for defeating a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MiniBoss' title='/pmwiki/pmwiki.php/Main/MiniBoss' data-format='TWluaUJvc3M='>Mini-Boss</a>, and another when an Area is cleared. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/OriAndTheBlindForest' title='/pmwiki/pmwiki.php/VideoGame/OriAndTheBlindForest' data-format='VmlkZW9HYW1lL09yaUFuZFRoZUJsaW5kRm9yZXN0'>Ori and the Blind Forest</a></em> plays a choir and strings fanfare when Ori learns a new ability from an Ancestral Tree. <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/OriAndTheWillOfTheWisps' title='/pmwiki/pmwiki.php/VideoGame/OriAndTheWillOfTheWisps' data-format='VmlkZW9HYW1lL09yaUFuZFRoZVdpbGxPZlRoZVdpc3Bz'>Ori and the Will of the Wisps</a></em>, in addition to reprising said fanfare, adds fanfares for completing a quest and defeating a boss or enemy ambush. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder9');">&nbsp;&nbsp;&nbsp;&nbsp;Visual Novels&nbsp;</div><div id="folder9" class="folder" isfolder="true" style="display:block;"> <ul ><li> And <a class='urllink' href='https://www.youtube.com/watch?v=xk3t180w8j8'>Great Revival<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> from the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/AceAttorney' title='/pmwiki/pmwiki.php/Franchise/AceAttorney' data-format='RnJhbmNoaXNlL0FjZUF0dG9ybmV5'>Ace Attorney</a></em> series also qualifies. Even if you weren't a fan of Edgeworth, this song got your attention. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder10');">&nbsp;&nbsp;&nbsp;&nbsp;Web Original&nbsp;</div><div id="folder10" class="folder" isfolder="true" style="display:block;"> <ul ><li> In the early seasons of <a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Series/DeathBattle' title='/pmwiki/pmwiki.php/Series/DeathBattle' data-format='U2VyaWVzL0RlYXRoQmF0dGxl'>Death Battle</a>, a theme from the winner鈥檚 series would be used in the post fight rundown. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder11');">&nbsp;&nbsp;&nbsp;&nbsp;Western Animation&nbsp;</div><div id="folder11" class="folder" isfolder="true" style="display:block;"> <ul ><li> The openings to <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/HeManAndTheMastersOfTheUniverse1983' title='/pmwiki/pmwiki.php/WesternAnimation/HeManAndTheMastersOfTheUniverse1983' data-format='V2VzdGVybkFuaW1hdGlvbi9IZU1hbkFuZFRoZU1hc3RlcnNPZlRoZVVuaXZlcnNlMTk4Mw=='>He-Man and the Masters of the Universe (1983)</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/SheRaPrincessOfPower' title='/pmwiki/pmwiki.php/WesternAnimation/SheRaPrincessOfPower' data-format='V2VzdGVybkFuaW1hdGlvbi9TaGVSYVByaW5jZXNzT2ZQb3dlcg=='>She-Ra: Princess of Power</a></em>. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/JusticeLeague' title='/pmwiki/pmwiki.php/WesternAnimation/JusticeLeague' data-format='V2VzdGVybkFuaW1hdGlvbi9KdXN0aWNlTGVhZ3Vl'>Justice League</a></em>: <ul ><li> The show has one, enhanced by the fact that there is a few seconds of darkness as the fanfare begins, before the outlines of the heroes slowly come into view. </li><li> The old <em>Superman</em> and <em>Batman: TAS</em> themes also come in whenever Superman or Batman do something incredible; like Batman taking on Kalibak. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/BeastWars' title='/pmwiki/pmwiki.php/WesternAnimation/BeastWars' data-format='V2VzdGVybkFuaW1hdGlvbi9CZWFzdFdhcnM='>Beast Wars</a></em> introduced the character of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MeaningfulName' title='/pmwiki/pmwiki.php/Main/MeaningfulName' data-format='W1tNZWFuaW5nZnVsTmFtZSBTaWx2ZXJib2x0XV0='>Silverbolt</a> in its second season. His statements concerning his honor code, and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/KnightInShiningArmor' title='/pmwiki/pmwiki.php/Main/KnightInShiningArmor' data-format='W1tLbmlnaHRJblNoaW5pbmdBcm1vciBrbmlnaHRseV1d'>knightly</a> actions were often accompanied by a medieval-style fanfare. Even his <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EstablishingCharacterMoment' title='/pmwiki/pmwiki.php/Main/EstablishingCharacterMoment' data-format='W1tFc3RhYmxpc2hpbmdDaGFyYWN0ZXJNb21lbnQgZmlyc3QgYXBwZWFyYW5jZV1d'>first appearance</a> has him silhouetted in the moon as his fanfare played. </li><li> From Season 2 on (when they started Flash animation), <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/JohnnyTest' title='/pmwiki/pmwiki.php/WesternAnimation/JohnnyTest' data-format='V2VzdGVybkFuaW1hdGlvbi9Kb2hubnlUZXN0'>Johnny Test</a></em> overused fanfares. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TaleSpin' title='/pmwiki/pmwiki.php/WesternAnimation/TaleSpin' data-format='V2VzdGVybkFuaW1hdGlvbi9UYWxlU3Bpbg=='>TaleSpin</a></em> has one that plays during the heroic and triumphant moments. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/TotalDrama' title='/pmwiki/pmwiki.php/WesternAnimation/TotalDrama' data-format='V2VzdGVybkFuaW1hdGlvbi9Ub3RhbERyYW1h'>Total Drama</a></em>: <ul ><li> Two of the interns blow trumpets in "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/TotalDramaBrainsVsBrawnTheUltimateShowdown' title='/pmwiki/pmwiki.php/Recap/TotalDramaBrainsVsBrawnTheUltimateShowdown' data-format='W1tSZWNhcC9Ub3RhbERyYW1hQnJhaW5zVnNCcmF3blRoZVVsdGltYXRlU2hvd2Rvd24gQnJhaW5zIFZzIEJyYXduOiBUaGUgVWx0aW1hdGUgU2hvd2Rvd25dXQ=='>Brains Vs Brawn: The Ultimate Showdown</a>" to announce the arrival of Chris <span class='esc-seq' title='non-wikiword'>McLean</span>. They do not actually have the lung capacity to produce anything more than an exaggerated spitting sound and so they bring along a boombox to produce the fanfare. </li><li> The human soundboard Beardo provides the triumphant trumpets to inaugurate the wizard's tower the W芒neyihtam Maskwak built in "<a class='twikilink' href='/pmwiki/pmwiki.php/Recap/TotalDramaSoUhThisIsMyTeam' title='/pmwiki/pmwiki.php/Recap/TotalDramaSoUhThisIsMyTeam' data-format='W1tSZWNhcC9Ub3RhbERyYW1hU29VaFRoaXNJc015VGVhbSBTbywgVWgsIFRoaXMgSXMgTXkgVGVhbT9dXQ=='>So, Uh, This Is My Team?</a>". Dave tells him to quit it. </li></ul></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder12');">&nbsp;&nbsp;&nbsp;&nbsp;Real Life&nbsp;</div><div id="folder12" class="folder" isfolder="true" style="display:block;"> <ul ><li> The <a class='urllink' href='http://youtu.be/IizWc4cJwbw'>Bugler's Dream<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> by Leo Arnaud is the most famous of the various songs used as themes for the <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/OlympicGames' title='/pmwiki/pmwiki.php/UsefulNotes/OlympicGames' data-format='VXNlZnVsTm90ZXMvT2x5bXBpY0dhbWVz'>Olympic Games</a>. The version linked was arranged by John Williams and added to the beginning of his Olympic Fanfare Medley, which as indicated by the title follows it up with a fanfare of Williams' own. </li><li> Williams' <a class='urllink' href='http://youtu.be/ckGB_mLrheM'>"Summon the Heroes"<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, the 1996 Atlanta Olympic theme, also draws heavily on the fanfare. </li></ul></div> <hr data-format='&#8212;&#8212;' /> </p></div> <div class="lazy-video-script"> <a id="VideoExamples"></a> <div>&nbsp;</div> <div class="video-examples has-thumbnails"> <div class="video-examples-header"> <a href="#feedback" class="font-s float-right text-blue" data-modal-target="login" >Feedback</a> <h3 class="bold">Video Example(s):</h3> </div> <div class="video-examples-featured"> <div class="example_video_box"> <a href="#video-link" data-video-id="t3snx2" data-video-descrip="The fanfare of 20th Century Fox is one the most iconic of all time, as heard in the opening of the &amp;quot;Star Wars&amp;quot; films here, to name just one example." data-video-title="20th Century Fox" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/t3snx2_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/t3snx2.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/t3snx2.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/t3snx2.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.95" data-video-rating-count="21" data-video-media-sources="Creator/TwentiethCenturyStudios,Franchise/StarWars" class="video-launch-link video-overlay-link featured-widget-vid"> <div class="featured-widget-vid-iframe"> <div id="tvtropes_no_volume_player" data-video-image="https://static.tvtropes.org/trope_videos_transcoded/images/sd/t3snx2.jpg" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/t3snx2_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/t3snx2.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/t3snx2.m3u8" data-controls="0" data-muted="1"> <script> tropes_videos_commands.push(function(){ new_video_project.load_video("tvtropes_no_volume_player", false); }); </script> </div> </div> </a> </div> <h2 class="bold font-l">20th Century Fox</h2> <p class="_pmvv-vidbox-descTxt"> The fanfare of 20th Century Fox is one the most iconic of all time, as heard in the opening of the &quot;Star Wars&quot; films here, to name just one example. </p> </div> <div class="video-examples-thumbs"> <a href="#video-link" data-video-id="3mi6g5" data-video-descrip="C2 Pictures' own Vanity Plate, which was only seen on Terminator 3: Rise of the Machines (both the actual movie and game trailers) and Basic Instinct 2." data-video-title="C2 Pictures" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/3mi6g5_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/3mi6g5.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/3mi6g5.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3mi6g5.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3mi6g5.jpg"> <p><span class="bold">C2 Pictures</span></p> </a> <a href="#video-link" data-video-id="2yp5fs" data-video-descrip="The 1993-1998 Cinergi Pictures logo, which was seen from its films released by Hollywood Pictures and Touchstone Pictures, as well as &amp;quot;Die Hard with a Vengeance&amp;quot;." data-video-title="Cinergi Pictures" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/2yp5fs_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/2yp5fs.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/2yp5fs.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2yp5fs.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/VanityPlate,Creator/CinergiPictures" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2yp5fs.jpg"> <p><span class="bold">Cinergi Pictures</span></p> </a> <a href="#video-link" data-video-id="3g533q" data-video-descrip="Shaw Brothers' shield logo, as seen at the beginning of their films from 1960s to the 1970s." data-video-title="Shaw Brothers" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/3g533q_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/3g533q.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/3g533q.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3g533q.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Creator/ShawBrothers,Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3g533q.jpg"> <p><span class="bold">Shaw Brothers</span></p> </a> <a href="#video-link" data-video-id="0uv3gs" data-video-descrip="The logo for Jensen Farley Pictures from 1983, which was seen on its distributed films such as Curtains and Joysticks." data-video-title="Jensen Farley Pictures" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/0uv3gs_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/0uv3gs.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/0uv3gs.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/0uv3gs.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/0uv3gs.jpg"> <p><span class="bold">Jensen Farley P...</span></p> </a> <a href="#video-link" data-video-id="rp0dkk" data-video-descrip="Paramount Pictures' &amp;quot;CGI mountain&amp;quot; logo, which was used from 1986 to 2003." data-video-title="Paramount Pictures" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/rp0dkk_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/rp0dkk.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/rp0dkk.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/rp0dkk.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/VanityPlate,Creator/Paramount" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/rp0dkk.jpg"> <p><span class="bold">Paramount Pictures</span></p> </a> <a href="#video-link" data-video-id="2vdueq" data-video-descrip="UA's 1982-1987 logo, which was seen on its releases such as The Secret of NIMH, Rock &amp;amp; Rule, Octopussy and A View to a Kill." data-video-title="United Artists" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/2vdueq_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/2vdueq.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/2vdueq.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2vdueq.jpg" data-video-trope="Main/VanityPlate" data-video-tropename="Vanity Plate" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Creator/UnitedArtists,Main/Fanfare" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2vdueq.jpg"> <p><span class="bold">United Artists</span></p> </a> <a href="#video-link" data-video-id="6r9fcz" data-video-descrip="The 1984-1989 &amp;quot;P-Head&amp;quot; logo." data-video-title="PBS" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/6r9fcz_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/6r9fcz.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/6r9fcz.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/6r9fcz.jpg" data-video-trope="Main/VanityPlate" data-video-tropename="Vanity Plate" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Creator/PBS,Main/Fanfare" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/6r9fcz.jpg"> <p><span class="bold">PBS</span></p> </a> <a href="#video-link" data-video-id="db2q8v" data-video-descrip="The startup for TF1 with choppy animation by Catherine Chaillet, from 1975 to 1976." data-video-title="TF1" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/db2q8v_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/db2q8v.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/db2q8v.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/db2q8v.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/db2q8v.jpg"> <p><span class="bold">TF1</span></p> </a> <a href="#video-link" data-video-id="lcb5ls" data-video-descrip="Universal Television's current on-screen logo made it's debut on the October 13, 2011 episode of The Tonight Show." data-video-title="Universal Television" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/lcb5ls_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/lcb5ls.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/lcb5ls.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/lcb5ls.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Creator/NBCUniversal,Creator/Universal" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/lcb5ls.jpg"> <p><span class="bold">Universal Telev...</span></p> </a> <a href="#video-link" data-video-id="dhzoh9" data-video-descrip="The Paramount byline made its debut in CBS Media Ventures' current on-screen logo on March 11, 2022." data-video-title="CBS Med. Ven. (Current Byline)" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/dhzoh9_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/dhzoh9.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/dhzoh9.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/dhzoh9.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Creator/CBS,Creator/ParamountGlobal,Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/dhzoh9.jpg"> <p><span class="bold">CBS Med. Ven. (...</span></p> </a> <a href="#video-link" data-video-id="x6watn" data-video-descrip="Universal Pictures' current on-screen logo made its debut on January 4, 2012 in preparation for the studio's 100th anniversary, this is the generalized version of the current logo which made it's debuted on Identify Thief, released on February 8, 2013." data-video-title="Universal Pictures" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/x6watn_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/x6watn.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/x6watn.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/x6watn.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Creator/NBCUniversal,Creator/Universal,Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/x6watn.jpg"> <p><span class="bold">Universal Pictures</span></p> </a> <a href="#video-link" data-video-id="93lpv5" data-video-descrip="DreamWorks Animation's current on-screen logo made its debut on How to Train Your Dragon: The Hidden World, released on January 22, 2019." data-video-title="DreamWorks Animation" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/93lpv5_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/93lpv5.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/93lpv5.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/93lpv5.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Creator/DreamWorksAnimation,Creator/NBCUniversal,Creator/Universal,Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/93lpv5.jpg"> <p><span class="bold">DreamWorks Anim...</span></p> </a> <a href="#video-link" data-video-id="jjlciv" data-video-descrip="On January 11, 2021, CBS Television Distribution was rebranded to CBS Media Ventures, and with it, a new logo made its debut." data-video-title="CBS Med. Ven. (Old Byline)" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/jjlciv_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/jjlciv.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/jjlciv.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/jjlciv.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Creator/CBS,Creator/ParamountGlobal,Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/jjlciv.jpg"> <p><span class="bold">CBS Med. Ven. (...</span></p> </a> <a href="#video-link" data-video-id="e1s3da" data-video-descrip="This is CBS Media Ventures' old on-screen logo when they were known as CBS Television Distribution, this was used from 2007-2021." data-video-title="CBS Television Distribution" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/e1s3da_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/e1s3da.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/e1s3da.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/e1s3da.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Creator/CBS,Creator/ParamountGlobal,Main/DawnOfAnEra,Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/e1s3da.jpg"> <p><span class="bold">CBS Television ...</span></p> </a> <a href="#video-link" data-video-id="hcui6d" data-video-descrip="This is FX's current opening logo as shown at the beginning of shows aired on FX and FXX." data-video-title="FX (Current)" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/hcui6d_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/hcui6d.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/hcui6d.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/hcui6d.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Creator/FXNetworks,Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/hcui6d.jpg"> <p><span class="bold">FX (Current)</span></p> </a> <a href="#video-link" data-video-id="rpc1pi" data-video-descrip="One of FX's old IDs was used from 1997-1998, the music for FX's 1997-1998 graphics package was composed by Scott Schreer." data-video-title="FX (Classic)" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/rpc1pi_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/rpc1pi.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/rpc1pi.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/rpc1pi.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Creator/FXNetworks,Main/StationIdent,Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/rpc1pi.jpg"> <p><span class="bold">FX (Classic)</span></p> </a> <a href="#video-link" data-video-id="pdltw4" data-video-descrip="Buena Vista Television's 2005 on-screen logo was used from 2005-2006, this is the long version." data-video-title="Buena Vista Television" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/pdltw4_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/pdltw4.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/pdltw4.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/pdltw4.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Creator/Disney,Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/pdltw4.jpg"> <p><span class="bold">Buena Vista Tel...</span></p> </a> <a href="#video-link" data-video-id="7rwoyc" data-video-descrip="The Castle Rock Entertainment logo appeared on movies from 1994-2018, this is the 2004 version." data-video-title="Castle Rock Entertainment" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/7rwoyc_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/7rwoyc.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/7rwoyc.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/7rwoyc.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Creator/CastleRockEntertainment,Creator/WarnerBros,Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/7rwoyc.jpg"> <p><span class="bold">Castle Rock Ent...</span></p> </a> <a href="#video-link" data-video-id="rfsbpa" data-video-descrip="Columbia TriStar Home Video's on-screen logo was used from 1993-2001." data-video-title="Columbia TriStar Home Video" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/rfsbpa_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/rfsbpa.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/rfsbpa.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/rfsbpa.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Creator/SonyPictures,Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/rfsbpa.jpg"> <p><span class="bold">Columbia TriSta...</span></p> </a> <a href="#video-link" data-video-id="6tuwsw" data-video-descrip="On January 11, 1995, The CW's predecessor, The WB Television Network launched with the premiere of The WB's first original series The Wayans Bros. which aired from 1905-1999." data-video-title="The WB Launch" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/6tuwsw_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/6tuwsw.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/6tuwsw.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/6tuwsw.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Creator/ChuckJones,Creator/TheWB,Creator/WarnerBros,Creator/WarnerBrosTelevisionStudios,Main/DawnOfAnEra,WesternAnimation/BugsBunny,WesternAnimation/DaffyDuck,Main/RogerRabbitEffect,Main/TakeAThirdOption,Main/ArtInitiatesLife" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/6tuwsw.jpg"> <p><span class="bold">The WB Launch</span></p> </a> <a href="#video-link" data-video-id="d0djao" data-video-descrip="The Warner Bros. 75th Anniversary Montage is shown at movie theaters before Warner Bros. movies throughout 1998." data-video-title="WB 75th Anniversary Montage" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/d0djao_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/d0djao.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/d0djao.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/d0djao.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Creator/WarnerBros,Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/d0djao.jpg"> <p><span class="bold">WB 75th Anniver...</span></p> </a> <a href="#video-link" data-video-id="zjdwqr" data-video-descrip="The fall of the Berlin Wall 30 years ago, on November 9, 1989, changed the world. Leonard Bernstein's legendary live recording of Beethoven's Ode To Freedom (Symphony No. 9) captured not only the elation of the moment but conveyed a celebration of and a longing for freedom which extended far beyond the occasion." data-video-title="Ode to Freedom" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/zjdwqr_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/zjdwqr.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/zjdwqr.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/zjdwqr.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Music/LeonardBernstein,Music/OdeToJoy" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/zjdwqr.jpg"> <p><span class="bold">Ode to Freedom</span></p> </a> <a href="#video-link" data-video-id="779g1s" data-video-descrip="Paramount Global's current logo was first revealed on February 15, on the following day, ViacomCBS became Paramount Global or simply, Paramount, effectively retiring the Viacom name overall after over 50 years." data-video-title="Paramount" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/779g1s_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/779g1s.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/779g1s.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/779g1s.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Creator/ParamountGlobal,Main/VanityPlate,Main/DawnOfAnEra" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/779g1s.jpg"> <p><span class="bold">Paramount</span></p> </a> <a href="#video-link" data-video-id="h5id00" data-video-descrip="The short version of 20th Century Studios' current on-screen logo appears on home media releases of movies and TV shows produced by 20th Century, Searchlight, 20th TV, 20th TV Animation and FXP." data-video-title="20th Century Studios" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/h5id00_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/h5id00.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/h5id00.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/h5id00.jpg" data-video-trope="Main/FanFare" data-video-tropename="Fan Fare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Creator/TwentiethCenturyStudios,Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/h5id00.jpg"> <p><span class="bold">20th Century St...</span></p> </a> <a href="#video-link" data-video-id="4f8e9f" data-video-descrip="Bersaglieri are special light infantry and sharpshooter units of the Italian Army. They're distinguished by the capercaillie feathers on their hats and practice running instead of marching." data-video-title="Fanfara dei Bersaglieri" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/4f8e9f_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/4f8e9f.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/4f8e9f.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/4f8e9f.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/ElitesAreMoreGlamorous,UsefulNotes/NewRomanLegions" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/4f8e9f.jpg"> <p><span class="bold">Fanfara dei Ber...</span></p> </a> <a href="#video-link" data-video-id="htp7ga" data-video-descrip="Gustav Mahler's Symphony No. 5 in C Minor. Lucerne Festival Orchestra, conducted by Claudio Abbado." data-video-title="Mahler's Fifth" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/htp7ga_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/htp7ga.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/htp7ga.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/htp7ga.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/ClassicalMusicIsCool,Music/GustavMahler" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/htp7ga.jpg"> <p><span class="bold">Mahler's Fifth</span></p> </a> </div> </div> </div> <div class="section-links" itemscope itemtype="http://schema.org/SiteNavigationElement"> <div class="titles"> <div><h3 class="text-center text-uppercase">Previous</h3></div> <div><h3 class="text-center text-uppercase">Index</h3></div> <div><h3 class="text-center text-uppercase">Next</h3></div> </div> <div class="links"> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/ClimacticMusic">Climactic Music</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/HeroicMusicIndex">Heroic Music Index</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/GainingConfidenceSong">"Gaining Confidence" Song</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/FakeOutFadeOut">Fake-Out Fade-Out</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/Spectacle">Spectacle</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/FantasticFireworks">Fantastic Fireworks</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/TheElevenOClockNumber">The Eleven O'Clock Number</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/MusicalNumberIndex">Musical Number Index</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/FearSong">Fear Song</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/FamiliarSoundtrackForeignLyrics">Familiar Soundtrack, Foreign Lyrics</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ScoreAndMusicTropes">Score and Music Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/FrenchAccordion">French Accordion</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/TheFairFolk">The Fair Folk</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/OlderThanPrint">Older Than Print</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/FamilyEyeResemblance">Family Eye Resemblance</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/TheElevenOClockNumber">The Eleven O'Clock Number</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/MusicTropes">Music Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/FinalLoveDuet">Final Love Duet</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/FanEdit">Fan Edit</a> </li> <li> <a href="/pmwiki/pmwiki.php/WeAreNotAlone/TropesEToL">WeAreNotAlone/Tropes E to L</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/Fanservice">Fanservice</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Creator/RichardDonner">Richard Donner</a> </li> <li> <a href="/pmwiki/pmwiki.php/QuoteSource/Creators">QuoteSource/Creators</a> </li> <li> <a href="/pmwiki/pmwiki.php/Creator/ChristopherReeve">Christopher Reeve</a> </li> </ul> </div> </div> <script> if( document.getElementById('user-prefs').classList.contains('folders-open') ){ console.log('open all folders'); var elements = document.querySelectorAll('.folderlabel, .toggle-all-folders-button'); elements.forEach((element) => { element.classList.add('is-open'); }); } </script> <script> function insert_ad(adCount, paragraph, adName, folder = 0){ var ad_count = adCount < 10 ? "0"+adCount : adCount; var inside_folder = folder ? "1" : "0"; // Create element for ad unit var adUnit = document.createElement('div'); adUnit.setAttribute("class", `htlad-${adName}`); adUnit.setAttribute("id", `${adName}_${adCount}`); adUnit.setAttribute("data-targeting", `{"slot_number": "${ad_count}", "in_folder": "${inside_folder}"}`); // Add Advertisement label var adLabel = document.createElement("span"); adLabel.innerHTML = "Advertisement:" adLabel.setAttribute("class","ad-caption"); var adWrapper = document.createElement("div"); adWrapper.setAttribute("class","tvtropes-ad-unit mobile-fad square_fad mobile_unit_scroll"); adWrapper.setAttribute("id","mobile_"+adCount); // Merge all pieces adWrapper.appendChild(adLabel); adWrapper.appendChild(adUnit); // Insert into DOM paragraph.parentNode.insertBefore(adWrapper, paragraph.nextSibling); // for getting correct ad count even when ones are deleted globalAdInsertionCount++; } function insert_ads_in_content(folder = 0, totalAdsCount = 0, pHeight = 0) { if(folder) var node = folder.firstElementChild; // Get the first traversable element of the folder else var node = document.getElementById("main-article").firstElementChild; var pCount = 0; var adCount = totalAdsCount + 1; var nodeCount = 0; var nodeLevel = 0; var x = 0; //loop through elements of content while(x<300) { x++; nodeCount++; //traverse to the next element (if exists) if(nodeCount>1) { if(!node.nextElementSibling) { console.log('adparser: no next element'); if(nodeLevel>0) { nodeLevel--; node = node.parentElement; console.log('adparser: we were down a level, go back up ('+nodeLevel+')'); continue; } else { break; } } node = node.nextElementSibling; } //skip inserted ads or empty nodes if(!node || node==="null" || typeof node !== "object") continue; if(!node.offsetHeight || node.offsetHeight==0) continue; if(node.className && node.className.includes('tvtropes-ad-unit')) continue; //skip if image block that has a caption after it (NEW: ALWAYS SKIP THE IMAGE BLOCK) if(node.className && node.className.includes('quoteright')) { // if(node.nextElementSibling && node.nextElementSibling.className && node.nextElementSibling.className.includes('acaptionright')) { pHeight += node.offsetHeight; continue; // } } //if very large element, loop through elements inside if(node.offsetHeight>700 && node.firstElementChild) { nodeLevel++; console.log('adparser: traverse through large element='+node.nodeName+', height='+node.offsetHeight+' level='+nodeLevel); node = node.firstElementChild; nodeCount = 0; continue; } // Skip if after a folder label or if the current node is a folder label itself if ((node.previousElementSibling && node.previousElementSibling.className && node.previousElementSibling.className.includes("folderlabel")) || (node.className && node.className.includes("folderlabel"))) { console.log('adparser: skipping ad insertion related to folder label'); if (!node.className || !node.className.includes("folderlabel")) { // If it's not the folder label itself, skip the insertion continue; } else { pHeight += node.offsetHeight; // If it is the folder label, just add its height to pHeight and continue continue; } } //paragraph counter if(node.nodeName=="P") pCount++; //add height of node to counter pHeight += node.offsetHeight; //add margin of node to counter if available try { var nodeStyle = getComputedStyle(node); if(nodeStyle.marginTop && parseInt(nodeStyle.marginTop)>0) pHeight+=parseInt(nodeStyle.marginTop); if(nodeStyle.marginBottom && parseInt(nodeStyle.marginBottom)>0) pHeight+=parseInt(nodeStyle.marginBottom); //console.log(nodeStyle.marginTop+','+nodeStyle.marginBottom); } catch(e) { } //debug logging console.log('adparser: name='+node.nodeName+', height='+node.offsetHeight+' =>'+pHeight); //console.log(node.className); // check if user is logged in var logged_in = 0; // Calculate the required height based on the user's logged-in status or ad count var requiredHeight = globalAdInsertionCount > 15 ? 1500 : 750; if(logged_in) requiredHeight = 2250; // only inserts an ad if the total height and paragraph count conditions are met if ((adCount === 1 && pCount >= 1 && pHeight >= 400) || pHeight >= requiredHeight) { // Check existing ad positions and compare with the item about to be inserted after var ads = document.querySelectorAll('.tvtropes-ad-unit'); var nodeBottomPosition = node.getBoundingClientRect().bottom + window.scrollY; // Get bottom position of current node var canInsertAd = true; // Flag to track if we can insert an ad ads.forEach(function (ad) { var adTop = ad.getBoundingClientRect().top + window.scrollY; var adBottom = ad.getBoundingClientRect().bottom + window.scrollY; // Ensure the new ad is at least requiredHeight away from any existing ads if (Math.abs(nodeBottomPosition - adTop) < requiredHeight || Math.abs(nodeBottomPosition - adBottom) < requiredHeight) { canInsertAd = false; console.log('adparser: cannot insert ad, not enough space between ads.'); } }); // If we can't insert an ad, skip to the next node if(!canInsertAd) continue; // after 50 ads, stop inserting. Or after 20 ads if the user is logged in if ((adCount > 50 || (adCount > 20 && logged_in))) { break; } console.log('adparser: insert ad '+adCount); insert_ad(adCount, node, "tvtropes_m_incontent_dynamic", folder); adCount++; pHeight = 0; pCount = 0; } } //insert one at end if room var maxpHeight = 500; if(logged_in) maxpHeight=1500; if(pHeight>=maxpHeight && folder==0) { console.log('adparser: insert ad'); insert_ad(adCount, document.getElementById("main-article").lastElementChild, "tvtropes_m_incontent_dynamic"); } // delete ads after the 8th one to reduce load times BCLighthouseTag.cmd.push(function() { googletag.cmd.push(function() { googletag.pubads().addEventListener('slotRequested', function(event) { const slot = event.slot; const slotName = slot.getAdUnitPath().split('/').pop() || slot.getAdUnitPath(); if(slotName === 'tvtropes_m_incontent_dynamic') { const slotNumber = parseInt(slot.getTargeting('slot_number')[0]); console.log(slotName+' = '+slotNumber); // Determine the ad slot that needs to be deleted. const adNumberToDelete = slotNumber - 8; if(adNumberToDelete > 0) { const adToDelete = document.getElementById(`mobile_${adNumberToDelete}`); if(adToDelete) { var adHeight = window.pageYOffset + adToDelete.getBoundingClientRect().top; var windowHeight = window.scrollY; // Check if the ad element exists and is above the current viewport (above the fold). if (adHeight < windowHeight) { console.log('ad delete = '+adNumberToDelete); adToDelete.remove(); } } } } }); }); }); // return pHeight return pHeight; } if(1 && (document.body.clientWidth && document.body.clientWidth<=768) ) { insert_ads_in_content(); } </script> </article> <div id="main-content-sidebar"><div class="sidebar-item display-options"> <ul class="sidebar display-toggles"> <li>Show Spoilers <div id="sidebar-toggle-showspoilers" class="display-toggle show-spoilers"></div></li> <li>Night Vision <div id="sidebar-toggle-nightvision" class="display-toggle night-vision"></div></li> <li>Sticky Header <div id="sidebar-toggle-stickyheader" class="display-toggle sticky-header"></div></li> <li>Wide Load <div id="sidebar-toggle-wideload" class="display-toggle wide-load"></div></li> </ul> <script>updateDesktopPrefs();</script> </div> <div class="sidebar-item quick-links" itemtype="http://schema.org/SiteNavigationElement"> <p class="sidebar-item-title" data-title="Important Links">Important Links</p> <div class="padded"> <a href="/pmwiki/query.php?type=att">Ask The Tropers</a> <a href="/pmwiki/query.php?type=tf">Trope Finder</a> <a href="/pmwiki/query.php?type=ykts">Media Finder</a> <a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a> <a href="/pmwiki/query.php?type=wl">Tech Wishlist</a></li> <a href="/pmwiki/review_activity.php">Reviews</a> <a href="/pmwiki/ad-free-subscribe.php">Go Ad Free!</a> <div class="crucial_browsing_dropdown"> <a href="javascript:void(0);" onclick="double_dropdown(); return false;" id="crucial_browsing_dropdown"><span class="new_blue">Crucial Browsing</span><i class="fa fa-angle-down"></i></a> <ul id="main_dropdown"> <li class="first_dropdown"><a href="/pmwiki/index_report.php">Indexes</a> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Genre</a> <ul> <li><a href='/pmwiki/pmwiki.php/Main/ActionAdventureTropes' title='Main/ActionAdventureTropes'>Action Adventure</a></li> <li><a href='/pmwiki/pmwiki.php/Main/ComedyTropes' title='Main/ComedyTropes'>Comedy</a></li> <li><a href='/pmwiki/pmwiki.php/Main/CommercialsTropes' title='Main/CommercialsTropes'>Commercials</a></li> <li><a href='/pmwiki/pmwiki.php/Main/CrimeAndPunishmentTropes' title='Main/CrimeAndPunishmentTropes'>Crime &amp; Punishment</a></li> <li><a href='/pmwiki/pmwiki.php/Main/DramaTropes' title='Main/DramaTropes'>Drama</a></li> <li><a href='/pmwiki/pmwiki.php/Main/HorrorTropes' title='Main/HorrorTropes'>Horror</a></li> <li><a href='/pmwiki/pmwiki.php/Main/LoveTropes' title='Main/LoveTropes'>Love</a></li> <li><a href='/pmwiki/pmwiki.php/Main/NewsTropes' title='Main/NewsTropes'>News</a></li> <li><a href='/pmwiki/pmwiki.php/Main/ProfessionalWrestling' title='Main/ProfessionalWrestling'>Professional Wrestling</a></li> <li><a href='/pmwiki/pmwiki.php/Main/SpeculativeFictionTropes' title='Main/SpeculativeFictionTropes'>Speculative Fiction</a></li> <li><a href='/pmwiki/pmwiki.php/Main/SportsStoryTropes' title='Main/SportsStoryTropes'>Sports Story</a></li> <li><a href='/pmwiki/pmwiki.php/Main/WarTropes' title='Main/WarTropes'>War</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Media</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/Media" title="Main/Media">All Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/AnimationTropes" title="Main/AnimationTropes">Animation (Western)</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Anime" title="Main/Anime">Anime</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ComicBookTropes" title="Main/ComicBookTropes">Comic Book</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FanFic" title="FanFic/FanFics">Fan Fics</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Film" title="Main/Film">Film</a></li> <li><a href="/pmwiki/pmwiki.php/Main/GameTropes" title="Main/GameTropes">Game</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Literature" title="Main/Literature">Literature</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MusicAndSoundEffects" title="Main/MusicAndSoundEffects">Music And Sound Effects</a></li> <li><a href="/pmwiki/pmwiki.php/Main/NewMediaTropes" title="Main/NewMediaTropes">New Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/PrintMediaTropes" title="Main/PrintMediaTropes">Print Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Radio" title="Main/Radio">Radio</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SequentialArt" title="Main/SequentialArt">Sequential Art</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TabletopGames" title="Main/TabletopGames">Tabletop Games</a></li> <li><a href="/pmwiki/pmwiki.php/MediaNotes/Television" title="MediaNotes/Television">Television</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Theater" title="Main/Theater">Theater</a></li> <li><a href="/pmwiki/pmwiki.php/Main/VideogameTropes" title="Main/VideogameTropes">Videogame</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Webcomics" title="Main/Webcomics">Webcomics</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Narrative</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/UniversalTropes" title="Main/UniversalTropes">Universal</a></li> <li><a href="/pmwiki/pmwiki.php/Main/AppliedPhlebotinum" title="Main/AppliedPhlebotinum">Applied Phlebotinum</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CharacterizationTropes" title="Main/CharacterizationTropes">Characterization</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Characters" title="Main/Characters">Characters</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CharactersAsDevice" title="Main/CharactersAsDevice">Characters As Device</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Dialogue" title="Main/Dialogue">Dialogue</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Motifs" title="Main/Motifs">Motifs</a></li> <li><a href="/pmwiki/pmwiki.php/Main/NarrativeDevices" title="Main/NarrativeDevices">Narrative Devices</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Paratext" title="Main/Paratext">Paratext</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Plots" title="Main/Plots">Plots</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Settings" title="Main/Settings">Settings</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Spectacle" title="Main/Spectacle">Spectacle</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Other Categories</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/BritishTellyTropes" title="Main/BritishTellyTropes">British Telly</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TheContributors" title="Main/TheContributors">The Contributors</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CreatorSpeak" title="Main/CreatorSpeak">Creator Speak</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Creators" title="Main/Creators">Creators</a></li> <li><a href="/pmwiki/pmwiki.php/Main/DerivativeWorks" title="Main/DerivativeWorks">Derivative Works</a></li> <li><a href="/pmwiki/pmwiki.php/Main/LanguageTropes" title="Main/LanguageTropes">Language</a></li> <li><a href="/pmwiki/pmwiki.php/Main/LawsAndFormulas" title="Main/LawsAndFormulas">Laws And Formulas</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ShowBusiness" title="Main/ShowBusiness">Show Business</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SplitPersonalityTropes" title="Main/SplitPersonalityTropes">Split Personality</a></li> <li><a href="/pmwiki/pmwiki.php/Main/StockRoom" title="Main/StockRoom">Stock Room</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TropeTropes" title="Main/TropeTropes">Trope</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Tropes" title="Main/Tropes">Tropes</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TruthAndLies" title="Main/TruthAndLies">Truth And Lies</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TruthInTelevision" title="Main/TruthInTelevision">Truth In Television</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Topical Tropes</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/BetrayalTropes" title="Main/BetrayalTropes">Betrayal</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CensorshipTropes" title="Main/CensorshipTropes">Censorship</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CombatTropes" title="Main/CombatTropes">Combat</a></li> <li><a href="/pmwiki/pmwiki.php/Main/DeathTropes" title="Main/DeathTropes">Death</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FamilyTropes" title="Main/FamilyTropes">Family</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FateAndProphecyTropes" title="Main/FateAndProphecyTropes">Fate And Prophecy</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FoodTropes" title="Main/FoodTropes">Food</a></li> <li><a href="/pmwiki/pmwiki.php/Main/HolidayTropes" title="Main/HolidayTropes">Holiday</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MemoryTropes" title="Main/MemoryTropes">Memory</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MoneyTropes" title="Main/MoneyTropes">Money</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MoralityTropes" title="Main/MoralityTropes">Morality</a></li> <li><a href="/pmwiki/pmwiki.php/Main/PoliticsTropes" title="Main/PoliticsTropes">Politics</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ReligionTropes" title="Main/ReligionTropes">Religion</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SchoolTropes" title="Main/SchoolTropes">School</a></li> </ul> </li> </ul> </div> <div class="resources_dropdown"> <a href="javascript:void(0);" onclick="second_double_dropdown(); return false;" id="resources_dropdown"><span class="new_blue blue">Resources</span><i class="fa fa-angle-down"></i></a> <ul id="second_main_dropdown" class="padded font-s" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li class="second_dropdown"><a href="#test" data-click-toggle="active">Tools</a> <ul> <li><a href="/pmwiki/pmwiki.php/Administrivia/IttyBittyWikiTools">Wiki Tools</a></li> <li><a href="/pmwiki/cutlist.php" data-modal-target="login" rel="nofollow">Cut List</a></li> <li><a href="/pmwiki/image-fixer.php" data-modal-target="login" rel="nofollow">Image Fixer</a></li> <li><a href="/pmwiki/changes.php">New Edits</a></li> <li><a href="/pmwiki/articles_new.php">New Articles</a></li> <li><a href="/pmwiki/recent_edit_reasons.php">Edit Reasons</a></li> <li><a href="/pmwiki/isolated_pages.php">Isolated Pages</a></li> <li><a href="/pmwiki/launches.php" data-modal-target="login" rel="nofollow">Launches</a></li> <li><a href="/pmwiki/img_list.php" data-modal-target="login" rel="nofollow">Images List</a></li> <li><a href="/pmwiki/recent_videos.php">Recent Videos</a></li> <li><a href="/pmwiki/crown_activity.php">Crowner Activity</a></li> <li><a href="/pmwiki/no_types.php">Un-typed Pages</a></li> <li><a href="/pmwiki/page_type_audit.php">Recent Page Type Changes</a></li> </ul> </li> <li class="second_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Templates</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/TropeEntryTemplate">Trope Entry</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ProgramEntryTemplate">Works</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/CharacterSheetTemplate">Character Sheet</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/PlayingWithWikiTemplate">Playing With</a></li> <li><a href="/pmwiki/pmwiki.php/FanficRecs/TemplatePageForNewFandomRecommendations">Fandom</a></li> </ul> </li> <li class="second_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Tips</a> <ul> <li><a href="/pmwiki/pmwiki.php/Administrivia/CreatingNewRedirects">Creating New Redirects</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/Crosswicking">Cross Wicking</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TipsForEditing">Tips for Editing</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TextFormattingRules">Text Formatting Rules</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TVTropesGlossary">Glossary</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/EditReasonsAndWhyYouShouldUseThem">Edit Reasons</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/HandlingSpoilers">Handling Spoilers</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/WordCruft">Word Cruft</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Administrivia">Administrivia</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FAQ">FAQ</a></li> </ul> </li> <li class="second_dropdown"><a href="/pmwiki/changelog.php">Changelog</a></li> <li class="second_dropdown"><a href="/pmwiki/query.php?type=bug">Report Bug</a></li> <li class="second_dropdown"><a href="/pmwiki/conversations.php?topic=renames">Trope Repair Shop</a></li> <li class="second_dropdown"><a href="/pmwiki/conversations.php?topic=images">Image Pickin'</a></li> </ul> </div> </div> <div id="asteri-sidebar" style="display:none"> <p style="margin-top: 20px;" class="sidebar-item-title" data-title="Advertisement">Advertisement:</p> <div id="asteri_cont"></div> </div> <script> //asteri enabled if((tvtropes_config.asteri_stream_enabled || tvtropes_config.get_asteri_stream == 'live')) { //aster stream currently live and not a logged-in troper if(!tvtropes_config.is_logged_in && cookies.read('asteri_event_active') != '') { document.getElementById('asteri-sidebar').style.display=""; } } </script> </div> <script> if(!is_mobile()) { //don't insert if content is too small on page var tropes_insert_side_ad=true; if(document.getElementById("main-article") && document.getElementById("main-article").clientHeight) { var sidebar_height=document.getElementById("main-article").clientHeight; if(sidebar_height>0 && sidebar_height<500) { tropes_insert_side_ad=false; console.log('ad parser: content too small for sidebar ad'); } } if(tropes_insert_side_ad) { document.write(` <div id="stick-cont" class="sidebar-item sb-fad-unit"> <p class="sidebar-item-title" data-title="Advertisement">Advertisement:</p> <div id="stick-bar" class="sidebar-section"> <div class="square_fad fad-size-300x600 fad-section text-center"> <div class='tvtropes-ad-unit '> <div id='tvtropes_dt_inview' class='htlad-tvtropes_dt_inview'></div> </div> </div> </div> </div> `); } } </script> </div> </div> <div id="action-bar-bottom" class="action-bar tablet-off"> <a href="#top-of-page" class="scroll-to-top dead-button" onclick="scroll_to_top(500);">Top</a> </div> </div> <footer id="main-footer"> <div id="main-footer-inner"> <div class="footer-left"> <a href="/" class="img-link"><img data-src="/img/tvtropes-footer-logo.png" alt="TV Tropes" class="logo_image lazy-image" title="TV Tropes" /></a> <ul class="social-buttons"> <li><a class="btn fb" target="_blank" onclick="_gaq.push(['_trackEvent', 'btn-social-icon', 'click', 'btn-facebook']);" href="https://www.facebook.com/tvtropes"><i class="fa fa-facebook"></i></a></li> <li><a class="btn tw" target="_blank" onclick="_gaq.push(['_trackEvent', 'btn-social-icon', 'click', 'btn-twitter']);" href="https://www.twitter.com/tvtropes"><i class="fa fa-twitter"></i></a> </li> </ul> </div> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">TVTropes</h4></li> <li><a href="/pmwiki/pmwiki.php/Main/Administrivia">About TVTropes</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TheGoalsOfTVTropes">TVTropes Goals</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TheTropingCode">Troping Code</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TVTropesCustoms">TVTropes Customs</a></li> <li><a href="/pmwiki/pmwiki.php/JustForFun/TropesOfLegend">Tropes of Legend</a></li> <li><a href="/pmwiki/ad-free-subscribe.php">Go Ad-Free</a></li> </ul> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">Community</h4></li> <li><a href="/pmwiki/query.php?type=att">Ask The Tropers</a></li> <li><a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a></li> <li><a href="/pmwiki/query.php?type=tf">Trope Finder</a></li> <li><a href="/pmwiki/query.php?type=ykts">Media Finder</a></li> <li><a href="/pmwiki/query.php?type=wl">Tech Wishlist</a></li> <li><a href="/pmwiki/review_activity.php">Reviews</a></li> <li><a href="/pmwiki/topics.php">Forum</a></li> </ul> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">Tropes HQ</h4></li> <li><a href="/pmwiki/about.php">About Us</a></li> <li><a href="/pmwiki/contact.php">Contact Us</a></li> <li><a href="/pmwiki/query.php?type=bug">Report Bug</a></li> <li><a href="/pmwiki/changelog.php">Changelog</a></li> <li><a href="/pmwiki/dmca.php">DMCA Notice</a></li> <li><a href="/pmwiki/privacypolicy.php">Privacy Policy</a></li> </ul> </div> <div id="desktop-on-mobile-toggle" class="text-center gutter-top gutter-bottom tablet-on"> <a href="/pmwiki/switchDeviceCss.php?mobileVersion=1" rel="nofollow">Switch to <span class="txt-desktop">Desktop</span><span class="txt-mobile">Mobile</span> Version</a> </div> <div class="legal"> <p>TVTropes is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License. <br>Permissions beyond the scope of this license may be available from <a xmlns:cc="http://creativecommons.org/ns#" href="mailto:thestaff@tvtropes.org" rel="cc:morePermissions"> thestaff@tvtropes.org</a>.</p> <br> <div class="privacy_wrapper"> </div> </div> </footer> <style> div.fc-ccpa-root { position: absolute !important; bottom: 93px !important; margin: auto !important; width: 100% !important; z-index: 9999 !important; overflow: hidden !important; } .fc-ccpa-root .fc-dns-dialog .fc-dns-link p{ outline: none !important; text-decoration: underline !important; font-size: .7em !important; font-family: sans-serif !important; } .fc-ccpa-root .fc-dns-dialog .fc-dns-link .fc-button-background { background: none !important; } </style> <div id="_pm_videoViewer" class="full-screen"> <a href="#close" class="close" id="_pm_videoViewer-close"></a> <div class="_pmvv-body"> <div class="_pmvv-vidbox"> <div id="overlay_outer_player_max"> <div id="overlay_outer_player_wrapper"> <div id="tvtropes_overlay_player" data-video-id="tvtropes-videos-t3snx2" data-video-image="https://static.tvtropes.org/trope_videos_transcoded/images/sd/t3snx2.jpg" data-video-title="20th Century Fox" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/t3snx2_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/t3snx2.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/t3snx2.m3u8" data-small-player="never" data-track-events="1" data-do-not-loop="1" data-starting-quality="1" data-autoplay="true"> </div> </div> </div> <div class="_pmvv-vidbox-desc"> <h1 id="overlay-title">20th Century Fox</h1> <p id="overlay-descrip" class="_pmvv-vidbox-descTxt"> The fanfare of 20th Century Fox is one the most iconic of all time, as heard in the opening of the &quot;Star Wars&quot; films here, to name just one example. </p> <div class="rating-row" data-video-id="t3snx2" > <input type="hidden" name="is_logged_in" value="0" > <p>How well does it match the trope?</p> <div id="star-rating-group"> <div class="trope-rate"> <input type="radio" id="lamp5" name="rate" value="5" /> <label for="lamp5" title="Absolutely">&starf;</label> <input type="radio" id="lamp4" name="rate" value="4" /> <label for="lamp4" title="Yes">&starf;</label> <input type="radio" id="lamp3" name="rate" value="3" /> <label for="lamp3" title="Kind of">&starf;</label> <input type="radio" id="lamp2" name="rate" value="2" /> <label for="lamp2" title="Not really">&starf;</label> <input type="radio" id="lamp1" name="rate" value="1" /> <label for="lamp1" title="No">&starf;</label> </div> <div id="star-rating-total"> 4.95 (21 votes) </div> </div> </div> <div class="example-media-row"> <div class="example-overlay"> <p>Example of:</p> <div id="overlay-trope">Main / Fanfare</div> </div> <div class="media_second_wrapper"> <div class="media-sources-overlay example-overlay"> <p>Media sources:</p> <div id="overlay-media"></div> </div> <div class="example-overlay"> <div id="secondary_tropes_row"></div> <div id="overlay-second"></div> </div> </div> </div> <p class="_pmvv-vidbox-stats text-right font-s" style="padding-top:8px; border-top: solid 1px rgba(255,255,255,0.2)"> <!-- <i class="fa fa-eye"></i> 11,241--> <a href="#video-feedback" class="float-right" data-modal-target="login" >Report</a> </p> </div> </div> </div> <div class="_pmvv-foot"> <div class="_pmvv-foot-scrollwrapper"> <a href="#video-link" data-video-id="t3snx2" data-vimeo-id="" data-video-descrip="The fanfare of 20th Century Fox is one the most iconic of all time, as heard in the opening of the &amp;quot;Star Wars&amp;quot; films here, to name just one example." data-video-title="20th Century Fox" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/t3snx2_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/t3snx2.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/t3snx2.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/t3snx2.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.95" data-video-rating-count="21" data-video-media-sources="Creator/TwentiethCenturyStudios,Franchise/StarWars" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/t3snx2.jpg"> <p><span class="bold">20th Century Fox</span></p> </a> <a href="#video-link" data-video-id="3mi6g5" data-vimeo-id="" data-video-descrip="C2 Pictures' own Vanity Plate, which was only seen on Terminator 3: Rise of the Machines (both the actual movie and game trailers) and Basic Instinct 2." data-video-title="C2 Pictures" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/3mi6g5_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/3mi6g5.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/3mi6g5.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3mi6g5.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="2" data-video-media-sources="Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3mi6g5.jpg"> <p><span class="bold">C2 Pictures</span></p> </a> <a href="#video-link" data-video-id="2yp5fs" data-vimeo-id="" data-video-descrip="The 1993-1998 Cinergi Pictures logo, which was seen from its films released by Hollywood Pictures and Touchstone Pictures, as well as &amp;quot;Die Hard with a Vengeance&amp;quot;." data-video-title="Cinergi Pictures" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/2yp5fs_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/2yp5fs.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/2yp5fs.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2yp5fs.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="2" data-video-media-sources="Main/VanityPlate,Creator/CinergiPictures" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2yp5fs.jpg"> <p><span class="bold">Cinergi Pictures</span></p> </a> <a href="#video-link" data-video-id="3g533q" data-vimeo-id="" data-video-descrip="Shaw Brothers' shield logo, as seen at the beginning of their films from 1960s to the 1970s." data-video-title="Shaw Brothers" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/3g533q_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/3g533q.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/3g533q.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3g533q.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="5" data-video-media-sources="Creator/ShawBrothers,Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3g533q.jpg"> <p><span class="bold">Shaw Brothers</span></p> </a> <a href="#video-link" data-video-id="0uv3gs" data-vimeo-id="" data-video-descrip="The logo for Jensen Farley Pictures from 1983, which was seen on its distributed films such as Curtains and Joysticks." data-video-title="Jensen Farley Pictures" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/0uv3gs_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/0uv3gs.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/0uv3gs.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/0uv3gs.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="3" data-video-media-sources="Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/0uv3gs.jpg"> <p><span class="bold">Jensen Farley P...</span></p> </a> <a href="#video-link" data-video-id="rp0dkk" data-vimeo-id="" data-video-descrip="Paramount Pictures' &amp;quot;CGI mountain&amp;quot; logo, which was used from 1986 to 2003." data-video-title="Paramount Pictures" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/rp0dkk_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/rp0dkk.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/rp0dkk.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/rp0dkk.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="5" data-video-media-sources="Main/VanityPlate,Creator/Paramount" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/rp0dkk.jpg"> <p><span class="bold">Paramount Pictures</span></p> </a> <a href="#video-link" data-video-id="2vdueq" data-vimeo-id="" data-video-descrip="UA's 1982-1987 logo, which was seen on its releases such as The Secret of NIMH, Rock &amp;amp; Rule, Octopussy and A View to a Kill." data-video-title="United Artists" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/2vdueq_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/2vdueq.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/2vdueq.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2vdueq.jpg" data-video-trope="Main/VanityPlate" data-video-tropename="Vanity Plate" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="2" data-video-media-sources="Creator/UnitedArtists,Main/Fanfare" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2vdueq.jpg"> <p><span class="bold">United Artists</span></p> </a> <a href="#video-link" data-video-id="6r9fcz" data-vimeo-id="" data-video-descrip="The 1984-1989 &amp;quot;P-Head&amp;quot; logo." data-video-title="PBS" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/6r9fcz_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/6r9fcz.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/6r9fcz.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/6r9fcz.jpg" data-video-trope="Main/VanityPlate" data-video-tropename="Vanity Plate" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="6" data-video-media-sources="Creator/PBS,Main/Fanfare" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/6r9fcz.jpg"> <p><span class="bold">PBS</span></p> </a> <a href="#video-link" data-video-id="db2q8v" data-vimeo-id="" data-video-descrip="The startup for TF1 with choppy animation by Catherine Chaillet, from 1975 to 1976." data-video-title="TF1" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/db2q8v_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/db2q8v.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/db2q8v.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/db2q8v.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="2" data-video-media-sources="" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/db2q8v.jpg"> <p><span class="bold">TF1</span></p> </a> <a href="#video-link" data-video-id="lcb5ls" data-vimeo-id="" data-video-descrip="Universal Television's current on-screen logo made it's debut on the October 13, 2011 episode of The Tonight Show." data-video-title="Universal Television" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/lcb5ls_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/lcb5ls.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/lcb5ls.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/lcb5ls.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.25" data-video-rating-count="4" data-video-media-sources="Creator/NBCUniversal,Creator/Universal" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/lcb5ls.jpg"> <p><span class="bold">Universal Telev...</span></p> </a> <a href="#video-link" data-video-id="dhzoh9" data-vimeo-id="" data-video-descrip="The Paramount byline made its debut in CBS Media Ventures' current on-screen logo on March 11, 2022." data-video-title="CBS Med. Ven. (Current Byline)" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/dhzoh9_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/dhzoh9.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/dhzoh9.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/dhzoh9.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.75" data-video-rating-count="4" data-video-media-sources="Creator/CBS,Creator/ParamountGlobal,Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/dhzoh9.jpg"> <p><span class="bold">CBS Med. Ven. (...</span></p> </a> <a href="#video-link" data-video-id="x6watn" data-vimeo-id="" data-video-descrip="Universal Pictures' current on-screen logo made its debut on January 4, 2012 in preparation for the studio's 100th anniversary, this is the generalized version of the current logo which made it's debuted on Identify Thief, released on February 8, 2013." data-video-title="Universal Pictures" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/x6watn_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/x6watn.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/x6watn.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/x6watn.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.62" data-video-rating-count="8" data-video-media-sources="Creator/NBCUniversal,Creator/Universal,Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/x6watn.jpg"> <p><span class="bold">Universal Pictures</span></p> </a> <a href="#video-link" data-video-id="93lpv5" data-vimeo-id="" data-video-descrip="DreamWorks Animation's current on-screen logo made its debut on How to Train Your Dragon: The Hidden World, released on January 22, 2019." data-video-title="DreamWorks Animation" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/93lpv5_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/93lpv5.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/93lpv5.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/93lpv5.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.83" data-video-rating-count="6" data-video-media-sources="Creator/DreamWorksAnimation,Creator/NBCUniversal,Creator/Universal,Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/93lpv5.jpg"> <p><span class="bold">DreamWorks Anim...</span></p> </a> <a href="#video-link" data-video-id="jjlciv" data-vimeo-id="" data-video-descrip="On January 11, 2021, CBS Television Distribution was rebranded to CBS Media Ventures, and with it, a new logo made its debut." data-video-title="CBS Med. Ven. (Old Byline)" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/jjlciv_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/jjlciv.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/jjlciv.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/jjlciv.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.75" data-video-rating-count="4" data-video-media-sources="Creator/CBS,Creator/ParamountGlobal,Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/jjlciv.jpg"> <p><span class="bold">CBS Med. Ven. (...</span></p> </a> <a href="#video-link" data-video-id="e1s3da" data-vimeo-id="" data-video-descrip="This is CBS Media Ventures' old on-screen logo when they were known as CBS Television Distribution, this was used from 2007-2021." data-video-title="CBS Television Distribution" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/e1s3da_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/e1s3da.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/e1s3da.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/e1s3da.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.40" data-video-rating-count="5" data-video-media-sources="Creator/CBS,Creator/ParamountGlobal,Main/DawnOfAnEra,Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/e1s3da.jpg"> <p><span class="bold">CBS Television ...</span></p> </a> <a href="#video-link" data-video-id="hcui6d" data-vimeo-id="" data-video-descrip="This is FX's current opening logo as shown at the beginning of shows aired on FX and FXX." data-video-title="FX (Current)" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/hcui6d_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/hcui6d.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/hcui6d.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/hcui6d.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.75" data-video-rating-count="4" data-video-media-sources="Creator/FXNetworks,Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/hcui6d.jpg"> <p><span class="bold">FX (Current)</span></p> </a> <a href="#video-link" data-video-id="rpc1pi" data-vimeo-id="" data-video-descrip="One of FX's old IDs was used from 1997-1998, the music for FX's 1997-1998 graphics package was composed by Scott Schreer." data-video-title="FX (Classic)" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/rpc1pi_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/rpc1pi.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/rpc1pi.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/rpc1pi.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="5" data-video-media-sources="Creator/FXNetworks,Main/StationIdent,Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/rpc1pi.jpg"> <p><span class="bold">FX (Classic)</span></p> </a> <a href="#video-link" data-video-id="pdltw4" data-vimeo-id="" data-video-descrip="Buena Vista Television's 2005 on-screen logo was used from 2005-2006, this is the long version." data-video-title="Buena Vista Television" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/pdltw4_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/pdltw4.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/pdltw4.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/pdltw4.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.83" data-video-rating-count="6" data-video-media-sources="Creator/Disney,Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/pdltw4.jpg"> <p><span class="bold">Buena Vista Tel...</span></p> </a> <a href="#video-link" data-video-id="7rwoyc" data-vimeo-id="" data-video-descrip="The Castle Rock Entertainment logo appeared on movies from 1994-2018, this is the 2004 version." data-video-title="Castle Rock Entertainment" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/7rwoyc_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/7rwoyc.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/7rwoyc.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/7rwoyc.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.71" data-video-rating-count="7" data-video-media-sources="Creator/CastleRockEntertainment,Creator/WarnerBros,Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/7rwoyc.jpg"> <p><span class="bold">Castle Rock Ent...</span></p> </a> <a href="#video-link" data-video-id="rfsbpa" data-vimeo-id="" data-video-descrip="Columbia TriStar Home Video's on-screen logo was used from 1993-2001." data-video-title="Columbia TriStar Home Video" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/rfsbpa_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/rfsbpa.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/rfsbpa.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/rfsbpa.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.75" data-video-rating-count="4" data-video-media-sources="Creator/SonyPictures,Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/rfsbpa.jpg"> <p><span class="bold">Columbia TriSta...</span></p> </a> <a href="#video-link" data-video-id="6tuwsw" data-vimeo-id="" data-video-descrip="On January 11, 1995, The CW's predecessor, The WB Television Network launched with the premiere of The WB's first original series The Wayans Bros. which aired from 1905-1999." data-video-title="The WB Launch" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/6tuwsw_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/6tuwsw.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/6tuwsw.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/6tuwsw.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.76" data-video-rating-count="25" data-video-media-sources="Creator/ChuckJones,Creator/TheWB,Creator/WarnerBros,Creator/WarnerBrosTelevisionStudios,Main/DawnOfAnEra,WesternAnimation/BugsBunny,WesternAnimation/DaffyDuck,Main/RogerRabbitEffect,Main/TakeAThirdOption,Main/ArtInitiatesLife" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/6tuwsw.jpg"> <p><span class="bold">The WB Launch</span></p> </a> <a href="#video-link" data-video-id="d0djao" data-vimeo-id="" data-video-descrip="The Warner Bros. 75th Anniversary Montage is shown at movie theaters before Warner Bros. movies throughout 1998." data-video-title="WB 75th Anniversary Montage" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/d0djao_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/d0djao.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/d0djao.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/d0djao.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.89" data-video-rating-count="9" data-video-media-sources="Creator/WarnerBros,Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/d0djao.jpg"> <p><span class="bold">WB 75th Anniver...</span></p> </a> <a href="#video-link" data-video-id="zjdwqr" data-vimeo-id="" data-video-descrip="The fall of the Berlin Wall 30 years ago, on November 9, 1989, changed the world. Leonard Bernstein's legendary live recording of Beethoven's Ode To Freedom (Symphony No. 9) captured not only the elation of the moment but conveyed a celebration of and a longing for freedom which extended far beyond the occasion." data-video-title="Ode to Freedom" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/zjdwqr_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/zjdwqr.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/zjdwqr.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/zjdwqr.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="8" data-video-media-sources="Music/LeonardBernstein,Music/OdeToJoy" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/zjdwqr.jpg"> <p><span class="bold">Ode to Freedom</span></p> </a> <a href="#video-link" data-video-id="779g1s" data-vimeo-id="" data-video-descrip="Paramount Global's current logo was first revealed on February 15, on the following day, ViacomCBS became Paramount Global or simply, Paramount, effectively retiring the Viacom name overall after over 50 years." data-video-title="Paramount" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/779g1s_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/779g1s.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/779g1s.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/779g1s.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="3.80" data-video-rating-count="5" data-video-media-sources="Creator/ParamountGlobal,Main/VanityPlate,Main/DawnOfAnEra" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/779g1s.jpg"> <p><span class="bold">Paramount</span></p> </a> <a href="#video-link" data-video-id="h5id00" data-vimeo-id="" data-video-descrip="The short version of 20th Century Studios' current on-screen logo appears on home media releases of movies and TV shows produced by 20th Century, Searchlight, 20th TV, 20th TV Animation and FXP." data-video-title="20th Century Studios" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/h5id00_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/h5id00.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/h5id00.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/h5id00.jpg" data-video-trope="Main/FanFare" data-video-tropename="Fan Fare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="8" data-video-media-sources="Creator/TwentiethCenturyStudios,Main/VanityPlate" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/h5id00.jpg"> <p><span class="bold">20th Century St...</span></p> </a> <a href="#video-link" data-video-id="4f8e9f" data-vimeo-id="" data-video-descrip="Bersaglieri are special light infantry and sharpshooter units of the Italian Army. They're distinguished by the capercaillie feathers on their hats and practice running instead of marching." data-video-title="Fanfara dei Bersaglieri" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/4f8e9f_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/4f8e9f.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/4f8e9f.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/4f8e9f.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="2" data-video-media-sources="Main/ElitesAreMoreGlamorous,UsefulNotes/NewRomanLegions" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/4f8e9f.jpg"> <p><span class="bold">Fanfara dei Ber...</span></p> </a> <a href="#video-link" data-video-id="htp7ga" data-vimeo-id="" data-video-descrip="Gustav Mahler's Symphony No. 5 in C Minor. Lucerne Festival Orchestra, conducted by Claudio Abbado." data-video-title="Mahler's Fifth" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/htp7ga_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/htp7ga.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/htp7ga.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/htp7ga.jpg" data-video-trope="Main/Fanfare" data-video-tropename="Fanfare" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="1" data-video-media-sources="Main/ClassicalMusicIsCool,Music/GustavMahler" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/htp7ga.jpg"> <p><span class="bold">Mahler's Fifth</span></p> </a> </div> </div> </div> <script type="text/javascript"> var cleanCreativeEnabled = ""; var donation = ""; var live_ads = "1"; var img_domain = "https://static.tvtropes.org"; var snoozed = cookies.read('snoozedabm'); var elem = document.createElement('script'); elem.async = true; // if page type is article or homepage load bundle_nojquery. otherwise load regular bundle.js if(tvtropes_config.universal_page_type == "Article" || tvtropes_config.universal_page_type == "HomePage") { elem.src = 'https://assets.tvtropes.org/design/assets/bundle_nojquery.js?rev=2ee58fb49f74484952c2d172f55c446e74ca485c'; } else { elem.src = 'https://assets.tvtropes.org/design/assets/bundle.js?rev=2ee58fb49f74484952c2d172f55c446e74ca485c'; } elem.onload = function() { } document.getElementsByTagName('head')[0].appendChild(elem); </script> <script type="text/javascript"> function send_analytics_event(user_type, donation){ // if(user_type == 'uncached' || user_type == 'cached'){ // ga('send', 'event', 'caching', 'load', user_type, {'nonInteraction': 1}); // return; // } var event_name = user_type; if(donation == 'true'){ event_name += "_donation" }else if(typeof(valid_user) == 'undefined'){ event_name += "_blocked" }else if(valid_user == true){ event_name += "_unblocked"; }else{ event_name = "_unknown" } ga('send', 'event', 'ads', 'load', event_name, {'nonInteraction': 1}); } send_analytics_event("guest", "false"); </script> <!-- Quantcast Tag --> <script type="text/javascript"> window._qevents = window._qevents || []; (function() { var elem = document.createElement('script'); elem.src = (document.location.protocol == "https:" ? "https://secure" : "http://edge") + ".quantserve.com/quant.js"; elem.async = true; elem.type = "text/javascript"; var scpt = document.getElementsByTagName('script')[0]; scpt.parentNode.insertBefore(elem, scpt); })(); window._qevents.push({ qacct:"p-mEzuYq24VEJ-3" }); </script> <noscript> <div style="display:none;"> <img src="//pixel.quantserve.com/pixel/p-mEzuYq24VEJ-3.gif" border="0" height="1" width="1" alt="Quantcast"/> </div> </noscript> <!-- End Quantcast tag --> <!-- Begin comScore Tag --> <script> var _comscore = _comscore || []; _comscore.push({ c1: "2", c2: "38282685" }); (function() { var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true; s.src = "https://sb.scorecardresearch.com/cs/38282685/beacon.js"; el.parentNode.insertBefore(s, el); })(); </script> <noscript> <img src="https://sb.scorecardresearch.com/p?c1=2&amp;c2=38282685&amp;cv=3.6.0&amp;cj=1"> </noscript> <!-- End comScore Tag --> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10