From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- .../api/sourcebuffer/appendwindowend/index.html | 91 ++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 files/ja/web/api/sourcebuffer/appendwindowend/index.html (limited to 'files/ja/web/api/sourcebuffer/appendwindowend') diff --git a/files/ja/web/api/sourcebuffer/appendwindowend/index.html b/files/ja/web/api/sourcebuffer/appendwindowend/index.html new file mode 100644 index 0000000000..9e9beb07de --- /dev/null +++ b/files/ja/web/api/sourcebuffer/appendwindowend/index.html @@ -0,0 +1,91 @@ +--- +title: SourceBuffer.appendWindowEnd +slug: Web/API/SourceBuffer/appendWindowEnd +tags: + - API + - Audio + - Experimental + - MSE + - Media Source Extensions + - Property + - Reference + - SourceBuffer + - Video + - appendWindowEnd +translation_of: Web/API/SourceBuffer/appendWindowEnd +--- +
{{APIRef("Media Source Extensions")}}{{SeeCompatTable}}{{draft}}
+ +

{{domxref("SourceBuffer")}} インターフェイスの appendWindowEnd プロパティは、追加ウィンドウ(append window)の終わりのタイムスタンプを制御します。 タイムスタンプの範囲は、SourceBuffer に追加されるメディアデータをフィルターするために使用できます。 この範囲内のタイムスタンプを持つコード化されたメディアフレームは追加されますが、範囲外のものは除外されます。

+ +

appendWindowEnd のデフォルト値は正の無限大です。

+ +

構文

+ +
var myAppendWindowEnd = sourceBuffer.appendWindowEnd;
+
+sourceBuffer.appendWindowEnd = 120.0;
+
+ +

+ +

追加ウィンドウの終了時間を秒単位で示す double 型。

+ +

例外

+ +

このプロパティに新しい値を設定すると、次の例外がスローされる場合があります。

+ + + + + + + + + + + + + + + + + + +
例外説明
InvalidAccessError値を {{domxref("SourceBuffer.appendWindowStart")}} 以下、または NaN に設定しようとしました。
InvalidStateErrorこの {{domxref("SourceBuffer")}} オブジェクトが更新中(つまり、その {{domxref("SourceBuffer.updating")}} プロパティが現在 true)であるか、この SourceBuffer が {{domxref("MediaSource")}} から取り除かれています。
+ +

+ +

未定

+ +

仕様

+ + + + + + + + + + + + + + +
仕様状態コメント
{{SpecName('Media Source Extensions', '#idl-def-sourcebuffer-appendwindowend', 'appendWindowEnd')}}{{Spec2('Media Source Extensions')}}初期定義
+ +

ブラウザーの互換性

+ +
+ + +

{{Compat("api.SourceBuffer.appendWindowEnd")}}

+
+ +

関連情報

+ + -- cgit v1.2.3-54-g00ecf