在iphone上播放背景音频

eba*_*unt 3 iphone audio

在应用程序运行时如何播放背景音频?

谢谢.

dia*_*lic 9

好的.这是iOS4和iOS5上的背景声音解决方案(绝对适用于iOS 5.0.1),我只使用AVPlayer进行了测试.它也可能适用于MPMusicPlayerController.

必需的框架:

  • AVFoundation.framework
  • AudioToolbox.framework

在你的Info.plist,为钥匙UIBackgroundModes,添加audio.

MyAppDelegate.h:

MyAppDelegate.m:

  • 实现ensureAudio方法:

    - (BOOL) ensureAudio
    {
        // Registers this class as the delegate of the audio session (to get background sound)
        [[AVAudioSession sharedInstance] setDelegate: self];  
    
        // Set category
        NSError *categoryError = nil;
        if (![[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback error:&categoryError]) {
            NSLog(@"Audio session category could not be set"); 
            return NO;
        }
    
        // Activate session
        NSError *activationError = nil;
        if (![[AVAudioSession sharedInstance] setActive: YES error: &activationError]) {
            NSLog(@"Audio session could not be activated");
            return NO;
        }
    
        // Allow the audio to mix with other apps (necessary for background sound)
        UInt32 doChangeDefaultRoute = 1;
        AudioSessionSetProperty(kAudioSessionProperty_OverrideCategoryMixWithOthers, sizeof(doChangeDefaultRoute), &doChangeDefaultRoute);
    
        return YES;
    }
    
    Run Code Online (Sandbox Code Playgroud)
  • application:didFinishLaunchingWithOptions:方法中,在分配根视图控制器之前,运行[self ensureAudio]:

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
    {
        // Configure audio session
        [self ensureAudio];
    
        // Add the navigation controller's view to the window and display.
        self.window.rootViewController = self.navigationController;
        [self.window makeKeyAndVisible];
    
        return YES;
    }
    
    Run Code Online (Sandbox Code Playgroud)
  • 实现这样的AVAudioSessionDelegate方法:

    #pragma mark - AVAudioSessionDelegate
    
    - (void) beginInterruption
    {
    
    }
    
    - (void) endInterruption
    {
        // Sometimes the audio session will be reset/stopped by an interruption
        [self ensureAudio];
    }
    
    - (void) inputIsAvailableChanged:(BOOL)isInputAvailable
    {
    
    }
    
    Run Code Online (Sandbox Code Playgroud)
  • 确保您的应用继续在后台运行.[[UIApplication sharedApplication] beginBackgroundTaskWithExpirationHandler]如果你愿意,你可以使用ol' ,但我认为有更好的方法.

  • 播放实际的音频(注意我正在使用ARC,这就是为什么没有release通话):

    NSURL * file = [[NSBundle mainBundle] URLForResource:@"beep" withExtension:@"aif"];    
    AVURLAsset * asset = [[AVURLAsset alloc] initWithURL:file options:nil];
    AVPlayerItem * item = [[AVPlayerItem alloc] initWithAsset:asset];
    __block AVPlayer * player = [[AVPlayer alloc]initWithPlayerItem:item];
    __block id finishObserver = [[NSNotificationCenter defaultCenter] addObserverForName:AVPlayerItemDidPlayToEndTimeNotification 
                                                                          object:player.currentItem 
                                                                           queue:[NSOperationQueue mainQueue] 
                                                                      usingBlock:^(NSNotification *note) {
        [[NSNotificationCenter defaultCenter] removeObserver:finishObserver];
    
        // Reference the 'player' variable so ARC doesn't release it until it's
        // finished playing.
        player = nil;
    }];
    
    // Trigger asynchronous load
    [asset loadValuesAsynchronouslyForKeys:[NSArray arrayWithObject:@"tracks"] completionHandler:^{
        // Start playing the beep (watch out - we're not on the main thread here)!
        [player play];
     }];
    
    Run Code Online (Sandbox Code Playgroud)
  • 而且它真的很棒!