Skip to content
This repository was archived by the owner on Mar 29, 2025. It is now read-only.

Commit 4785003

Browse files
authored
Merge pull request #6 from FabienLavocat/master
Version 1.5.0 - Use Voxeet SDK 3.0
2 parents 5ebd3a0 + a904a3f commit 4785003

File tree

9 files changed

+47
-9393
lines changed

9 files changed

+47
-9393
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/node_modules
22
.DS_Store
3-
/dist
3+
/dist
4+
*.lock

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 Dolby Laboratories
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Dolby Interactivity APIs Mixer Layout App
22
=========================================
33

44
<p align="center">
5-
<img src="https://cdn.dolby.io/wp-content/uploads/2020/05/Dolbyio-white-horizontal-e1589344433251.jpg" alt="Voxeet SDK logo" title="Dolby.io logo" width="200"/>
5+
<img src="wiki/dolbyio.jpeg" alt="Dolby.io logo" title="Dolby.io logo" width="200"/>
66
</p>
77

88

@@ -63,7 +63,7 @@ For example, the layout may be equal sized tiles for the majority of the video b
6363
- `record`, which is used to record live conference;
6464
- `replay`, which is used to record a replay of a conference;
6565
- `stream`, which is used to stream to YouTube or Facebook; or
66-
- `hls`, which is usef for streaming using HLS.
66+
- `hls`, which is used for streaming using HLS.
6767
6868
The mixer layout can vary the layout based on the type.
6969
For example, for a live recording of a conference, the Platform will set the vaue for the input with id `layoutType` to `record`.
@@ -74,15 +74,21 @@ For example, the layout may be equal sized tiles for the majority of the video b
7474
7575
* Download the project with:
7676
77-
`git clone git@github.com:voxeet/voxeet-uxkit-web-mixerlayout.git`
77+
```
78+
git clone git@github.com:voxeet/voxeet-uxkit-web-mixerlayout.git
79+
```
7880
79-
* Install the dependancies with:
81+
* Install the dependencies with:
8082
81-
`yarn install`
83+
```
84+
yarn install
85+
```
8286
8387
* Start the application with:
8488
85-
`yarn start`
89+
```
90+
yarn start
91+
```
8692
8793
8894
## Test
@@ -98,7 +104,9 @@ Change the default value for `isDemo` to `true` and set the `consumerKey` and `c
98104
99105
2. Start the server
100106
101-
`yarn start`
107+
```
108+
yarn start
109+
```
102110
103111
3. Launch Chrome and go to `http://127.0.0.1:8081/`. The layout type can be selected and a mix started:
104112
@@ -196,7 +204,9 @@ This component is used by `TileVideo` to show a presenter who does not have came
196204
197205
To generate a bundle of the JavaScript of the project, in the root directory of the app run:
198206
199-
`yarn run build`
207+
```
208+
yarn run build
209+
```
200210
201211
This will generate `dist/index.html` and `dist/out.js`.
202212

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "voxeet-mix-layout",
3-
"version": "1.4.1",
3+
"version": "1.5.0",
44
"private": true,
55
"dependencies": {
6-
"@voxeet/voxeet-web-sdk": "^2.3.1",
6+
"@voxeet/voxeet-web-sdk": "^3.0.1",
77
"axios": "^0.18.0",
88
"express": "^4.16.4",
99
"react": "^16.7.0",
@@ -41,6 +41,6 @@
4141
},
4242
"scripts": {
4343
"start": "webpack-dev-server -d",
44-
"build": "npx webpack --output-filename out.js --output-path dist"
44+
"build": "npx webpack --output-filename out.js --output-path dist"
4545
}
4646
}

public/index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<meta http-equiv="X-UA-Compatible" content="ie=edge">
7-
<link rel="chrome-webstore-item" href="https://chrome.google.com/webstore/detail/efdjhmbmjlhomjhnnmpeeillhpnldoje">
87
</head>
98

109
<body>

src/app/components/ConferenceRoom.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ class ConferenceRoom extends Component {
239239
<div>
240240
<h3>Live conference</h3>
241241
<input
242-
placeholder="Conference name"
242+
placeholder="Conference name (alias)"
243243
id="conferenceNameTest"
244244
name="conferenceNameTest"
245245
/>

webpack.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ module.exports = {
1414
],
1515
devServer: {
1616
port: 8081,
17-
https: true,
17+
https: false,
1818
disableHostCheck: true,
19-
host: '0.0.0.0',
19+
host: 'localhost',
2020
},
2121
module: {
2222
loaders: [

wiki/dolbyio.jpeg

27.1 KB
Loading

0 commit comments

Comments
 (0)