mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 10:38:25 +01:00
yo
This commit is contained in:
parent
42ad36fc0b
commit
a3e960c1e7
1 changed files with 8 additions and 1 deletions
|
@ -49,6 +49,11 @@ app.get("/watch", async function (req, res) {
|
|||
var v = req.query.v;
|
||||
const getColors = require('get-image-colors')
|
||||
var e = req.query.e;
|
||||
var r = req.query.r;
|
||||
const { toJson } = require("xml2json");
|
||||
const video = await fetch( `https://tube.kuylar.dev/api/video?v=${v}`);
|
||||
const h = await video.text();
|
||||
const k = JSON.parse(toJson(h));
|
||||
if(!v) res.redirect("/")
|
||||
var fetching = await fetcher(v)
|
||||
const j = fetching.video.Player.Formats.Format,
|
||||
|
@ -69,6 +74,8 @@ if (j_.URL != undefined)
|
|||
video: json,
|
||||
date: moment(json.uploadDate).format("LL"),
|
||||
e:e,
|
||||
k:k,
|
||||
r:r,
|
||||
lyrics: lyrics.replace(/\n/g, " <br> "),
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue