mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 08:58:24 +01:00
new download stuff owo
This commit is contained in:
parent
a47319c625
commit
612a0de50d
1 changed files with 9 additions and 5 deletions
10
server.js
10
server.js
|
@ -141,11 +141,11 @@ app.get("/watch", async function (req, res) {
|
|||
if (!v) res.redirect("/");
|
||||
|
||||
// video
|
||||
const url = `https://tube.kuylar.dev/proxy/media/${v}/18`
|
||||
const url = `https://tube.kuylar.dev/proxy/media/${v}/22`
|
||||
|
||||
// encryption
|
||||
|
||||
const url_e = url + "?e="+ sha384(json.id) + sha384(json.Title)
|
||||
const url_e = url + "?e="+ sha384(json.id) + sha384(json.Title) + sha384(json.Channel.id) + sha384(json.Channel.id) + "Piwik" + sha384(config.t_url)
|
||||
|
||||
// channel info
|
||||
const engagement = fetching.engagement;
|
||||
|
@ -330,11 +330,15 @@ app.get("/", async function (req, res) {
|
|||
|
||||
app.get("/api/video/download", async function (req, res) {
|
||||
var v = req.query.v;
|
||||
|
||||
var q = "22";
|
||||
if (req.query.q) q = req.query.q;
|
||||
|
||||
var fetching = await fetcher(v);
|
||||
|
||||
const json = fetching.video.Player;
|
||||
|
||||
const url = `https://tube.kuylar.dev/proxy/download/${v}/22/${json.title}.mp4`
|
||||
const url = `https://tube.kuylar.dev/proxy/download/${v}/${q}/${json.Title}.mp4`;
|
||||
|
||||
res.redirect(url)
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue