blob: 97a6b5262d13a7655526fe7c7789b43487802dbb (
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
50
51
52
53
54
55
56
57
58
59
60
|
---
title: MediaStreamTrack.readyState
slug: Web/API/MediaStreamTrack/readyState
tags:
- API
- Media Capture and Streams
- MediaStreamTrack
- Property
- Read-only
- Reference
translation_of: Web/API/MediaStreamTrack/readyState
---
<div>{{APIRef("Media Capture and Streams")}}</div>
<p><code><strong>MediaStreamTrack.readyState</strong></code> 읽기 전용 속성은 트랙의 상태를 나타내는 열거형 값을 반환합니다.</p>
<h2 id="구문">구문</h2>
<pre class="syntaxbox">const <em>state</em> = <em>track</em>.readyState</pre>
<h3 id="값">값</h3>
<p>다음의 두 값 중 하나입니다.</p>
<ul>
<li><code>"live"</code>는 입력이 연결됐으며 트랙이 실시간 데이터를 받는 중임을 나타냅니다. 이 때, 데이터 출력은 {{domxref("MediaStreamTrack.enabled")}} 속성을 사용해 켜거나 끌 수 있습니다.</li>
<li><code>"ended"</code>는 입력이 더 이상 데이터를 제공하지 않으며 앞으로도 새로운 데이터를 제공하지 않을 것임을 나타냅니다.</li>
</ul>
<h2 id="Specifications" name="Specifications">명세</h2>
<table class="standard-table" style="height: 49px; width: 1000px;">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{ SpecName('Media Capture', '#dom-mediastreamtrack-readystate', 'MediaStreamTrack.readyState') }}</td>
<td>{{ Spec2('Media Capture') }}</td>
<td>Initial specification.</td>
</tr>
</tbody>
</table>
<h2 id="브라우저_호환성">브라우저 호환성</h2>
<p>{{Compat("api.MediaStreamTrack.readyState")}}</p>
<h2 id="같이_보기">같이 보기</h2>
<ul>
<li><a href="/ko/docs/Web/API/WebRTC_API">WebRTC</a></li>
<li>{{domxref("MediaStreamTrack.onended")}}</li>
</ul>
|