JsSIP icon indicating copy to clipboard operation
JsSIP copied to clipboard

JsSIP, the JavaScript SIP library

Results 53 JsSIP issues
Sort by recently updated
recently updated
newest added

I'm looking at adding the option to set the [sender's priority](https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/setParameters#priority) when adding local media stream tracks to the peer connection in `RTCSession`. In some applications, this could be used...

### Problem: When using the `sendDTMF` function, sending multiple DTMFs failed because the position was not being correctly reset after sending each tone, which resulted in tones being ignored or...

Since upgrading to Angular 18, the following errors occur when building the application: These errors seem to occur due to not so clean imports and exports in the `d.ts` files...

### Description Currently, JsSIP does not provide a way to set or prioritize specific codecs during the SIP negotiation process. This is a crucial feature for optimizing call quality and...

This has started to happen sporadically. Only on Windows. Several user reports. I have confirmed: 1) User has allowed camera and microphone access for the site 2) User has allowed...

Hi! 👋 Firstly, thanks for your work on this project! 🙂 Today I used [patch-package](https://github.com/ds300/patch-package) to patch `[email protected]` for the project I'm working on. Here is the diff that solved...

Addresses #873. Adds the option to set the [sender's priority](https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/setParameters#priority) when adding local media stream tracks to the peer connection in `RTCSession`. I added an optional field called `encodingsPriority` to...

It seems like the currently released version on npm (3.10.1) has some TS problems which seem to have been resolved in the meantime in this pr: https://github.com/versatica/JsSIP/pull/846 . Would it...

The patch introduces two changes: ### Early dialog handling * When no confirmed dialog (this._dialog) is present, the code now attempts to send the request through the first available early...

Typo in DTFMOptions TS type name. I belive it should be `DTMFOptions` instead of `DTFMOptions`: ```js export interface DTFMOptions extends ExtraHeaders { duration?: number; interToneGap?: number; transportType?: DTMF_TRANSPORT; } ```...