Skip to content

Commit

Permalink
2024/04/11 時点の英語版に基づき新規翻訳
Browse files Browse the repository at this point in the history
  • Loading branch information
mfuji09 committed Jul 31, 2024
1 parent 347ab49 commit 6fc00bf
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions files/ja/web/api/htmlmediaelement/remote/index.md
Original file line number Diff line number Diff line change
@@ -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}}

0 comments on commit 6fc00bf

Please sign in to comment.