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

{{domxref("SourceBuffer")}} インターフェイスの removeAsync() メソッドは、特定の時間範囲内で見つかった SourceBuffer のメディアセグメントから非同期的に削除するプロセスを開始します。 指定された時間範囲のバッファが削除されたときに満たされる {{jsxref("Promise")}} が返されます。

+ +

このメソッドは、{{domxref("SourceBuffer.updating", "updating")}} が false の場合にのみ呼び出すことができます。 そうでない場合は、代わりに {{domxref("SourceBuffer.abort", "abort()")}} を呼び出します。

+ +

構文

+ +
removePromise = sourceBuffer.removeAsync(start, end);
+ +

パラメーター

+ +
+
start
+
時間範囲の始まりを秒単位で表す double 型。
+
end
+
時間範囲の終わりを秒単位で表す double 型。
+
+ +

戻り値

+ +

指定された時間範囲のバッファが SourceBuffer から削除されると、完了ハンドラが実行される {{jsxref("Promise")}}。

+ +

+ +

この例では、指定された SourceBuffer の内容を単純にクリアする非同期関数 emptySourceBuffer() を定義します。

+ +
async function emptySourceBuffer(msBuffer) {
+  await msBuffer.removeAsync(0, Infinity).catch(function(e) {
+    handleException(e);
+  }
+}
+
+ +

仕様

+ +

現在、MSE 仕様の一部ではありません。

+ + + + + + + + + + + + + + +
仕様状態コメント
{{SpecName('Media Source Extensions')}}{{Spec2('Media Source Extensions')}}初期定義
+ +

ブラウザーの互換性

+ +
+ + +

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

+
+ +

関連情報

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