寫在前面
公司近期要求在App內(nèi)嵌入音頻播放笛洛,由于之前對于音視頻播放只是簡單了解乃坤,并沒有系統(tǒng)的研究湿诊。這次需要用到的時候就翻閱各種貼子,各個大神的筆記仿畸,博客朗和,話說總結(jié)是最好的學(xué)習(xí)方法,所以千埃,自己根據(jù)自己的理解放可,也總結(jié)一篇相關(guān)的貼子吧朝刊,記錄一下坞古。不求有用,但求方便织堂。
一.關(guān)于音頻(視頻下篇總結(jié))
一般情況下,播放音頻分為兩種附较,一種是本地音頻播放潦俺,一種是網(wǎng)絡(luò)音頻播放事示。播放本地一般使用AVAudioPlayer,播放網(wǎng)絡(luò)文件較多使用AVPlayer卢鹦,所以下文只針對AVPlayer進(jìn)行總結(jié)劝堪。
針對多媒體秒啦,蘋果官方打造了一個類庫---AVFoundation框架。這個庫非常強(qiáng)大驻呐,專門用來處理音視頻等多媒體技術(shù)葛超,而本文主要講AVFoundation下的一個類-----AVPlayer绣张。
什么是AVPlayer关带?
你可以把它看成是一個已經(jīng)封裝好的播放器宋雏,它的作用可以用來播放視頻和音頻。
二.用法
1.創(chuàng)建工程嗦明,導(dǎo)入AVFoundation框架蚪燕。然后在需要播放音頻的界面創(chuàng)建播放器實(shí)例。
AVPlayerItem *item = [[AVPlayerItem alloc] initWithURL:[NSURL URLWithString:@"http://xxxxxxxx"]];
player = [[AVPlayer alloc] initWithPlayerItem:item];
2.播放汹桦、停止
播放
[player play];
停止
[player pause];
3.監(jiān)聽播放器的狀態(tài)(KVO)
[player addObserver:self forKeyPath:@"status" options:NSKeyValueObservingOptionNew context:nil];
當(dāng)status的屬性發(fā)生改變鉴裹,就會觸發(fā)觀察者方法的回調(diào)舞骆。status是AVPlayerItemStatus類型,是一個枚舉類型:
typedefNS_ENUM(NSInteger, AVPlayerItemStatus) {
AVPlayerItemStatusUnknown,//未知狀態(tài)
AVPlayerItemStatusReadyToPlay,//準(zhǔn)備播放
AVPlayerItemStatusFailed//加載失敗
};
只有當(dāng)player.status == AVPlayerStatusReadyToPlay時径荔,才能正常播放音樂督禽。
-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary*)change context:(void*)context;
記得移除觀察者
[player removeObserver:self forKeyPath:@"status"];
4.切換音樂
AVPlayerItem *item = [[AVPlayerItem alloc] initWithURL:url2];
替換當(dāng)前的音樂資源
[player replaceCurrentItemWithPlayerItem:item];
5.監(jiān)聽音樂的緩存進(jìn)度(監(jiān)聽AVPlayer的loadedTimeRanges屬性)
[player addObserver:self forKeyPath:@"loadedTimeRanges" options:NSKeyValueObservingOptionNew context:nil];
回調(diào)方法
if([keyPath isEqualToString:@"loadedTimeRanges"]) {
NSArray * timeRanges = player.currentItem.loadedTimeRanges;
//本次緩沖的時間范圍
CMTimeRange timeRange = [timeRanges.firstObject CMTimeRangeValue];
//緩沖總長度
NSTimeInterval totalLoadTime = CMTimeGetSeconds(timeRange.start) + CMTimeGetSeconds(timeRange.duration);
//音樂的總時間
NSTimeInterval duration = CMTimeGetSeconds(player.currentItem.duration);
//計算緩沖百分比例
NSTimeInterval scale = totalLoadTime/duration;
//更新緩沖進(jìn)度條
self.loadTimeProgress.progress = scale;
}
當(dāng)音樂播放完成总处,或者切換下一首歌曲時赂蠢,請務(wù)必記得移除觀察者:
[player addObserver:self forKeyPath:@"loadedTimeRanges" options:NSKeyValueObservingOptionNew context:nil];
6.音樂播放進(jìn)度(AVPlayer提供了方法)
- (id)addPeriodicTimeObserverForInterval:(CMTime)interval queue:(nullable dispatch_queue_t)queue usingBlock:(void (^)(CMTime time))block;
__weak typeof(self) weakSelf = self;
self.timeObserver = [player addPeriodicTimeObserverForInterval:CMTimeMake(1.0, 1.0) queue:dispatch_get_main_queue() usingBlock:^(CMTime time) {
//當(dāng)前播放的時間
floatcurrent = CMTimeGetSeconds(time);
//總時間
floattotal = CMTimeGetSeconds(item.duration);
if(current) {
floatprogress = current / total;
//更新播放進(jìn)度條
weakSelf.playSlider.value = progress;
weakSelf.currentTime.text = [weakSelf timeFormatted:current];
}
}];
7.拖動指定位置播放
- (void)seekToTime:(CMTime)time;
- (IBAction)playSliderValueChange:(UISlider *)sender{
//計算時間
floattime= sender.value * CMTimeGetSeconds(player.currentItem.duration);
//跳轉(zhuǎn)到指定時間
[player seekToTime:CMTimeMake(time, 1)];
}
8.播放完成(通知)
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(playEnd:) name:AVPlayerItemDidPlayToEndTimeNotification object:player.currentItem];
9.后臺播放
開啟后臺模式
target ->capabilities ->background modes->勾選Audio,AirPlay辨泳,and Picture in Picture
程序整個生命周期中設(shè)置
AVAudioSession *session = [AVAudioSession sharedInstance];
//設(shè)置類型:播放虱岂。
[session setCategory:AVAudioSessionCategoryPlayback error:nil];
//激活音頻會話菠红。
[session setActive:YES error:nil];
10.總結(jié)
蘋果的原生音視頻處理類庫非常強(qiáng)大第岖,需要深入研究的可以研讀官方API,本文總結(jié)的足夠平常的使用试溯,第一次發(fā)文蔑滓,肯定有許多不到之處,希望看官們遇绞,嘴下留情键袱,報以寬容的態(tài)度給我提出寶貴意見,如本文能給各位帶來哪怕丁點(diǎn)用處摹闽,也是值得的蹄咖。