-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplayer.js
44 lines (40 loc) · 1.13 KB
/
player.js
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
const player = require('play-sound')(opts = {});
const musicAPI = require('music-api');
let audio = null;
const searchAndPlay = (name) => {
musicAPI.searchSong('qq', {
key: name,
limit: 1,
page: 1,
}).then(res => {
if (res.success === true) {
const songId = res.songList[0].id;
if (songId) {
musicAPI.getSong('qq', {
id: songId,
raw: false,
}).then(res => {
if (res.success === true) {
const url = res.url;
if (url) {
audio = player.play(url, (err) => {
if (err && !err.killed) {
throw err;
}
});
}
}
}).catch((err => console.log(err)));
}
}
}).catch(err => console.log(err));
};
const stop = () => {
if (audio) {
audio.kill();
}
};
module.exports = {
play: searchAndPlay,
stop: stop,
};