ios 音訊播放

來源:互聯網
上載者:User
      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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.