-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
344 lines (292 loc) · 8.58 KB
/
index.js
File metadata and controls
344 lines (292 loc) · 8.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
const express = require("express");
const ejs = require("ejs");
const path = require("path");
const bodyParser = require("body-parser");
const ytdl = require("ytdl-core");
const sanitize = require("sanitize-filename");
const ffmpeg = "./ffmpeg/bin/ffmpeg.exe";
const fs = require("fs");
const cp = require("child_process");
const { spawn } = require("child_process");
const AdmZip = require("adm-zip");
const session = require("express-session");
const { v4: uuidv4 } = require("uuid");
const app = express();
const port = 3000;
app.use(
session({
genid: (req) => {
return uuidv4();
},
secret: "natsnatsnats",
resave: false,
saveUninitialized: true,
cookie: { secure: false },
})
);
app.set("views", path.join(__dirname, "public", "views"));
app.set("view engine", "ejs");
app.use(bodyParser.urlencoded({ extended: true }));
app.use(express.static("public"));
function clearTempDirectory() {
const tempDir = path.join(__dirname, "temp");
if (fs.existsSync(tempDir)) {
fs.readdirSync(tempDir).forEach((file) => {
const filePath = path.join(tempDir, file);
if (fs.statSync(filePath).isDirectory()) {
fs.rmdirSync(filePath, { recursive: true });
}
});
}
}
clearTempDirectory();
app.get("/download-video", async (req, res) => {
try {
const { url, format, quality } = req.query;
console.log("Request query parameters:", req.query);
const sessionId = req.sessionID;
const tempDir = path.join(__dirname, "temp", sessionId);
if (!fs.existsSync(tempDir)) {
fs.mkdirSync(tempDir, { recursive: true });
}
if (!ytdl.validateURL(url)) {
console.log("Invalid YouTube URL:", url);
return res.status(400).send("Invalid YouTube URL");
}
const info = await ytdl.getInfo(url);
const videoTitle = info.videoDetails.title;
console.log("Video title:", videoTitle);
const sanitizedTitle = sanitize(videoTitle);
console.log("Sanitized title:", sanitizedTitle);
const titleWithQuality = `${sanitizedTitle} [${quality}]`;
console.log("Title with quality:", titleWithQuality);
res.setHeader("Video-Title", titleWithQuality);
if (format === "mp3") {
console.log("Downloading audio...");
const audioFormat = ytdl.chooseFormat(info.formats, {
quality: "highestaudio",
});
console.log("Selected audio format:", audioFormat);
const audioPath = path.join(
tempDir,
`temp_audio_${titleWithQuality}.m4a`
);
const audioFile = fs.createWriteStream(audioPath);
const audioStream = ytdl.downloadFromInfo(info, { format: audioFormat });
audioStream.pipe(audioFile);
audioFile.on("finish", () => {
console.log("Audio file downloaded.");
const mp3Path = path.join(tempDir, `${titleWithQuality}.mp3`);
const ffmpegArgs = [
"-i",
audioPath,
"-codec:a",
"libmp3lame",
"-q:a",
"2",
mp3Path,
];
const ffmpegProcess = cp.spawn(ffmpeg, ffmpegArgs, {
windowsHide: true,
});
ffmpegProcess.on("error", (err) => {
console.error("Error converting audio to MP3:", err);
res.status(500).send("Error converting audio to MP3");
});
ffmpegProcess.on("close", (code) => {
if (code === 0) {
fs.unlinkSync(audioPath);
res.download(mp3Path, (err) => {
if (err) {
console.error("Error sending file:", err);
res.status(500).send("Error sending file");
}
fs.unlink(mp3Path, (err) => {
if (err) {
console.error("Error deleting file:", err);
} else {
console.log("Temporary file deleted");
}
});
});
} else {
console.error(`FFmpeg process exited with code ${code}`);
res.status(500).send("Error converting audio to MP3");
}
});
});
} else if (format === "mp4" || format === "mkv") {
console.log("Downloading video...");
const videoFormat = ytdl.chooseFormat(info.formats, { quality: quality });
if (!videoFormat) {
console.log("Requested quality not available:", quality);
return res.status(404).send("Requested quality not available");
}
const outputFileName = `${titleWithQuality}.${format}`;
const outputPath = path.join(tempDir, outputFileName);
const audio = ytdl(url, { quality: "highestaudio" });
const video = ytdl(url, { quality });
video.on("info", (info) => {
if (!info) {
return res.status(400).send("Quality not found");
}
});
const ffmpegProcess = cp.spawn(
ffmpeg,
[
"-loglevel",
"8",
"-hide_banner",
"-progress",
"pipe:3",
"-i",
"pipe:4",
"-i",
"pipe:5",
"-map",
"0:a",
"-map",
"1:v",
"-c:v",
"copy",
outputPath,
],
{
windowsHide: true,
stdio: ["inherit", "inherit", "inherit", "pipe", "pipe", "pipe"],
}
);
ffmpegProcess.on("close", () => {
console.log("FFmpeg process finished");
res.download(outputPath, (err) => {
if (err) {
console.error("Error sending file:", err);
res.status(500).send("Error sending file");
}
fs.unlink(outputPath, (err) => {
if (err) {
console.error("Error deleting file:", err);
} else {
console.log("Temporary file deleted");
}
});
});
});
ffmpegProcess.stdio[3].on("data", (chunk) => {
const lines = chunk.toString().trim().split("\n");
const args = {};
for (const l of lines) {
const [key, value] = l.split("=");
args[key.trim()] = value.trim();
}
});
audio.pipe(ffmpegProcess.stdio[4]);
video.pipe(ffmpegProcess.stdio[5]);
} else {
console.log("Invalid format:", format);
return res.status(400).send("Invalid format");
}
} catch (error) {
console.error("Error downloading video:", error);
res.status(500).send("Error downloading video");
}
});
app.get("/download-multi-audio", async (req, res) => {
try {
const { urls } = req.query;
console.log("Request query parameters:", req.query);
if (!urls || urls.indexOf(";") === -1) {
return res
.status(400)
.send(
"Please provide valid YouTube video URLs separated by semicolons (;)"
);
}
const urlArray = urls.split(";");
const urlList = [];
const uniqueUrls = new Set();
for (const url of urlArray) {
if (!uniqueUrls.has(url.trim())) {
uniqueUrls.add(url.trim());
urlList.push(url.trim());
}
}
if (urlList.length !== urlArray.length) {
return res
.status(400)
.send("Duplicate URLs are not allowed. Please provide unique URLs.");
}
const zip = new AdmZip();
const promises = [];
for (const url of urlList) {
promises.push(downloadAudio(url, zip));
}
await Promise.all(promises);
const zipFileName = "audio_files.zip";
const zipData = zip.toBuffer();
res.set("Content-Disposition", `attachment; filename="${zipFileName}"`);
res.set("Content-Type", "application/zip");
res.set("Content-Length", zipData.length);
res.end(zipData);
} catch (error) {
console.error("Error:", error);
res.status(500).send("An error occurred");
}
});
async function downloadAudio(url, zip) {
console.log("Downloading audio:", url);
const info = await ytdl.getInfo(url);
const audioFormat = ytdl.chooseFormat(info.formats, {
quality: "highestaudio",
});
console.log("Selected audio format:", audioFormat);
const titleWithQuality = `${info.videoDetails.title}_audio`;
const audioPath = `temp_audio_${titleWithQuality}.mp3`;
const mp3Path = `${titleWithQuality}.mp3`;
await new Promise((resolve, reject) => {
const audioStream = ytdl.downloadFromInfo(info, { format: audioFormat });
const audioFile = fs.createWriteStream(audioPath);
audioStream.pipe(audioFile);
audioFile.on("finish", async () => {
console.log("Downloaded audio:", audioPath);
const mp3Path = `${titleWithQuality}.mp3`;
const ffmpegArgs = [
"-i",
audioPath,
"-codec:a",
"libmp3lame",
"-q:a",
"2",
mp3Path,
];
const ffmpegProcess = cp.spawn(ffmpeg, ffmpegArgs, { windowsHide: true });
ffmpegProcess.on("error", (err) => {
console.error("Error converting audio to MP3:", err);
reject(err);
});
ffmpegProcess.on("close", (code) => {
if (code === 0) {
console.log("Converted audio to MP3:", mp3Path);
zip.addLocalFile(mp3Path);
resolve();
} else {
console.error(`FFmpeg process exited with code ${code}`);
reject(`FFmpeg process exited with code ${code}`);
}
});
});
audioFile.on("error", (err) => {
console.error("Error downloading audio:", err);
reject(err);
});
});
fs.unlinkSync(audioPath);
fs.unlinkSync(mp3Path);
}
app.get("/", (req, res) => {
res.render("index");
console.log(`App Launched`);
});
app.listen(port, () => {
console.log(`Server is running on port ${port}`);
});