AVAudioPlayer 音量与系统音量不一样

Posted

技术标签:

【中文标题】AVAudioPlayer 音量与系统音量不一样【英文标题】:The volume of AVAudioPlayer is not as same as the system volume 【发布时间】:2015-03-02 02:57:50 【问题描述】:

我使用 AVAudioPlayer 播放声音,但有时音量会变得非常低,与系统音量不一样。当我通过按音量按钮更改系统音量时,它变得正常。它是怎么发生的?

代码如下:

- (void)prepareAudiosession 
    AVAudioSession *session = [AVAudioSession sharedInstance];
    NSError *setCategoryError = nil;
    if (![session setCategory:AVAudioSessionCategoryPlayback
              withOptions:AVAudioSessionCategoryOptionMixWithOthers
                    error:&setCategoryError]) 
        // handle error
    

    AVAudioSession *audioSession = [AVAudioSession sharedInstance];
    NSError *error = nil;
    BOOL result = [audioSession setActive:YES withOptions:0 error:&error];

    if (!result && error) 
        // deal with the error
    


- (void)playWithAudioPath:(NSString *)path 
    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^(void) 
    NSError *error;
    NSURL *audioFileURL = [NSURL fileURLWithPath:path];
    self.audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:audioFileURL error:&error];

    audioPlayer.delegate = self;

    if (error == nil) 

        [self prepareAudioSession];

        [audioPlayer setCurrentTime:0];
        [audioPlayer play];
    
    else 
        NSLog(@"%@", error.description);
    
);

【问题讨论】:

【参考方案1】:

您尚未在代码中调用 [audioPlayer setVolume: 1.0]; 来设置音量。

【讨论】:

[self prepareAudioSession]; 之后我应该在哪里调用此代码?这种方法是否使音量为最大音量? 在[audioPlayer播放]之前;它将音量设置为最大,因为我们使用 1.0 但是我不要最大音量,我要使用系统音量。 尝试先从下面的代码中获取,然后再设置回。Float32 体积; UInt32 dataSize = sizeof(Float32); Float32 currentVolume= AudioSessionGetProperty ( 'chov', &dataSize, &volume );

以上是关于AVAudioPlayer 音量与系统音量不一样的主要内容,如果未能解决你的问题,请参考以下文章

iOS使用虚拟AVAudioPlayer从铃声切换到系统音量

UILocalNotification 中的声音在最大音量下比 AVAudioPlayer 响亮

降低 AVAudioPlayer 声音的音量

快速的音量变化会导致 AVAudioPlayer 中的伪影

设置相对于 AVAudioPlayer 的 iOS MPMusicPlayerController 音量

iPhone:如何使用 AVAudioPlayer 检测 Iphone/Ipod 音量级别