aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/api/mediastreamtrack/label
diff options
context:
space:
mode:
Diffstat (limited to 'files/ko/web/api/mediastreamtrack/label')
-rw-r--r--files/ko/web/api/mediastreamtrack/label/index.html54
1 files changed, 54 insertions, 0 deletions
diff --git a/files/ko/web/api/mediastreamtrack/label/index.html b/files/ko/web/api/mediastreamtrack/label/index.html
new file mode 100644
index 0000000000..0c2d615e2a
--- /dev/null
+++ b/files/ko/web/api/mediastreamtrack/label/index.html
@@ -0,0 +1,54 @@
+---
+title: MediaStreamTrack.label
+slug: Web/API/MediaStreamTrack/label
+tags:
+ - Media Capture and Streams
+ - MediaStreamTrack
+ - Property
+ - Read-only
+ - Reference
+ - WebRTC
+translation_of: Web/API/MediaStreamTrack/label
+---
+<div>{{APIRef("Media Capture and Streams")}}</div>
+
+<p><span class="seoSummary"><code><strong>MediaStreamTrack.label</strong></code> 읽기 전용 속성은 {{glossary("user agent", "사용자 에이전트")}}가 트랙 소스를 식별하기 위해 지정한 레이블을 담은 {{domxref("DOMString")}}을 반환합니다.</span> 소스가 연결되지 않은 경우 빈 문자열이며, 연결됐던 트랙이 소스에서 분리되더라도 레이블은 바뀌지 않습니다.</p>
+
+<h2 id="구문">구문</h2>
+
+<pre class="syntaxbox">const <em>label</em> = <em>track</em>.label</pre>
+
+<h3 id="값">값</h3>
+
+<p>사용자 에이전트가 지정한 식별 레이블. <code>"internal microphone"</code> 등의 형태입니다.</p>
+
+<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-label', 'MediaStreamTrack.label') }}</td>
+ <td>{{ Spec2('Media Capture') }}</td>
+ <td>Initial specification.</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="브라우저_호환성">브라우저 호환성</h2>
+
+
+
+<p>{{Compat("api.MediaStreamTrack.label")}}</p>
+
+<h2 id="같이_보기">같이 보기</h2>
+
+<ul>
+ <li><a href="/ko/docs/Web/Guide/API/WebRTC">WebRTC</a></li>
+</ul>