removing useless

This commit is contained in:
localhost 2025-09-24 19:36:42 +02:00
parent d98488628e
commit 4c3d3de8ba
1 changed files with 28 additions and 1 deletions

View File

@ -131,11 +131,20 @@ app.get('/videos/:id', async (req, res) => {
})
// @ts-ignore
app.ws('/download/:id/:quality', async (ws, req) => {
app.ws('/download/:id', async (ws, req) => {
const yt = await Innertube.create();
let quality = '480p'
const info = await yt.getInfo(req.params.id, {
client: 'IOS'
});
if (!info || info.basic_info.duration == undefined) {
ws.send('Unable to retrieve video info from YouTube. Please try again later.');
return ws.close()
}
if (info.basic_info.duration >= 900) quality = '360p'
quality = await getVideoQuality(info, quality)
if (info.playability_status?.status !== 'OK') {
ws.send(`This video is not available for download (${info.playability_status?.status} ${info.playability_status?.reason}).`);
@ -216,6 +225,24 @@ app.get('/getWebpageJson', async (req, res) => {
}
})
async function getVideoQuality(json: any, quality: string) {
const adaptiveFormats = json['streaming_data']['adaptive_formats'];
let video = adaptiveFormats.find((f: any) => f.quality_label === quality && !f.has_audio);
if (!video) {
const target = parseInt(quality);
video = adaptiveFormats // find the quality thats closest to the one we wanted
.filter((f: any) => !f.has_audio && f.quality_label)
.reduce((prev: any, curr: any) => {
const currDiff = Math.abs(parseInt(curr.quality_label) - target);
const prevDiff = prev ? Math.abs(parseInt(prev.quality_label) - target) : Infinity;
return currDiff < prevDiff ? curr : prev;
}, null);
}
return video ? video.quality_label : null;
}
function mergeIt(audioPath: string, videoPath: string, outputPath: string, ws: any) {
return new Promise((resolve, reject) => {
ffmpeg()