Update plugins/alldownloader.js
Browse files- plugins/alldownloader.js +4 -3
plugins/alldownloader.js
CHANGED
@@ -234,7 +234,8 @@ AllDlRoutes.get('/api/v1/dl/youtube', authenticateApiKey, apiLimiter, async (req
|
|
234 |
|
235 |
const resolutions = Object.keys(results.video);
|
236 |
console.log(resolutions);
|
237 |
-
|
|
|
238 |
if (resolutions.length > 0) {
|
239 |
const videoDownload = await results.video[resolutions[0]].download();
|
240 |
if (videoDownload) {
|
@@ -252,9 +253,9 @@ AllDlRoutes.get('/api/v1/dl/youtube', authenticateApiKey, apiLimiter, async (req
|
|
252 |
} else {
|
253 |
console.error("Download link is missing for audio:", audioResolutions[0]);
|
254 |
}
|
255 |
-
}
|
256 |
|
257 |
-
res.json({
|
258 |
} catch (error) {
|
259 |
res.status(500).json({ error: error.message });
|
260 |
}
|
|
|
234 |
|
235 |
const resolutions = Object.keys(results.video);
|
236 |
console.log(resolutions);
|
237 |
+
const video_url = await data.video[resolutions[0]].download()
|
238 |
+
/*
|
239 |
if (resolutions.length > 0) {
|
240 |
const videoDownload = await results.video[resolutions[0]].download();
|
241 |
if (videoDownload) {
|
|
|
253 |
} else {
|
254 |
console.error("Download link is missing for audio:", audioResolutions[0]);
|
255 |
}
|
256 |
+
}*/
|
257 |
|
258 |
+
res.json({ video_url });
|
259 |
} catch (error) {
|
260 |
res.status(500).json({ error: error.message });
|
261 |
}
|