diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/mediasource/index.html | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/api/mediasource/index.html')
-rw-r--r-- | files/ja/web/api/mediasource/index.html | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/files/ja/web/api/mediasource/index.html b/files/ja/web/api/mediasource/index.html new file mode 100644 index 0000000000..a6d6930a6c --- /dev/null +++ b/files/ja/web/api/mediasource/index.html @@ -0,0 +1,83 @@ +--- +title: MediaSource +slug: Web/API/MediaSource +translation_of: Web/API/MediaSource +--- +<p>{{SeeCompatTable}}</p> + +<p><strong><code style="font-size: 14.44444465637207px;">MediaSource</code></strong><code style="font-size: 14.44444465637207px;">インターフェイスは、</code><span style="font-size: 14px; line-height: 1.5;">{{domxref("HTMLMediaElement")}}のデータを扱っています。</span><span style="font-size: 14px; line-height: 1.5;">MediaSourceをオブジェクトは、ユーザが再生する</span>{{domxref("HTMLMediaElement")}}<span style="font-size: 14px; line-height: 1.5;">につけることができます。</span></p> + +<h2 id="プロパティ">プロパティ</h2> + +<p><em>{{domxref("EventTarget")}}からプロパティを継承しています。</em></p> + +<dl> + <dt>{{domxref("MediaSource.sourceBuffers")}}<span style="font-size: 14px; line-height: 1.5;">{{readonlyInline}}</span></dt> + <dd>{{domxref("SourceBufferList")}}から成り立っています。</dd> + <dt>{{domxref("MediaSource.activeSourceBuffers")}} {{readonlyInline}}</dt> + <dd>{{domxref("SourceBufferList")}} <span style="font-size: 14px; line-height: 1.5;">から成り立っています。</span></dd> + <dt>{{domxref("MediaSource.readyState")}} {{readonlyInline}}</dt> + <dd>値を列挙します。</dd> + <dt><em>{{domxref("MediaSource.duration")}}</em></dt> + <dd><span>浮動小数点型です。</span></dd> +</dl> + +<h2 id="コンストラクタ">コンストラクタ</h2> + +<dl> + <dt>{{domxref("MediaSource.MediaSource", "MediaSource()")}} {{readonlyInline}}</dt> + <dd>コンストラクタはソースバッファと関連しない<span style="font-size: 14px; line-height: 1.5;">MediaSource</span><span style="font-size: 14px; line-height: 1.5;">オブジェクトを返します</span></dd> +</dl> + +<h2 id="Staticなメソッド">Staticなメソッド</h2> + +<dl> + <dt>{{domxref("MediaSource.isTypeSupported()")}}</dt> + <dd>与えられたMIMEタイプが完全に実行できるかどうかの<span style="font-size: 14px; line-height: 1.5;">{{domxref("Boolean")}}型を返します。</span></dd> +</dl> + +<h2 id="メソッド">メソッド</h2> + +<p><em>親インターフェイス{{domxref("EventTarget")}}から、プロパティを継承しています。 </em></p> + +<dl> + <dt>{{domxref("MediaSource.addSourceBuffer()")}}</dt> + <dd><code style="font-size: 14.44444465637207px;">MediaSource</code> オブジェクト<span style="font-size: 14px; line-height: 1.5;">に関連づけて作成し、 , {{domxref("SourceBuffer")}} に与えられたMIMEタイプを返します。</span> + <dl> + <dt></dt> + <dt>{{domxref("MediaSource.removeSourceBuffer()")}}</dt> + <dd>メディアソースオブジェクトから、与えられた<span style="font-size: 14px; line-height: 1.5;"> {{domxref("SourceBuffer")}} を削除します。</span></dd> + <dt>{{domxref("MediaSource.endOfStream()")}}</dt> + <dd>ストリームの終わりを合図します。最後にはerrorを発するでしょう。</dd> + </dl> + </dd> +</dl> + +<h2 id="仕様書">仕様書</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Specification</th> + <th scope="col">Status</th> + <th scope="col">Comment</th> + </tr> + <tr> + <td>{{SpecName('Media Source Extensions', '#mediasource', 'MediaSource')}}</td> + <td>{{Spec2('Media Source Extensions')}}</td> + <td>Initial definition.</td> + </tr> + </tbody> +</table> + +<h2 id="ブラウザの互換性">ブラウザの互換性</h2> + +<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div> + +<div>{{Compat("api.MediaSource")}}</div> + +<h2 id="関連項目">関連項目</h2> + +<ul> + <li>関連するインターフェイス: {{domxref("SourceBuffer")}} と{{domxref("SourceBufferList")}}.</li> +</ul> |