2

オーディオをスピーカーフォンにルーティングできましたが、それでも最大音量で再生されません。[audioAlert setVolume:1.0] を試しましたが、ユーザーが現在設定している音量のままです。誰かが私が間違っていることを知っていれば、とても感謝しています。

これが私のコードです:

AVAudioSession *audioSession = [AVAudioSession sharedInstance];
    [audioSession setCategory:AVAudioSessionCategoryPlayAndRecord error:NULL];

    UInt32 audioRouteOverride = kAudioSessionOverrideAudioRoute_Speaker;
    AudioSessionSetProperty (kAudioSessionProperty_OverrideAudioRoute,sizeof (audioRouteOverride),&audioRouteOverride);

    NSURL* soundUrl = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"HsTR_soundEFX_2-1" ofType:@"mp3"]];
   audioAlert= [[AVAudioPlayer alloc] initWithContentsOfURL:soundUrl error:nil];
    audioAlert.delegate = self;
    [audioAlert setVolume:1.0];
    [audioAlert prepareToPlay];
    [audioAlert play];

ポールペリーに感謝!

解決済み:

以下のコードを使用して、以前のボリュームに戻すために少し余分に含めました。

 AVAudioSession *audioSession = [AVAudioSession sharedInstance];
    [audioSession setCategory:AVAudioSessionCategoryPlayAndRecord error:NULL];

    UInt32 audioRouteOverride = kAudioSessionOverrideAudioRoute_Speaker;
    AudioSessionSetProperty (kAudioSessionProperty_OverrideAudioRoute,sizeof (audioRouteOverride),&audioRouteOverride);

    NSURL* soundUrl = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"HsTR_soundEFX_2-1" ofType:@"mp3"]];
   audioAlert= [[AVAudioPlayer alloc] initWithContentsOfURL:soundUrl error:nil];
    audioAlert.delegate = self;
    [audioAlert prepareToPlay];
    float maxVolume = 1.0;
    float currentVolume=[MPMusicPlayerController applicationMusicPlayer].volume;
    [[MPMusicPlayerController applicationMusicPlayer] setVolume:maxVolume];
    [audioAlert play];
   //set up timer to wait until audioAlert is finished playing,
   // and then call the line below to set the volume back to it's original setting
    [[MPMusicPlayerController applicationMusicPlayer]setVolume:currentVolume];
4

2 に答える 2

4

これにより、システム全体の音量が最大にリセットされます。

フロート ボリューム = 1.0; [[MPMusicPlayerController applicationMusicPlayer] setVolume:volume];

于 2012-09-13T00:13:41.710 に答える
0

[audioAlert prepareToPlay]最初に0に初期化し、次に1に戻した直後はどうでしょうか。

[audioAlert prepareToPlay]
[audioAlert setVolume:1.0]
于 2012-09-13T00:06:53.560 に答える