Skip to content

Commit

Permalink
add description of MIT license
Browse files Browse the repository at this point in the history
  • Loading branch information
mganeko committed Jun 4, 2017
1 parent 89ed1e7 commit 2997f33
Show file tree
Hide file tree
Showing 10 changed files with 74 additions and 2 deletions.
5 changes: 5 additions & 0 deletions README.md
Expand Up @@ -133,3 +133,8 @@ or

* https://_yourserver.com:3000_/index_socketio.html


# License / ライセンス

* This samples are under the MIT license
* このサンプルはMITランセンスで提供されます
8 changes: 8 additions & 0 deletions mediasoup_sample_multi.js
@@ -1,3 +1,11 @@
//
// mediasoup_sample
// https://github.com/mganeko/mediasoup_sample
// mediasoup_sample is provided under MIT license
//
// This sample is using https://github.com/versatica/mediasoup
//

'use strict';

const WebSocketServer = require('ws').Server;
Expand Down
8 changes: 8 additions & 0 deletions mediasoup_sample_multi_ssl.js
@@ -1,3 +1,11 @@
//
// mediasoup_sample
// https://github.com/mganeko/mediasoup_sample
// mediasoup_sample is provided under MIT license
//
// This sample is using https://github.com/versatica/mediasoup
//

'use strict';

const SSL_KEY = 'cert/server.key';
Expand Down
8 changes: 8 additions & 0 deletions mediasoup_sample_socketio.js
@@ -1,3 +1,11 @@
//
// mediasoup_sample
// https://github.com/mganeko/mediasoup_sample
// mediasoup_sample is provided under MIT license
//
// This sample is using https://github.com/versatica/mediasoup
//

'use strict';


Expand Down
8 changes: 8 additions & 0 deletions mediasoup_sample_socketio_ssl.js
@@ -1,3 +1,11 @@
//
// mediasoup_sample
// https://github.com/mganeko/mediasoup_sample
// mediasoup_sample is provided under MIT license
//
// This sample is using https://github.com/versatica/mediasoup
//

'use strict';


Expand Down
7 changes: 7 additions & 0 deletions public/index.html
Expand Up @@ -3,6 +3,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>mediasoup test multi</title>
<!--
// mediasoup_sample
// https://github.com/mganeko/mediasoup_sample
// mediasoup_sample is provided under MIT license
//
// This sample is using https://github.com/versatica/mediasoup
-->
</head>
<body>
mediasoup multi with websocket<br />
Expand Down
7 changes: 7 additions & 0 deletions public/index_socketio.html
Expand Up @@ -5,6 +5,13 @@
<title>mediasoup test socketio</title>
<!-- <script src="http://localhost:3000/socket.io/socket.io.js"></script> -->
<script src="socket.io/socket.io.js"></script>
<!--
// mediasoup_sample
// https://github.com/mganeko/mediasoup_sample
// mediasoup_sample is provided under MIT license
//
// This sample is using https://github.com/versatica/mediasoup
-->
</head>
<body>
mediasoup multi with socket.io<br />
Expand Down
11 changes: 9 additions & 2 deletions public/index_ssl.html
Expand Up @@ -2,10 +2,17 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>mediasoup test multi</title>
<title>mediasoup SSL</title>
<!--
// mediasoup_sample
// https://github.com/mganeko/mediasoup_sample
// mediasoup_sample is provided under MIT license
//
// This sample is using https://github.com/versatica/mediasoup
-->
</head>
<body>
mediasoup multi with websocket<br />
mediasoup multi with websocket/SSL<br />
<button id="start_video_button" onclick="startVideo();">Start Video</button>
<button id="stop_video_button" onclick="stopVideo();">Stop Video</button>
&nbsp;
Expand Down
7 changes: 7 additions & 0 deletions public/talk.html
Expand Up @@ -3,6 +3,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>mediasoup 1 way talk</title>
<!--
// mediasoup_sample
// https://github.com/mganeko/mediasoup_sample
// mediasoup_sample is provided under MIT license
//
// This sample is using https://github.com/versatica/mediasoup
-->
</head>
<body>
mediasoup 1 way talker(upstream)<br />
Expand Down
7 changes: 7 additions & 0 deletions public/watch.html
Expand Up @@ -3,6 +3,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>mediasoup 1 way watch</title>
<!--
// mediasoup_sample
// https://github.com/mganeko/mediasoup_sample
// mediasoup_sample is provided under MIT license
//
// This sample is using https://github.com/versatica/mediasoup
-->
</head>
<body>
mediasoup 1 way watcher(downstream)<br />
Expand Down

0 comments on commit 2997f33

Please sign in to comment.