how to restore the negotiation after changing the camera and microphone?Using WebRTC how to choose mic and camera?How to change the href for a hyperlink using jQueryHow to change an element's class with JavaScript?How to manage a redirect request after a jQuery Ajax callHow to Check if element is visible after scrolling?How to insert an element after another element in JavaScript without using a library?How to dynamically change header based on AngularJS partial view?Join room without camera and microphoneNeed help for audio conference using Kurento composite media element in NodejsMultiparty audio in WebRTC on iOS/Android is garbledUsing WebRTC how to choose mic and camera?
Specifying BOM substitutions / alternatives with Contract Manufacturer (CM)
Why is the stock market so unpredictable?
I reverse the source code, you negate the input!
Floating Point XOR
Is there a connection between IT and Ghostbusters?
Temporarily moving a SQL Server 2016 database to SQL Server 2017 and then moving back. Is it possible?
Algorithm for competing cells of 0s and 1s
Is it possible to get a pointer to one subobject via a pointer to a different, unreleated subobject?
How to ask a man to not take up more than one seat on public transport while avoiding conflict?
Madrid to London w/ Expired 90/180 days stay as US citizen
How often is duct tape used during crewed space missions?
Can I separate garlic into cloves for storage?
How do I write this symbol in latex? (disjoint sharp operator)
Why are there two bearded faces wearing red hats on my stealth bomber icon?
Weapon class firing logic in JavaScript
Audire, with accusative or dative?
Who are the people reviewing far more papers than they're submitting for review?
Microservices and Stored Procedures
How do I politely tell a student to take a shower?
How could artificial intelligence harm us?
What is the maximum viable speed for a projectile within earth's atmosphere?
Why do things cool down?
Which museums have artworks of all four ninja turtles' namesakes?
Is there an in-universe reason Harry says this or is this simply a Rowling mistake?
how to restore the negotiation after changing the camera and microphone?
Using WebRTC how to choose mic and camera?How to change the href for a hyperlink using jQueryHow to change an element's class with JavaScript?How to manage a redirect request after a jQuery Ajax callHow to Check if element is visible after scrolling?How to insert an element after another element in JavaScript without using a library?How to dynamically change header based on AngularJS partial view?Join room without camera and microphoneNeed help for audio conference using Kurento composite media element in NodejsMultiparty audio in WebRTC on iOS/Android is garbledUsing WebRTC how to choose mic and camera?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
About a month ago, a Stackoverflow partner helped me with a big question, like changing the camera and the microphone during a conference. That question was answered in the following link:
Using WebRTC how to choose mic and camera?
After changing the camera and microphone, the previous media flow remains active. So the other people in the conference can not receive the new flow I have in some way.
I would like to know how to renegotiate this new flow, if necessary.
The library that I use for webRTC implementation in the project is "simplewebRTC" currently in disuse.
The code I use to change devices is based entirely on what was achieved in my previous question ...
javascript angularjs webrtc simplewebrtc
add a comment
|
About a month ago, a Stackoverflow partner helped me with a big question, like changing the camera and the microphone during a conference. That question was answered in the following link:
Using WebRTC how to choose mic and camera?
After changing the camera and microphone, the previous media flow remains active. So the other people in the conference can not receive the new flow I have in some way.
I would like to know how to renegotiate this new flow, if necessary.
The library that I use for webRTC implementation in the project is "simplewebRTC" currently in disuse.
The code I use to change devices is based entirely on what was achieved in my previous question ...
javascript angularjs webrtc simplewebrtc
add a comment
|
About a month ago, a Stackoverflow partner helped me with a big question, like changing the camera and the microphone during a conference. That question was answered in the following link:
Using WebRTC how to choose mic and camera?
After changing the camera and microphone, the previous media flow remains active. So the other people in the conference can not receive the new flow I have in some way.
I would like to know how to renegotiate this new flow, if necessary.
The library that I use for webRTC implementation in the project is "simplewebRTC" currently in disuse.
The code I use to change devices is based entirely on what was achieved in my previous question ...
javascript angularjs webrtc simplewebrtc
About a month ago, a Stackoverflow partner helped me with a big question, like changing the camera and the microphone during a conference. That question was answered in the following link:
Using WebRTC how to choose mic and camera?
After changing the camera and microphone, the previous media flow remains active. So the other people in the conference can not receive the new flow I have in some way.
I would like to know how to renegotiate this new flow, if necessary.
The library that I use for webRTC implementation in the project is "simplewebRTC" currently in disuse.
The code I use to change devices is based entirely on what was achieved in my previous question ...
javascript angularjs webrtc simplewebrtc
javascript angularjs webrtc simplewebrtc
asked Mar 28 at 14:31
lucas emanuel himelfarblucas emanuel himelfarb
144 bronze badges
144 bronze badges
add a comment
|
add a comment
|
1 Answer
1
active
oldest
votes
I don't know about simpleWebRTC, but in plain WebRTC renegotiation is not necessary.
Just use sender.replaceTrack(). It's async, so to switch both camera and mic at the same time:
navigator.mediaDevices.getUserMedia(constraints)
.then(stream =>
video.srcObject = stream;
return Promise.all(stream.getTracks().map(track =>
const sender = pc.getSenders().find((s => s.track.kind == track.kind);
return sender.replaceTrack(track);
));
)
.catch(err => console.log(err));
This should instantly cause the sender to switch to sending media from your new camera and microphone. The other side won't know the difference.
Thank you! right now I test everything
– lucas emanuel himelfarb
Apr 3 at 13:33
add a comment
|
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55400158%2fhow-to-restore-the-negotiation-after-changing-the-camera-and-microphone%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I don't know about simpleWebRTC, but in plain WebRTC renegotiation is not necessary.
Just use sender.replaceTrack(). It's async, so to switch both camera and mic at the same time:
navigator.mediaDevices.getUserMedia(constraints)
.then(stream =>
video.srcObject = stream;
return Promise.all(stream.getTracks().map(track =>
const sender = pc.getSenders().find((s => s.track.kind == track.kind);
return sender.replaceTrack(track);
));
)
.catch(err => console.log(err));
This should instantly cause the sender to switch to sending media from your new camera and microphone. The other side won't know the difference.
Thank you! right now I test everything
– lucas emanuel himelfarb
Apr 3 at 13:33
add a comment
|
I don't know about simpleWebRTC, but in plain WebRTC renegotiation is not necessary.
Just use sender.replaceTrack(). It's async, so to switch both camera and mic at the same time:
navigator.mediaDevices.getUserMedia(constraints)
.then(stream =>
video.srcObject = stream;
return Promise.all(stream.getTracks().map(track =>
const sender = pc.getSenders().find((s => s.track.kind == track.kind);
return sender.replaceTrack(track);
));
)
.catch(err => console.log(err));
This should instantly cause the sender to switch to sending media from your new camera and microphone. The other side won't know the difference.
Thank you! right now I test everything
– lucas emanuel himelfarb
Apr 3 at 13:33
add a comment
|
I don't know about simpleWebRTC, but in plain WebRTC renegotiation is not necessary.
Just use sender.replaceTrack(). It's async, so to switch both camera and mic at the same time:
navigator.mediaDevices.getUserMedia(constraints)
.then(stream =>
video.srcObject = stream;
return Promise.all(stream.getTracks().map(track =>
const sender = pc.getSenders().find((s => s.track.kind == track.kind);
return sender.replaceTrack(track);
));
)
.catch(err => console.log(err));
This should instantly cause the sender to switch to sending media from your new camera and microphone. The other side won't know the difference.
I don't know about simpleWebRTC, but in plain WebRTC renegotiation is not necessary.
Just use sender.replaceTrack(). It's async, so to switch both camera and mic at the same time:
navigator.mediaDevices.getUserMedia(constraints)
.then(stream =>
video.srcObject = stream;
return Promise.all(stream.getTracks().map(track =>
const sender = pc.getSenders().find((s => s.track.kind == track.kind);
return sender.replaceTrack(track);
));
)
.catch(err => console.log(err));
This should instantly cause the sender to switch to sending media from your new camera and microphone. The other side won't know the difference.
edited Mar 29 at 0:09
answered Mar 29 at 0:02
jibjib
24.5k7 gold badges50 silver badges100 bronze badges
24.5k7 gold badges50 silver badges100 bronze badges
Thank you! right now I test everything
– lucas emanuel himelfarb
Apr 3 at 13:33
add a comment
|
Thank you! right now I test everything
– lucas emanuel himelfarb
Apr 3 at 13:33
Thank you! right now I test everything
– lucas emanuel himelfarb
Apr 3 at 13:33
Thank you! right now I test everything
– lucas emanuel himelfarb
Apr 3 at 13:33
add a comment
|
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55400158%2fhow-to-restore-the-negotiation-after-changing-the-camera-and-microphone%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown