So many threads on this subject and none with the perfect answer.

My case is simple: I need to play a warning signal and want to make sure the user will hear it, so I want to check the system volume.

  • Found a hack using the MPVolumeView, but that seems an inapropriate way of doing it.
  • I have an AudioQueueSession, but no apparent way of querrying it for the playback volume.
  • Can't seem to ask the audioSession for it.

After spending hours, almost days, on Google, I give up. Please help! :-)

link|improve this question

Here is the result: bit.ly/pjamzU ( Popcorn Stop! ) – iDeveloper Sep 29 '11 at 7:11
feedback

2 Answers

up vote 5 down vote accepted

Try this:

    MPMusicPlayerController *iPod = [MPMusicPlayerController iPodMusicPlayer];
    float volumeLevel = iPod.volume;

You need to import the MediaPlayer framework.

link|improve this answer
Thanks! Solution works like a charm. – iDeveloper Sep 21 '11 at 16:48
feedback

This works fine:

Float32 volume;
UInt32 dataSize = sizeof(Float32);

AudioSessionGetProperty (
                     kAudioSessionProperty_CurrentHardwareOutputVolume,
                     &dataSize,
                     &volume
                     );
link|improve this answer
Even better in my case! Now I can ditch the MediaPlayer Framework. – iDeveloper Oct 17 '11 at 14:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.