简介
最近实现了一个流媒体播放器,使用的是freestreamer库,至于为什么不用avaudioplayer或者avplayer,前一个是不能播放网络音乐,后一个则是体验不好,缓存不够会暂停,然后又要手动播放。去github上搜了下,发现freestreamer评分比较高,于是就用它来实现了一个流媒体播放器。
演示效果
附上项目地址 chenfengxiaoxixi
实现功能
实现了流媒体音乐播放,后台持续播放,歌曲切换,进度条显示以及快进后退等功能。
实现技术点及流程
1.单例
播放器所在controller我是使用单例初始化的,不然pop到上一级控制器后,当前对象释放掉,就无法播放了
1
2
3
4
5
6
7
8
9
10
11
12
13
|
+ (instancetype)shareplayercontroller
{
@synchronized(self)
{
static cfplayercontroller *_instance = nil;
static dispatch_once_t oncetoken;
dispatch_once(&oncetoken, ^{
_instance = [[self alloc] init];
});
return _instance;
}
}
|
这里使用了线程同步,避免由卡顿造成的多次初始化。
2.后台持续播放
先在xcode配置里面(targets->capabilities)打开background modes,勾选上audio那一栏。现在只是满足了后台播放条件,要想连续不断在后台播放,还要申请后台任务id。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//添加后台播放任务
uibackgroundtaskidentifier bgtask = 0;
if ([uiapplication sharedapplication].applicationstate== uiapplicationstatebackground) {
nslog(@ "后台播放" );
uiapplication*app = [uiapplication sharedapplication];
uibackgroundtaskidentifier newtask = [app beginbackgroundtaskwithexpirationhandler:nil];
if (bgtask!= uibackgroundtaskinvalid) {
[app endbackgroundtask: bgtask];
}
bgtask = newtask;
[self next];
}
else {
nslog(@ "前台播放" );
[self.cdview scrollrightwithnext];
}
|
播放完成一首歌后,这段代码用来判断当前处于前台还是后台,如果是后台,那就申请后台任务继续播放下一首。
3.锁屏后对音乐播放的操作及信息显示
需要重写remotecontrolreceivedwithevent,用来获取锁屏后对播放器的操作
1
2
3
4
|
- ( void )remotecontrolreceivedwithevent: (uievent *) receivedevent
{
[cf_noti_center postnotificationname:@ "remotecontrol" object:nil userinfo:@{@ "event" :receivedevent}];
}
|
该通知发送到播放控制器,在播放控制器实现处理逻辑
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
- ( void )remotecontrol:(nsnotification *)note
{
uievent *receivedevent = note.userinfo[@ "event" ];
if (receivedevent.type == uieventtyperemotecontrol)
{
switch (receivedevent.subtype)
{
case uieventsubtyperemotecontroltoggleplaypause:
[self.audiostream stop];
break ;
case uieventsubtyperemotecontrolprevioustrack:
[self.cdview scrollleftwithprev];
break ;
case uieventsubtyperemotecontrolnexttrack:
[self.cdview scrollrightwithnext];
break ;
case uieventsubtyperemotecontrolplay:
[self.cdview playorpause];
break ;
case uieventsubtyperemotecontrolpause:
//暂停歌曲时,动画也要暂停
[self.cdview playorpause];
break ;
default :
break ;
}
}
}
|
更新锁屏后音乐的显示信息
1
2
3
4
5
6
7
8
9
10
11
12
|
//锁屏显示信息
- ( void )confignowplayinginfocenter
{
if (nsclassfromstring(@ "mpnowplayinginfocenter" )) {
nsmutabledictionary * dict = [[nsmutabledictionary alloc] init];
[dict setobject:cfuser.currentsong.songname forkey:mpmediaitempropertytitle];
[dict setobject:@(self.playtime)forkey:mpnowplayinginfopropertyelapsedplaybacktime];
//音乐的总时间
[dict setobject:@(self.totaltime)forkey:mpmediaitempropertyplaybackduration];
[[mpnowplayinginfocenter defaultcenter] setnowplayinginfo:dict];
}
}
|
4.关于freestreamer的使用
初始化,开始播放
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
- ( void )buildstreamer
{
weakself;
// 网络文件
nsurl *url = [nsurl urlwithstring:cfuser.currentsong.url];
if (!_audiostream) {
_audiostream = [[fsaudiostream alloc] initwithurl:url];
_audiostream.onfailure = ^(fsaudiostreamerror error,nsstring *description){
nslog(@ "播放过程中发生错误,错误信息:%@" ,description);
[weakself showalertmsg:description];
};
_audiostream.oncompletion=^(){
//播放完成后,执行下一步
[weakself autoplaynext];
};
// 设置声音
[_audiostream setvolume:1];
//开始播放
[_audiostream play];
}
else
{
_audiostream.url = url;
[_audiostream play];
}
}
|
停止播放
1
|
[self.audiostream stop];
|
暂停播放和继续播放为同一个方法,别问为什么,作者就是这样写的
1
|
[self.audiostream pause];
|
快进后退播放
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
- ( void )dragsliderend:(uislider *)slider{
//滑动到底时,播放下一曲
if (slider.value == 1) {
[self.cdview scrollrightwithnext];
}
else
{
if (slider.value > 0)
{
//初始化一个fsstreamposition结构体
fsstreamposition pos;
//只对position赋值,value由slider控制
pos.position = slider.value;
[self.audiostream seektoposition:pos]; // 到指定位置播放
}
}
}
|
结语
以上就是实现流媒体音乐播放器的大概知识点,ui是自己自定义的(图标素材主要源于网上),一些动画的思路是用了某某云音后,然后根据自己掌握的一些知识来实现的。想看详细实现流程和源码的可以去我的项目地址查看。
戳这里 chenfengxiaoxixi
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://www.jianshu.com/p/f219ffdb439a