blob: 81d056c98862d9a0a2960322827dfcfd9fc07628 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
---
title: MediaStream.id
slug: Web/API/MediaStream/id
translation_of: Web/API/MediaStream/id
---
<p>{{APIRef("WebRTC")}}</p>
<p><code><strong>MediaStream.id</strong></code>は読み取り専用プロパティであり、このオブジェクトの固有識別子(GUID)である36文字で表現される{{domxref("DOMString")}}を返します。</p>
<h2 id="Syntax" name="Syntax">文法</h2>
<pre class="syntaxbox">var <em>id</em> = <em>mediaStream</em>.id;
</pre>
<h2 id="例">例</h2>
<pre class="brush: js"><code class="language-html">var p = navigator.mediaDevices.getUserMedia({ audio: true, video: true });
p.then(function(stream) {
console.log(stream.id);
};)
</code></pre>
<h2 id="仕様">仕様</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">仕様</th>
<th scope="col">状況</th>
<th scope="col">コメント</th>
</tr>
<tr>
<td>{{SpecName('Media Capture', '#widl-MediaStream-id', 'MediaStream.id')}}</td>
<td>{{Spec2('Media Capture')}}</td>
<td>初版</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザ互換性</h2>
<p>{{Compat("api.MediaStream.id")}}</p>
<h2 id="関連項目">関連項目</h2>
<ul>
<li>{{domxref("MediaStream")}}インタフェース</li>
</ul>
|