Add stop functionality, fix duration
This commit is contained in:
@@ -1,14 +1,13 @@
|
||||
const playdl = require('play-dl');
|
||||
|
||||
//TODO ADD SPOTIFY SUPPORT
|
||||
async function getStream(query) {
|
||||
const trackInfo = await playdl.spotify(query);
|
||||
|
||||
let searched = await play.search(`${trackInfo.name}`, {
|
||||
limit: 1
|
||||
}) // This will search the found track on youtube.
|
||||
|
||||
let stream = await play.stream(searched[0].url) // This will create stream from the above search
|
||||
})
|
||||
|
||||
let stream = await play.stream(searched[0].url)
|
||||
return stream;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user