[プロジェクト]WebRTC


1.Opensslのインストール



cmdウィンドウで確認

2. node.jsインストール



cmdウィンドウで確認

http:ローカルから接続する場合
https:通信時に=>ビデオとビデオを使用できます
ビジュアルコードを開く>Web httpsフォルダを開く>ターミナルを起動>新しいターミナルをクリック>ノードをクリックします.\index.jsを入力すると、サーバはチャットを開始します.

自分のipoを入力(cmdウィンドウでipconfig)

index.html

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
  <title>Realtime communication with WebRTC</title>
  <link rel="stylesheet" href="/css/main.css" />

</head>

<body>

  <h1>Realtime communication with WebRTC</h1>

  <div id="videos">
    <video id="localVideo" autoplay muted playsinline></video>
    <video id="remoteVideo" autoplay playsinline></video>
  </div>
  
  
  <!-- <div id="videos">
  </div> -->

  <!-- This file is automatically added/served when running "node index.js". -->
  <script src="/socket.io/socket.io.js"></script>
  <script src="https://webrtc.github.io/adapter/adapter-latest.js"></script>
  <script src="js/main.js"></script>

</body>

</html>