Compare commits
88 Commits
develop-te
...
develop
Author | SHA1 | Date | |
---|---|---|---|
32692f2390 | |||
755df1ec5a | |||
cd91d40dd0 | |||
642dba8dac | |||
4f044555ba | |||
230d5b6bce | |||
73c7700ded | |||
9e66772b53 | |||
5ef66af3f8 | |||
1b29d43580 | |||
dd5af12c7c | |||
af21774d17 | |||
fc250c248e | |||
fc39d5bead | |||
a5c00ba10a | |||
f7053359a5 | |||
056858d412 | |||
3f40baad3e | |||
|
b1c8419af5 | ||
|
271768065c | ||
ce1fe3ca8d | |||
96b770d9c5 | |||
4b1f4fab70 | |||
ba7c2186af | |||
636e8a9fab | |||
5da2eb6927 | |||
97948a5d8c | |||
b94b1bff86 | |||
5c4f2bf13e | |||
df7f1987f6 | |||
7842953faf | |||
4591617b1e | |||
9b3f2f94c8 | |||
29a4cd7227 | |||
c80265fe25 | |||
abb1533c9b | |||
6e3ce9fbb3 | |||
4d8adf9eac | |||
bde02fe250 | |||
0ddb43b4b5 | |||
f02d6af726 | |||
7ee93d7963 | |||
98212a78cb | |||
33ea44ac02 | |||
6b822142d0 | |||
50e95b93a4 | |||
6eca0808c9 | |||
f728b23b7f | |||
33c0234fb0 | |||
f81d5b2dfa | |||
ae87b5bd71 | |||
09e82fb224 | |||
1da0170261 | |||
aca0a6eac0 | |||
23ca56c8c6 | |||
a2d0b6771b | |||
9382fd11fb | |||
fb99fd57f8 | |||
0f4342777a | |||
69c167e4e9 | |||
ad4c1f27e7 | |||
b2128c4754 | |||
af53dc1610 | |||
f48fe4f9aa | |||
6fd6ca9755 | |||
1b72941a32 | |||
c037240f47 | |||
9716bddd71 | |||
e6c08a2c1d | |||
1342e812e6 | |||
d8405eccc7 | |||
5bf31d452f | |||
c034610471 | |||
df5b3eab90 | |||
b0293230b6 | |||
391e8eb6f0 | |||
3139a625a2 | |||
48eee903a5 | |||
d5bc0cd1d3 | |||
1c353d7c88 | |||
9d43b7ec0c | |||
342d09c3e6 | |||
b3409de3ba | |||
3e31ba21bd | |||
cdf02756d3 | |||
b2f9f5affa | |||
5b9bfeaa01 | |||
e3bef9b3e5 |
2
.dockerignore
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
node_modules
|
||||||
|
doc
|
14
.env
@ -1,7 +1,11 @@
|
|||||||
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=192.168.1.199 # Announced IPv4 or IPv6 (useful when running mediasoup behind NAT with private IP).
|
||||||
RTC_MIN_PORT=2000
|
RTC_MIN_PORT=40000
|
||||||
RTC_MAX_PORT=2020
|
RTC_MAX_PORT=49999
|
||||||
SERVER_CERT="./server/ssl/cert.pem"
|
SERVER_CERT="./server/ssl/cert.pem"
|
||||||
SERVER_KEY="./server/ssl/key.pem"
|
SERVER_KEY="./server/ssl/key.pem"
|
||||||
|
ENABLE_UDP=true
|
||||||
|
ENABLE_TCP=true
|
||||||
|
PREFER_UDP=true
|
||||||
|
PREFER_TCP=false
|
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
|||||||
/node_modules
|
/node_modules
|
||||||
/dist
|
/dist
|
||||||
|
.idea
|
26
Dockerfile
@ -1,11 +1,25 @@
|
|||||||
FROM ubuntu
|
FROM ubuntu:22.04
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get install -y build-essential pip net-tools iputils-ping iproute2 curl
|
apt-get install -y build-essential pip net-tools iputils-ping iproute2 curl
|
||||||
|
|
||||||
RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash -
|
RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
|
||||||
RUN apt-get install -y nodejs
|
RUN apt-get install -y nodejs
|
||||||
RUN npm install -g watchify
|
|
||||||
|
|
||||||
EXPOSE 3000
|
COPY . /app/
|
||||||
EXPOSE 2000-2020
|
|
||||||
EXPOSE 10000-10100
|
RUN npm install
|
||||||
|
|
||||||
|
EXPOSE 3000/tcp
|
||||||
|
EXPOSE 2000-2200/udp
|
||||||
|
|
||||||
|
CMD node app.js
|
||||||
|
|
||||||
|
#docker build -t linx-video .
|
||||||
|
# docker run -it -d --restart always -p 3000:3000/tcp -p 2000-2200:2000-2200/udp linx-video
|
||||||
|
#Run under host network
|
||||||
|
# docker run -it -d --network host --restart always -p 3000:3000/tcp -p 2000-2200:2000-2200/udp linx-video
|
||||||
|
#https://docs.docker.com/config/containers/resource_constraints/
|
||||||
|
#docker run -it -d --network host --cpus="0.25" --memory="512m" --restart always -p 3000:3000/tcp -p 2000-2200:2000-2200/udp linx-video
|
44
README.md
@ -6,36 +6,54 @@
|
|||||||
1. Go to `/server/ssl`
|
1. Go to `/server/ssl`
|
||||||
2. Execute `openssl req -newkey rsa:2048 -new -nodes -x509 -days 3650 -keyout key.pem -out cert.pem`
|
2. Execute `openssl req -newkey rsa:2048 -new -nodes -x509 -days 3650 -keyout key.pem -out cert.pem`
|
||||||
|
|
||||||
|
|
||||||
### Development
|
### Development
|
||||||
|
|
||||||
##### To start in development mode you must:
|
##### To start in development mode you must:
|
||||||
1. Install the dependencies `npm install`.
|
|
||||||
2. Run the `npm start:dev` command to start the server in dev mode.
|
|
||||||
(Any change will trigger a refresh of the server)
|
|
||||||
|
|
||||||
|
1. Install the dependencies `npm install`.
|
||||||
|
|
||||||
|
2. Go to the `linx-devops/scaling-tools/private-system-truste-cert` project and generate a new server certificate and key:
|
||||||
|
|
||||||
|
sh create_certificate_for_domain.sh 192.168.1.110 #local IP
|
||||||
|
# generates files
|
||||||
|
nginx-selfsigned.crt
|
||||||
|
device.key
|
||||||
|
|
||||||
|
3. You need to update the Video Server in the provisioning to point to your private IP. ex: https://192.168.1.199:3000
|
||||||
|
|
||||||
|
4. The generated files must be moved to server/ssl and renamed as follows:
|
||||||
|
|
||||||
|
cp device.key {mediasoup_project}/server/ssl/key.pem
|
||||||
|
cp nginx-selfsigned.crt {mediosup_project}/server/ssl/cert.pem
|
||||||
|
|
||||||
|
5. Go to https://dev.linx.safemobile.com/dispatcher/resources/help/LINXHelp.html#safemobile-certificate-import and import the certificate for your system type
|
||||||
|
|
||||||
|
6. The ANNOUNCED IP in .env must be configured to use the same private IP used in generating the certificate.
|
||||||
|
|
||||||
|
7. Run the `npm start:dev` command to start the server in dev mode.
|
||||||
|
(Any change will trigger a refresh of the server)
|
||||||
|
|
||||||
### Production
|
### Production
|
||||||
|
|
||||||
##### To start in production mode you must:
|
##### To start in production mode you must:
|
||||||
1. Install the dependencies `npm install`.
|
1. Install the dependencies `npm install`.
|
||||||
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
|
### 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: https://HOST/sfu/?assetId=1&&accountId=1&producer=true&dest_asset_id=75&assetName=Adi
|
||||||
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
|
dest_asset_id= the addressee with whom the call is made
|
||||||
- To make a call using this client, you need a microphone and permission to use it
|
- 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
|
- 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
|
### Demo project
|
||||||
The demo project used initially and then modified for our needs `https://github.com/jamalag/mediasoup2`
|
The demo project used initially and then modified for our needs `https://github.com/jamalag/mediasoup2`
|
77
build.sh
@ -1,4 +1,40 @@
|
|||||||
#/!bin/bash
|
#/!bin/bash
|
||||||
|
## FUNCTIONS
|
||||||
|
function getGitVersion(){
|
||||||
|
version=$(git describe)
|
||||||
|
count=$(echo ${version%%-*} | grep -o "\." | wc -l)
|
||||||
|
if (( $count > 1 )); then
|
||||||
|
version=${version%%-*}
|
||||||
|
elif (( $count == 0 ));then
|
||||||
|
echo -e "Error: Git version \"${version%%-*}\" not respecting Safemobile standard.\n Must be like 4.xx or 4.xx.xx"
|
||||||
|
version="0.0.0"
|
||||||
|
else
|
||||||
|
if [[ "$1" == "dev" ]];then
|
||||||
|
cleanprefix=${version#*-} # remove everything before `-` including `-`
|
||||||
|
cleansuffix=${cleanprefix%-*} # remove everything after `-` including `-`
|
||||||
|
version="${version%%-*}.${cleansuffix}"
|
||||||
|
else
|
||||||
|
version="${version%%-*}.0" # one `%` remove everything after last `-`, two `%%` remove everything after all `-`
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
function addVersionPm2(){
|
||||||
|
file_pkg="package.json"
|
||||||
|
key=" \"version\": \""
|
||||||
|
|
||||||
|
if [ -f "$file_pkg" ] && [ ! -z "$version" ]; then
|
||||||
|
versionApp=" \"version\": \"$version\","
|
||||||
|
sed -i "s|^.*$key.*|${versionApp//\//\\/}|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
|
||||||
|
}
|
||||||
|
|
||||||
## PREBUILD PROCESS
|
## PREBUILD PROCESS
|
||||||
# check dist dir to be present and empty
|
# check dist dir to be present and empty
|
||||||
if [ ! -d "dist" ]; then
|
if [ ! -d "dist" ]; then
|
||||||
@ -9,38 +45,31 @@ else
|
|||||||
## CLEANUP
|
## CLEANUP
|
||||||
rm -fr dist/*
|
rm -fr dist/*
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -d "node_modules" ]; then
|
||||||
|
rm -fr node_modules
|
||||||
|
fi
|
||||||
|
|
||||||
# Install dependencies
|
# Install dependencies
|
||||||
#npm install
|
#npm install
|
||||||
|
|
||||||
## PROJECT NEEDS
|
## PROJECT NEEDS
|
||||||
echo "Building app... from $(git rev-parse --abbrev-ref HEAD)"
|
echo "Building app... from $(git rev-parse --abbrev-ref HEAD)"
|
||||||
#npm run-script build
|
#npm run-script build
|
||||||
cp -r {.env,app.js,package.json,server,public} dist/
|
cp -r {.env,app.js,package.json,server,public,doc,Dockerfile,tsconfig.json,.dockerignore} dist/
|
||||||
|
#cp -r ./* dist/
|
||||||
|
|
||||||
#Add version control for pm2
|
# Generate Git log
|
||||||
|
dateString=$(date +"%Y%m%d-%H%M%S")
|
||||||
|
git log --pretty=format:"%ad%x09%an%x09%s" --no-merges -20 > "dist/git-$dateString.log"
|
||||||
|
|
||||||
|
# Get Git version control
|
||||||
|
getGitVersion $1
|
||||||
|
|
||||||
|
# Add version control for pm2
|
||||||
cd dist
|
cd dist
|
||||||
#Add version control for pm2
|
addVersionPm2
|
||||||
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
|
## POST BUILD
|
||||||
|
|
||||||
cd -
|
cd -
|
||||||
|
BIN
doc/[video] Client - Mediasoup connect & produce@1.25x.png
Normal file
After Width: | Height: | Size: 1.2 MiB |
BIN
doc/[video] Client Android-iOS close Video call@1.25x.png
Normal file
After Width: | Height: | Size: 419 KiB |
BIN
doc/[video] Client-Client Workflow@1.25x.png
Normal file
After Width: | Height: | Size: 1.0 MiB |
BIN
doc/[video] Client-Dispatcher Workflow.png
Normal file
After Width: | Height: | Size: 968 KiB |
BIN
doc/[video] Dispatcher closed@1.25x.png
Normal file
After Width: | Height: | Size: 606 KiB |
After Width: | Height: | Size: 349 KiB |
BIN
doc/[video] HUB - Dispatcher close call@1.25x.png
Normal file
After Width: | Height: | Size: 412 KiB |
BIN
doc/[video] HUB - Dispatcher dieconnect@1.25x.png
Normal file
After Width: | Height: | Size: 421 KiB |
BIN
doc/[video] Video - Connection error.png
Normal file
After Width: | Height: | Size: 215 KiB |
BIN
doc/[video] Video Window closed@1.25x.png
Normal file
After Width: | Height: | Size: 567 KiB |
BIN
doc/[video] Waiting Call@1.25x.png
Normal file
After Width: | Height: | Size: 660 KiB |
Before Width: | Height: | Size: 571 KiB |
1150
package-lock.json
generated
@ -16,7 +16,7 @@
|
|||||||
"@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",
|
||||||
"mediasoup": "^3.10.4",
|
"mediasoup": "^3.15.5",
|
||||||
"mediasoup-client": "^3.6.54",
|
"mediasoup-client": "^3.6.54",
|
||||||
"parcel": "^2.7.0",
|
"parcel": "^2.7.0",
|
||||||
"socket.io": "^2.0.3",
|
"socket.io": "^2.0.3",
|
||||||
@ -29,4 +29,4 @@
|
|||||||
"ts-node-dev": "^2.0.0",
|
"ts-node-dev": "^2.0.0",
|
||||||
"watchify": "^4.0.0"
|
"watchify": "^4.0.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
215
public/bundle.js
@ -20353,7 +20353,7 @@ module.exports = yeast;
|
|||||||
},{}],94:[function(require,module,exports){
|
},{}],94:[function(require,module,exports){
|
||||||
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://testing.video.safemobile.org/',
|
||||||
}
|
}
|
||||||
},{}],95:[function(require,module,exports){
|
},{}],95:[function(require,module,exports){
|
||||||
const io = require('socket.io-client')
|
const io = require('socket.io-client')
|
||||||
@ -20368,10 +20368,24 @@ const ASSET_NAME = urlParams.get('assetName') || null;
|
|||||||
const ASSET_TYPE = urlParams.get('assetType') || null;
|
const ASSET_TYPE = urlParams.get('assetType') || null;
|
||||||
let callId = parseInt(urlParams.get('callId')) || null;
|
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
|
||||||
|
let remoteVideo = document.getElementById('remoteVideo')
|
||||||
|
remoteVideo.defaultMuted = true
|
||||||
|
let produceAudio = 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)
|
console.log('🟩 config', config)
|
||||||
|
|
||||||
|
produceAudioSelector = document.getElementById('produceAudio');
|
||||||
|
produceAudioSelector.addEventListener('change', e => {
|
||||||
|
if(e.target.checked) {
|
||||||
|
produceAudio = true
|
||||||
|
console.log('produce audio');
|
||||||
|
} else {
|
||||||
|
produceAudio = false
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
let socket, hub
|
let socket, hub
|
||||||
let device
|
let device
|
||||||
let rtpCapabilities
|
let rtpCapabilities
|
||||||
@ -20381,6 +20395,21 @@ let producerVideo
|
|||||||
let producerAudio
|
let producerAudio
|
||||||
let consumer
|
let consumer
|
||||||
let originAssetId
|
let originAssetId
|
||||||
|
let consumerVideo // local consumer video(consumer not transport)
|
||||||
|
let consumerAudio // local consumer audio(consumer not transport)
|
||||||
|
|
||||||
|
const remoteSoundControl = document.getElementById('remoteSoundControl');
|
||||||
|
|
||||||
|
remoteSoundControl.addEventListener('click', function handleClick() {
|
||||||
|
console.log('remoteSoundControl.textContent', remoteSoundControl.textContent);
|
||||||
|
if (remoteSoundControl.textContent === 'Unmute') {
|
||||||
|
remoteVideo.muted = false
|
||||||
|
remoteSoundControl.textContent = 'Mute';
|
||||||
|
} else {
|
||||||
|
remoteVideo.muted = true
|
||||||
|
remoteSoundControl.textContent = 'Unmute';
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
// https://mediasoup.org/documentation/v3/mediasoup-client/api/#ProducerOptions
|
// https://mediasoup.org/documentation/v3/mediasoup-client/api/#ProducerOptions
|
||||||
// https://mediasoup.org/documentation/v3/mediasoup-client/api/#transport-produce
|
// https://mediasoup.org/documentation/v3/mediasoup-client/api/#transport-produce
|
||||||
@ -20420,10 +20449,23 @@ setTimeout(() => {
|
|||||||
console.log(`[MEDIA] ${config.mediasoupAddress} | connected: ${socket.connected} | existsProducer: ${existsProducer}`)
|
console.log(`[MEDIA] ${config.mediasoupAddress} | connected: ${socket.connected} | existsProducer: ${existsProducer}`)
|
||||||
if (!IS_PRODUCER && existsProducer && consumer === undefined) {
|
if (!IS_PRODUCER && existsProducer && consumer === undefined) {
|
||||||
goConnect()
|
goConnect()
|
||||||
// document.getElementById('btnRecvSendTransport').click();
|
|
||||||
}
|
}
|
||||||
if (IS_PRODUCER && urlParams.get('testing') === 'true') { getLocalStream() }
|
if (IS_PRODUCER && urlParams.get('testing') === 'true') { getLocalStream() }
|
||||||
})
|
})
|
||||||
|
|
||||||
|
socket.on('new-producer', ({ callId, kind }) => {
|
||||||
|
console.log(`🟢 new-producer | callId: ${callId} | kind: ${kind} | Ready to consume`);
|
||||||
|
connectRecvTransport();
|
||||||
|
})
|
||||||
|
|
||||||
|
socket.on('close-producer', ({ callId, kind }) => {
|
||||||
|
console.log(`🔴 close-producer | callId: ${callId} | kind: ${kind}`);
|
||||||
|
if (kind === 'video') {
|
||||||
|
consumerVideo.close()
|
||||||
|
remoteVideo.srcObject = null
|
||||||
|
}
|
||||||
|
else if (kind === 'audio') consumerAudio.close()
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
if (IS_PRODUCER === true) {
|
if (IS_PRODUCER === true) {
|
||||||
@ -20502,7 +20544,7 @@ const streamSuccess = (stream) => {
|
|||||||
const getLocalStream = () => {
|
const getLocalStream = () => {
|
||||||
console.log('[getLocalStream]');
|
console.log('[getLocalStream]');
|
||||||
navigator.mediaDevices.getUserMedia({
|
navigator.mediaDevices.getUserMedia({
|
||||||
audio: true,
|
audio: produceAudio ? true : false,
|
||||||
video: {
|
video: {
|
||||||
qvga : { width: { ideal: 320 }, height: { ideal: 240 } },
|
qvga : { width: { ideal: 320 }, height: { ideal: 240 } },
|
||||||
vga : { width: { ideal: 640 }, height: { ideal: 480 } },
|
vga : { width: { ideal: 640 }, height: { ideal: 480 } },
|
||||||
@ -20580,7 +20622,7 @@ const createSendTransport = () => {
|
|||||||
console.log('[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 }, (value) => {
|
||||||
|
|
||||||
console.log(`[createWebRtcTransport] value: ${JSON.stringify(value)}`);
|
console.log(`[createWebRtcTransport] value: ${JSON.stringify(value)}`);
|
||||||
|
|
||||||
@ -20651,34 +20693,36 @@ const connectSendTransport = async () => {
|
|||||||
// this action will trigger the 'connect' and 'produce' events above
|
// this action will trigger the 'connect' and 'produce' events above
|
||||||
|
|
||||||
// Produce video
|
// Produce video
|
||||||
producerVideo = await producerTransport.produce(videoParams)
|
let producerVideoHandler = await producerTransport.produce(videoParams)
|
||||||
console.log('videoParams', videoParams);
|
console.log('videoParams', videoParams);
|
||||||
console.log('producerVideo', producerVideo);
|
console.log('producerVideo', producerVideo);
|
||||||
|
|
||||||
producerVideo.on('trackended', () => {
|
producerVideoHandler.on('trackended', () => {
|
||||||
console.log('track ended')
|
console.log('track ended')
|
||||||
// close video track
|
// close video track
|
||||||
})
|
})
|
||||||
|
|
||||||
producerVideo.on('transportclose', () => {
|
producerVideoHandler.on('transportclose', () => {
|
||||||
console.log('transport ended')
|
console.log('transport ended')
|
||||||
// close video track
|
// close video track
|
||||||
})
|
})
|
||||||
|
|
||||||
// Produce audio
|
// Produce audio
|
||||||
producerAudio = await producerTransport.produce(audioParams)
|
if (produceAudio) {
|
||||||
console.log('audioParams', audioParams);
|
let producerAudioHandler = await producerTransport.produce(audioParams)
|
||||||
console.log('producerAudio', producerAudio);
|
console.log('audioParams', audioParams);
|
||||||
|
console.log('producerAudio', producerAudio);
|
||||||
producerAudio.on('trackended', () => {
|
|
||||||
console.log('track ended')
|
producerAudioHandler.on('trackended', () => {
|
||||||
// close audio track
|
console.log('track ended')
|
||||||
})
|
// close audio track
|
||||||
|
})
|
||||||
producerAudio.on('transportclose', () => {
|
|
||||||
console.log('transport ended')
|
producerAudioHandler.on('transportclose', () => {
|
||||||
// close audio track
|
console.log('transport ended')
|
||||||
})
|
// close audio track
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
const answer = {
|
const answer = {
|
||||||
origin_asset_id: ASSET_ID,
|
origin_asset_id: ASSET_ID,
|
||||||
@ -20700,6 +20744,8 @@ const connectSendTransport = async () => {
|
|||||||
// Enable Close call button
|
// Enable Close call button
|
||||||
const closeCallBtn = document.getElementById('btnCloseCall');
|
const closeCallBtn = document.getElementById('btnCloseCall');
|
||||||
closeCallBtn.removeAttribute('disabled');
|
closeCallBtn.removeAttribute('disabled');
|
||||||
|
|
||||||
|
createRecvTransport();
|
||||||
}
|
}
|
||||||
|
|
||||||
const createRecvTransport = async () => {
|
const createRecvTransport = async () => {
|
||||||
@ -20739,7 +20785,8 @@ const createRecvTransport = async () => {
|
|||||||
errback(error)
|
errback(error)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
connectRecvTransport()
|
// We call it in new-rpoducer, we don't need it here anymore
|
||||||
|
// connectRecvTransport()
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -20762,34 +20809,91 @@ const connectRecvTransport = async () => {
|
|||||||
await socket.emit('consume', {
|
await socket.emit('consume', {
|
||||||
rtpCapabilities: device.rtpCapabilities,
|
rtpCapabilities: device.rtpCapabilities,
|
||||||
callId
|
callId
|
||||||
}, async ({ params }) => {
|
}, async ({videoParams, audioParams}) => {
|
||||||
if (params.error) {
|
console.log(`[consume] 🟩 videoParams`, videoParams)
|
||||||
console.log('Cannot Consume')
|
console.log(`[consume] 🟩 audioParams`, audioParams)
|
||||||
return
|
console.log('[consume] 🟩 consumerTransport', consumerTransport)
|
||||||
}
|
|
||||||
|
|
||||||
// Then consume with the local consumer transport
|
|
||||||
// which creates a consumer
|
|
||||||
consumer = await consumerTransport.consume({
|
|
||||||
id: params.id,
|
|
||||||
producerId: params.producerId,
|
|
||||||
kind: params.kind,
|
|
||||||
rtpParameters: params.rtpParameters
|
|
||||||
})
|
|
||||||
|
|
||||||
// destructure and retrieve the video track from the producer
|
|
||||||
const { track } = consumer
|
|
||||||
|
|
||||||
let stream = new MediaStream()
|
let stream = new MediaStream()
|
||||||
stream.addTrack(track)
|
|
||||||
// stream.removeTrack(track)
|
|
||||||
remoteVideo.srcObject = stream
|
|
||||||
socket.emit('consumer-resume')
|
|
||||||
console.log('consumer', consumer);
|
|
||||||
|
|
||||||
|
// Maybe the unit does not produce video or audio, so we must only consume what is produced
|
||||||
|
if (videoParams) {
|
||||||
|
console.log('❗ Have VIDEO stream to consume');
|
||||||
|
stream.addTrack(await getVideoTrask(videoParams))
|
||||||
|
} else {
|
||||||
|
console.log('❗ Don\'t have VIDEO stream to consume');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (audioParams) {
|
||||||
|
console.log('❗ Have AUDIO stream to consume');
|
||||||
|
let audioTrack = await getAudioTrask(audioParams)
|
||||||
|
stream.addTrack(audioTrack)
|
||||||
|
} else {
|
||||||
|
console.log('❗ Don\'t have AUDIO stream to consume');
|
||||||
|
}
|
||||||
|
|
||||||
|
socket.emit('consumer-resume')
|
||||||
|
|
||||||
|
remoteVideo.srcObject = stream
|
||||||
|
remoteVideo.setAttribute('autoplay', true)
|
||||||
|
|
||||||
|
remoteVideo.play()
|
||||||
|
.then(() => {
|
||||||
|
console.log('remoteVideo PLAY')
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
console.error(`remoteVideo PLAY ERROR | ${error.message}`)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const getVideoTrask = async (videoParams) => {
|
||||||
|
consumerVideo = await consumerTransport.consume({
|
||||||
|
id: videoParams.id,
|
||||||
|
producerId: videoParams.producerId,
|
||||||
|
kind: videoParams.kind,
|
||||||
|
rtpParameters: videoParams.rtpParameters
|
||||||
|
})
|
||||||
|
|
||||||
|
return consumerVideo.track
|
||||||
|
}
|
||||||
|
|
||||||
|
const getAudioTrask = async (audioParams) => {
|
||||||
|
consumerAudio = await consumerTransport.consume({
|
||||||
|
id: audioParams.id,
|
||||||
|
producerId: audioParams.producerId,
|
||||||
|
kind: audioParams.kind,
|
||||||
|
rtpParameters: audioParams.rtpParameters
|
||||||
|
})
|
||||||
|
|
||||||
|
consumerAudio.on('transportclose', () => {
|
||||||
|
console.log('transport closed so consumer closed')
|
||||||
|
})
|
||||||
|
|
||||||
|
const audioTrack = consumerAudio.track
|
||||||
|
|
||||||
|
audioTrack.applyConstraints({
|
||||||
|
audio: {
|
||||||
|
advanced: [
|
||||||
|
{
|
||||||
|
echoCancellation: {exact: true}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
autoGainControl: {exact: true}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
noiseSuppression: {exact: true}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
highpassFilter: {exact: true}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
return audioTrack
|
||||||
|
}
|
||||||
|
|
||||||
const closeCall = () => {
|
const closeCall = () => {
|
||||||
console.log('closeCall');
|
console.log('closeCall');
|
||||||
|
|
||||||
@ -20811,8 +20915,31 @@ const closeCall = () => {
|
|||||||
resetCallSettings()
|
resetCallSettings()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// const consume = async (kind) => {
|
||||||
|
// console.log(`[consume] kind: ${kind}`)
|
||||||
|
// console.log('createRecvTransport Consumer')
|
||||||
|
// await socket.emit('createWebRtcTransport', { sender: false, callId, dispatcher: true }, ({ params }) => {
|
||||||
|
// if (params.error) {
|
||||||
|
// console.log('createRecvTransport | createWebRtcTransport | Error', params.error)
|
||||||
|
// return
|
||||||
|
// }
|
||||||
|
// consumerTransport = device.createRecvTransport(params)
|
||||||
|
// consumerTransport.on('connect', async ({ dtlsParameters }, callback, errback) => {
|
||||||
|
// try {
|
||||||
|
// await socket.emit('transport-recv-connect', {
|
||||||
|
// dtlsParameters,
|
||||||
|
// })
|
||||||
|
// callback()
|
||||||
|
// } catch (error) {
|
||||||
|
// errback(error)
|
||||||
|
// }
|
||||||
|
// })
|
||||||
|
|
||||||
|
// connectRecvTransport()
|
||||||
|
// })
|
||||||
|
// }
|
||||||
|
|
||||||
btnLocalVideo.addEventListener('click', getLocalStream)
|
btnLocalVideo.addEventListener('click', getLocalStream)
|
||||||
btnRecvSendTransport.addEventListener('click', goConnect)
|
// btnRecvSendTransport.addEventListener('click', consume)
|
||||||
btnCloseCall.addEventListener('click', closeCall)
|
btnCloseCall.addEventListener('click', closeCall)
|
||||||
},{"./config":94,"mediasoup-client":66,"socket.io-client":82}]},{},[95]);
|
},{"./config":94,"mediasoup-client":66,"socket.io-client":82}]},{},[95]);
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
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://testing.video.safemobile.org/',
|
||||||
}
|
}
|
@ -34,6 +34,9 @@
|
|||||||
<body>
|
<body>
|
||||||
<body>
|
<body>
|
||||||
<div id="video">
|
<div id="video">
|
||||||
|
<legend>Client options:</legend>
|
||||||
|
<input type="checkbox" id="produceAudio" name="produceAudio">
|
||||||
|
<label for="produceAudio">Produce audio</label><br>
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<th>Local Video</th>
|
<th>Local Video</th>
|
||||||
@ -43,12 +46,24 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<div id="sharedBtns">
|
<div id="sharedBtns">
|
||||||
<video id="localVideo" autoplay class="video" muted></video>
|
<video
|
||||||
|
id="localVideo"
|
||||||
|
class="video"
|
||||||
|
autoplay
|
||||||
|
muted
|
||||||
|
playsinline
|
||||||
|
></video>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<div id="sharedBtns">
|
<div id="sharedBtns">
|
||||||
<video id="remoteVideo" autoplay class="video" ></video>
|
<video
|
||||||
|
id="remoteVideo"
|
||||||
|
class="video"
|
||||||
|
autoplay
|
||||||
|
muted
|
||||||
|
playsinline
|
||||||
|
></video>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@ -60,34 +75,11 @@
|
|||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<div id="sharedBtns">
|
<div id="sharedBtns">
|
||||||
<button id="btnRecvSendTransport">Consume</button>
|
<!-- <button id="btnRecvSendTransport">Consume</button> -->
|
||||||
|
<button id="remoteSoundControl">Unmute</button>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<!-- <tr>
|
|
||||||
<td colspan="2">
|
|
||||||
<div id="sharedBtns">
|
|
||||||
<button id="btnRtpCapabilities">2. Get Rtp Capabilities</button>
|
|
||||||
<br />
|
|
||||||
<button id="btnDevice">3. Create Device</button>
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<div id="sharedBtns">
|
|
||||||
<button id="btnCreateSendTransport">4. Create Send Transport</button>
|
|
||||||
<br />
|
|
||||||
<button id="btnConnectSendTransport">5. Connect Send Transport & Produce</button></td>
|
|
||||||
</div>
|
|
||||||
<td>
|
|
||||||
<div id="sharedBtns">
|
|
||||||
<button id="btnRecvSendTransport">6. Create Recv Transport</button>
|
|
||||||
<br />
|
|
||||||
<button id="btnConnectRecvTransport">7. Connect Recv Transport & Consume</button>
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
</tr> -->
|
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<div id="closeCallBtn">
|
<div id="closeCallBtn">
|
||||||
|
213
public/index.js
@ -10,10 +10,24 @@ const ASSET_NAME = urlParams.get('assetName') || null;
|
|||||||
const ASSET_TYPE = urlParams.get('assetType') || null;
|
const ASSET_TYPE = urlParams.get('assetType') || null;
|
||||||
let callId = parseInt(urlParams.get('callId')) || null;
|
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
|
||||||
|
let remoteVideo = document.getElementById('remoteVideo')
|
||||||
|
remoteVideo.defaultMuted = true
|
||||||
|
let produceAudio = 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)
|
console.log('🟩 config', config)
|
||||||
|
|
||||||
|
produceAudioSelector = document.getElementById('produceAudio');
|
||||||
|
produceAudioSelector.addEventListener('change', e => {
|
||||||
|
if(e.target.checked) {
|
||||||
|
produceAudio = true
|
||||||
|
console.log('produce audio');
|
||||||
|
} else {
|
||||||
|
produceAudio = false
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
let socket, hub
|
let socket, hub
|
||||||
let device
|
let device
|
||||||
let rtpCapabilities
|
let rtpCapabilities
|
||||||
@ -23,6 +37,21 @@ let producerVideo
|
|||||||
let producerAudio
|
let producerAudio
|
||||||
let consumer
|
let consumer
|
||||||
let originAssetId
|
let originAssetId
|
||||||
|
let consumerVideo // local consumer video(consumer not transport)
|
||||||
|
let consumerAudio // local consumer audio(consumer not transport)
|
||||||
|
|
||||||
|
const remoteSoundControl = document.getElementById('remoteSoundControl');
|
||||||
|
|
||||||
|
remoteSoundControl.addEventListener('click', function handleClick() {
|
||||||
|
console.log('remoteSoundControl.textContent', remoteSoundControl.textContent);
|
||||||
|
if (remoteSoundControl.textContent === 'Unmute') {
|
||||||
|
remoteVideo.muted = false
|
||||||
|
remoteSoundControl.textContent = 'Mute';
|
||||||
|
} else {
|
||||||
|
remoteVideo.muted = true
|
||||||
|
remoteSoundControl.textContent = 'Unmute';
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
// https://mediasoup.org/documentation/v3/mediasoup-client/api/#ProducerOptions
|
// https://mediasoup.org/documentation/v3/mediasoup-client/api/#ProducerOptions
|
||||||
// https://mediasoup.org/documentation/v3/mediasoup-client/api/#transport-produce
|
// https://mediasoup.org/documentation/v3/mediasoup-client/api/#transport-produce
|
||||||
@ -62,10 +91,23 @@ setTimeout(() => {
|
|||||||
console.log(`[MEDIA] ${config.mediasoupAddress} | connected: ${socket.connected} | existsProducer: ${existsProducer}`)
|
console.log(`[MEDIA] ${config.mediasoupAddress} | connected: ${socket.connected} | existsProducer: ${existsProducer}`)
|
||||||
if (!IS_PRODUCER && existsProducer && consumer === undefined) {
|
if (!IS_PRODUCER && existsProducer && consumer === undefined) {
|
||||||
goConnect()
|
goConnect()
|
||||||
// document.getElementById('btnRecvSendTransport').click();
|
|
||||||
}
|
}
|
||||||
if (IS_PRODUCER && urlParams.get('testing') === 'true') { getLocalStream() }
|
if (IS_PRODUCER && urlParams.get('testing') === 'true') { getLocalStream() }
|
||||||
})
|
})
|
||||||
|
|
||||||
|
socket.on('new-producer', ({ callId, kind }) => {
|
||||||
|
console.log(`🟢 new-producer | callId: ${callId} | kind: ${kind} | Ready to consume`);
|
||||||
|
connectRecvTransport();
|
||||||
|
})
|
||||||
|
|
||||||
|
socket.on('close-producer', ({ callId, kind }) => {
|
||||||
|
console.log(`🔴 close-producer | callId: ${callId} | kind: ${kind}`);
|
||||||
|
if (kind === 'video') {
|
||||||
|
consumerVideo.close()
|
||||||
|
remoteVideo.srcObject = null
|
||||||
|
}
|
||||||
|
else if (kind === 'audio') consumerAudio.close()
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
if (IS_PRODUCER === true) {
|
if (IS_PRODUCER === true) {
|
||||||
@ -144,7 +186,7 @@ const streamSuccess = (stream) => {
|
|||||||
const getLocalStream = () => {
|
const getLocalStream = () => {
|
||||||
console.log('[getLocalStream]');
|
console.log('[getLocalStream]');
|
||||||
navigator.mediaDevices.getUserMedia({
|
navigator.mediaDevices.getUserMedia({
|
||||||
audio: true,
|
audio: produceAudio ? true : false,
|
||||||
video: {
|
video: {
|
||||||
qvga : { width: { ideal: 320 }, height: { ideal: 240 } },
|
qvga : { width: { ideal: 320 }, height: { ideal: 240 } },
|
||||||
vga : { width: { ideal: 640 }, height: { ideal: 480 } },
|
vga : { width: { ideal: 640 }, height: { ideal: 480 } },
|
||||||
@ -222,7 +264,7 @@ const createSendTransport = () => {
|
|||||||
console.log('[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 }, (value) => {
|
||||||
|
|
||||||
console.log(`[createWebRtcTransport] value: ${JSON.stringify(value)}`);
|
console.log(`[createWebRtcTransport] value: ${JSON.stringify(value)}`);
|
||||||
|
|
||||||
@ -293,34 +335,36 @@ const connectSendTransport = async () => {
|
|||||||
// this action will trigger the 'connect' and 'produce' events above
|
// this action will trigger the 'connect' and 'produce' events above
|
||||||
|
|
||||||
// Produce video
|
// Produce video
|
||||||
producerVideo = await producerTransport.produce(videoParams)
|
let producerVideoHandler = await producerTransport.produce(videoParams)
|
||||||
console.log('videoParams', videoParams);
|
console.log('videoParams', videoParams);
|
||||||
console.log('producerVideo', producerVideo);
|
console.log('producerVideo', producerVideo);
|
||||||
|
|
||||||
producerVideo.on('trackended', () => {
|
producerVideoHandler.on('trackended', () => {
|
||||||
console.log('track ended')
|
console.log('track ended')
|
||||||
// close video track
|
// close video track
|
||||||
})
|
})
|
||||||
|
|
||||||
producerVideo.on('transportclose', () => {
|
producerVideoHandler.on('transportclose', () => {
|
||||||
console.log('transport ended')
|
console.log('transport ended')
|
||||||
// close video track
|
// close video track
|
||||||
})
|
})
|
||||||
|
|
||||||
// Produce audio
|
// Produce audio
|
||||||
producerAudio = await producerTransport.produce(audioParams)
|
if (produceAudio) {
|
||||||
console.log('audioParams', audioParams);
|
let producerAudioHandler = await producerTransport.produce(audioParams)
|
||||||
console.log('producerAudio', producerAudio);
|
console.log('audioParams', audioParams);
|
||||||
|
console.log('producerAudio', producerAudio);
|
||||||
producerAudio.on('trackended', () => {
|
|
||||||
console.log('track ended')
|
producerAudioHandler.on('trackended', () => {
|
||||||
// close audio track
|
console.log('track ended')
|
||||||
})
|
// close audio track
|
||||||
|
})
|
||||||
producerAudio.on('transportclose', () => {
|
|
||||||
console.log('transport ended')
|
producerAudioHandler.on('transportclose', () => {
|
||||||
// close audio track
|
console.log('transport ended')
|
||||||
})
|
// close audio track
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
const answer = {
|
const answer = {
|
||||||
origin_asset_id: ASSET_ID,
|
origin_asset_id: ASSET_ID,
|
||||||
@ -342,6 +386,8 @@ const connectSendTransport = async () => {
|
|||||||
// Enable Close call button
|
// Enable Close call button
|
||||||
const closeCallBtn = document.getElementById('btnCloseCall');
|
const closeCallBtn = document.getElementById('btnCloseCall');
|
||||||
closeCallBtn.removeAttribute('disabled');
|
closeCallBtn.removeAttribute('disabled');
|
||||||
|
|
||||||
|
createRecvTransport();
|
||||||
}
|
}
|
||||||
|
|
||||||
const createRecvTransport = async () => {
|
const createRecvTransport = async () => {
|
||||||
@ -381,7 +427,8 @@ const createRecvTransport = async () => {
|
|||||||
errback(error)
|
errback(error)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
connectRecvTransport()
|
// We call it in new-rpoducer, we don't need it here anymore
|
||||||
|
// connectRecvTransport()
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -404,34 +451,91 @@ const connectRecvTransport = async () => {
|
|||||||
await socket.emit('consume', {
|
await socket.emit('consume', {
|
||||||
rtpCapabilities: device.rtpCapabilities,
|
rtpCapabilities: device.rtpCapabilities,
|
||||||
callId
|
callId
|
||||||
}, async ({ params }) => {
|
}, async ({videoParams, audioParams}) => {
|
||||||
if (params.error) {
|
console.log(`[consume] 🟩 videoParams`, videoParams)
|
||||||
console.log('Cannot Consume')
|
console.log(`[consume] 🟩 audioParams`, audioParams)
|
||||||
return
|
console.log('[consume] 🟩 consumerTransport', consumerTransport)
|
||||||
}
|
|
||||||
|
|
||||||
// Then consume with the local consumer transport
|
|
||||||
// which creates a consumer
|
|
||||||
consumer = await consumerTransport.consume({
|
|
||||||
id: params.id,
|
|
||||||
producerId: params.producerId,
|
|
||||||
kind: params.kind,
|
|
||||||
rtpParameters: params.rtpParameters
|
|
||||||
})
|
|
||||||
|
|
||||||
// destructure and retrieve the video track from the producer
|
|
||||||
const { track } = consumer
|
|
||||||
|
|
||||||
let stream = new MediaStream()
|
let stream = new MediaStream()
|
||||||
stream.addTrack(track)
|
|
||||||
// stream.removeTrack(track)
|
|
||||||
remoteVideo.srcObject = stream
|
|
||||||
socket.emit('consumer-resume')
|
|
||||||
console.log('consumer', consumer);
|
|
||||||
|
|
||||||
|
// Maybe the unit does not produce video or audio, so we must only consume what is produced
|
||||||
|
if (videoParams) {
|
||||||
|
console.log('❗ Have VIDEO stream to consume');
|
||||||
|
stream.addTrack(await getVideoTrask(videoParams))
|
||||||
|
} else {
|
||||||
|
console.log('❗ Don\'t have VIDEO stream to consume');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (audioParams) {
|
||||||
|
console.log('❗ Have AUDIO stream to consume');
|
||||||
|
let audioTrack = await getAudioTrask(audioParams)
|
||||||
|
stream.addTrack(audioTrack)
|
||||||
|
} else {
|
||||||
|
console.log('❗ Don\'t have AUDIO stream to consume');
|
||||||
|
}
|
||||||
|
|
||||||
|
socket.emit('consumer-resume')
|
||||||
|
|
||||||
|
remoteVideo.srcObject = stream
|
||||||
|
remoteVideo.setAttribute('autoplay', true)
|
||||||
|
|
||||||
|
remoteVideo.play()
|
||||||
|
.then(() => {
|
||||||
|
console.log('remoteVideo PLAY')
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
console.error(`remoteVideo PLAY ERROR | ${error.message}`)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const getVideoTrask = async (videoParams) => {
|
||||||
|
consumerVideo = await consumerTransport.consume({
|
||||||
|
id: videoParams.id,
|
||||||
|
producerId: videoParams.producerId,
|
||||||
|
kind: videoParams.kind,
|
||||||
|
rtpParameters: videoParams.rtpParameters
|
||||||
|
})
|
||||||
|
|
||||||
|
return consumerVideo.track
|
||||||
|
}
|
||||||
|
|
||||||
|
const getAudioTrask = async (audioParams) => {
|
||||||
|
consumerAudio = await consumerTransport.consume({
|
||||||
|
id: audioParams.id,
|
||||||
|
producerId: audioParams.producerId,
|
||||||
|
kind: audioParams.kind,
|
||||||
|
rtpParameters: audioParams.rtpParameters
|
||||||
|
})
|
||||||
|
|
||||||
|
consumerAudio.on('transportclose', () => {
|
||||||
|
console.log('transport closed so consumer closed')
|
||||||
|
})
|
||||||
|
|
||||||
|
const audioTrack = consumerAudio.track
|
||||||
|
|
||||||
|
audioTrack.applyConstraints({
|
||||||
|
audio: {
|
||||||
|
advanced: [
|
||||||
|
{
|
||||||
|
echoCancellation: {exact: true}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
autoGainControl: {exact: true}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
noiseSuppression: {exact: true}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
highpassFilter: {exact: true}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
return audioTrack
|
||||||
|
}
|
||||||
|
|
||||||
const closeCall = () => {
|
const closeCall = () => {
|
||||||
console.log('closeCall');
|
console.log('closeCall');
|
||||||
|
|
||||||
@ -453,7 +557,30 @@ const closeCall = () => {
|
|||||||
resetCallSettings()
|
resetCallSettings()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// const consume = async (kind) => {
|
||||||
|
// console.log(`[consume] kind: ${kind}`)
|
||||||
|
// console.log('createRecvTransport Consumer')
|
||||||
|
// await socket.emit('createWebRtcTransport', { sender: false, callId, dispatcher: true }, ({ params }) => {
|
||||||
|
// if (params.error) {
|
||||||
|
// console.log('createRecvTransport | createWebRtcTransport | Error', params.error)
|
||||||
|
// return
|
||||||
|
// }
|
||||||
|
// consumerTransport = device.createRecvTransport(params)
|
||||||
|
// consumerTransport.on('connect', async ({ dtlsParameters }, callback, errback) => {
|
||||||
|
// try {
|
||||||
|
// await socket.emit('transport-recv-connect', {
|
||||||
|
// dtlsParameters,
|
||||||
|
// })
|
||||||
|
// callback()
|
||||||
|
// } catch (error) {
|
||||||
|
// errback(error)
|
||||||
|
// }
|
||||||
|
// })
|
||||||
|
|
||||||
|
// connectRecvTransport()
|
||||||
|
// })
|
||||||
|
// }
|
||||||
|
|
||||||
btnLocalVideo.addEventListener('click', getLocalStream)
|
btnLocalVideo.addEventListener('click', getLocalStream)
|
||||||
btnRecvSendTransport.addEventListener('click', goConnect)
|
// btnRecvSendTransport.addEventListener('click', consume)
|
||||||
btnCloseCall.addEventListener('click', closeCall)
|
btnCloseCall.addEventListener('click', closeCall)
|
22
server/ssl/cert-old.pem
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIDrzCCApegAwIBAgIUfpwrZVz3ogv3YeXbtL5wqIGEXGMwDQYJKoZIhvcNAQEL
|
||||||
|
BQAwZzELMAkGA1UEBhMCUk8xDTALBgNVBAgMBEFsYmExDTALBgNVBAcMBEFsYmEx
|
||||||
|
DDAKBgNVBAoMA0FBQTEQMA4GA1UEAwwHQUFBIENPTTEaMBgGCSqGSIb3DQEJARYL
|
||||||
|
YXNkQGFzZC5jb20wHhcNMjUwMjE4MTAwMDM5WhcNMzUwMjE2MTAwMDM5WjBnMQsw
|
||||||
|
CQYDVQQGEwJSTzENMAsGA1UECAwEQWxiYTENMAsGA1UEBwwEQWxiYTEMMAoGA1UE
|
||||||
|
CgwDQUFBMRAwDgYDVQQDDAdBQUEgQ09NMRowGAYJKoZIhvcNAQkBFgthc2RAYXNk
|
||||||
|
LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL7itjfKeuH5+f7c
|
||||||
|
43gAI+ppmxiwvzqhHLmkmlQrVbSC+P93yGekHIuXpbM3sqGRnvSJL3c9SIEdtVVj
|
||||||
|
yfJCs6KIsujxtiGn3hgQD01B6LqzFjSKnfYSGz8XDsjFW8cnpD1yRi3J7DhUjleM
|
||||||
|
bhQ0ileu9joS2OOhf84mtOkXJyY8q9xJH4ypimogcR98eM6ewnrb5Vhjo8YDaix2
|
||||||
|
6rceNmO/g4biknhXnBGc58/MnyAHtwzZxsu/k1IYtZuBYMPcAo7CQEX4XxXqQpaF
|
||||||
|
zaaoEUYB8KzVDlsr+i5SJzLtrHkyiuJijHq6YyOFkTwUULuJ7Wz0YL1redDCZV4i
|
||||||
|
EIVzBAcCAwEAAaNTMFEwHQYDVR0OBBYEFErSYY3J7ukx2KaRcHmazbMlKNBlMB8G
|
||||||
|
A1UdIwQYMBaAFErSYY3J7ukx2KaRcHmazbMlKNBlMA8GA1UdEwEB/wQFMAMBAf8w
|
||||||
|
DQYJKoZIhvcNAQELBQADggEBAC3TQY6jMGeHIEDEYS7sUbNZxe+azdDlx0DdwgLK
|
||||||
|
t+Zo2O40F55nVTZOUfypjCnLJnZitekptl5P6CPGrp2VX4/C0Ok4swwr+xamsjWt
|
||||||
|
9RR9yG0IpVfnCEziT4dpBPhNf/6ilgdpnkJUWY3LO3BJhM4Js7rfP4D9NgEYHeSR
|
||||||
|
YDN3TuEbi//bp43bhDh8EBQtDx9lPGOSUiKd3I7KfRttsxvLG2wBz3M5HXRc++6p
|
||||||
|
pHE+64YfkwV5xZDvU2M/EqePLp7DdQ9g+vQ68FxI6jMCegBoz+ueyE9RhZOk/cUh
|
||||||
|
uIXwIdFowjkUXgNncuGrR1gWf1mJVCHOsdnGZf3VSykGdWg=
|
||||||
|
-----END CERTIFICATE-----
|
@ -1,25 +1,24 @@
|
|||||||
-----BEGIN CERTIFICATE-----
|
-----BEGIN CERTIFICATE-----
|
||||||
MIIEJTCCAw2gAwIBAgIURHg2am+RarQxIVY1f3CicUQgRowwDQYJKoZIhvcNAQEL
|
MIID9TCCAt2gAwIBAgIJAJZHglUuIBjtMA0GCSqGSIb3DQEBCwUAMIGZMQswCQYD
|
||||||
BQAwgaExCzAJBgNVBAYTAlJPMRIwEAYDVQQIDAlCdWNoYXJlc3QxEjAQBgNVBAcM
|
VQQGEwJVUzERMA8GA1UECAwISWxsaW5vaXMxGDAWBgNVBAcMD1JvbGxpbmcgTWVh
|
||||||
CUJ1Y2hhcmVzdDETMBEGA1UECgwKU2FmZW1vYmlsZTETMBEGA1UECwwKU2FmZW1v
|
ZGl3czEYMBYGA1UECgwPU2FmZW1vYmlsZSBMTEMuMQ0wCwYDVQQLDARMSU5YMQ0w
|
||||||
YmlsZTETMBEGA1UEAwwKU2FmZW1vYmlsZTErMCkGCSqGSIb3DQEJARYcbWloYWku
|
CwYDVQQDDARMSU5YMSUwIwYJKoZIhvcNAQkBFhZzdXBwb3J0QHNhZmVtb2JpbGUu
|
||||||
Ym96aWVydUBzYWZlbW9iaWxlLmNvbTAeFw0yMjA4MDEyMjA0MjFaFw0zMjA3Mjky
|
Y29tMB4XDTI1MDIyNDEwMTAzNFoXDTM1MDIyMjEwMTAzNFowXjELMAkGA1UEBhMC
|
||||||
MjA0MjFaMIGhMQswCQYDVQQGEwJSTzESMBAGA1UECAwJQnVjaGFyZXN0MRIwEAYD
|
VVMxETAPBgNVBAgMCElsbGlub2lzMRgwFgYDVQQHDA9Sb2xsaW5nIE1lYWRpd3Mx
|
||||||
VQQHDAlCdWNoYXJlc3QxEzARBgNVBAoMClNhZmVtb2JpbGUxEzARBgNVBAsMClNh
|
EzARBgNVBAoMClNhZmVtb2JpbGUxDTALBgNVBAMMBExJTlgwggEiMA0GCSqGSIb3
|
||||||
ZmVtb2JpbGUxEzARBgNVBAMMClNhZmVtb2JpbGUxKzApBgkqhkiG9w0BCQEWHG1p
|
DQEBAQUAA4IBDwAwggEKAoIBAQDEd8LMvdkD4CyZkwVYh4V/RIBMH8d9jK1Yvozd
|
||||||
aGFpLmJvemllcnVAc2FmZW1vYmlsZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IB
|
0kPSGrC+ZXemmF7qHAD5g8RDkg1odkVuZa+jj0KlKHKtReF0p9OB/J6fNavlD7mM
|
||||||
DwAwggEKAoIBAQCSEk80aBAbmWtPBLcTjFLbvVmxuzDgzrjH7h2Hg/ly8lE/o2nZ
|
UiAtEpEgoKx3VlhrYEtIoFk+EJWaN1WObhYNfPtEw8Ncfww1cyDNmOnsifkLg+yh
|
||||||
1T2ESSuaQFsxw54ukqbj1ooQXF1DoIxSp+CiNzf/FTB6BaMkaG0ayE2Wnm2wkjKp
|
+aNxXzrR3toRF7pxFehrTpMRxx4LiIN2z4vHCdelvu9yJspzRAWd5QSQ6eGr3OPY
|
||||||
POnAzZgTabJoB/qeUlr9i4xiAyBhiQDk5KjdWYHxeZnSznqfIOPzAdw7ZJVYvqvT
|
yn+9v4XfN0YgnWSbH8aJ24bysIB3vOtsULjOfNJivNcx+/gQ9yP4AFhycperiDcu
|
||||||
GciHnoina5TzPUbpnLcR2LvHcLxuSuWQ6dTz/sfdZRx8lkbR3qltUazmJX+yxJJr
|
GGTiw+fwk1y6e04XulQ65mgxGTXNHlnM2ZvDyOwDZqL89Uf3AgMBAAGjejB4MB8G
|
||||||
kagq2V3cfpfLM8DOzPPEzuKHM6sK6ZgTqbc4ti+ul7Q1V+e0v2xNDtuYHkbaOuyd
|
A1UdIwQYMBaAFGQaM9lRXGKKghjag6SPD+uHK3K5MAkGA1UdEwQCMAAwCwYDVR0P
|
||||||
ucmaZ3R++0ryoWWan5OFWZIKjttKy/yq8MUrAgMBAAGjUzBRMB0GA1UdDgQWBBSM
|
BAQDAgTwMB4GA1UdEQQXMBWHBMCoAceCDTE5Mi4xNjguMS4xOTkwHQYDVR0OBBYE
|
||||||
nlDraef71C/filHpA7dDpwmB7zAfBgNVHSMEGDAWgBSMnlDraef71C/filHpA7dD
|
FHNfBgu/Ixj2j6yDTiDluw6/i3cEMA0GCSqGSIb3DQEBCwUAA4IBAQAojT+cdzfU
|
||||||
pwmB7zAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQBNySms9mXG
|
sVq/ODttG8wS23Du20W2iNdvlAwkgni0UgxTJQ12odtIH9WZAVS46G++t2so87Ki
|
||||||
PVOmFAm9YjMjRY+cUpa0Gm6saxp9VOyrAg2KzdwG6LNGgauNsIra1ytM40NASspN
|
gp6OK25AWtsQ7oLFK2P6VpaVGH6FwRSODFTly7Wv+7US7NmB/DO215+rG7q7C7Ag
|
||||||
r+L49gUCmASUGOqeZCpJjkKAsGspQ4WQKKI6YW8h5dsSuud2qyQtm+w1RKDq+wih
|
J6zrsQgLPR6M6rZRrOs9Hd12oX6zRgEaYnbIc/Z1DVPRmCDiQISE5M8LihIO4sOW
|
||||||
A+B82xWXcFFd52gp6nerib4Pf9ATooOmBMCHFZwC+74sKCv7fXDlzLGdCII8lmI4
|
gmDacLhM9lbuMvbHEkCNnOuAzdWRmvR06CyBXmu/9iusyWYvgwI6bHFAZRYCOTmB
|
||||||
uq5eFrSS1NeT3iQCwGb9SHfyFkCliaEdpskqmWhonckN0tJVV118SvknV/h9oIsw
|
+poHSGAlTmivcbNhHyZjS63NafRU7sSuc0JDzWQAdkA1AclSokfC8dJC6fnKBujY
|
||||||
uEMIib6YOBlrU+FInnpqpc8VuR4vv0Yro9XrvmurzLuN8k/lVVkr6NMzyNY9mbkF
|
o2WFKJMFrFS3
|
||||||
9p/Sxd5yIeam
|
|
||||||
-----END CERTIFICATE-----
|
-----END CERTIFICATE-----
|
||||||
|
28
server/ssl/key-old.pem
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
-----BEGIN PRIVATE KEY-----
|
||||||
|
MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQC+4rY3ynrh+fn+
|
||||||
|
3ON4ACPqaZsYsL86oRy5pJpUK1W0gvj/d8hnpByLl6WzN7KhkZ70iS93PUiBHbVV
|
||||||
|
Y8nyQrOiiLLo8bYhp94YEA9NQei6sxY0ip32Ehs/Fw7IxVvHJ6Q9ckYtyew4VI5X
|
||||||
|
jG4UNIpXrvY6EtjjoX/OJrTpFycmPKvcSR+MqYpqIHEffHjOnsJ62+VYY6PGA2os
|
||||||
|
duq3HjZjv4OG4pJ4V5wRnOfPzJ8gB7cM2cbLv5NSGLWbgWDD3AKOwkBF+F8V6kKW
|
||||||
|
hc2mqBFGAfCs1Q5bK/ouUicy7ax5MoriYox6umMjhZE8FFC7ie1s9GC9a3nQwmVe
|
||||||
|
IhCFcwQHAgMBAAECggEAMJWSjGuwUCDoZNqC2PGsMoczjxq5aWpFXejL0P2AoGOv
|
||||||
|
jZJGwz5Nd6ge6BkWkbH3M8VQ+/fwotBVbYjrBwq8HvPNGaYf1bwctqIryt2qJw7a
|
||||||
|
6X+Yid986NdtD2PQIsXvsyYJP7FDuuimnBjlkaX3yi6BhDF026co2OcYJ7WZZM0e
|
||||||
|
nc6JR7wGFZM3Dw3ybFvGrK4k7/Iq2N6wqedzCOvDbLXUC16UtmRVIOuiuNm+THrl
|
||||||
|
BiD37AKwB/LZRcdSQ1HeiWlK42Zc+IikHPJhl0PACcJNFNB3u2rdP8maSu5aMLku
|
||||||
|
yHnKCz6w9C1vDKrI/iszW2QCky+mGBD9WKK2u6hxFQKBgQDtcfL8hMKj6Ki/dsqR
|
||||||
|
McGPs1rLgZFAH9axubUth0uLdsEQDZtkoJIzXt8RLS3exuHMKt+Ln6YAOEhKm8Cl
|
||||||
|
OqIg0E/8SNi7QryU9yfqFqcE2QBZL0QVtvYZeUuiHIOrpc0bmTdNvp8i7zWw/oz6
|
||||||
|
ymeJ6vpEWKDpOvUnfm79XJbh+wKBgQDNzVjUNfo5s6QNnZlJvwI3J2mAsfLMVQxp
|
||||||
|
++P41f+dUCoAsEPujxASthdDxRND9oIfsTodA+VkrlLhs1JyTe4PlPcfSl7D5QSV
|
||||||
|
ayXVHF9iLbGM8fWMf6zBTebdaw9GqY3KTOHBH+X+JOHPP9dI6a4l7Ok8tFE9ia8M
|
||||||
|
G8Ce7djUZQKBgDSfGDaWRXyFx0AHV4Ut/bOXD/whzsrjQ3VHrrtUTI2v18FzAoke
|
||||||
|
fMgdslngJVZFxSy2I6yRyPwrfPnr4pm7kMqs380NZ9q4Q4rP62yZcJJGdSlOrEwT
|
||||||
|
rB6hHv3iS9vydq4zGmqEYEghs0hyYVQDH0cVaDlVWvPVORdzka1co6OZAoGBAJHl
|
||||||
|
TV/DlExrqZVtcEnzeyKWchimDjYE5PQNeiPhsYBYYC50xvPLv91D8WI9x9aaXs0Q
|
||||||
|
2t3O8URawK74bS5TSL0LIdWw51WAeatjdkKKBqSXOBNvRGAB8vpmu4+kYgP6F2ae
|
||||||
|
8jvy3R06EErYO0qZPrfsJ7y9KAq0HMA8vGTuwJRxAoGBAMfWJLseheDXKUXndnR9
|
||||||
|
ovNA+spTTFECtoLwhWxwgoL3GYVqSA96RfnmdKHY4d5isQ1g/JN05Uo6bL7HKJCG
|
||||||
|
BwS9WCsa6fHhbJR31fP16UQNNknNSwTtUoeJavwarQ7MB5CT9Fz5HsaC4NGaQkve
|
||||||
|
86Barwb6tt4iu4Y8a2bcG/sE
|
||||||
|
-----END PRIVATE KEY-----
|
@ -1,28 +1,28 @@
|
|||||||
-----BEGIN PRIVATE KEY-----
|
-----BEGIN PRIVATE KEY-----
|
||||||
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
|
||||||
xvrhZIQLy0ujoDPPBE8+3Q==
|
P4Hmmp4712UC4HkhQLSJ6HU=
|
||||||
-----END PRIVATE KEY-----
|
-----END PRIVATE KEY-----
|
||||||
|