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;








1















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 ...










share|improve this question






























    1















    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 ...










    share|improve this question


























      1












      1








      1








      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 ...










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 28 at 14:31









      lucas emanuel himelfarblucas emanuel himelfarb

      144 bronze badges




      144 bronze badges

























          1 Answer
          1






          active

          oldest

          votes


















          0
















          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.






          share|improve this answer



























          • Thank you! right now I test everything

            – lucas emanuel himelfarb
            Apr 3 at 13:33










          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
          );



          );














          draft saved

          draft discarded
















          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









          0
















          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.






          share|improve this answer



























          • Thank you! right now I test everything

            – lucas emanuel himelfarb
            Apr 3 at 13:33















          0
















          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.






          share|improve this answer



























          • Thank you! right now I test everything

            – lucas emanuel himelfarb
            Apr 3 at 13:33













          0














          0










          0









          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.






          share|improve this answer















          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.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          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

















          • 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








          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.




















          draft saved

          draft discarded















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript