Questions tagged [webrtc-android]

151 questions
0
votes
1 answer

How Can I send local video stream to server?

I am able to createOffer in local and send sdp to server.Also, got server answer and got sdp. Now, How Can I send my local video stream to server? I don't want server video. private void startStreamingVideo() { //creating local mediastream …
Shweta Chauhan
  • 6,739
  • 6
  • 37
  • 57
0
votes
2 answers

I am unable to initialise createOffer() after complete rendering of local stream?

I am working on Video/Audio streaming functionality in my project and I am using react-native-webrtc library to implement the above features. Initially I am rendering local stream on ComponentDidMount() componentDidMount () { …
0
votes
1 answer

Trying to implement WebRTC and getting: Error inflating org.webrtc.SurfaceViewRenderer

Trying to implement the WebRTC inside my app following the Meshenger approach and it works well there, but for some reason, I am getting the inflating error. The version I am using is: 'org.webrtc:google-webrtc:1.0.28513' Here is the…
0
votes
1 answer

How can I call POST method on "offer" endpoint with sdp details?

I am new to WebRTC and I have lots of confusion regarding this. I don't know what I am asking here is possible or not? I want to do live streaming of video from android to web. I did basic setup and reached to step where we can able to create…
Shweta Chauhan
  • 6,739
  • 6
  • 37
  • 57
0
votes
1 answer

Webrtc - How to add Video MediaConstraint in android?

In webrtc, how to add video constraints such as min_height, max_height, min_fps etc., in Android using the peer connection?
Ganesh S S
  • 571
  • 5
  • 10
0
votes
1 answer

How to remove WMS from semantic in sesssion description?

I am using MQTT with Webrtc, I have to pass a specific SDP object to the server. I don't know why WMS gets added to my semantics . Can anyone have proper idea of what it stands for and How to remove it? Instead of this SEMANTICS : **WMS** Stream …
Richa Shah
  • 930
  • 3
  • 12
  • 27
0
votes
2 answers

Getting Device Label in Webview WebRTC

I have an app, that opens a webview to a website of mine. This website opens the rear camera to take a picture. I can get it done until there, but by default the camera selected is not the preferred one. In my Samsung S10, the camera opened is the…
Marc Pérez
  • 293
  • 3
  • 9
0
votes
1 answer

How to increase the sound Volume Output in Webrtc

Am working on a webrtc android application and everything is working fine except two things... which are; switching the default sound output device from the Earpiece to Speaker and vice versa.. I have tried to use the code below from this…
Garande
  • 174
  • 2
  • 13
0
votes
0 answers

How to zoom camera using webRTC in android

Is there any API to zoom camera using webRTC in android. I read this link but I didn't find setZoom or isZoomSupported methods in webRTC library. Please help me to solve this issue.
Shashank Gupta
  • 165
  • 2
  • 16
0
votes
0 answers

libjingle Android crash while restarting the video call

using libjingle for video call android. Usecase is Call should be reconnected when the network is reconnected. So, what is happening is When the network lost and the peer connection state is disconnected and then went to a failure state. Getting…
Kumar Kalluri
  • 493
  • 2
  • 6
  • 26
0
votes
1 answer

How can I create a receive-only sdp offer of webrtc?

I know how to create a send-only offer by add "OfferToReceiveVideo:false" and "OfferToReceiveAudio:false" in param MediaConstraints in this method: public void createOffer(SdpObserver observer, MediaConstraints constraints) But how can I create a…
Shensheng Kuang
  • 458
  • 1
  • 5
  • 10
0
votes
1 answer

How to set the Hardware Encoder using Android APIs for WebRTC

I am using version 1.0.28513 and am not sure how/where to specify VP8 as my video codec for hardware acceleration.
Sofia Clover
  • 669
  • 1
  • 7
  • 18
0
votes
1 answer

Android WebRTC low success connection rate

I am developing video chat application with native android WebRTC. I am using public google STUN server and XIRRYS STUN and TURN servers. My problem is that the successfully connection rate is very low ! The success connectivity rate is as…
Zion Cohen
  • 182
  • 6
  • 19
0
votes
1 answer

Determine if TURN is used from webrtc getStats api data

I am using WebRTC getStats() API on android to get stats and I am getting most of the data which I need. But I can't find data to determine if TURN used or not. Please check the sample json data. https://pastebin.com/v89aaL2H private void getStats()…
Tanay Mondal
  • 147
  • 2
  • 9
0
votes
1 answer

Multiple Peer connection Web-RTC in android issue

When I create multiple peer connections for group audio call. All users connect with each other but only first receiver get the sound of caller and getting below issue. We want to send the media with multiple peer connections. 2019-06-28…
1 2 3
10
11