{"version":"1.0","provider_name":"Hong Kong Baptist Theological Seminary","provider_url":"https:\/\/www.hkbts.edu.hk\/en","author_name":"wordpress_admin","author_url":"https:\/\/www.hkbts.edu.hk\/en\/?p=author\/wordpress_admin\/","title":"\u6307\u63ee\u6a02\u532f\uff1a\u5be6\u8e10\u8a60\u5718\uff08\u4e00\uff09 - \u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"AstAT3hK0B\"><a href=\"https:\/\/www.hkbts.edu.hk\/en\/waec\/%e6%8c%87%e6%8f%ae%e6%a8%82%e5%8c%af%ef%bc%9a%e5%af%a6%e8%b8%90%e8%a9%a0%e5%9c%98%ef%bc%88%e4%b8%80%ef%bc%89\/\">Conductor&#039;s Ensemble: Practical Chorus (1)<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.hkbts.edu.hk\/en\/waec\/%e6%8c%87%e6%8f%ae%e6%a8%82%e5%8c%af%ef%bc%9a%e5%af%a6%e8%b8%90%e8%a9%a0%e5%9c%98%ef%bc%88%e4%b8%80%ef%bc%89\/embed\/#?secret=AstAT3hK0B\" width=\"600\" height=\"338\" title=\"\u201cConducting the Choir: Practical Choir (I)\u201d \u2014 Hong Kong Baptist Theological Seminary\" data-secret=\"AstAT3hK0B\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" class=\"wp-embedded-content\"><\/iframe><script>\n\/**\n * WordPress inline HTML embed\n *\n * @since 4.4.0\n * @output wp-includes\/js\/wp-embed.js\n *\n * Single line comments should not be used since they will break\n * the script when inlined in get_post_embed_html(), specifically\n * when the comments are not stripped out due to SCRIPT_DEBUG\n * being turned on.\n *\/\n(function ( window, document ) {\n\t'use strict';\n\n\t\/* Abort for ancient browsers. *\/\n\tif ( ! document.querySelector || ! window.addEventListener || typeof URL === 'undefined' ) {\n\t\treturn;\n\t}\n\n\t\/** @namespace wp *\/\n\twindow.wp = window.wp || {};\n\n\t\/* Abort if script was already executed. *\/\n\tif ( !! window.wp.receiveEmbedMessage ) {\n\t\treturn;\n\t}\n\n\t\/**\n\t * Receive embed message.\n\t *\n\t * @param {MessageEvent} e\n\t *\/\n\twindow.wp.receiveEmbedMessage = function( e ) {\n\t\tvar data = e.data;\n\n\t\t\/* Verify shape of message. *\/\n\t\tif (\n\t\t\t! ( data || data.secret || data.message || data.value ) ||\n\t\t\t\/[^a-zA-Z0-9]\/.test( data.secret )\n\t\t) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar iframes = document.querySelectorAll( 'iframe[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tblockquotes = document.querySelectorAll( 'blockquote[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tallowedProtocols = new RegExp( '^https?:$', 'i' ),\n\t\t\ti, source, height, sourceURL, targetURL;\n\n\t\tfor ( i = 0; i < blockquotes.length; i++ ) {\n\t\t\tblockquotes[ i ].style.display = 'none';\n\t\t}\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\tsource = iframes[ i ];\n\n\t\t\tif ( e.source !== source.contentWindow ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tsource.removeAttribute( 'style' );\n\n\t\t\tif ( 'height' === data.message ) {\n\t\t\t\t\/* Resize the iframe on request. *\/\n\t\t\t\theight = parseInt( data.value, 10 );\n\t\t\t\tif ( height > 1000 ) {\n\t\t\t\t\theight = 1000;\n\t\t\t\t} else if ( ~~height < 200 ) {\n\t\t\t\t\theight = 200;\n\t\t\t\t}\n\n\t\t\t\tsource.height = height;\n\t\t\t} else if ( 'link' === data.message ) {\n\t\t\t\t\/* Link to a specific URL on request. *\/\n\t\t\t\tsourceURL = new URL( source.getAttribute( 'src' ) );\n\t\t\t\ttargetURL = new URL( data.value );\n\n\t\t\t\tif (\n\t\t\t\t\tallowedProtocols.test( targetURL.protocol ) &&\n\t\t\t\t\ttargetURL.host === sourceURL.host &&\n\t\t\t\t\tdocument.activeElement === source\n\t\t\t\t) {\n\t\t\t\t\twindow.top.location.href = data.value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n\n\tfunction onLoad() {\n\t\tvar iframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),\n\t\t\ti, source, secret;\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\t\/** @var {IframeElement} *\/\n\t\t\tsource = iframes[ i ];\n\n\t\t\tsecret = source.getAttribute( 'data-secret' );\n\t\t\tif ( ! secret ) {\n\t\t\t\t\/* Add secret to iframe *\/\n\t\t\t\tsecret = Math.random().toString( 36 ).substring( 2, 12 );\n\t\t\t\tsource.src += '#?secret=' + secret;\n\t\t\t\tsource.setAttribute( 'data-secret', secret );\n\t\t\t}\n\n\t\t\t\/*\n\t\t\t * Let post embed window know that the parent is ready for receiving the height message, in case the iframe\n\t\t\t * loaded before wp-embed.js was loaded. When the ready message is received by the post embed window, the\n\t\t\t * window will then (re-)send the height message right away.\n\t\t\t *\/\n\t\t\tsource.contentWindow.postMessage( {\n\t\t\t\tmessage: 'ready',\n\t\t\t\tsecret: secret\n\t\t\t}, '*' );\n\t\t}\n\t}\n\n\twindow.addEventListener( 'message', window.wp.receiveEmbedMessage, false );\n\tdocument.addEventListener( 'DOMContentLoaded', onLoad, false );\n})( window, document );\n\/\/# sourceURL=https:\/\/www.hkbts.edu.hk\/wp-includes\/js\/wp-embed.js\n<\/script>","description":"\u8ab2\u7a0b\u53ca\u5165\u5b78 \u8fd4\u56de\u4e3b\u9801 \u6307\u63ee\u6a02\u532f\uff1a\u5be6\u8e10\u8a60\u5718\uff08\u4e00\uff09 Pls refer to the Chinese page. \u8ab2\u7a0b \u6307\u63ee\u6a02\u532f\uff1a\u5be6\u8e10\u8a60\u5718\uff08\u4e00\uff09 \u80cc\u666f \u5e7e\u5341\u5e74\u4f86\uff0c\u672c\u9662\u6301\u7e8c\u70ba\u6559\u6703\u8a13\u7df4\u50b3\u9053\u7267\u8005\u548c\u4fe1\u5f92\u9818\u8896\uff1b\u56e0\u61c9\u9700\u8981\uff0c\u5176\u4e2d\u6559\u6703\u97f3\u6a02\u548c\u5d07\u62dc\u76f8\u95dc\u7bc4\u7587\u7684\u6559\u5b78\u6388\u8ab2\uff0c\u5f62\u614b\u548c\u65b9\u5f0f\u4e00\u76f4\u975e\u5e38\u591a\u5143\uff0c\u7531\u5168\u6642\u9593\u6216\u90e8\u5206\u6642\u9593\u7684\u5b78\u4f4d\u3001\u6587\u6191\u3001\u8b49\u66f8\u8ab2\u7a0b\uff0c\u5230\u5404\u985e\u4e2d\u3001\u77ed\u671f\u7684\u5b78\u8853\u548c\u5be6\u8e10\u79d1\u76ee\u90fd\u6709\u3002\u671f\u9593\u57f9\u990a\u51fa\u7684\u4f8d\u5949\u4eba\u54e1\u5728\u672c\u6e2f\u548c\u5404\u5730\u6559\u6703\u3001\u5b78\u6821\u3001\u6a5f\u69cb\u7b49\u5de5\u4f5c\uff0c\u76f4\u63a5\u548c\u9593\u63a5\u50ac\u751f\u3001\u7267\u990a\u4e0d\u5c11\u63a8\u52d5\u8056\u6a02\/\u5d07\u62dc\u7b49\u6559\u80b2\u6216\u4f7f\u547d\u5718\u968a\u3002 2004\u5e74\uff0c\u8056\u6a02\u670d\u52d9\u793e\u4ee5\u7279\u5225\u4e8b\u5de5\u65b9\u5f0f\u7167\u61c9\u300c\u6559\u6703\u6a02\u5703\u300d\uff08MusiCall \uff09\u904b\u52d5\uff0c\u532f\u805a\u3001\u8a13\u7df4\u6559\u6703\u97f3\u6a02\u4eba\u54e1\uff0c\u7576\u6642\u5e7e\u4f4d\u9aa8\u5e79\u5c0e\u5e2b\u4fbf\u662f\u672c\u9662\u53ca\u672c\u4e2d\u5fc3\u7684\u8001\u5e2b\u3002\u591a\u5e74\u4f86\u5df2\u80b2\u6210\u6578\u4ee5\u5341\u8a08\u6559\u6703\u97f3\u6a02\u7267\u8005\u3001\u795e\u5b78\u9662\u53ca\u5927\u4e2d\u5c0f\u5b78\u97f3\u6a02\u8001\u5e2b\u3001\u5c08\u696d\u97f3\u6a02\u5bb6\u7b49\uff0c\u76ee\u524d\u904d\u4f48\u672c\u5730\u548c\u6b50\u7f8e\u591a\u5730\u3002 \u8fd1\u5e74\uff0c\u672c\u9662\u8457\u529b\u52a0\u5f37\u5be6\u8e10\u795e\u5b78\u6559\u80b2\u7684\u878d\u532f\u7279\u8cea\uff0c\u52a0\u4e0a\u672c\u4e2d\u5fc3\u8207\u8056\u6a02\u670d\u52d9\u793e\u5747\u611f\u5230\u627f\u524d\u555f\u5f8c\u7684\u91cd\u8981\u6027\uff0c\u65bc\u662f\u958b\u59cb\u63a8\u52d5\u300c\u6a02\u5703\u300d\u904b\u52d5\u7684\u65b0\u767c\u5c55\uff0c\u6c7a\u5b9a\u62db\u805a\u9999\u6e2f\u773e\u6559\u6703\u7684\u97f3\u6a02\u8207\u5d07\u62dc\u4e8b\u5de5\u4f8d\u5949\u4eba\u54e1\uff08\u5305\u62ec\u4e8b\u5de5\u5c0e\u5e2b\u3001\u8a69\u73ed\u6210\u54e1\u3001\u6307\u63ee\u3001\u5d07\u62dc\u4f8d\u5949\u4eba\u54e1\u3001\u5668\u6a02\u624b\u7b49\uff09\uff0c\u671b\u80fd\u65b0\u7d44\u6210\u300c\u6307\u63ee\u6a02\u532f\uff1a\u5be6\u8e10\u8a60\u5718\u300d\uff08MusiCall Conductors Infinite \uff09\uff0c\u8a08\u756b\u4ee5\u6bcf\u5e74\u5169\u81f3\u4e09\u500b\u5b63\u5ea6\uff0c\u6301\u7e8c\u4f5c\u9577\u671f\u8a13\u7df4\u3002\u76fc\u6fc0\u767c\u53c3\u8207\u8005\u4e92\u76f8\u652f\u6301\u3001\u914d\u5408\uff0c\u540c\u5fc3\u5408\u610f\u63a8\u52d5\u3001\u5efa\u7acb\u3001\u63d0\u5347\u6559\u6703\u97f3\u6a02\u8207\u5d07\u62dc\u76f8\u95dc\u4e8b\u5de5\u8cea\u7d20\u3002 \u76ee\u6a19 \u4e00\uff09\u8a13\u7df4\u3001\u5b78\u7fd2\uff1b\u00a0 \u4e8c\uff09\u5718\u5951\u3001\u5206\u4eab\uff1b\u00a0 \u4e09\uff09\u670d\u4f8d\u6559\u6703 \u5f62\u5f0f\/ \u7279\u8272 1\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \u6bcf\u5468\u6046\u5e38\u805a\u96c6\uff08\u5168\u5e74\u5408\u5171\u7d0420\u81f330\u6b21\uff0c\u5206\u5169\u81f3\u4e09\u5b63\u5ea6\u8209\u884c\uff09 \u4ee5\u5408\u5531\u8a60\u5718\uff0c\u63c9\u5408\u5718\u5951\u7684\u65b9\u5f0f\uff0c\u5b9a\u6642\u76f8\u805a\u3002 \u805a\u96c6\u5167\u5bb9\u5305\u62ec\uff1a\u6b4c\u66f2\u7df4\u7fd2\u3001\u5c08\u984c\u6559\u5b78\u3001\u9748\u4fee\u5206\u4eab\u3001\u53c3\u89c0\u3001\u63a2\u8a2a\u4ea4\u6d41\u2026\u2026\u7b49\u3002 2\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \u737b\u5531\u3001\u9818\u6703\uff08\u9810\u8a08\u65bc2024\u5e74\u5167\u8209\u884c\u9996\u6b21\u8b1b\u5ea7\u97f3\u6a02\u6703\uff0c\u737b\u5531Handel\u300a\u5f4c\u8cfd\u4e9e\u300b\u795e\u66f2\u9078\u6bb5\u7b49\uff09 \u4ee5\u737b\u5531\u3001\u793a\u7bc4\u3001\u8b1b\u89e3\u7b49\u65b9\u5f0f\u4e3b\u9818\u6216\u53c3\u8207\u5404\u985e\u805a\u6703\u3002 3\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \u71df\u6703\uff08\u8a73\u60c5\u5bb9\u5f8c\u516c\u4f48\uff09 \u4ee5\u71df\u6703\u5f62\u5f0f\u4f5c\u70ba\u5e74\u5ea6\u5b78\u7fd2\u91cd\u9ede\u3002 \u5c07\u6309\u9700\u8981\u3001\u6d3b\u52d5\u5167\u5bb9\/\u4e3b\u984c\uff0c\u9080\u8acb\u4e0d\u540c\u7267\u8005\u3001\u6559\u6388\u3001\u97f3\u6a02\u5bb6\u7b49 \u849e\u81e8\u4e0a\u8ff0\u6046\u5e38\u805a\u6703\u3001\u737b\u5531\u3001\u71df\u6703\u7b49\u4e3b\u9818\u3001\u4e3b\u8b1b\u3001\u6388\u8ab2\u3002 \u5c0e\u5e2b \u5289\u6c38\u751f\u5148\u751f \u672c\u9662\u6559\u6703\u97f3\u6a02\u79d1\u8b1b\u5e2b \u738b\u5289\u71d5\u5bb9\u57fa\u7763\u6559\u5d07\u62dc\u8207\u85dd\u8853\u6559\u80b2\u4e2d\u5fc3\u4e3b\u4efb \u9999\u6e2f\u4e2d\u6587\u5927\u5b78(\u69ae\u8b7d)\u97f3\u6a02\u5b78\u58eb \u6d69\u8072\u8b9a\u7942\u8a60\u5718\u3001\u6559\u6703\u6a02\u5703\u3001\u9999\u6e2f\u8056\u8a69\u6703\u97f3\u6a02\u7e3d\u76e3 \u90ed\u00a0 \u5c8d\u5c0f\u59d0 \u9999\u6e2f\u6f14\u85dd\u5b78\u9662\u6df1\u9020\u6587\u6191(\u8072\u6a02\u53ca\u6b4c\u5287) \u82f1\u570b\u8056\u4e09\u4e00\u97f3\u6a02\u5b78\u9662\u6b4c\u5531\u6587\u6191(ATCL) \u8a31\u69ae\u81fb\u5148\u751f \u7562\u696d\u65bc\u9999\u6e2f\u6f14\u85dd\u5b78"}