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
30
31
32
33
34
35
36
37
38
39
|
import
UIKit
import
AVFoundation
@UIApplicationMain
class
AppDelegate
:
UIResponder
,
UIApplicationDelegate
{
var
window:
UIWindow
?
func
application(_ application:
UIApplication
, didFinishLaunchingWithOptions
launchOptions: [
UIApplicationLaunchOptionsKey
:
Any
]?) ->
Bool
{
// 注册后台播放
let
session =
AVAudioSession
.sharedInstance()
do {
try session.setActive(
true
)
try session.setCategory(
AVAudioSessionCategoryPlayback
)
} catch {
print
(error)
}
return
true
}
func
applicationWillResignActive(_ application:
UIApplication
) {
}
func
applicationDidEnterBackground(_ application:
UIApplication
) {
}
func
applicationWillEnterForeground(_ application:
UIApplication
) {
}
func
applicationDidBecomeActive(_ application:
UIApplication
) {
}
func
applicationWillTerminate(_ application:
UIApplication
) {
}
}
|
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
|
import
UIKit
import
AVFoundation
import
MediaPlayer
class
ViewController
:
UIViewController
{
//播放按钮
@IBOutlet
weak
var
playButton:
UIButton
!
//可拖动的进度条
@IBOutlet
weak
var
playbackSlider:
UISlider
!
//当前播放时间标签
@IBOutlet
weak
var
playTime:
UILabel
!
//播放器相关
var
playerItem:
AVPlayerItem
?
var
player:
AVPlayer
?
override
func
viewDidLoad() {
super
.viewDidLoad()
//初始化播放器
let
url =
URL
(string:
"http://mxd.766.com/sdo/music/data/3/m10.mp3"
)
playerItem =
AVPlayerItem
(url: url!)
player =
AVPlayer
(playerItem: playerItem!)
//设置进度条相关属性
let
duration :
CMTime
= playerItem!.asset.duration
let
seconds :
Float64
=
CMTimeGetSeconds
(duration)
playbackSlider!.minimumValue = 0
playbackSlider!.maximumValue =
Float
(seconds)
playbackSlider!.isContinuous =
false
//播放过程中动态改变进度条值和时间标签
player!.addPeriodicTimeObserver(forInterval:
CMTimeMakeWithSeconds
(1, 1),
queue:
DispatchQueue
.main) { (
CMTime
) ->
Void
in
if
self
.player!.currentItem?.status == .readyToPlay &&
self
.player?.rate != 0{
//更新进度条进度值
let
currentTime =
CMTimeGetSeconds
(
self
.player!.currentTime())
self
.playbackSlider!.value =
Float
(currentTime)
//一个小算法,来实现00:00这种格式的播放时间
let
all:
Int
=
Int
(currentTime)
let
m:
Int
=all % 60
let
f:
Int
=
Int
(all/60)
var
time:
String
=
""
if
f<10{
time=
"0\(f):"
}
else
{
time=
"\(f)"
}
if
m<10{
time+=
"0\(m)"
}
else
{
time+=
"\(m)"
}
//更新播放时间
self
.playTime!.text=time
//设置后台播放显示信息
self
.setInfoCenterCredentials(playbackState: 1)
}
}
}
//播放按钮点击
@IBAction
func
playButtonTapped(_ sender:
Any
) {
//根据rate属性判断当天是否在播放
if
player?.rate == 0 {
player!.play()
playButton.setTitle(
"暂停"
,
for
: .normal)
}
else
{
player!.pause()
playButton.setTitle(
"播放"
,
for
: .normal)
//后台播放显示信息进度停止
setInfoCenterCredentials(playbackState: 0)
}
}
//拖动进度条改变值时触发
@IBAction
func
playbackSliderValueChanged(_ sender:
Any
) {
let
seconds :
Int64
=
Int64
(playbackSlider.value)
let
targetTime:
CMTime
=
CMTimeMake
(seconds, 1)
//播放器定位到对应的位置
player!.seek(to: targetTime)
//如果当前时暂停状态,则自动播放
if
player!.rate == 0
{
player?.play()
playButton.setTitle(
"暂停"
,
for
: .normal)
}
}
//页面显示时添加相关通知监听
override
func
viewWillAppear(_ animated:
Bool
) {
//播放完毕
NotificationCenter
.
default
.addObserver(
self
, selector: #selector(finishedPlaying),
name:
NSNotification
.
Name
.
AVPlayerItemDidPlayToEndTime
, object: playerItem)
//告诉系统接受远程响应事件,并注册成为第一响应者
UIApplication
.shared.beginReceivingRemoteControlEvents()
self
.becomeFirstResponder()
}
//页面消失时取消歌曲播放结束通知监听
override
func
viewWillDisappear(_ animated:
Bool
) {
NotificationCenter
.
default
.removeObserver(
self
)
//停止接受远程响应事件
UIApplication
.shared.endReceivingRemoteControlEvents()
self
.resignFirstResponder()
}
//歌曲播放完毕
func
finishedPlaying(myNotification:
NSNotification
) {
print
(
"播放完毕!"
)
let
stopedPlayerItem:
AVPlayerItem
= myNotification.object
as
!
AVPlayerItem
stopedPlayerItem.seek(to: kCMTimeZero)
}
//是否能成为第一响应对象
override
var
canBecomeFirstResponder:
Bool
{
return
true
}
// 设置后台播放显示信息
func
setInfoCenterCredentials(playbackState:
Int
) {
let
mpic =
MPNowPlayingInfoCenter
.
default
()
//专辑封面
let
mySize =
CGSize
(width: 400, height: 400)
let
albumArt =
MPMediaItemArtwork
(boundsSize:mySize) { sz
in
return
UIImage
(named:
"cover"
)!
}
//获取进度
let
postion =
Double
(
self
.playbackSlider!.value)
let
duration =
Double
(
self
.playbackSlider!.maximumValue)
mpic.nowPlayingInfo = [
MPMediaItemPropertyTitle
:
"我是歌曲标题"
,
MPMediaItemPropertyArtist
:
"hangge.com"
,
MPMediaItemPropertyArtwork
: albumArt,
MPNowPlayingInfoPropertyElapsedPlaybackTime
: postion,
MPMediaItemPropertyPlaybackDuration
: duration,
MPNowPlayingInfoPropertyPlaybackRate
: playbackState]
}
//后台操作
override
func
remoteControlReceived(with event:
UIEvent
?) {
guard
let
event = event
else
{
print
(
"no event\n"
)
return
}
if
event.type ==
UIEventType
.remoteControl {
switch
event.subtype {
case
.remoteControlTogglePlayPause:
print
(
"暂停/播放"
)
case
.remoteControlPreviousTrack:
print
(
"上一首"
)
case
.remoteControlNextTrack:
print
(
"下一首"
)
case
.remoteControlPlay:
print
(
"播放"
)
player!.play()
case
.remoteControlPause:
print
(
"暂停"
)
player!.pause()
//后台播放显示信息进度停止
setInfoCenterCredentials(playbackState: 0)
default
:
break
}
}
}
override
func
didReceiveMemoryWarning() {
super
.didReceiveMemoryWarning()
}
}
|