Welcome!

Welcome to the Official BlackBerry Support Community Forums. This is your resource to discuss support topics with your peers, and learn from each other. New to the forum? Please visit the ‘Getting Started’ link below.
inside custom component

Cascades Development

Reply
Developer
Developer
klz
Posts: 129
Registered: ‎08-24-2011
My Carrier: MTS Ukraine
Accepted Solution

Override system sound

Hello guys!

 

So my problem is that I'm working on alarm application and need to override system sound. So when user set his phone in silent mode my app still will play a sound.

 

Any help would be much appreciated! 

Thank you!
----------------------------
BlackBerry 10 Developer is looking for a job!
My Apps: Alchemy Game | Jam! | Traffic Signs: USA
My Blog: http://bb10pro.com
Please use plain text.
Developer
Royster86
Posts: 50
Registered: ‎03-13-2012
My Carrier: Vodafone, Virgin

Re: Override system sound

Hiya,

 

This is definitley possible - you can use mmr_play() to play the audio once the context is set up, and you can set the system volume using:

 

rc = audiomixer_get_output_level(AUDIOMIXER_OUTPUT_SPEAKER, &oldVolume);
if (rc == BPS_SUCCESS) {
audiomixer_set_output_level(AUDIOMIXER_OUTPUT_SPEAKER, newVolume);
} else {
//Failed to query the output level
}

 

I recommend that after the alarm stops you set the sound back to the original so the user doesn't unexpectedly have everything on loud after the alarm (oldVolume is current volume level before any changes are made to the volume level in the above code).

 

I think this has to be done in C++ as system volume controls don't seem to be exposed yet in QML...

 

The Native PlayAudio example (which I think was actually for the PlayBook) is what you need to look at:

 

https://github.com/blackberry/NDK-Samples/tree/master/PlayAudio

 

 

Cheers!

Please use plain text.
Developer
Developer
klz
Posts: 129
Registered: ‎08-24-2011
My Carrier: MTS Ukraine

Re: Override system sound

Thanks a lot. That works! 

Thank you!
----------------------------
BlackBerry 10 Developer is looking for a job!
My Apps: Alchemy Game | Jam! | Traffic Signs: USA
My Blog: http://bb10pro.com
Please use plain text.