diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:17 -0500 |
commit | da78a9e329e272dedb2400b79a3bdeebff387d47 (patch) | |
tree | e6ef8aa7c43556f55ddfe031a01cf0a8fa271bfe /files/ko/glossary/webrtc | |
parent | 1109132f09d75da9a28b649c7677bb6ce07c40c0 (diff) | |
download | translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.gz translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.bz2 translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.zip |
initial commit
Diffstat (limited to 'files/ko/glossary/webrtc')
-rw-r--r-- | files/ko/glossary/webrtc/index.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/files/ko/glossary/webrtc/index.html b/files/ko/glossary/webrtc/index.html new file mode 100644 index 0000000000..da4eab7c61 --- /dev/null +++ b/files/ko/glossary/webrtc/index.html @@ -0,0 +1,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> |