{"version":"1.0","provider_name":"\u5982\u4f55\u64cd\u4f5c & \u6700\u4f73\u8f6f\u4ef6","provider_url":"https:\/\/howto.ping.fm\/zh\/","author_name":"zamozhnii","author_url":"https:\/\/howto.ping.fm\/zh\/","title":"\u5982\u4f55\u57282024\u5e74\u7684MacOS\u7cfb\u7edf\u4e0a\u64ad\u653eMKV\u6587\u4ef6","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"SXfV7vJ3TE\"><a href=\"https:\/\/howto.ping.fm\/zh\/play-mkv\/\">\u5982\u4f55\u57282024\u5e74\u7684MacOS\u4e0a\u64ad\u653eMKV\u6587\u4ef6<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/howto.ping.fm\/zh\/play-mkv\/embed\/#?secret=SXfV7vJ3TE\" width=\"600\" height=\"338\" title=\"&#8220;\u5982\u4f55\u57282024\u5e74\u7684MacOS\u4e0a\u64ad\u653eMKV\u6587\u4ef6&#8221; &#8212; \u5982\u4f55\u64cd\u4f5c &amp; \u6700\u4f73\u8f6f\u4ef6\" data-secret=\"SXfV7vJ3TE\" 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 * This file cannot have ampersands in it. This is to ensure\n * it can be embedded in older versions of WordPress.\n * See https:\/\/core.trac.wordpress.org\/changeset\/35708.\n *\/\n(function ( window, document ) {\n\t'use strict';\n\n\tvar supportedBrowser = false,\n\t\tloaded = false;\n\n\t\tif ( document.querySelector ) {\n\t\t\tif ( window.addEventListener ) {\n\t\t\t\tsupportedBrowser = true;\n\t\t\t}\n\t\t}\n\n\t\/** @namespace wp *\/\n\twindow.wp = window.wp || {};\n\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\tif ( ! data ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( ! ( data.secret || data.message || data.value ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( \/[^a-zA-Z0-9]\/.test( data.secret ) ) {\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\t\/* Resize the iframe on request. *\/\n\t\t\tif ( 'height' === data.message ) {\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}\n\n\t\t\t\/* Link to a specific URL on request. *\/\n\t\t\tif ( 'link' === data.message ) {\n\t\t\t\tsourceURL = document.createElement( 'a' );\n\t\t\t\ttargetURL = document.createElement( 'a' );\n\n\t\t\t\tsourceURL.href = source.getAttribute( 'src' );\n\t\t\t\ttargetURL.href = data.value;\n\n\t\t\t\t\/* Only follow link if the protocol is in the allow list. *\/\n\t\t\t\tif ( ! allowedProtocols.test( targetURL.protocol ) ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t\/* Only continue if link hostname matches iframe's hostname. *\/\n\t\t\t\tif ( targetURL.host === sourceURL.host ) {\n\t\t\t\t\tif ( document.activeElement === source ) {\n\t\t\t\t\t\twindow.top.location.href = data.value;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n\n\tfunction onLoad() {\n\t\tif ( loaded ) {\n\t\t\treturn;\n\t\t}\n\n\t\tloaded = true;\n\n\t\tvar isIE10 = -1 !== navigator.appVersion.indexOf( 'MSIE 10' ),\n\t\t\tisIE11 = !!navigator.userAgent.match( \/Trident.*rv:11\\.\/ ),\n\t\t\tiframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),\n\t\t\tiframeClone, i, 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 ).substr( 2, 10 );\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\/* Remove security attribute from iframes in IE10 and IE11. *\/\n\t\t\tif ( ( isIE10 || isIE11 ) ) {\n\t\t\t\tiframeClone = source.cloneNode( true );\n\t\t\t\tiframeClone.removeAttribute( 'security' );\n\t\t\t\tsource.parentNode.replaceChild( iframeClone, source );\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\tif ( supportedBrowser ) {\n\t\twindow.addEventListener( 'message', window.wp.receiveEmbedMessage, false );\n\t\tdocument.addEventListener( 'DOMContentLoaded', onLoad, false );\n\t\twindow.addEventListener( 'load', onLoad, false );\n\t}\n})( window, document );\n<\/script>\n","thumbnail_url":"https:\/\/www.ping.fm\/howto\/wp-content\/uploads\/2024\/04\/How-to-Play-MKV-Files-on-MacOS-in-2024-Chinese.jpg","thumbnail_width":1280,"thumbnail_height":731,"description":"\u5982\u4f55\u57282024\u5e74\u5728MacOS\u4e0a\u64ad\u653eMKV\u6587\u4ef6 \u5982\u679c\u60a8\u662fMac\u7528\u6237\uff0c\u60a8\u53ef\u80fd\u5728\u5c1d\u8bd5\u64ad\u653eMKV\u6587\u4ef6\u65f6\u9047\u5230\u4e86\u56f0\u5883\u3002\u4e0e\u66f4\u5e38\u89c1\u7684\u89c6\u9891\u683c\u5f0f\u5982MP4\u6216MOV\u4e0d\u540c\uff0cMKV\uff08Matroska Video\uff09\u6587\u4ef6\u5e76\u672a\u5f97\u5230macOS\u7684\u539f\u751f\u652f\u6301\uff0c\u8fd9\u5c31\u9700\u8981\u989d\u5916\u7684\u8f6f\u4ef6\u6216\u53d8\u901a\u529e\u6cd5\u6765\u89c2\u770b\u8fd9\u4e9b\u9ad8\u8d28\u91cf\u7684\u89c6\u9891\u3002\u5e78\u8fd0\u7684\u662f\uff0c\u6709\u51e0\u79cd\u65b9\u6cd5\u53ef\u4ee5\u5728Mac\u4e0a\u64ad\u653eMKV\u6587\u4ef6\uff0c\u4f5c\u4e3a\u4e00\u4e2a\u7ecf\u5386\u8fc7\u8fd9\u79cd\u6323\u624e\u7684\u5a92\u4f53\u7231\u597d\u8005\uff0c\u6211\u5c06\u5206\u4eab\u4ece\u4e2a\u4eba\u7ecf\u9a8c\u4e2d\u5f97\u5230\u7684\u6700\u6709\u6548\u65b9\u6cd5\u3002\u5728\u8fd9\u4efd\u5168\u9762\u7684\u6307\u5357\u91cc\uff0c\u6211\u4eec\u5c06\u63a2\u8ba8\u5982\u4f55\u6b63\u786e\u8bbe\u7f6e\u548c\u4f7f\u7528Elmedia Mac\u89c6\u9891\u64ad\u653e\u5668\uff0c\u4ee5\u53ca\u5176\u4ed6\u786e\u4fdd\u57282024\u5e74\u60a8\u7684Mac\u4e0a\u80fd\u987a\u7545\u64ad\u653eMKV\u6587\u4ef6\u7684\u65b9\u6cd5\u3002 1 \u5e38\u89c1\u573a\u666f\uff1a &#127916; \u9ad8\u8d28\u91cf\u89c6\u9891\u7231\u597d\u8005 \u5bfb\u6c42\u9ad8\u8d28\u91cf\u89c6\u9891\u64ad\u653e\u7684\u7528\u6237\u7ecf\u5e38\u4f1a\u9047\u5230MKV\u6587\u4ef6\uff0c\u56e0\u4e3a\u5b83\u4eec\u5728\u89c6\u9891\u8d28\u91cf\u4e0a\u7684\u4f18\u52bf\uff0c\u4ee5\u53ca\u80fd\u5c06\u591a\u4e2a\u97f3\u8f68\u548c\u5b57\u5e55\u5b58\u50a8\u5728\u4e00\u4e2a\u6587\u4ef6\u4e2d\u3002 \u5728Mac\u4e0a\u76f4\u63a5\u64ad\u653e\u8fd9\u4e9b\u6587\u4ef6\u5e76\u975e\u6613\u4e8b\uff0c\u9700\u8981\u989d\u5916\u7684\u8f6f\u4ef6\u6216\u7f16\u89e3\u7801\u5668\u6765\u8fdb\u884c\u64ad\u653e\u3002 &#128532; \u517c\u5bb9\u6027\u95ee\u9898 Mac\u81ea\u5e26\u7684\u9ed8\u8ba4\u5a92\u4f53\u64ad\u653e\u5668\u662fQuickTime\uff0c\u5b83\u4e0d\u652f\u6301MKV\u6587\u4ef6\u3002 \u5982\u679c\u6ca1\u6709\u5408\u9002\u7684\u7f16\u89e3\u7801\u5668\u6216\u5e94\u7528\u7a0b\u5e8f\uff0c\u7528\u6237\u4f1a\u9047\u5230\u9519\u8bef\u4fe1\u606f\u6216\u65e0\u6cd5\u6253\u5f00\u6240\u9700\u5a92\u4f53\u6587\u4ef6\u7684\u60c5\u51b5\u3002 &#128260; \u8de8\u8bbe\u5907\u5171\u4eab \u5728\u4e0d\u540c\u8bbe\u5907\u95f4\u5206\u4eab\u89c6\u9891\u65f6\uff0cMKV\u6587\u4ef6\u53ef\u80fd\u56e0\u4e3a\u7cfb\u7edf\u517c\u5bb9\u6027\u95ee\u9898\uff0c\u7279\u522b\u662f\u5728Mac\u4e0a\uff0c\u800c\u5bfc\u81f4\u4e0d\u4fbf\u3002 \u7528\u6237\u5bfb\u627e\u53ef\u9760\u7684\u8f6f\u4ef6\u89e3\u51b3\u65b9\u6848\uff0c\u4ee5\u63d0\u4f9b\u8de8\u5e73\u53f0\u517c\u5bb9\u6027\uff0c\u5b9e\u73b0\u66f4\u6d41\u7545\u7684\u4f53\u9a8c\u3002 2 \u5206\u6b65\u6307\u5357\uff1a\u5982\u4f55\u5728Mac\u4e0a\u64ad\u653eMKV\uff1a \u65b9\u6cd51\uff1a&#127775; \u5b89\u88c5Elmedia\u89c6\u9891\u64ad\u653e\u5668 \u8bbf\u95eeElmedia Mac\u89c6\u9891\u64ad\u653e\u5668\u7f51\u7ad9\u5e76\u4e0b\u8f7d\u5e94\u7528\u3002 \u6309\u7167\u5b89\u88c5\u8bf4\u660e\u5c06Elmedia\u64ad\u653e\u5668\u96c6\u6210\u5230\u60a8\u7684\u7cfb\u7edf\u4e2d\u3002 \u6253\u5f00Elmedia\u64ad\u653e\u5668\u5e76\u4f7f\u7528\u201c\u6587\u4ef6\u201d\u83dc\u5355\u6253\u5f00\u60a8\u7684MKV\u6587\u4ef6\uff0c\u6216\u8005\u76f4\u63a5\u5c06\u6587\u4ef6\u62d6\u653e\u5230\u64ad\u653e\u5668\u7a97\u53e3\u4e2d\u3002 \u6ce8\uff1aElmedia\u64ad\u653e\u5668\u63d0\u4f9b\u4e86\u65e0\u7f1d\u7684\u4f53\u9a8c\uff0c\u5e76\u63d0\u4f9b\u4e86\u5982\u64ad\u653e\u5217\u8868\u3001\u5b57\u5e55\u652f\u6301\u7b49\u9644\u52a0\u529f\u80fd\u3002 \u7ed3\u8bba\uff1aElmedia\u64ad\u653e\u5668\u662f\u4e00\u4e2a\u7528\u6237\u53cb\u597d\u4e14\u591a\u529f\u80fd\u7684\u5de5\u5177\uff0c\u53ef\u4ee5\u5728Mac\u4e0a\u8f7b\u677e\u64ad\u653eMKV\u6587\u4ef6\uff0c\u65e0\u9700\u4efb\u4f55\u9ebb\u70e6\u3002 \u65b9\u6cd52\uff1a&#128640; \u4f7f\u7528VLC\u5a92\u4f53\u64ad\u653e\u5668 \u4ece\u5b98\u65b9Videolan\u7f51\u7ad9\u4e0b\u8f7dVLC for Mac\u3002 \u5b8c\u6210\u5b89\u88c5\u8fc7\u7a0b\u5e76\u6253\u5f00VLC\u3002 \u5c06MKV\u6587\u4ef6\u62d6\u653e\u5230VLC\u7a97\u53e3\u4e2d\uff0c\u6216\u901a\u8fc7\u201c\u6587\u4ef6\u201d\u83dc\u5355\u6253\u5f00\u3002 \u6ce8\uff1aVLC\u662f\u4e00\u4e2a\u5f3a\u5927\u7684\u514d\u8d39\u9009\u9879\uff0c\u80fd\u591f\u64ad\u653e\u51e0\u4e4e\u6240\u6709\u7684\u89c6\u9891\u6587\u4ef6\u683c\u5f0f\uff0c\u5305\u62ecMKV\u3002 \u7ed3\u8bba\uff1aVLC\u5a92\u4f53\u64ad\u653e\u5668\u662f\u5728Mac\u4e0a\u64ad\u653eMKV\u6587\u4ef6\u7684\u6d41\u884c\u9009\u62e9\uff0c\u63d0\u4f9b\u4e86\u7075\u6d3b\u6027\u548c\u5e7f\u6cdb\u7684\u64ad\u653e\u9009\u9879\u3002 \u65b9\u6cd53\uff1a&#128260; \u5c06MKV\u8f6c\u6362\u4e3a\u517c\u5bb9\u683c\u5f0f \u4f7f\u7528\u50cfHandBrake\u8fd9\u6837\u7684\u89c6\u9891\u8f6c\u6362\u5de5\u5177\u5c06MKV\u6587\u4ef6\u8f6c\u6362\u4e3a\u4e0eMac\u539f\u751f\u64ad\u653e\u5668\u517c\u5bb9\u7684\u683c\u5f0f\uff0c\u6bd4\u5982MP4\u6216MOV\u3002 \u5728HandBrake\u4e2d\u9009\u62e9\u9002\u5408\u60a8\u9700\u6c42\u7684\u8f93\u51fa\u9884\u8bbe\u3002 \u5f00\u59cb\u8f6c\u6362\u8fc7\u7a0b\u5e76\u7b49\u5f85\u5b8c\u6210\u3002 \u6ce8\uff1a\u8f6c\u6362\u6587\u4ef6\u53ef\u80fd\u4f1a\u5bfc\u81f4\u8d28\u91cf\u635f\u5931\u6216\u6839\u636e\u6587\u4ef6\u5927\u5c0f\u548c\u8f6c\u6362\u8bbe\u7f6e\u800c\u5bfc\u81f4\u5904\u7406\u65f6\u95f4\u53d8\u957f\u3002 \u7ed3\u8bba\uff1a\u5f53\u8f6f\u4ef6\u64ad\u653e\u5668\u4e0d\u88ab\u9996\u9009\u6216\u65e0\u6cd5\u4f7f\u7528\u65f6\uff0c\u8f6c\u6362\u662f\u4e00\u4e2a\u53ef\u884c\u7684\u6700\u540e\u624b\u6bb5\u3002 \u65b9\u6cd54\uff1a&#127760; \u4ece\u7f51\u7edc\u4e0a\u6d41\u5f0f\u4f20\u8f93MKV\u6587\u4ef6 \u4f7f\u7528Plex\u7b49\u8f6f\u4ef6\u5728\u672c\u5730\u670d\u52a1\u5668\u4e0a\u6258\u7ba1\u60a8\u7684MKV\u6587\u4ef6\u3002 \u5728\u60a8\u7684Mac\u4e0a\u8bbe\u7f6ePlex\u5a92\u4f53\u670d\u52a1\u5668\uff0c\u5e76\u5c06\u89c6\u9891\u6587\u4ef6\u6dfb\u52a0\u5230\u5e93\u4e2d\u3002 \u901a\u8fc7\u7f51\u9875\u6d4f\u89c8\u5668\u6216Plex\u7684\u5ba2\u6237\u7aef\u5e94\u7528\u7a0b\u5e8f\u8bbf\u95ee\u60a8\u7684\u5a92\u4f53\u3002 \u6ce8\uff1a\u8fd9\u79cd\u65b9\u6cd5\u5141\u8bb8\u60a8\u5c06\u5185\u5bb9\u6d41\u5f0f\u4f20\u8f93\u5230\u4e0d\u540c\u7684\u8bbe\u5907\u4e0a\uff0c\u5e76\u4e14\u9700\u8981\u4e00\u4e2a\u7a33\u5b9a\u7684\u5bb6\u5ead\u7f51\u7edc\u3002 \u7ed3\u8bba\uff1a\u4f7f\u7528Plex\u8fdb\u884c\u6d41\u5f0f\u4f20\u8f93\u662f\u4e00\u4e2a\u4f18\u96c5\u7684\u89e3\u51b3\u65b9\u6848\uff0c\u9002\u7528\u4e8e\u90a3\u4e9b\u62e5\u6709\u5927\u91cfMKV\u6587\u4ef6\u5e93\u5e76\u9700\u8981\u5728\u591a\u4e2a\u8bbe\u5907\u4e0a\u8bbf\u95ee\u7684\u7528\u6237\u3002 \u65b9\u6cd55\uff1a&#128260; \u4f7f\u7528\u5728\u7ebf\u8f6c\u6362\u670d\u52a1 \u5229\u7528\u5728\u7ebf\u670d\u52a1\u5982CloudConvert\uff0c\u65e0\u9700\u5b89\u88c5\u8f6f\u4ef6\u5373\u53ef\u8fdb\u884c\u6587\u4ef6\u8f6c\u6362\u3002 \u5c06\u60a8\u7684MKV\u6587\u4ef6\u4e0a\u4f20\u5230\u8f6c\u6362\u7f51\u7ad9\u3002 [&hellip;]"}