Giter VIP home page Giter VIP logo

Comments (8)

Kadinvanvalin avatar Kadinvanvalin commented on July 17, 2024 2

Its the way this plugin handles AVaudiosessions, I got around this by adding

[self.avSession setCategory:sessionCategory withOptions:AVAudioSessionCategoryOptionMixWithOthers error:&err];

on line 370 in your CDVSound.m file I usually do this in xcode, it is under plugins

from cordova-plugin-media.

netzzeit avatar netzzeit commented on July 17, 2024 1

I would prefer to have an option within the plugin configuration to set the mode audio is being handled for both operating systems. To me this seems to be the most flexible way.

Right now, on android the first sound played stops any background music. After a manual resume of the music, all following sounds of the app overlap background music correctly.

from cordova-plugin-media.

janpio avatar janpio commented on July 17, 2024

Can other, native apps achieve this functionality?

from cordova-plugin-media.

netzzeit avatar netzzeit commented on July 17, 2024

I really hope so. :)
In an older version of my app I achieved this functionality by simply using html5 audio. I did that with a simple line of code:

new Audio(src).play() ;

Unfortunately in current iOS-versions this is not working anymore. The code above did not stop the music playback but played it simultaneously.

from cordova-plugin-media.

netzzeit avatar netzzeit commented on July 17, 2024

Hey Kadinvanvalin,

thank you very much - I added a slightly modified version of your code:

if (![self.avSession.category isEqualToString:AVAudioSessionCategoryPlayAndRecord]) { 
  [self.avSession setCategory:AVAudioSessionCategoryPlayAndRecord withOptions:AVAudioSessionCategoryOptionMixWithOthers | AVAudioSessionCategoryOptionDefaultToSpeaker error:nil]; 
}

This works for every sound played - except the first one. The first sound played still stops background music. If I resume the music after the first sound of my app, all following sounds don't stop the music.

And - but that's not so much of a problem - there is a short glitch in the background music (spotify) before and after my sounds are played.

from cordova-plugin-media.

netzzeit avatar netzzeit commented on July 17, 2024

Solution

Just in case anyone runs into the same problem. I solved this problem by replacing:

[self.avSession setCategory:sessionCategory error:&err]

with

[self.avSession setCategory:AVAudioSessionCategoryPlayAndRecord withOptions:AVAudioSessionCategoryOptionDuckOthers | AVAudioSessionCategoryOptionDefaultToSpeaker | AVAudioSessionCategoryOptionInterruptSpokenAudioAndMixWithOthers error:nil];

from cordova-plugin-media.

janpio avatar janpio commented on July 17, 2024

Is this something that should be added to the code base (via a Pull Request)?

In general, it this behavior you were looking for identical to how it works on Android? So would this make the iOS and Android implementation more equal?

from cordova-plugin-media.

simetin avatar simetin commented on July 17, 2024

Did this feature ever got added as an option ? It would be really useful to have it works for iOS and Android !

from cordova-plugin-media.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.