-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,44 @@ | ||
--- | ||
title: BlobEvent | ||
slug: Web/API/BlobEvent | ||
l10n: | ||
sourceCommit: 15d7838061736509d08d642611bd26c1251c0500 | ||
--- | ||
|
||
{{APIRef("Media Capture and Streams")}} | ||
{{APIRef("MediaStream Recording")}} | ||
|
||
**`BlobEvent`** インターフェイスは、{{domxref("Blob")}} に関連付けられたイベントを表します。 これらの blob は、一般的にメディアコンテンツと関連付けられますが、必ずしもそうとは限りません。 | ||
|
||
{{InheritanceDiagram}} | ||
|
||
## コンストラクター | ||
|
||
- {{domxref("BlobEvent.BlobEvent", "BlobEvent()")}} | ||
- : 与えられた引数で `BlobEvent` イベントを生成する。 | ||
- : 与えられた引数で `BlobEvent` イベントを生成します。 | ||
|
||
## プロパティ | ||
## インスタンスプロパティ | ||
|
||
_自身の親 {{domxref("Event")}} からのプロパティを継承します。_ | ||
_親である {{domxref("Event")}} からの継承したプロパティがあります。_ | ||
|
||
- {{domxref("BlobEvent.data")}} {{readonlyInline}} | ||
- {{domxref("BlobEvent.data")}} {{ReadOnlyInline}} | ||
- : イベントと関連付けられたデータを表す {{domxref("Blob")}}。 イベントは、特定の {{domxref("Blob")}} で何かが起こることにより、{{domxref("EventTarget")}} 上で発生します。 | ||
- {{domxref("BlobEvent.timecode")}} {{readonlyinline}} | ||
- : `data` 内の最初のチャンクのタイムスタンプと、このレコーダーによって生成された最初の `BlobEvent` 内の最初のチャンクのタイムスタンプとの差を示す {{domxref("DOMHighResTimeStamp")}}。 最初に生成された `BlobEvent` の `timecode` はゼロである必要はないことに注意してください。 | ||
- {{domxref("BlobEvent.timecode")}} {{ReadOnlyInline}} | ||
- : `data` 内の最初のチャンクのタイムスタンプと、このレコーダーによって生成された最初の `BlobEvent` 内の最初のチャンクのタイムスタンプとの差を示す {{domxref("DOMHighResTimeStamp")}} です。生成されたばかりの `BlobEvent` の `timecode` はゼロとは限らないことに注意してください。 | ||
|
||
## メソッド | ||
## インスタンスメソッド | ||
|
||
固有のメソッドはありません。 _自身の親 {{domxref("Event")}} からのメソッドを継承します。_ | ||
_固有のメソッドはありません。親である {{domxref("Event")}} から継承したメソッドがあります。_ | ||
|
||
## 仕様 | ||
## 仕様書 | ||
|
||
{{Specifications}} | ||
|
||
## ブラウザーの実装状況 | ||
## ブラウザーの互換性 | ||
|
||
{{Compat("api.BlobEvent")}} | ||
{{Compat}} | ||
|
||
## 関連項目 | ||
## 関連情報 | ||
|
||
- {{domxref("Event")}} 基本インターフェイス | ||
- [MediaStream Recording API](/ja/docs/Web/API/MediaStream_Recording_API): メディアのチャンクの準備ができるたびに `BlobEvent` オブジェクトを送信します。 | ||
- [MediaStream Recording API の使用](/ja/docs/Web/API/MediaStream_Recording_API/Using_the_MediaStream_Recording_API) | ||
- [メディアストリーム収録 API](/ja/docs/Web/API/MediaStream_Recording_API): メディアのチャンクの準備ができるたびに `BlobEvent` オブジェクトを送信します。 | ||
- [メディアストリーム収録 API の使用](/ja/docs/Web/API/MediaStream_Recording_API/Using_the_MediaStream_Recording_API) |