From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/ja/web/api/blobevent/blobevent/index.html | 62 +++++++++++++++++++++ files/ja/web/api/blobevent/data/index.html | 52 ++++++++++++++++++ files/ja/web/api/blobevent/index.html | 73 +++++++++++++++++++++++++ files/ja/web/api/blobevent/timecode/index.html | 48 ++++++++++++++++ 4 files changed, 235 insertions(+) create mode 100644 files/ja/web/api/blobevent/blobevent/index.html create mode 100644 files/ja/web/api/blobevent/data/index.html create mode 100644 files/ja/web/api/blobevent/index.html create mode 100644 files/ja/web/api/blobevent/timecode/index.html (limited to 'files/ja/web/api/blobevent') diff --git a/files/ja/web/api/blobevent/blobevent/index.html b/files/ja/web/api/blobevent/blobevent/index.html new file mode 100644 index 0000000000..644b631e57 --- /dev/null +++ b/files/ja/web/api/blobevent/blobevent/index.html @@ -0,0 +1,62 @@ +--- +title: BlobEvent() +slug: Web/API/BlobEvent/BlobEvent +tags: + - API + - BlobEvent + - Constructor + - DOM + - DOM Reference + - Experimental + - Media Stream Encoding + - Reference +translation_of: Web/API/BlobEvent/BlobEvent +--- +

{{APIRef("Media Capture and Streams")}}{{seeCompatTable}}

+ +

BlobEvent() コンストラクターは、新たに生成され {{domxref("Blob")}} に関連付けられた {{domxref("BlobEvent")}} オブジェクトを返します。

+ +

構文

+ +
blobEvent = new BlobEvent({data: aSpecificBlob}[, timecode]);
+
+ +

引数

+ +

BlobEvent() コンストラクターは、{{domxref("Event.Event", "Event()")}} からの引数も継承します。

+ +
+
data
+
イベントに関連付けられた {{domxref("Blob")}}。
+
timecode {{optional_inline}}
+
blob イベントの初期化に使用される {{domxref("DOMHighResTimeStamp")}}。
+
+ +

仕様

+ + + + + + + + + + + + + + +
仕様書策定状況備考
{{SpecName('MediaStream Recording', '#dom-blobevent-blobevent', 'BlobEvent: BlobEvent')}}{{Spec2('MediaStream Recording')}}初期定義。
+ +

ブラウザーの実装状況

+ + + +

{{Compat("api.BlobEvent.BlobEvent")}}

+ +

関連項目

+ + diff --git a/files/ja/web/api/blobevent/data/index.html b/files/ja/web/api/blobevent/data/index.html new file mode 100644 index 0000000000..867484937b --- /dev/null +++ b/files/ja/web/api/blobevent/data/index.html @@ -0,0 +1,52 @@ +--- +title: BlobEvent.data +slug: Web/API/BlobEvent/data +tags: + - API + - BlobEvent + - DOM + - DOM Reference + - Experimental + - Media Stream Recording + - Property + - Reference +translation_of: Web/API/BlobEvent/data +--- +

{{ apiref("Media Capture and Streams") }}

+ +

{{ SeeCompatTable() }}

+ +

BlobEvent.data 読み取り専用プロパティは、イベントに関連付けられた {{domxref("Blob")}} を表します。

+ +

構文

+ +
associatedBlob = BlobEvent.data
+ +

仕様

+ + + + + + + + + + + + + + +
仕様書策定状況備考
{{SpecName('MediaStream Recording', '#dom-blobevent-data', 'BlobEvent.data')}}{{Spec2('MediaStream Recording')}}初期定義。
+ +

ブラウザーの実装状況

+ + + +

{{Compat("api.BlobEvent.data")}}

+ +

関連項目

+ + diff --git a/files/ja/web/api/blobevent/index.html b/files/ja/web/api/blobevent/index.html new file mode 100644 index 0000000000..7542b6b92b --- /dev/null +++ b/files/ja/web/api/blobevent/index.html @@ -0,0 +1,73 @@ +--- +title: BlobEvent +slug: Web/API/BlobEvent +tags: + - API + - Audio + - Blob + - Interface + - Media + - MediaStream Recording + - MediaStream Recording API + - Recording Media + - Reference + - Video + - events +translation_of: Web/API/BlobEvent +--- +

{{APIRef("Media Capture and Streams")}}

+ +

BlobEvent インターフェイスは、{{domxref("Blob")}} に関連付けられたイベントを表します。 これらの blob は、一般的にメディアコンテンツと関連付けられますが、必ずしもそうとは限りません。

+ +

コンストラクター

+ +
+
{{domxref("BlobEvent.BlobEvent", "BlobEvent()")}}
+
与えられた引数で BlobEvent イベントを生成する。
+
+ +

プロパティ

+ +

自身の親 {{domxref("Event")}} からのプロパティを継承します。

+ +
+
{{domxref("BlobEvent.data")}} {{readonlyInline}}
+
イベントと関連付けられたデータを表す {{domxref("Blob")}}。 イベントは、特定の {{domxref("Blob")}} で何かが起こることにより、{{domxref("EventTarget")}} 上で発生します。
+
{{domxref("BlobEvent.timecode")}} {{readonlyinline}}
+
data 内の最初のチャンクのタイムスタンプと、このレコーダーによって生成された最初の BlobEvent 内の最初のチャンクのタイムスタンプとの差を示す {{domxref("DOMHighResTimeStamp")}}。 最初に生成された BlobEventtimecode はゼロである必要はないことに注意してください。
+
+ +

メソッド

+ +

固有のメソッドはありません。 自身の親 {{domxref("Event")}} からのメソッドを継承します。

+ +

仕様

+ + + + + + + + + + + + + + +
仕様書策定状況備考
{{SpecName('MediaStream Recording', '#blobevent-section', 'BlobEvent')}}{{Spec2('MediaStream Recording')}}初期定義。
+ +

ブラウザーの実装状況

+ + + +

{{Compat("api.BlobEvent")}}

+ +

関連項目

+ + diff --git a/files/ja/web/api/blobevent/timecode/index.html b/files/ja/web/api/blobevent/timecode/index.html new file mode 100644 index 0000000000..fa0a0a4287 --- /dev/null +++ b/files/ja/web/api/blobevent/timecode/index.html @@ -0,0 +1,48 @@ +--- +title: BlobEvent.timecode +slug: Web/API/BlobEvent/timecode +tags: + - API + - BlobEvent + - Media + - Media Stream Recording + - Property + - Reference +translation_of: Web/API/BlobEvent/timecode +--- +

{{SeeCompatTable}}{{APIRef("Media Capture and Streams")}}

+ +

{{domxref("BlobEvent")}} インタフェースの timecode 読み取り専用プロパティは、データ内の最初のチャンクのタイムスタンプと、このレコーダによって生成された最初の BlobEvent 内の最初のチャンクのタイムスタンプとの差を示す {{domxref("DOMHighResTimeStamp")}} です。 最初に生成された BlobEventtimecode はゼロである必要はないことに注意してください。

+ +

構文

+ +
var timecode = BlobEvent.timecode
+ +

+ +

{{domxref("DOMHighResTimeStamp")}}。

+ +

仕様

+ + + + + + + + + + + + + + +
仕様書策定状況備考
{{SpecName('MediaStream Recording','#dom-blobevent-timecode','timecode')}}{{Spec2('MediaStream Recording')}}初期定義。
+ +

ブラウザーの実装状況

+ +
+ + +

{{Compat("api.BlobEvent.timecode")}}

+
-- cgit v1.2.3-54-g00ecf