codysherman / 2nfm

Share your screen and computer's audio via WebRTC!
https://2n.fm
BSD 3-Clause "New" or "Revised" License
31 stars 16 forks source link

Player: fix double audio in Firefox #162

Closed sammoore closed 4 years ago

sammoore commented 4 years ago

Solves the double audio fix by stopping the original tracks after they have been cloned; this doesn't work in Chrome, so this is only applied in Firefox. This also disables the Chrome double audio fix in Firefox, as it is not needed.

In order to distinguish Firefox from other browsers, I'm using the same method RTCMultiConnection does: the existence of navigator.mozGetUserMedia. Alternative suggestions are welcome.

Closes #147