From bf028bc73808c1491abd141db86f12061960986e Mon Sep 17 00:00:00 2001 From: localhost Date: Fri, 14 Mar 2025 22:49:05 +0100 Subject: [PATCH] youtube freaks out for anything non 360p --- src/utils/download.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/download.ts b/src/utils/download.ts index b04fe4d..6ff93fd 100644 --- a/src/utils/download.ts +++ b/src/utils/download.ts @@ -3,7 +3,7 @@ import { getVideo } from '@/utils/metadata'; async function downloadVideo(ws: any, id: string): Promise<{ fail: boolean, message: string }> { return new Promise(async (resolve, reject) => { - let quality = '480p' + let quality = '360p' const video = await getVideo(id) if (video.error) { return resolve({