From 8b330dbb4001560bf9ed41f55c2a972476da68a6 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Sun, 28 Jul 2024 14:34:59 +0900 Subject: [PATCH] =?UTF-8?q?2024/04/11=20=E6=99=82=E7=82=B9=E3=81=AE?= =?UTF-8?q?=E8=8B=B1=E8=AA=9E=E7=89=88=E3=81=AB=E5=9F=BA=E3=81=A5=E3=81=8D?= =?UTF-8?q?=E6=96=B0=E8=A6=8F=E7=BF=BB=E8=A8=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../web/api/htmlmediaelement/remote/index.md | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 files/ja/web/api/htmlmediaelement/remote/index.md diff --git a/files/ja/web/api/htmlmediaelement/remote/index.md b/files/ja/web/api/htmlmediaelement/remote/index.md new file mode 100644 index 00000000000000..1bcde50661de86 --- /dev/null +++ b/files/ja/web/api/htmlmediaelement/remote/index.md @@ -0,0 +1,34 @@ +--- +title: "HTMLMediaElement: remote プロパティ" +short-title: remote +slug: Web/API/HTMLMediaElement/remote +l10n: + sourceCommit: 0b6bfb8a3a03de5956dd1cec4b47e5e37078149d +--- + +{{APIRef("Remote Playback API")}} + +**`remote`** は {{domxref("HTMLMediaElement")}} インターフェイスの読み取り専用プロパティで、このメディア要素に関連付けられた {{domxref("RemotePlayback")}} オブジェクトを返します。`RemotePlayback` オブジェクトは、メディアを再生するリモート端末を制御することができます。 + +## 値 + +このメディア要素に関連付けられた {{domxref("RemotePlayback")}} オブジェクトです。 + +## 例 + +```js +const el = document.createElement("audio"); +const remotePlayback = el.remote; + +remotePlayback.watchAvailability((availability) => { + // 利用できる状況が変わったら何かを行う +}); +``` + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}}