Questions tagged [openwebrtc]

With OpenWebRTC you can build native WebRTC apps that communicate with browsers that supports the WebRTC standard

Links

License

OpenWebRTC is released under BSD-2 clause.

83 questions
2
votes
1 answer

what is the appropriate way to achieve offer to recieve and send in webRTC?

in my case after get everything done and running i want to migrate from add track to addTranciever i have 2 peerConnection yourConn = new RTCPeerConnection(servers); yourConn2 = new RTCPeerConnection(servers); and with following steps i see in many…
Adam
  • 113
  • 1
  • 8
2
votes
0 answers

Firebase SDK conflicts with WebRtc SDK | ssl_lib.cc multiple definitions of functions

Pre-requisites Pre-built SDK from the website Firebase C++ SDK version: 9.0.0 Main Firebase Components in concern: App (Auth, Database, etc.) Other Firebase Components in use: Database (Auth, Database, etc.) The platform you are using the C++…
2
votes
0 answers

Create org.webrtc.JavaI420Buffer from YUV420 ByteBuffer

Hi I am working on a live streaming solution where I need to edit the local video frame and send it to the connected peer, for this task I am…
Anuj J Pandey
  • 656
  • 1
  • 4
  • 17
2
votes
1 answer

Serverless WebRTC SDP / ICE Timeout

I am creating a serverless webRTC connection therefore I manually relay SDP info between two machines. If the response SDP is not given within a very short period of time after the offer SDP, the connection fails/times out. Is there a way to extend…
BSomo
  • 21
  • 4
2
votes
0 answers

WebRtc Audio transferring stopped after few seconds

From last few days I'm working on WebRtc I setup everything at server side and android side also, but when I call via an Android device, after few seconds audio transferring stopped while it's working fine web to web, so what am I doing wrong at…
Nilesh Rathore
  • 886
  • 1
  • 12
  • 22
2
votes
1 answer

Add Track to media stream

Is it possible to add or remove audio track to a stream after the stream connect to the pearConnection? I was able to do it before ( in getUserMedia ) But it doesn't work after the stream connect to the peerConnection Thanks you
MoShe
  • 6,197
  • 17
  • 51
  • 77
2
votes
1 answer

Identifying online users in WebRTC

I am trying to create a website which implements webrtc functionality.But in all the samples and reference documents , I was unable to find how to select for a specific user to chat with. Do i need to have some server kind of setup to list all…
Vipin YoYo
  • 113
  • 2
  • 7
2
votes
1 answer

openwebrtc demo is not working in Chrome

Chrome supports WebRTC. But openwebrtc I am not able to run http://demo.openwebrtc.org:38080/ while apprtc I am able to run https://apprtc.appspot.com/ so why this problem ? so what is the difference between openwebrtc and apprtc ? is there any…
Durai Amuthan.H
  • 31,670
  • 10
  • 160
  • 241
1
vote
1 answer

why there pion/webrtc generate candidate list have no tcp address

I want use golang pion/webrtc to publish local video file to a video server, bug this video server only support TCP connection, when i generate offer SDP by pion/webrtc code and candidate list have no one TCP candidate, so ICE connect failed. When I…
ahaooahaz
  • 38
  • 5
1
vote
1 answer

How many ICE candidates to exchange for video call?

Suppose there are 2 users user 1: 10 Ice candidates generated user 2: 5 Ice candidates generated And I know only 1 candidate is required to establish a connection. So any of the above user sends candidates to other user and the connection gets…
1
vote
1 answer

Flutter WebRTC camera doesn't show up

I'm working on WebRTC for video calling in Flutter. Everything is working like charm, but when I run the app it does not show the camera both local camera and remote (Camera Permission is given), but if I hot reload the app the camera shows. This is…
1
vote
0 answers

Unable to publish localstream using owt-client-javascript on owt-server

I have successfully installed intel owt-server on ubuntu 18.04 as described in https://github.com/open-webrtc-toolkit/owt-server. Now I am using owt-client-javascript (https://github.com/open-webrtc-toolkit/owt-client-javascript) conference sample…
1
vote
1 answer

Issue with installing Intel open webrtc toolkit server in AWS

I am trying to set up the Intel OWT server with the helo of this intel official document. https://github.com/open-webrtc-toolkit/owt-server/blob/master/doc/servermd/Server.md . I also checked these documents …
Annonymous
  • 45
  • 7
1
vote
0 answers

How to show a Voice Activity Indicator from a Web RTC Voice Engine audio channel in C++?

I want to show an indicator when i am receiving voice using the voice engine of web rtc. I found a code sample of a VoiceActivityIndicator but the sample is dated . 2012 , and it do no more exists in web RTC current source code. the information…
pplaquette
  • 11
  • 3
1
vote
0 answers

Using a browser as a WebRTC SFU

I'm building a webrtc project, and i need to: route specific stream to specific users record the streams on the server I know this is typically the job of an SFU (selective forwarding unit) However, before finding out about SFUs, I had previously…