Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Headset audio gets interrupted when base is ringing #21

Open
filipenatanael opened this issue Jan 23, 2020 · 0 comments
Open

Headset audio gets interrupted when base is ringing #21

filipenatanael opened this issue Jan 23, 2020 · 0 comments

Comments

@filipenatanael
Copy link

filipenatanael commented Jan 23, 2020

I am using Jabra PRO 930 when the base is ringing our headset stop to playing sounds. I would like to keep the base ringing without stop an audio on headset.

Example: I am listening music on browser, then ringAsync() method is called on another installed application on windows, the music gonna be interrupted to play the ringtore, it seems Jabra SDK takes priority over audio from PC audio. How can I keep both??

I am using the example below but is not working. Does anyone knows how that functionality can be implemented, I checked the documentation but can’t find a way to do it so far.

  device &&
    device.deviceName === 'Jabra PRO 930' &&
    device
      .isRingerSupportedAsync()
      .then(supported => {
        if (supported) {
          device
            .ringAsync()
            .then(() => {
               console.log('ringing');
            }).catch(err => {
               console.log('ring failed with error ' + err);
            });
        }
      }).catch(err => {
         console.error('Jabra call failed with error ' + err);
      });
@filipenatanael filipenatanael changed the title Headset stop to playing sounds when base is ringing Headset audio gets interrupted when base is ringing Aug 19, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant