Compare commits
1 Commits
LINXD-2270
...
LINXD-2180
Author | SHA1 | Date | |
---|---|---|---|
801652170e |
4
.env
4
.env
@ -1,7 +1,3 @@
|
|||||||
PORT=3000
|
PORT=3000
|
||||||
IP=0.0.0.0 # Listening IPv4 or IPv6.
|
IP=0.0.0.0 # Listening IPv4 or IPv6.
|
||||||
ANNOUNCED_IP=185.8.154.190 # Announced IPv4 or IPv6 (useful when running mediasoup behind NAT with private IP).
|
ANNOUNCED_IP=185.8.154.190 # Announced IPv4 or IPv6 (useful when running mediasoup behind NAT with private IP).
|
||||||
RTC_MIN_PORT=2000
|
|
||||||
RTC_MAX_PORT=2020
|
|
||||||
SERVER_CERT="./server/ssl/cert.pem"
|
|
||||||
SERVER_KEY="./server/ssl/key.pem"
|
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1 @@
|
|||||||
/node_modules
|
/node_modules
|
||||||
/dist
|
|
||||||
|
18
README.md
18
README.md
@ -1,11 +1,5 @@
|
|||||||
# Video server
|
# Video server
|
||||||
|
|
||||||
### Generating certificates
|
|
||||||
|
|
||||||
##### To generate SSL certificates you must:
|
|
||||||
1. Go to `/server/ssl`
|
|
||||||
2. Execute `openssl req -newkey rsa:2048 -new -nodes -x509 -days 3650 -keyout key.pem -out cert.pem`
|
|
||||||
|
|
||||||
|
|
||||||
### Development
|
### Development
|
||||||
|
|
||||||
@ -22,20 +16,14 @@
|
|||||||
2. Run the `npm start:prod` command to start the server in production mode.
|
2. Run the `npm start:prod` command to start the server in production mode.
|
||||||
(To connect to the terminal, use `pm2 log video-server`)
|
(To connect to the terminal, use `pm2 log video-server`)
|
||||||
|
|
||||||
|
---
|
||||||
### Web client
|
|
||||||
|
|
||||||
- The server will start by default on port 3000, and the ssl certificates will have to be configured
|
- The server will start by default on port 3000, and the ssl certificates will have to be configured
|
||||||
- The web client can be accessed using the /sfu path
|
- The web client can be accessed using the /sfu path
|
||||||
ex: https://HOST/sfu/?assetId=1&&accountId=1&producer=true&dest_asset_id=75&assetName=Adi
|
ex: http://localhost:3000/sfu/?assetId=1&&accountId=1&producer=true&assetName=Adi&assetType=linx
|
||||||
assetId = asset id of the unit on which you are doing the test
|
assetId = asset id of the unit on which you are doing the test
|
||||||
accountId = account id of the unit on which you are doing the test
|
accountId = account id of the unit on which you are doing the test
|
||||||
producer = it will always be true because you are the producer
|
producer = it will always be true because you are the producer
|
||||||
(it's possible to put false, but then you have to have another client with producer true)
|
(it's possible to put false, but then you have to have another client with producer true)
|
||||||
assetName = asset name of the unit on which you are doing the test
|
assetName = asset name of the unit on which you are doing the test
|
||||||
dest_asset_id= the addressee with whom the call is made
|
assetType = asset type of the unit on which you are doing the test
|
||||||
- To make a call using this client, you need a microphone and permission to use it
|
|
||||||
- For any changes related to the client, the command `npm run watch' will have to be used to generate the bundle.js used by the web client
|
|
||||||
|
|
||||||
### Demo project
|
|
||||||
The demo project used initially and then modified for our needs `https://github.com/jamalag/mediasoup2`
|
|
46
build.sh
46
build.sh
@ -1,46 +0,0 @@
|
|||||||
#/!bin/bash
|
|
||||||
## PREBUILD PROCESS
|
|
||||||
# check dist dir to be present and empty
|
|
||||||
if [ ! -d "dist" ]; then
|
|
||||||
## MAKE DIR
|
|
||||||
mkdir "dist"
|
|
||||||
echo "Directory dist created."
|
|
||||||
else
|
|
||||||
## CLEANUP
|
|
||||||
rm -fr dist/*
|
|
||||||
fi
|
|
||||||
# Install dependencies
|
|
||||||
#npm install
|
|
||||||
|
|
||||||
## PROJECT NEEDS
|
|
||||||
echo "Building app... from $(git rev-parse --abbrev-ref HEAD)"
|
|
||||||
#npm run-script build
|
|
||||||
cp -r {.env,app.js,package.json,server,public} dist/
|
|
||||||
|
|
||||||
#Add version control for pm2
|
|
||||||
cd dist
|
|
||||||
#Add version control for pm2
|
|
||||||
version=$(git describe)
|
|
||||||
file_pkg="package.json"
|
|
||||||
key=" \"version\": \""
|
|
||||||
|
|
||||||
count=$(echo ${version%%-*} | grep -o "\." | wc -l)
|
|
||||||
if (( $count > 1 )); then
|
|
||||||
version=${version%%-*}
|
|
||||||
else
|
|
||||||
version="${version%%-*}.0"
|
|
||||||
fi
|
|
||||||
if [ -f "$file_pkg" ] && [ ! -z "$version" ]; then
|
|
||||||
version=" \"version\": \"$version\","
|
|
||||||
sed -i "s|^.*$key.*|${version//\//\\/}|g" $file_pkg
|
|
||||||
text=$(cat $file_pkg | grep -c "$version")
|
|
||||||
if [ $text -eq 0 ]; then
|
|
||||||
echo "Version couldn't be set"
|
|
||||||
else
|
|
||||||
echo "Version $version successfully applied to App"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
## POST BUILD
|
|
||||||
|
|
||||||
cd -
|
|
Binary file not shown.
Before Width: | Height: | Size: 571 KiB |
805
package-lock.json
generated
805
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -5,17 +5,20 @@
|
|||||||
"main": "app.js",
|
"main": "app.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "echo \"Error: no test specified\" && exit 1",
|
"test": "echo \"Error: no test specified\" && exit 1",
|
||||||
"start:dev": "nodemon app.js",
|
"start:dev": "nodemon app.ts",
|
||||||
"start:prod": "pm2 start ./app.js -n video-server",
|
"start:prod": "pm2 start ./app.js -n video-server",
|
||||||
"watch": "watchify public/index.js -o public/bundle.js -v"
|
"watch": "watchify public/index.js -o public/bundle.js -v"
|
||||||
},
|
},
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
|
"type": "module",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@types/express": "^4.17.13",
|
"@types/express": "^4.17.13",
|
||||||
"dotenv": "^16.0.1",
|
"dotenv": "^16.0.1",
|
||||||
"express": "^4.18.1",
|
"express": "^4.18.1",
|
||||||
|
"ffmpeg-static": "^5.0.2",
|
||||||
|
"httpolyglot": "^0.1.2",
|
||||||
"mediasoup": "^3.10.4",
|
"mediasoup": "^3.10.4",
|
||||||
"mediasoup-client": "^3.6.54",
|
"mediasoup-client": "^3.6.54",
|
||||||
"parcel": "^2.7.0",
|
"parcel": "^2.7.0",
|
||||||
|
1081
public/bundle.js
1081
public/bundle.js
File diff suppressed because it is too large
Load Diff
@ -1,4 +1,5 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
hubAddress: 'https://hub.dev.linx.safemobile.com/',
|
hubAddress: 'https://hub.dev.linx.safemobile.com/',
|
||||||
mediasoupAddress: 'https://video.safemobile.org',
|
// mediasoupAddress: 'https://video.safemobile.org/mediasoup',
|
||||||
|
mediasoupAddress: 'http://localhost:3000/mediasoup',
|
||||||
}
|
}
|
@ -43,7 +43,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<div id="sharedBtns">
|
<div id="sharedBtns">
|
||||||
<video id="localVideo" autoplay class="video" muted></video>
|
<video id="localVideo" autoplay class="video" ></video>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
|
184
public/index.js
184
public/index.js
@ -12,41 +12,7 @@ let callId = parseInt(urlParams.get('callId')) || null;
|
|||||||
const IS_PRODUCER = urlParams.get('producer') === 'true' ? true : false
|
const IS_PRODUCER = urlParams.get('producer') === 'true' ? true : false
|
||||||
console.log('[URL] ASSET_ID', ASSET_ID, '| ACCOUNT_ID', ACCOUNT_ID, '| callId', callId, ' | IS_PRODUCER', IS_PRODUCER)
|
console.log('[URL] ASSET_ID', ASSET_ID, '| ACCOUNT_ID', ACCOUNT_ID, '| callId', callId, ' | IS_PRODUCER', IS_PRODUCER)
|
||||||
|
|
||||||
console.log('🟩 config', config)
|
let socket
|
||||||
|
|
||||||
let socket, hub
|
|
||||||
let device
|
|
||||||
let rtpCapabilities
|
|
||||||
let producerTransport
|
|
||||||
let consumerTransport
|
|
||||||
let producerVideo
|
|
||||||
let producerAudio
|
|
||||||
let consumer
|
|
||||||
let originAssetId
|
|
||||||
|
|
||||||
// https://mediasoup.org/documentation/v3/mediasoup-client/api/#ProducerOptions
|
|
||||||
// https://mediasoup.org/documentation/v3/mediasoup-client/api/#transport-produce
|
|
||||||
let videoParams = {
|
|
||||||
encodings: [
|
|
||||||
{ scaleResolutionDownBy: 4, maxBitrate: 500000 },
|
|
||||||
{ scaleResolutionDownBy: 2, maxBitrate: 1000000 },
|
|
||||||
{ scaleResolutionDownBy: 1, maxBitrate: 5000000 },
|
|
||||||
{ scalabilityMode: 'S3T3_KEY' }
|
|
||||||
],
|
|
||||||
codecOptions: {
|
|
||||||
videoGoogleStartBitrate: 1000
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let audioParams = {
|
|
||||||
codecOptions :
|
|
||||||
{
|
|
||||||
opusStereo : true,
|
|
||||||
opusDtx : true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
setTimeout(() => {
|
|
||||||
hub = io(config.hubAddress)
|
hub = io(config.hubAddress)
|
||||||
|
|
||||||
const connectToMediasoup = () => {
|
const connectToMediasoup = () => {
|
||||||
@ -70,7 +36,7 @@ setTimeout(() => {
|
|||||||
|
|
||||||
if (IS_PRODUCER === true) {
|
if (IS_PRODUCER === true) {
|
||||||
hub.on('connect', async () => {
|
hub.on('connect', async () => {
|
||||||
console.log(`[HUB]! ${config.hubAddress} | connected: ${hub.connected}`)
|
console.log(`[HUB] ${config.hubAddress} | connected: ${hub.connected}`)
|
||||||
connectToMediasoup()
|
connectToMediasoup()
|
||||||
|
|
||||||
hub.emit(
|
hub.emit(
|
||||||
@ -118,51 +84,73 @@ setTimeout(() => {
|
|||||||
connectToMediasoup()
|
connectToMediasoup()
|
||||||
}
|
}
|
||||||
|
|
||||||
}, 1600);
|
let device
|
||||||
|
let rtpCapabilities
|
||||||
|
let producerTransport
|
||||||
|
let consumerTransport
|
||||||
|
let producer
|
||||||
|
let consumer
|
||||||
|
let originAssetId
|
||||||
|
// let originAssetName = 'Adi'
|
||||||
|
// let originAssetTypeName = 'linx'
|
||||||
|
|
||||||
|
// https://mediasoup.org/documentation/v3/mediasoup-client/api/#ProducerOptions
|
||||||
|
// https://mediasoup.org/documentation/v3/mediasoup-client/api/#transport-produce
|
||||||
|
let params = {
|
||||||
|
// mediasoup params
|
||||||
|
encodings: [
|
||||||
|
{
|
||||||
|
rid: 'r0',
|
||||||
|
maxBitrate: 100000,
|
||||||
|
scalabilityMode: 'S1T3',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
rid: 'r1',
|
||||||
|
maxBitrate: 300000,
|
||||||
|
scalabilityMode: 'S1T3',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
rid: 'r2',
|
||||||
|
maxBitrate: 900000,
|
||||||
|
scalabilityMode: 'S1T3',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
// https://mediasoup.org/documentation/v3/mediasoup-client/api/#ProducerCodecOptions
|
||||||
|
codecOptions: {
|
||||||
|
videoGoogleStartBitrate: 1000
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const streamSuccess = (stream) => {
|
const streamSuccess = (stream) => {
|
||||||
console.log('[streamSuccess] device', device);
|
console.log('[streamSuccess]');
|
||||||
localVideo.srcObject = stream
|
localVideo.srcObject = stream
|
||||||
console.log('stream', stream);
|
const track = stream.getVideoTracks()[0]
|
||||||
const videoTrack = stream.getVideoTracks()[0]
|
params = {
|
||||||
const audioTrack = stream.getAudioTracks()[0]
|
track,
|
||||||
|
...params
|
||||||
videoParams = {
|
|
||||||
track: videoTrack,
|
|
||||||
...videoParams
|
|
||||||
}
|
}
|
||||||
|
|
||||||
audioParams = {
|
|
||||||
track: audioTrack,
|
|
||||||
...audioParams
|
|
||||||
}
|
|
||||||
|
|
||||||
console.log('[streamSuccess] videoParams', videoParams, ' | audioParams', audioParams);
|
|
||||||
goConnect()
|
goConnect()
|
||||||
}
|
}
|
||||||
|
|
||||||
const getLocalStream = () => {
|
const getLocalStream = () => {
|
||||||
console.log('[getLocalStream]');
|
console.log('[getLocalStream]');
|
||||||
navigator.mediaDevices.getUserMedia({
|
navigator.mediaDevices.getUserMedia({
|
||||||
audio: true,
|
audio: false,
|
||||||
video: {
|
video: {
|
||||||
qvga : { width: { ideal: 320 }, height: { ideal: 240 } },
|
width: {
|
||||||
vga : { width: { ideal: 640 }, height: { ideal: 480 } },
|
min: 640,
|
||||||
hd : { width: { ideal: 1280 }, height: { ideal: 720 } }
|
max: 1920,
|
||||||
|
},
|
||||||
|
height: {
|
||||||
|
min: 400,
|
||||||
|
max: 1080,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.then(streamSuccess)
|
.then(streamSuccess)
|
||||||
.catch(error => {
|
.catch(error => {
|
||||||
console.log(error.message)
|
console.log('getLocalStream', error)
|
||||||
})
|
})
|
||||||
|
|
||||||
navigator.permissions.query(
|
|
||||||
{ name: 'microphone' }
|
|
||||||
).then((permissionStatus) =>{
|
|
||||||
console.log('🟨 [PERMISSION] permissionStatus', permissionStatus); // granted, denied, prompt
|
|
||||||
// It will block the code from execution and display "Permission denied" if we don't have microphone permissions
|
|
||||||
})
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const goConnect = () => {
|
const goConnect = () => {
|
||||||
@ -179,6 +167,7 @@ const goCreateTransport = () => {
|
|||||||
// server side to send/recive media
|
// server side to send/recive media
|
||||||
const createDevice = async () => {
|
const createDevice = async () => {
|
||||||
try {
|
try {
|
||||||
|
console.log('[createDevice]');
|
||||||
device = new mediasoupClient.Device()
|
device = new mediasoupClient.Device()
|
||||||
|
|
||||||
// https://mediasoup.org/documentation/v3/mediasoup-client/api/#device-load
|
// https://mediasoup.org/documentation/v3/mediasoup-client/api/#device-load
|
||||||
@ -189,7 +178,6 @@ const createDevice = async () => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
console.log('Device RTP Capabilities', device.rtpCapabilities)
|
console.log('Device RTP Capabilities', device.rtpCapabilities)
|
||||||
console.log('[createDevice] device', device);
|
|
||||||
|
|
||||||
// once the device loads, create transport
|
// once the device loads, create transport
|
||||||
goCreateTransport()
|
goCreateTransport()
|
||||||
@ -219,20 +207,18 @@ const getRtpCapabilities = () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const createSendTransport = () => {
|
const createSendTransport = () => {
|
||||||
console.log('[createSendTransport');
|
|
||||||
// see server's socket.on('createWebRtcTransport', sender?, ...)
|
// see server's socket.on('createWebRtcTransport', sender?, ...)
|
||||||
// this is a call from Producer, so sender = true
|
// this is a call from Producer, so sender = true
|
||||||
socket.emit('createWebRtcTransport', { sender: true, callId }, (value) => {
|
socket.emit('createWebRtcTransport', { sender: true, callId }, ({ params }) => {
|
||||||
|
|
||||||
console.log(`[createWebRtcTransport] value: ${JSON.stringify(value)}`);
|
|
||||||
|
|
||||||
const params = value.params;
|
|
||||||
// The server sends back params needed
|
// The server sends back params needed
|
||||||
// to create Send Transport on the client side
|
// to create Send Transport on the client side
|
||||||
if (params.error) {
|
if (params.error) {
|
||||||
console.log(params.error)
|
console.log(params.error)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
console.log(params)
|
||||||
|
|
||||||
// creates a new WebRTC Transport to send media
|
// creates a new WebRTC Transport to send media
|
||||||
// based on the server's producer transport params
|
// based on the server's producer transport params
|
||||||
// https://mediasoup.org/documentation/v3/mediasoup-client/api/#TransportOptions
|
// https://mediasoup.org/documentation/v3/mediasoup-client/api/#TransportOptions
|
||||||
@ -258,17 +244,17 @@ const createSendTransport = () => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
producerTransport.on('produce', async (parameters, callback, errback) => {
|
producerTransport.on('produce', async (parameters, callback, errback) => {
|
||||||
console.log('[produce] parameters', parameters)
|
console.log('produce', parameters)
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// Tell the server to create a Producer
|
// tell the server to create a Producer
|
||||||
// with the following parameters and produce
|
// with the following parameters and produce
|
||||||
// and expect back a server side producer id
|
// and expect back a server side producer id
|
||||||
// see server's socket.on('transport-produce', ...)
|
// see server's socket.on('transport-produce', ...)
|
||||||
await socket.emit('transport-produce', {
|
await socket.emit('transport-produce', {
|
||||||
kind: parameters.kind,
|
kind: parameters.kind,
|
||||||
rtpParameters: parameters.rtpParameters,
|
rtpParameters: parameters.rtpParameters,
|
||||||
appData: parameters.appData,
|
callId: callId
|
||||||
}, ({ id }) => {
|
}, ({ id }) => {
|
||||||
// Tell the transport that parameters were transmitted and provide it with the
|
// Tell the transport that parameters were transmitted and provide it with the
|
||||||
// server side producer's id.
|
// server side producer's id.
|
||||||
@ -284,44 +270,22 @@ const createSendTransport = () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const connectSendTransport = async () => {
|
const connectSendTransport = async () => {
|
||||||
|
// we now call produce() to instruct the producer transport
|
||||||
console.log('[connectSendTransport] producerTransport');
|
|
||||||
|
|
||||||
// We now call produce() to instruct the producer transport
|
|
||||||
// to send media to the Router
|
// to send media to the Router
|
||||||
// https://mediasoup.org/documentation/v3/mediasoup-client/api/#transport-produce
|
// https://mediasoup.org/documentation/v3/mediasoup-client/api/#transport-produce
|
||||||
// this action will trigger the 'connect' and 'produce' events above
|
// this action will trigger the 'connect' and 'produce' events above
|
||||||
|
producer = await producerTransport.produce(params)
|
||||||
|
|
||||||
// Produce video
|
producer.on('trackended', () => {
|
||||||
producerVideo = await producerTransport.produce(videoParams)
|
|
||||||
console.log('videoParams', videoParams);
|
|
||||||
console.log('producerVideo', producerVideo);
|
|
||||||
|
|
||||||
producerVideo.on('trackended', () => {
|
|
||||||
console.log('track ended')
|
console.log('track ended')
|
||||||
// close video track
|
// close video track
|
||||||
})
|
})
|
||||||
|
|
||||||
producerVideo.on('transportclose', () => {
|
producer.on('transportclose', () => {
|
||||||
console.log('transport ended')
|
console.log('transport ended')
|
||||||
// close video track
|
// close video track
|
||||||
})
|
})
|
||||||
|
|
||||||
// Produce audio
|
|
||||||
producerAudio = await producerTransport.produce(audioParams)
|
|
||||||
console.log('audioParams', audioParams);
|
|
||||||
console.log('producerAudio', producerAudio);
|
|
||||||
|
|
||||||
producerAudio.on('trackended', () => {
|
|
||||||
console.log('track ended')
|
|
||||||
// close audio track
|
|
||||||
})
|
|
||||||
|
|
||||||
producerAudio.on('transportclose', () => {
|
|
||||||
console.log('transport ended')
|
|
||||||
// close audio track
|
|
||||||
})
|
|
||||||
|
|
||||||
const answer = {
|
const answer = {
|
||||||
origin_asset_id: ASSET_ID,
|
origin_asset_id: ASSET_ID,
|
||||||
dest_asset_id: originAssetId || parseInt(urlParams.get('dest_asset_id')),
|
dest_asset_id: originAssetId || parseInt(urlParams.get('dest_asset_id')),
|
||||||
@ -330,7 +294,7 @@ const connectSendTransport = async () => {
|
|||||||
origin_asset_type_name: ASSET_TYPE,
|
origin_asset_type_name: ASSET_TYPE,
|
||||||
origin_asset_name: ASSET_NAME,
|
origin_asset_name: ASSET_NAME,
|
||||||
video_call_id: callId,
|
video_call_id: callId,
|
||||||
answer: 'accepted', // answer: accepted/rejected
|
answer: 'accepted', // answer: 'rejected'
|
||||||
};
|
};
|
||||||
console.log('SEND answer', answer);
|
console.log('SEND answer', answer);
|
||||||
|
|
||||||
@ -346,7 +310,7 @@ const connectSendTransport = async () => {
|
|||||||
|
|
||||||
const createRecvTransport = async () => {
|
const createRecvTransport = async () => {
|
||||||
console.log('createRecvTransport');
|
console.log('createRecvTransport');
|
||||||
// See server's socket.on('consume', sender?, ...)
|
// see server's socket.on('consume', sender?, ...)
|
||||||
// this is a call from Consumer, so sender = false
|
// this is a call from Consumer, so sender = false
|
||||||
await socket.emit('createWebRtcTransport', { sender: false, callId }, ({ params }) => {
|
await socket.emit('createWebRtcTransport', { sender: false, callId }, ({ params }) => {
|
||||||
// The server sends back params needed
|
// The server sends back params needed
|
||||||
@ -356,15 +320,15 @@ const createRecvTransport = async () => {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log('[createRecvTransport] params', params)
|
console.log(params)
|
||||||
|
|
||||||
// Creates a new WebRTC Transport to receive media
|
// creates a new WebRTC Transport to receive media
|
||||||
// based on server's consumer transport params
|
// based on server's consumer transport params
|
||||||
// https://mediasoup.org/documentation/v3/mediasoup-client/api/#device-createRecvTransport
|
// https://mediasoup.org/documentation/v3/mediasoup-client/api/#device-createRecvTransport
|
||||||
consumerTransport = device.createRecvTransport(params)
|
consumerTransport = device.createRecvTransport(params)
|
||||||
|
|
||||||
// https://mediasoup.org/documentation/v3/communication-between-client-and-server/#producing-media
|
// https://mediasoup.org/documentation/v3/communication-between-client-and-server/#producing-media
|
||||||
// This event is raised when a first call to transport.produce() is made
|
// this event is raised when a first call to transport.produce() is made
|
||||||
// see connectRecvTransport() below
|
// see connectRecvTransport() below
|
||||||
consumerTransport.on('connect', async ({ dtlsParameters }, callback, errback) => {
|
consumerTransport.on('connect', async ({ dtlsParameters }, callback, errback) => {
|
||||||
try {
|
try {
|
||||||
@ -389,8 +353,7 @@ const resetCallSettings = () => {
|
|||||||
localVideo.srcObject = null
|
localVideo.srcObject = null
|
||||||
remoteVideo.srcObject = null
|
remoteVideo.srcObject = null
|
||||||
consumer = null
|
consumer = null
|
||||||
producerVideo = null
|
producer = null
|
||||||
producerAudio = null
|
|
||||||
producerTransport = null
|
producerTransport = null
|
||||||
consumerTransport = null
|
consumerTransport = null
|
||||||
device = undefined
|
device = undefined
|
||||||
@ -398,7 +361,7 @@ const resetCallSettings = () => {
|
|||||||
|
|
||||||
const connectRecvTransport = async () => {
|
const connectRecvTransport = async () => {
|
||||||
console.log('connectRecvTransport');
|
console.log('connectRecvTransport');
|
||||||
// For consumer, we need to tell the server first
|
// for consumer, we need to tell the server first
|
||||||
// to create a consumer based on the rtpCapabilities and consume
|
// to create a consumer based on the rtpCapabilities and consume
|
||||||
// if the router can consume, it will send back a set of params as below
|
// if the router can consume, it will send back a set of params as below
|
||||||
await socket.emit('consume', {
|
await socket.emit('consume', {
|
||||||
@ -410,7 +373,7 @@ const connectRecvTransport = async () => {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// Then consume with the local consumer transport
|
// then consume with the local consumer transport
|
||||||
// which creates a consumer
|
// which creates a consumer
|
||||||
consumer = await consumerTransport.consume({
|
consumer = await consumerTransport.consume({
|
||||||
id: params.id,
|
id: params.id,
|
||||||
@ -453,7 +416,6 @@ const closeCall = () => {
|
|||||||
resetCallSettings()
|
resetCallSettings()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
btnLocalVideo.addEventListener('click', getLocalStream)
|
btnLocalVideo.addEventListener('click', getLocalStream)
|
||||||
btnRecvSendTransport.addEventListener('click', goConnect)
|
btnRecvSendTransport.addEventListener('click', goConnect)
|
||||||
btnCloseCall.addEventListener('click', closeCall)
|
btnCloseCall.addEventListener('click', closeCall)
|
Reference in New Issue
Block a user