aboutsummaryrefslogtreecommitdiff
path: root/files/ko/glossary/webrtc/index.html
blob: da4eab7c61aa6b5ad493c9466b7c8a8484a3ba98 (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
---
title: WebRTC
slug: Glossary/WebRTC
translation_of: Glossary/WebRTC
---
<p><span class="seoSummary"><strong>WebRTC</strong> (<em>Web Real-Time Communication</em>) {{Glossary("API")}} 는 영상 채팅, 음성 통화, 그리고 P2P 파일 공유 웹 어플리케이션에서 사용할 수 있습니다.</span></p>

<p>WebRTC 의 3가지 주요 부분:</p>

<dl>
 <dt><a href="https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/getUserMedia"><code>getUserMedia</code></a></dt>
 <dd>기기의 카메라와 마이크를 같이 혹은 개별로 접속권한을 부여받으며, RTC connection에 신호를 연결할 수 있습니다.</dd>
 <dt><a href="/en-US/docs/Web/API/RTCPeerConnection"><code>RTCPeerConnection</code></a></dt>
 <dd>비디오 채팅 또는 음성 통화를 구성하기위한 인터페이스입니다.</dd>
 <dt><a href="/en-US/docs/Web/API/RTCDataChannel"><code>RTCDataChannel</code></a></dt>
 <dd>브라우저간에 {{Glossary("P2P", "peer-to-peer")}} 데이터 경로 설정방법을 제공합니다.</dd>
</dl>

<h2 id="Learn_more">Learn more</h2>

<ul>
 <li>{{Interwiki("wikipedia", "WebRTC")}} on Wikipedia</li>
 <li><a href="/en-US/docs/Web/Guide/API/WebRTC">Guide to WebRTC on MDN</a></li>
 <li><a href="http://caniuse.com/rtcpeerconnection">Browser support of WebRTC</a></li>
</ul>