AudioServicesPlaySystemSound

AudioServicesPlaySystemSound

我在使用 AudioServicesPlaySystemSound 时遇到问题。当输出通过扬声器时效果很好。但是,当用户插入耳机时,没有输出。是否有一种简单的方法来设置某种监听器,以便在插入耳机时自动通过耳机路由音频,否则通过扬声器?

我正在使用以下方法播放简短的 AIF 声音样本:

-(void)playAif:(NSString *)filename {
    SystemSoundID soundID;
    NSString *path = [[NSBundle mainBundle]
       pathForResource:filename ofType:@"aif"];

    if (path) { // test for path, to guard against crashes

    AudioServicesCreateSystemSoundID((CFURLRef)[NSURL fileURLWithPath:path],&soundID);
    AudioServicesPlaySystemSound (soundID);

        }
   }

我知道我一定遗漏了一些东西,一些可以做到这一点的设置。有任何想法吗?

最佳答案

感谢@Till 将我指向 relevant portion of the docs 。对于有此问题的其他人,解决方案是明确设置 session 类别,在我的情况下为环境声音。这段代码截取自 apple's docs :

    UInt32 sessionCategory = kAudioSessionCategory_AmbientSound;    // 1

    AudioSessionSetProperty (
                             kAudioSessionProperty_AudioCategory,                        // 2
                             sizeof (sessionCategory),                                   // 3
                             &sessionCategory                                            // 4
                             );

所以,我播放音频的方法现在看起来像这样:
    -(void)playAif:(NSString *)filename {
    //  NSLog(@"play: %@", filename);

        SystemSoundID soundID;
        NSString *path = [[NSBundle mainBundle]
                          pathForResource:filename ofType:@"aif"];


        if (path) { // test for path, to guard against crashes

            UInt32 sessionCategory = kAudioSessionCategory_AmbientSound;    // 1

            AudioSessionSetProperty (
                                     kAudioSessionProperty_AudioCategory,                        // 2
                                     sizeof (sessionCategory),                                   // 3
                                     &sessionCategory                                            // 4
                                     );

            AudioServicesCreateSystemSoundID((CFURLRef)[NSURL fileURLWithPath:path],&soundID);
            AudioServicesPlaySystemSound (soundID);

        }
    }

这轻松解决了我的问题!我唯一担心的是,每次播放声音时都明确设置它可能会过度。任何人都知道设置它并忘记它的更好,更安全的方法吗?否则,这将令人愉快地工作。

关于iPhone AudioServicesPlaySystemSound : route though headphones?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4706166/

10-10 15:38