Benjamin Trent
Benjamin Trent
You need to change the media constraints utilized down in the JanusClientAPI classes. Here is an example of setting the constraints: https://github.com/Computician/janus-gateway-android/blob/master/app/src/main/java/computician/janusclient/VideoRoomTest.java#L117 You should make send and receive video both...
Right now, my development time on this is very little(besides administration and PR reviews). @notedit, if this is something you want to work on, feel free to and submit a...
So, it looks like it tried to write to a null object? Looks like you are using the websocket endpoint right? Does it work on an earlier release? Before the...
@MrsZ have you tried using the HTTP Client? Or does this happen there as well?
https://github.com/Computician/janus-gateway-android/blob/master/janusclientapi/src/main/java/computician/janusclientapi/JanusWebsocketMessenger.java#L45 That line, it seems that if an exception has occurred, we should not continue this code path and fail. It may be that there is an exception being returned...
I am not sure, you could easily check if that exception is null or not and log it to see if we get some more information. `Log.d("JANUSCLIENT", ex.toString());` or `Log.d("JANUSCLIENT",...
If it is a domain, I am guessing it is behind either a NAT or some sort of firewall. Putting Janus behind a NAT causes issues unless you put in...
https://github.com/Computician/janus-gateway-android/blob/master/janusclientapi/build.gradle#L33 Pristine .io has previously provided a precompiled libjingle binary. You should be able to change where you point to from there.
@azzahrah I am confused? You are referencing the video room plugin but commented on an echo test issue? If you are having a bug with more than one other remote...
I personally have not tried it, and with work and school, this project has taken a back seat. However, I did see something in a fork: https://github.com/Bnei-Baruch/janus-gateway-android/blob/master/app/src/main/java/computician/janusclient/StreamBBVideo.java It does not...