File size: 17,019 Bytes
414c87a 527d105 414c87a 527d105 414c87a 0367675 414c87a 0367675 414c87a | 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 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 | const express = require('express');
const cors = require('cors');
const path = require('path');
const fs = require('fs');
const { spawn, exec } = require('child_process');
const app = express();
const PORT = process.env.PORT || 3000;
// Security headers
app.use((req, res, next) => {
res.setHeader('X-Content-Type-Options', 'nosniff');
res.setHeader('X-Frame-Options', 'SAMEORIGIN');
res.setHeader('X-XSS-Protection', '1; mode=block');
res.setHeader('Referrer-Policy', 'strict-origin-when-cross-origin');
next();
});
// CORS configuration for Hugging Face Spaces
app.use(cors({
origin: '*',
methods: ['GET', 'POST'],
credentials: false
}));
app.use(express.json({ limit: '1mb' }));
app.use(express.static('public'));
const DOWNLOADS_DIR = path.join(__dirname, 'downloads');
const YT_DLP_BIN = path.join(__dirname, 'node_modules', 'youtube-dl-exec', 'bin', 'yt-dlp');
const MAX_TITLE_LENGTH = 100;
const CLEANUP_DELAY = 5000;
// HTTP Headers Constants
const CONTENT_TYPE_VIDEO = 'video/mp4';
const CONTENT_TYPE_AUDIO = 'audio/mpeg';
const HEADER_CONTENT_DISPOSITION = 'Content-Disposition';
const HEADER_CACHE_CONTROL = 'Cache-Control';
// URL Constants
const YOUTUBE_BASE_URL = 'https://www.youtube.com';
const YOUTUBE_PLAYLIST_URL = `${YOUTUBE_BASE_URL}/playlist?list=`;
const YOUTUBE_DEFAULT_THUMBNAIL = 'https://i.ytimg.com/vi/default/hqdefault.jpg';
if (!fs.existsSync(DOWNLOADS_DIR)) {
fs.mkdirSync(DOWNLOADS_DIR, { recursive: true });
}
function getVideoId(url) {
if (!url || typeof url !== 'string') {
return null;
}
const patterns = [
/(?:youtube\.com\/watch\?v=|youtu\.be\/|youtube\.com\/embed\/|youtube\.com\/v\/)([a-zA-Z0-9_-]{11})/,
/^[a-zA-Z0-9_-]{11}$/
];
for (const pattern of patterns) {
const match = url.match(pattern);
if (match) {
return match[1] || match[0];
}
}
return null;
}
function getPlaylistId(url) {
if (!url || typeof url !== 'string') {
return null;
}
const match = url.match(/list=([a-zA-Z0-9_-]+)/);
return match ? match[1] : null;
}
function sanitizeFilename(title) {
if (!title || typeof title !== 'string') {
return 'video';
}
return title
.trim()
.replace(/[<>:"/\\|?*\x00-\x1F]/g, '')
.replace(/\s+/g, '_')
.replace(/_{2,}/g, '_')
.substring(0, MAX_TITLE_LENGTH);
}
function cleanupFile(filepath) {
try {
if (fs.existsSync(filepath)) {
fs.unlinkSync(filepath);
}
} catch (error) {
console.error(`Cleanup failed for ${filepath}:`, error.message);
}
}
function execYtdl(args) {
return new Promise((resolve, reject) => {
if (!Array.isArray(args) || args.length === 0) {
return reject(new Error('Invalid arguments'));
}
const proc = spawn(YT_DLP_BIN, args, { stdio: 'pipe' });
let stdout = '';
let stderr = '';
proc.stdout.on('data', (data) => { stdout += data; });
proc.stderr.on('data', (data) => { stderr += data; });
proc.on('close', (code) => {
if (code === 0) {
resolve(stdout);
} else {
reject(new Error(stderr || `Command failed with code ${code}`));
}
});
proc.on('error', reject);
});
}
app.get('/', (_req, res) => {
res.sendFile(path.join(__dirname, 'public', 'index.html'));
});
app.post('/api/info', async (req, res) => {
try {
const { url } = req.body;
if (!url || typeof url !== 'string') {
return res.status(400).json({ error: 'URL is required' });
}
const videoId = getVideoId(url);
const playlistId = getPlaylistId(url);
if (!videoId && !playlistId) {
return res.status(400).json({ error: 'Please enter a valid YouTube URL' });
}
if (playlistId) {
const output = await execYtdl([
'--flat-playlist',
'--print', '%(title)s|%(id)s|%(duration)s',
`${YOUTUBE_PLAYLIST_URL}${playlistId}`
]);
const lines = output.trim().split('\n').filter(l => l);
const videos = lines.slice(0, 10).map(line => {
const parts = line.split('|');
return {
id: parts[1] || '',
title: parts[0] || 'Unknown',
duration: parts[2] || '0'
};
});
return res.json({
title: `Playlist (${lines.length} videos)`,
isPlaylist: true,
playlistCount: lines.length,
videos: videos,
thumbnail: YOUTUBE_DEFAULT_THUMBNAIL
});
}
const jsonOutput = await execYtdl(['--dump-json', '--no-playlist', url]);
const videoData = JSON.parse(jsonOutput);
// Get all available formats with detailed information
const qualities = [];
const seenHeights = new Set();
// Parse formats from JSON for accurate data
if (videoData.formats && Array.isArray(videoData.formats)) {
videoData.formats.forEach(format => {
// Only include video formats with height information
if (format.height && format.vcodec && format.vcodec !== 'none') {
const height = parseInt(format.height, 10);
// Skip if we already have this height
if (seenHeights.has(height)) return;
// Only include reasonable video qualities
if (height >= 144 && height <= 4320) {
seenHeights.add(height);
qualities.push({
formatId: format.format_id,
resolution: `${format.width || '?'}x${format.height}`,
height: height,
ext: format.ext || 'mp4',
vcodec: format.vcodec,
fps: format.fps || 30
});
}
}
});
}
// Sort by height (highest first)
qualities.sort((a, b) => b.height - a.height);
res.json({
title: videoData.title || 'Unknown',
thumbnail: videoData.thumbnail || '',
duration: videoData.duration || 0,
uploader: videoData.uploader || videoData.channel || 'Unknown',
isPlaylist: false,
qualities: qualities
});
} catch (error) {
res.status(400).json({ error: `Failed to fetch video info: ${error.message}` });
}
});
app.post('/api/download/video', async (req, res) => {
try {
const { url, quality } = req.body;
if (!url || typeof url !== 'string') {
return res.status(400).json({ error: 'URL is required' });
}
if (!quality || typeof quality !== 'string') {
return res.status(400).json({ error: 'Quality format is required' });
}
if (!getVideoId(url)) {
return res.status(400).json({ error: 'Invalid YouTube URL' });
}
const jsonOutput = await execYtdl(['--dump-json', '--no-playlist', url]);
const videoData = JSON.parse(jsonOutput);
const title = sanitizeFilename(videoData.title);
const existingFiles = fs.readdirSync(DOWNLOADS_DIR).filter(f => f.startsWith(title));
existingFiles.forEach(f => cleanupFile(path.join(DOWNLOADS_DIR, f)));
const outputPath = path.join(DOWNLOADS_DIR, `${title}.mp4`);
// Verify the format exists
const selectedFormat = videoData.formats?.find(f => f.format_id === quality);
if (!selectedFormat) {
return res.status(400).json({ error: 'Selected quality format not available' });
}
// Use the selected quality format with best audio
// Format: quality+bestaudio will download and merge if ffmpeg is available
// If ffmpeg not available, falls back to best combined format
const formatString = `${quality}+bestaudio/best`;
await execYtdl([
'-f', formatString,
'--merge-output-format', 'mp4',
'--no-check-certificate',
'--no-playlist',
'--no-warnings',
'-o', outputPath,
url
]);
// Find the downloaded file - could be merged or separate files
let finalFile = '';
let finalPath = '';
const downloadedFiles = fs.readdirSync(DOWNLOADS_DIR).filter(f =>
!f.endsWith('.part') &&
!f.endsWith('.temp') &&
!f.endsWith('.ytdl') &&
f.includes(title)
);
// Look for the merged file first
for (const f of downloadedFiles) {
const filePath = path.join(DOWNLOADS_DIR, f);
const ext = path.extname(f).toLowerCase();
// Check if it's the main output file (not a fragment)
if (!f.includes('.f') && (ext === '.mp4' || ext === '.mkv' || ext === '.webm')) {
finalFile = f;
finalPath = filePath;
break;
}
}
// If no merged file found, look for video-only file (ffmpeg not available)
if (!finalPath) {
for (const f of downloadedFiles) {
if (f.includes(`.f${quality}.`)) {
const filePath = path.join(DOWNLOADS_DIR, f);
const ext = path.extname(f).toLowerCase();
if (ext === '.mp4' || ext === '.mkv' || ext === '.webm') {
// Rename to clean filename
const cleanName = `${title}.mp4`;
const newPath = path.join(DOWNLOADS_DIR, cleanName);
if (!fs.existsSync(newPath)) {
fs.renameSync(filePath, newPath);
}
finalFile = cleanName;
finalPath = newPath;
// Clean up audio file if exists
downloadedFiles.forEach(df => {
if (df.includes('.f') && df !== f) {
cleanupFile(path.join(DOWNLOADS_DIR, df));
}
});
break;
}
}
}
}
if (!finalPath || !fs.existsSync(finalPath)) {
return res.status(400).json({ error: 'Download failed - file not found. Please ensure ffmpeg is installed for high-quality downloads.' });
}
res.setHeader(HEADER_CONTENT_DISPOSITION, `attachment; filename="${finalFile}"`);
res.setHeader('Content-Type', CONTENT_TYPE_VIDEO);
res.setHeader(HEADER_CACHE_CONTROL, 'no-cache');
const fileStream = fs.createReadStream(finalPath);
fileStream.on('error', () => {
cleanupFile(finalPath);
if (!res.headersSent) {
res.status(500).json({ error: 'Stream error occurred' });
}
});
fileStream.on('close', () => {
cleanupFile(finalPath);
// Clean up any remaining fragment files
const remainingFiles = fs.readdirSync(DOWNLOADS_DIR).filter(f => f.includes(title) && f.includes('.f'));
remainingFiles.forEach(f => cleanupFile(path.join(DOWNLOADS_DIR, f)));
});
fileStream.pipe(res);
} catch (error) {
res.status(400).json({ error: `Download failed: ${error.message}` });
}
});
app.post('/api/download/audio', async (req, res) => {
try {
const { url } = req.body;
if (!url || typeof url !== 'string') {
return res.status(400).json({ error: 'URL is required' });
}
if (!getVideoId(url)) {
return res.status(400).json({ error: 'Invalid YouTube URL' });
}
const jsonOutput = await execYtdl(['--dump-json', '--no-playlist', url]);
const videoData = JSON.parse(jsonOutput);
const title = sanitizeFilename(videoData.title);
const filename = `${title}.mp3`;
const filepath = path.join(DOWNLOADS_DIR, filename);
try {
await execYtdl([
'-x', '--audio-format', 'mp3', '--audio-quality', '0',
'--no-check-certificate',
'--no-playlist',
'--no-warnings',
'--merge-output-format', 'mp3',
'-o', filepath,
url
]);
} catch (conversionError) {
// Fallback: download best audio format
await execYtdl([
'-f', 'bestaudio',
'--no-check-certificate',
'--no-playlist',
'--no-warnings',
'-o', filepath,
url
]);
}
const files = fs.readdirSync(DOWNLOADS_DIR).filter(f => f.startsWith(title) && !f.endsWith('.part'));
if (files.length === 0) {
return res.status(400).json({ error: 'Audio download failed' });
}
let actualFile = files[0];
let actualPath = path.join(DOWNLOADS_DIR, actualFile);
const mp3Filename = `${title}.mp3`;
const mp3Path = path.join(DOWNLOADS_DIR, mp3Filename);
if (!actualFile.endsWith('.mp3')) {
if (!fs.existsSync(mp3Path)) {
fs.renameSync(actualPath, mp3Path);
actualFile = mp3Filename;
actualPath = mp3Path;
}
}
res.setHeader(HEADER_CONTENT_DISPOSITION, `attachment; filename="${actualFile}"`);
res.setHeader('Content-Type', CONTENT_TYPE_AUDIO);
res.setHeader(HEADER_CACHE_CONTROL, 'no-cache');
res.download(actualPath, actualFile, (err) => {
if (err && !res.headersSent) {
res.status(500).json({ error: 'Download error occurred' });
}
setTimeout(() => cleanupFile(actualPath), CLEANUP_DELAY);
});
} catch (error) {
res.status(400).json({ error: `Audio download failed: ${error.message}` });
}
});
app.post('/api/download/playlist', async (req, res) => {
try {
const { url, quality } = req.body;
if (!url || typeof url !== 'string') {
return res.status(400).json({ error: 'URL is required' });
}
if (!quality || typeof quality !== 'string') {
return res.status(400).json({ error: 'Quality format is required' });
}
const playlistId = getPlaylistId(url);
if (!playlistId) {
return res.status(400).json({ error: 'Invalid playlist URL' });
}
// Use selected quality with best audio for high quality output
const formatStr = `${quality}+bestaudio/best`;
await execYtdl([
'-f', formatStr,
'--merge-output-format', 'mp4',
'--yes-playlist',
'--no-check-certificate',
'--no-warnings',
'--recode-video', 'mp4',
'-o', path.join(DOWNLOADS_DIR, '%(title)s.%(ext)s'),
`${YOUTUBE_PLAYLIST_URL}${playlistId}`
]);
const files = fs.readdirSync(DOWNLOADS_DIR).filter(f => !f.endsWith('.part') && !f.startsWith('temp_'));
res.json({
success: true,
count: files.length,
message: `Downloaded ${files.length} videos in high quality`
});
} catch (error) {
res.status(400).json({ error: `Playlist download failed: ${error.message}` });
}
});
app.listen(PORT, '0.0.0.0', () => {
exec('ffmpeg -version', (error) => {
const separator = '='.repeat(60);
if (error) {
console.warn(`\n${separator}`);
console.warn('WARNING: FFmpeg NOT FOUND!');
console.warn(separator);
console.warn('High-quality downloads (720p+) will NOT work correctly.');
console.warn('Users will get low-quality videos instead of HD/4K.');
console.warn('');
console.warn('SOLUTION: Install FFmpeg');
console.warn('Ubuntu/Debian: sudo apt install ffmpeg -y');
console.warn('macOS: brew install ffmpeg');
console.warn(`${separator}\n`);
} else {
console.info('FFmpeg detected - High-quality downloads enabled');
}
console.info(`YouTube Downloader running on port ${PORT}`);
});
});
|