ios 音訊播放使用到AVFoundation架構。其包含三個主要的類:AVAudioPlayer、AVAudioRecorder和AVAudioSession。它們負責音訊播放、錄製和配置,而且都有相對應的delegate協議。支援的格式有:caf/m4a/mp3/aif/wav/au/snd/aac.能夠提供基本的播放操作:建立、準備、播放、暫停、跳過和停止,並且支援多個AVAudioPlayer對象的使用。支援音量大小控制、迴圈播放和左右聲道設定等。
AVAudioPlayerDelegate協議有以下重要方法:
audioPlayerBeginInterruption方法,當發生應用程式中斷的時候(比如電話中或者按Home鍵推出應用程式)被調用的方法。 audioPlayerEndInterruption方法,中斷結束返回到應用程式的時候調用的方法。 audioPlayerDidFinishPlaying:successfully:方法,當音頻播放完成以後會調用該方法。如果successfully是YES則代表音頻正常播放完畢,如果是NO則代表播放結束是因為音頻資料解碼失敗。 audioplayerDecodeErrorDidOccur:error:方法,當播放音頻遇到解碼錯誤時,會調用該方法。
執行個體:1.建立Empty Application項目,添加HomeViewController頁面
HomeViewController.h代碼如下:
#import <UIKit/UIKit.h>#import <AVFoundation/AVFoundation.h> @interface HomeViewController : UIViewController<AVAudioPlayerDelegate>{ }
@end
HomeViewController.m代碼如下:
#import "HomeViewController.h" @interface HomeViewController () @end @implementation HomeViewController - (void)playAudioFile:(NSString *)soundFileName{ NSString *fileName = [[NSBundle mainBundle] pathForResource:soundFileName ofType:@"mp3"]; NSURL *fileUrl = [NSURL fileURLWithPath:fileName]; NSError *error = nil; AVAudioPlayer *player = [[AVAudioPlayer alloc] initWithContentsOfURL:fileUrl error:&error]; if (!player) { } else { [player setNumberOfLoops:-1]; //預設為0,即播放一次就結束;如果設定為負值,則音頻內容會不停的迴圈播放下去。 [player setDelegate:self]; [player play]; }}
//程式中斷時,暫停播放
- (void)audioPlayerBeginInterruption:(AVAudioPlayer *)player{ [player pause]; }
//程式中斷結束返回程式時,繼續播放
- (void)audioPlayerEndInterruption:(AVAudioPlayer *)player{ [player play];} - (void)viewDidLoad{ [self playAudioFile:@"mm"];//播放音頻 [super viewDidLoad];}
@end
源碼下載:/Files/hanjun/Audio.rar