1
0
Fork 0
mirror of https://codeberg.org/ashley/poke.git synced 2024-11-17 00:14:39 -05:00
This commit is contained in:
Ashley 2022-06-22 16:33:03 +03:00 committed by GitHub
parent 03cd8d26d7
commit e07540878c

View file

@ -48,7 +48,12 @@ const fetcher = require("./src/fetcher.js");
app.get("/watch", async function (req, res) {
var v = req.query.v;
const getColors = require('get-image-colors')
var e = req.query.e;
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> "),
});
});