Examples for WebRTC SFU mediasoup with node.js (Multiple participants / 1 way realtime streaming)
NOTE: This sample made for mediasoup v1.x. For mediasoup v2.x, please see another sample mediasoup_sample_v2
- mediasoup GitHub https://github.com/versatica/mediasoup
- mediasoup Web site https://mediasoup.org
- This sample has updated to support mediasoup v1.1. This does not work with mediasoup v0.x any more.
- Now works correctly for 3 or more participans with Chrome/Firefox
- Add samples for 1 way realtime streaming.
- Add SSL sample with WebSocket. (2017 June 04)
- Add socket.io sample, also socket.io with SSL. (2017 June 04)
Node.jsで動くWebRTC SFU mediasoupのサンプルです。
- v1.1用に更新しました。v0.xでは動作しません。
- Chrome/Firefox共に3名以上の参加者の場合でも正しく動作するようになりました
- 1方向の映像配信/視聴のサンプルを追加しました
- WebSocket + SSL のサンプルを追加しました (2017.06.04)
- Socket.io のサンプル(SSL無し/有り)を追加しました (2017.06.04)
git clone https://github.com/mganeko/mediasoup_sample.git
cd mediasoup_sample/
git cloneします。
$ npm install ws
$ npm install express
$ npm install mediasoup
or
$ npm install
Python 2, make, g++ or clang are required for installing mediasoup.
npm モジュールをインストールします。mediasoupのインストールには Python 2, make, g++かclang が必要です。
$ node mediasoup_sample_multi.js
or
$ npm start
サーバーを起動します。Webサーバー、WebSocketによるシグナリングサーバー、SFUサーバーを兼ねています。
- open http://localhost:3000/ with Chrome or Firefox.
- click [Start Video] button, then [Connect] button
- ブラウザ(Chrome か Firefox)で http://localhost:3000/ にアクセスします。
- [Start Video] ボタンをクリックしてカメラとマイクを取得し、 [Connect] ボタンで通信を開始します
- open http://localhost:3000/talk.html with Chrome or Firefox.
- click [Start Video] button, then [Connect] button
- open http://localhost:3000/watch.html with Chrome or Firefox.
- click [Connect] button to watch realtime striming
- ブラウザ(Chrome か Firefox)で http://localhost:3000/talk.html にアクセスします
- [Start Video] ボタンをクリックしてカメラとマイクを取得し、 [Connect] ボタンで配信を開始します
- 視聴するにはhttp://localhost:3000/watch.htmlにアクセスし、[Connect] ボタンをクリックします
- prepare your SSL certificate as cert/server.key, cert/server.crt
- run server as:
$ node mediasoup_sample_multi_ssl.js
- SSL証明書をcert/server.key, cert/server.crt に用意し、サーバーを起動します
- Use Chrome or Firefox
- open https://yourserver.com:3000/index_ssl.html
- click [Start Video] button, then [Connect] button
- ブラウザ(Chrome/Firefox)でhttps://yourserver.com:3000/index_ssl.html にアクセスします
- install socket.io module with npm
- prepare your SSL certificate as cert/server.key, cert/server.crt
- run server as:
http and ws
$ node mediasoup_socketio.js
https and wss
$ node mediasoup_socketio_ssl.js
- http://yourserver.com:3000/index_socketio.html
or
- https://yourserver.com:3000/index_socketio.html
- This samples are under the MIT license
- このサンプルはMITランセンスで提供されます