Send answer on createSendTransport with 7s delay
This commit is contained in:
parent
5373b58e99
commit
ab540b276a
@ -208,22 +208,23 @@ const getRtpCapabilities = () => {
|
||||
|
||||
const createSendTransport = () => {
|
||||
|
||||
|
||||
const answer = {
|
||||
origin_asset_id: ASSET_ID,
|
||||
dest_asset_id: originAssetId || parseInt(urlParams.get('dest_asset_id')),
|
||||
type: 'notify-answer',
|
||||
origin_asset_priority: 1,
|
||||
origin_asset_type_name: ASSET_TYPE,
|
||||
origin_asset_name: ASSET_NAME,
|
||||
video_call_id: callId,
|
||||
answer: 'accepted', // answer: 'rejected'
|
||||
};
|
||||
console.log('SEND answer', answer);
|
||||
hub.emit(
|
||||
'video',
|
||||
JSON.stringify(answer)
|
||||
);
|
||||
setTimeout(() => {
|
||||
const answer = {
|
||||
origin_asset_id: ASSET_ID,
|
||||
dest_asset_id: originAssetId || parseInt(urlParams.get('dest_asset_id')),
|
||||
type: 'notify-answer',
|
||||
origin_asset_priority: 1,
|
||||
origin_asset_type_name: ASSET_TYPE,
|
||||
origin_asset_name: ASSET_NAME,
|
||||
video_call_id: callId,
|
||||
answer: 'accepted', // answer: 'rejected'
|
||||
};
|
||||
console.log('SEND answer', answer);
|
||||
hub.emit(
|
||||
'video',
|
||||
JSON.stringify(answer)
|
||||
);
|
||||
|
||||
|
||||
// see server's socket.on('createWebRtcTransport', sender?, ...)
|
||||
// this is a call from Producer, so sender = true
|
||||
@ -286,6 +287,10 @@ const createSendTransport = () => {
|
||||
})
|
||||
connectSendTransport()
|
||||
})
|
||||
|
||||
|
||||
|
||||
}, 7000);
|
||||
}
|
||||
|
||||
const connectSendTransport = async () => {
|
||||
|
Loading…
Reference in New Issue
Block a user