Aaron Clauson

Results 259 comments of Aaron Clauson

You could try using the [sipcmdline](https://github.com/sipsorcery-org/sipsorcery/tree/master/examples/sipcmdline) application to determine why you aren't getting a response. `examples\sipcmdline>dotnet run -- -d [email protected] -s uac -v` When I run the command above I...

Try checking the `Contact` headers in your REGISTER and INVITE requests are the same. Some SIP providers have filtering rules in place to reject INVITEs if there is no curretn...

My first guess would be that the resolution of the video stream changes. Most of the, very crude, video decoding logic I wrote dealt with only the most basic cases...

The address in the `WebSocketServer` constructor is the address you want to listen on and not the one you want to connect to. If you want to connect to your...

You would attempt to connect to your machine using: `ws://[24**:40**:20**:fb**:95**:e2**:ed**:d9**]:8081`

I don't think it's that straight forward to integrate with Amazon's Kinesis. I took a quick look a while ago and it seems the signalling to set up the WebRTC...

Hi dc, > I notice that SS does not have the WebRTC method a rtcPeerConnection.setLocalDescription() method It does, [here](https://github.com/sipsorcery-org/sipsorcery/blob/dc30b28b9735af4f0ce08115d401fdc9eeb0b695/src/net/WebRTC/RTCPeerConnection.cs#L590). > but the SS peer (Program.cs) has no code for offer/answer....

> Do you have support for "Implicit Description" or any way I can do it as it is described in the WebRTC API? No, not yet. It's on the list....

I'm a bit reluctant to add the `optionalAuthUserName` as an additional optional parameter to the `Call` method. The intent with that method is to target ease of use for new...

> [02:34:42 WRN] VP8 decode attempt failed, Bitstream not supported by this decoder. That's not unusual. It can sometimes take a bit of time for a keyframe to get sent...