We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e92ef83 commit 13e211aCopy full SHA for 13e211a
README.md
@@ -17,7 +17,7 @@ const pc = new RTCPeerConnection({ bundlePolicy: "max-bundle" });
17
//Send all tracks
18
for (const track of stream.getTracks()) {
19
//You could add simulcast too here
20
- pc.addTrack(track, { 'direction': 'sendonly' });
+ pc.addTransceiver(track, { 'direction': 'sendonly' });
21
}
22
23
//Create whip client
0 commit comments