This commit is contained in:
The Ghost of FOSS' Past 2024-10-28 11:18:33 -05:00
parent 3c37b55d5d
commit 96a44e5cb2

View file

@ -53,10 +53,10 @@ app.get('/download', (req, res) => {
}
// Set the output file path
const outputPath = path.join(__dirname, '/tmp/downloads', '%(title)s.%(ext)s');
var outputPath = path.join('/tmp/downloads', '%(title)s.%(ext)s');
// Create /tmp/downloads directory if it doesn't exist
fs.mkdirSync(path.join(__dirname, '/tmp/downloads'), { recursive: true });
fs.mkdirSync(path.join('/tmp/downloads'), { recursive: true });
// Use yt-dlp to download the video
exec(`yt-dlp -o "${outputPath}" "${videoUrl}"`, (error, stdout, stderr) => {
@ -64,15 +64,12 @@ app.get('/download', (req, res) => {
return res.status(500).json({ error: 'An error occurred while downloading the video.', details: stderr });
}
// Parse the output to get the file name
const filename = stdout.split('\n').find(line => line.includes('Destination'))?.split(' ')[1];
if (!filename) {
return res.status(500).json({ error: 'Downloaded file not found.' });
}
// Full path of the downloaded file
const downloadedFilePath = path.join(__dirname, '/tmp/downloads', filename);
const downloadedFilePath = outputPath;
// Check if the file exists and send it
if (fs.existsSync(downloadedFilePath)) {