{"version":"1.0","provider_name":"CineD","provider_url":"https:\/\/staging.cined.dev\/jp\/","author_name":"Kiyoshi Inoue","author_url":"https:\/\/staging.cined.dev\/jp\/author\/kiyoshi\/","title":"Western Digital\u304cG-DRIVE mobile Pro SSD\u3092\u767a\u58f2 \u30fc 8K\u7de8\u96c6\u306b\u3082\u5bfe\u5fdc\u3067\u304d\u308b\u30dd\u30fc\u30bf\u30d6\u30ebSSD | CineD","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"g9deZE7qGr\"><a href=\"https:\/\/staging.cined.dev\/jp\/western-digital8k2tbssd\/\">Western Digital\u304cG-DRIVE mobile Pro SSD\u3092\u767a\u58f2 \u30fc 8K\u7de8\u96c6\u306b\u3082\u5bfe\u5fdc\u3067\u304d\u308b\u30dd\u30fc\u30bf\u30d6\u30ebSSD<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/staging.cined.dev\/jp\/western-digital8k2tbssd\/embed\/#?secret=g9deZE7qGr\" width=\"600\" height=\"338\" title=\"&#8220;Western Digital\u304cG-DRIVE mobile Pro SSD\u3092\u767a\u58f2 \u30fc 8K\u7de8\u96c6\u306b\u3082\u5bfe\u5fdc\u3067\u304d\u308b\u30dd\u30fc\u30bf\u30d6\u30ebSSD&#8221; &#8212; CineD\" data-secret=\"g9deZE7qGr\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" class=\"wp-embedded-content\"><\/iframe><script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\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:\/\/staging.cined.dev\/app\/wp-includes\/js\/wp-embed.js\n\/* ]]> *\/\n<\/script>\n","thumbnail_url":"https:\/\/www.cined.com\/content\/uploads\/2018\/11\/G-image-with-play-button-.jpg","thumbnail_width":1920,"thumbnail_height":1080,"description":"Western Digital\u304c8K\u7de8\u96c6\u306b\u3082\u5bfe\u5fdc\u3067\u304d\u308b\u9ad8\u901f\u3001\u5927\u5bb9\u91cf\u306e\u30dd\u30fc\u30bf\u30d6\u30ebSSD\u3001G-DRIVE mobile Pro SSD\u3092\u767a\u58f2\u3057\u3001InterBEE2018\u3067\u51fa\u5c55\u3057\u3066\u3044\u308b\u3002\u843d\u4e0b\u306b\u5bfe\u3059\u308b\u8010\u9707\u6027\u3082\u5f37\u304f\u3001\u4eca\u5f8c\u5897\u3048\u3066\u304f\u308b\u3067\u3042\u308d\u30464K\u30848K\u3067\u306e\u6620\u50cf\u5236\u4f5c\u306b\u5bfe\u5fdc\u3059\u308b\u30b9\u30c8\u30ec\u30fc\u30b8\u3060\u3002 Western Digital\u306f\u30cf\u30fc\u30c9\u30c7\u30a3\u30b9\u30af\u3092\u306f\u3058\u3081\u3068\u3059\u308b\u30b9\u30c8\u30ec\u30fc\u30b8\u3067\u6709\u540d\u306a\u4f1a\u793e\u3060\u304c\u3001\u30d7\u30ed\u7528\u9014\u306b\u306fG-Technology\u306e\u30d6\u30e9\u30f3\u30c9\u3067SSD\u3092\u306f\u3058\u3081\u3068\u3059\u308b\u30b9\u30c8\u30ec\u30fc\u30b8\u88fd\u54c1\u3092\u767a\u58f2\u3057\u3066\u3044\u308b\u3002\u305d\u306eG-Technology\u30d6\u30e9\u30f3\u30c9\u304b\u3089\u3001G-DRIVE mobile Pro SSD\u304c\u767a\u58f2\u3055\u308c\u305f\u3002\u6628\u5e74\u306eInterBEE\u3067G-DRIVE mobile SSD\u3092\u7d39\u4ecb\u3057\u305f\u304c\u3001\u4eca\u56de\u306f\u3053\u308c\u306bPro\u306e\u547c\u79f0\u304c\u8ffd\u52a0\u3055\u308c\u3001\u5f93\u6765\u304c560MB\/s\u306e\u8ee2\u9001\u901f\u5ea6\u3060\u3063\u305f\u306e\u306b\u5bfe\u3057\u30012800MB\/s\u3068\u9a5a\u7570\u7684\u306b\u901f\u5ea6\u304c\u30a2\u30c3\u30d7\u3057\u3066\u3044\u308b\u3002 \u9ad8\u901f\u5316\u306e\u76ee\u7684\u306f\u3082\u3061\u308d\u3093\u3001\u4eca\u5f8c\u5897\u3048\u3066\u304f\u308b\u3067\u3042\u308d\u30464K\u30848K\u306e\u53ce\u9332\u3067\u306e\u8a18\u9332\u30e1\u30c7\u30a3\u30a2\u3068\u3057\u3066\u306e\u7528\u9014\u3067\u30012800MB\/s\u306e\u8a18\u9332\u901f\u5ea6\u306f8K\u306e\u7d20\u6750\u3092\u76f4\u63a5\u7de8\u96c6\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u307b\u304b\u30011\u30c6\u30e9\u30d0\u30a4\u30c8\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u30927\u5206\u4ee5\u4e0b\u3067\u8ee2\u9001\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u308b\u3002\u305f\u3060\u3057\u5927\u304d\u3055\u306f\u5f93\u6765\u306eG-DRIVE mobile SSD\u306b\u6bd4\u3079\u3066\u304b\u306a\u308a\u5927\u304d\u304f\u306a\u3063\u3066\u3044\u308b\u3002\u3053\u308c\u306fSSD\u3092RAID\u306b\u3057\u3066\u9ad8\u901f\u5316\u3092\u56f3\u3063\u3066\u3044\u308b\u305f\u3081\u3002 \u307e\u305f\u904e\u9177\u306a\u74b0\u5883\u306e\u73fe\u5834\u3067\u3082\u5bfe\u5fdc\u3067\u304d\u308b\u3088\u3046\u3001\u9ad8\u3044\u8010\u885d\u6483\u6027\u3092\u6301\u3063\u3066\u304a\u308a\u30013m\u306e\u9ad8\u3055\u304b\u3089\u843d\u4e0b\u3057\u3066\u3082\u58ca\u308c\u308b\u3053\u3068\u306f\u306a\u3044\u3002\u306a\u304a\u30015\u5e74\u9593\u306e\u88fd\u54c1\u4fdd\u8a3c\u304c\u4ed8\u3044\u3066\u3044\u308b\u306e\u3082\u898b\u9003\u305b\u306a\u3044\u3002 \u30e6\u30cb\u30c3\u30c8\u306b\u306f1\u7cfb\u7d71\u306eThunderbolt 3\u30dd\u30fc\u30c8\u304c\u4ed8\u3044\u3066\u304a\u308a\u3001\u57fa\u672c\u7684\u306b\u30a2\u30c3\u30d7\u30eb\u306e\u30d1\u30bd\u30b3\u30f3\u306b\u5bfe\u5fdc\u3059\u308b\u304c\u3001\u5185\u90e8\u306e\u51e6\u7406\u306b\u3088\u308aWindows\u30d1\u30bd\u30b3\u30f3\u306b\u3082\u76f4\u63a5\u63a5\u7d9a\u3057\u3066\u4f7f\u7528\u3067\u304d\u308b\u3002 \u4ed5\u69d8\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3002 \u5bb9\u91cf\uff1a500GB\/1TB \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\uff1aThunderbolt 3\u30dd\u30fc\u30c8 \u8ee2\u9001\u901f\u5ea6:\u6700\u5927\u00a02800MB\/s \u4e92\u63db\u6027\uff1aMacOS 10.13\u4ee5\u964d\/Windows\u00ae 10\u00a0\uff08\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5fc5\u8981\uff09 \u30b5\u30a4\u30ba:112 x 80 x 17 mm \u30d1\u30c3\u30b1\u30fc\u30b8\u540c\u68b1\u7269:G-DRIVE mobile Pro SSD\/5m\u306eThunderbolt 3\u30b1\u30fc\u30d6\u30eb\uff0840Gbps\uff09\uff08x1\uff09\/\u30af\u30a4\u30c3\u30af\u30b9\u30bf\u30fc\u30c8\u30ac\u30a4\u30c9 \u4fa1\u683c\u306f\u56fd\u5185\u3067\u306e\u4fa1\u683c\u306f\u516c\u8868\u3055\u308c\u3066\u3044\u306a\u3044\u304c\u3001\u6d77\u5916\u3067\u306f500GB\u304c399.95\u30c9\u30eb\u30011TB\u304c699.95\u30c9\u30eb\u3068\u3055\u308c\u3066\u3044\u308b\u3002 \u88fd\u54c1\u306eWeb\u30b5\u30a4\u30c8\u306f\u3053\u3061\u3089\u3002 \u95a2\u9023\u5546\u54c1 G-Technology(HGST) G-DRIVE mobile SSD R-Series 500GB\u30103\u5e74\u4fdd\u8a3c\u3011 0G06052AZ"}