{"version":"1.0","provider_name":"\u5982\u4f55\u64cd\u4f5c & \u6700\u4f73\u8f6f\u4ef6","provider_url":"https:\/\/howto.ping.fm\/zh\/","author_name":"\u5982\u4f55\u64cd\u4f5c & \u6700\u4f73\u8f6f\u4ef6","author_url":"https:\/\/howto.ping.fm\/zh\/","title":"\u89c6\u9891\u4fee\u590d\u5168\u9762\u6307\u5357","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"6amHZKHqfZ\"><a href=\"https:\/\/howto.ping.fm\/zh\/comprehensive-guide-to-video-repair\/\">\u89c6\u9891\u4fee\u590d\u7efc\u5408\u6307\u5357<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/howto.ping.fm\/zh\/comprehensive-guide-to-video-repair\/embed\/#?secret=6amHZKHqfZ\" width=\"600\" height=\"338\" title=\"&#8220;\u89c6\u9891\u4fee\u590d\u7efc\u5408\u6307\u5357&#8221; &#8212; \u5982\u4f55\u64cd\u4f5c &amp; \u6700\u4f73\u8f6f\u4ef6\" data-secret=\"6amHZKHqfZ\" 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","description":"\u89c6\u9891\u4fee\u590d\u7efc\u5408\u6307\u5357 \u89c6\u9891\u6587\u4ef6\u662f\u6211\u4eec\u6570\u5b57\u751f\u6d3b\u4e2d\u7684\u91cd\u8981\u7ec4\u6210\u90e8\u5206\uff0c\u8bb0\u5f55\u4e86\u96be\u5fd8\u7684\u65f6\u523b\u3001\u5b9d\u8d35\u7684\u6559\u7a0b\u548c\u91cd\u8981\u7684\u4e8b\u4ef6\u3002\u7136\u800c\uff0c\u9047\u5230\u635f\u574f\u3001\u635f\u574f\u6216\u65e0\u6cd5\u64ad\u653e\u7684\u89c6\u9891\u53ef\u80fd\u4f1a\u4ee4\u4eba\u6cae\u4e27\u3002\u5e78\u8fd0\u7684\u662f\uff0c\u6709\u6709\u6548\u7684\u89e3\u51b3\u65b9\u6848\u53ef\u4ee5\u4fee\u590d\u8fd9\u4e9b\u6587\u4ef6\u5e76\u6062\u590d\u5176\u529f\u80fd\u3002\u672c\u7efc\u5408\u6307\u5357\u5c06\u5f15\u5bfc\u60a8\u901a\u8fc7\u4f7f\u7528\u4e0d\u540c\u5de5\u5177\u7684\u5404\u79cd\u65b9\u6cd5\u4fee\u590d\u89c6\u9891\uff0c\u5305\u62ec\u5de7\u5999\u7684\u5728\u7ebf\u89c6\u9891\u4fee\u590d\u5de5\u5177\u3001\u4e13\u4e1a\u8f6f\u4ef6\u548c\u6807\u51c6\u6545\u969c\u6392\u9664\u6280\u672f\u3002 1 \u5e38\u89c1\u60c5\u51b5\uff1a &#8216;\u89c6\u9891\u65e0\u6cd5\u64ad\u653e&#8217;\u7531\u4e8e\u683c\u5f0f\u95ee\u9898 &#128201; \u53d1\u73b0\u60a8\u7684\u89c6\u9891\u6587\u4ef6\u65e0\u6cd5\u64ad\u653e\u662f\u5e38\u89c1\u60c5\u51b5\u3002\u901a\u5e38\uff0c\u8fd9\u662f\u56e0\u4e3a\u89c6\u9891\u683c\u5f0f\u4e0d\u88ab\u60a8\u7684\u5a92\u4f53\u64ad\u653e\u5668\u652f\u6301\u3002 \u9047\u5230\u8bf8\u5982\u2018\u4e0d\u652f\u6301\u7684\u6587\u4ef6\u683c\u5f0f\u2019\u4e4b\u7c7b\u7684\u6d88\u606f\u53ef\u80fd\u4f1a\u975e\u5e38\u4ee4\u4eba\u6cae\u4e27\u3002 \u4e3a\u4e86\u89e3\u51b3\u8fd9\u4e2a\u95ee\u9898\uff0c\u60a8\u53ef\u80fd\u9700\u8981\u5c06\u89c6\u9891\u6587\u4ef6\u8f6c\u6362\u4e3a\u4e0e\u60a8\u7684\u5a92\u4f53\u64ad\u653e\u5668\u517c\u5bb9\u7684\u683c\u5f0f\uff0c\u6216\u4f7f\u7528\u53ef\u9760\u7684\u89c6\u9891\u4fee\u590d\u5de5\u5177\u4fee\u590d\u73b0\u6709\u683c\u5f0f\u3002 &#8216;\u4ece\u5907\u4efd\u6062\u590d\u540e\u7684\u89c6\u9891\u6587\u4ef6\u635f\u574f&#8217; &#128190; \u4ece\u5907\u4efd\u6062\u590d\u89c6\u9891\u6587\u4ef6\u6709\u65f6\u4f1a\u5bfc\u81f4\u635f\u574f\u3002 \u60a8\u53ef\u80fd\u5728\u6062\u590d\u540e\u5f97\u5230\u4e0d\u5b8c\u6574\u6216\u635f\u574f\u7684\u89c6\u9891\u6587\u4ef6\u3002 \u8fd9\u79cd\u60c5\u51b5\u9700\u8981\u4f7f\u7528\u6709\u6548\u7684\u89c6\u9891\u4fee\u590d\u5de5\u5177\u6765\u5904\u7406\u635f\u574f\u7684\u6587\u4ef6\u5e76\u5c06\u5176\u6062\u590d\u5230\u539f\u59cb\u72b6\u6001\u3002 &#8216;\u97f3\u9891\u4e0d\u540c\u6b65&#8217;\u89c6\u9891 &#127925; \u7ecf\u5386\u97f3\u89c6\u9891\u540c\u6b65\u95ee\u9898\u53ef\u80fd\u4f1a\u7834\u574f\u6574\u4e2a\u89c6\u9891\u89c2\u770b\u4f53\u9a8c\u3002 \u6b64\u95ee\u9898\u53ef\u80fd\u662f\u7531\u4e8e\u7f16\u7801\u8fc7\u7a0b\u4e2d\u7684\u6545\u969c\u6216\u89c6\u9891\u6587\u4ef6\u4e2d\u7684\u8f7b\u5fae\u635f\u574f\u9020\u6210\u7684\u3002 \u4f7f\u7528\u4e13\u4e1a\u7684\u89c6\u9891\u7f16\u8f91\u8f6f\u4ef6\u6216\u4e13\u7528\u7684\u89c6\u9891\u4fee\u590d\u5de5\u5177\u53ef\u4ee5\u5e2e\u52a9\u89e3\u51b3\u540c\u6b65\u95ee\u9898\u3002 2 \u9010\u6b65\u6307\u5357\u3002\u89c6\u9891\u4fee\u590d\uff1a \u65b9\u6cd5 1\uff1a\u4f7f\u7528 Clever \u5728\u7ebf\u514d\u8d39\u89c6\u9891\u4fee\u590d\u5de5\u5177 &#127760; \u7b2c\u4e00\u6b65\u662f\u6253\u5f00Clever \u5728\u7ebf\u514d\u8d39\u89c6\u9891\u4fee\u590d\u5de5\u5177\u7f51\u7ad9\u3002 \u70b9\u51fb &#8216;\u4e0a\u4f20\u6587\u4ef6&#8217; \u6309\u94ae\uff0c\u4ece\u60a8\u7684\u8ba1\u7b97\u673a\u4e2d\u9009\u62e9\u635f\u574f\u7684\u89c6\u9891\u6587\u4ef6\u3002 \u6587\u4ef6\u4e0a\u4f20\u540e\uff0c\u70b9\u51fb &#8216;\u4fee\u590d&#8217; \u6309\u94ae\u542f\u52a8\u89c6\u9891\u4fee\u590d\u8fc7\u7a0b\u3002 \u8fc7\u7a0b\u5b8c\u6210\u540e\u4e0b\u8f7d\u4fee\u590d\u540e\u7684\u6587\u4ef6\uff0c\u5e76\u68c0\u67e5\u89c6\u9891\u662f\u5426\u6b63\u786e\u64ad\u653e\u3002 \u6ce8\u610f\uff1a \u6b64\u5de5\u5177\u53ef\u4ee5\u6709\u6548\u4fee\u590d\u5927\u591a\u6570\u5e38\u89c1\u7684\u89c6\u9891\u6587\u4ef6\u635f\u574f\u3002 \u7ed3\u8bba\uff1a \u4f7f\u7528\u5728\u7ebf\u89c6\u9891\u4fee\u590d\u5de5\u5177\u662f\u4e00\u79cd\u7b80\u5355\u6709\u6548\u7684\u65b9\u6cd5\uff0c\u53ef\u4ee5\u5728\u4e0d\u5b89\u88c5\u4efb\u4f55\u8f6f\u4ef6\u7684\u60c5\u51b5\u4e0b\u4fee\u590d\u5404\u79cd\u89c6\u9891\u95ee\u9898\u3002 \u65b9\u6cd5 2\uff1a\u4f7f\u7528 VLC \u5a92\u4f53\u64ad\u653e\u5668\u4fee\u590d\u89c6\u9891 &#127909; \u5728\u60a8\u7684\u8ba1\u7b97\u673a\u4e0a\u6253\u5f00VLC \u5a92\u4f53\u64ad\u653e\u5668\u3002 \u8f6c\u5230 &#8216;\u5a92\u4f53&#8217; \u5e76\u4ece\u4e0b\u62c9\u83dc\u5355\u4e2d\u9009\u62e9 &#8216;\u8f6c\u6362\/\u4fdd\u5b58&#8217;\u3002 \u5728\u5f39\u51fa\u7a97\u53e3\u4e2d\uff0c\u6dfb\u52a0\u635f\u574f\u7684\u89c6\u9891\u6587\u4ef6\u5e76\u70b9\u51fb &#8216;\u8f6c\u6362\/\u4fdd\u5b58&#8217;\u3002 \u9009\u62e9\u8f6c\u6362\u6240\u9700\u7684\u914d\u7f6e\u6587\u4ef6\uff0c\u5e76\u8bbe\u7f6e\u8f93\u51fa\u6587\u4ef6\u7684\u76ee\u6807\u6587\u4ef6\u5939\u3002 \u70b9\u51fb &#8216;\u5f00\u59cb&#8217; [&hellip;]","thumbnail_url":"https:\/\/www.ping.fm\/howto\/wp-content\/uploads\/ai\/Comprehensive-Guide-to-Video-Repair.jpg"}