Univerter/index.js

70 lines
1.8 KiB
JavaScript
Raw Normal View History

2023-10-18 20:04:42 -05:00
const { randomInt } = require('crypto');
const ytdl = require('ytdl-core'),
fs = require('fs'),
path = require('path'),
express = require('express'),
2023-10-18 20:04:42 -05:00
ffmpeg = require('ffmpeg'),
bodyParser = require('body-parser')
2023-05-05 11:15:22 -05:00
const PORT = process.env.PORT || 8080
const app = express()
2023-08-24 11:00:33 -05:00
process.on('uncaughtException', (err, origin) => {
fs.writeSync(
process.stderr.fd,
`Caught exception: ${err}\n` +
`Exception origin: ${origin}`,
);
});
2023-08-24 11:00:33 -05:00
app.use(bodyParser.urlencoded({ extended: false }))
2023-10-18 20:04:42 -05:00
app.get("/download", async (req, res) => {
2023-05-08 12:52:41 -05:00
const filename = req.query.filename
const url = req.query.url
2023-05-10 12:36:26 -05:00
const format = req.query.format
2023-05-05 11:15:22 -05:00
const quality = req.query.quality
2023-05-10 12:36:26 -05:00
2023-08-28 08:33:16 -05:00
if (!ytdl.validateURL(url)) {
2023-08-24 11:00:33 -05:00
res.send("Invalid URL!")
return
}
2023-10-18 20:04:42 -05:00
res.header('Content-Disposition', `attachment; filename="${filename}.${format}"`);
2023-10-18 20:04:42 -05:00
var ytpath = path.join(__dirname, 'cached/' + ytdl.getVideoID(url) + String(Math.floor(Math.random() * 100000)) + '.mp4')
var vidinfo = await ytdl.getBasicInfo(url)
var ytvid = ytdl(url, { 'quality': quality })
.pipe(fs.createWriteStream(ytpath))
.on("close", ()=> {
console.log("Downloaded!")
var proc = new ffmpeg(ytpath)
proc.then(function(video) {
video
.setVideoDuration(vidinfo.videoDetails.lengthSeconds)
.setVideoFormat(format)
.save('cached/' + ytdl.getVideoID(url) + String(Math.floor(Math.random() * 100000)) + "Converted." + format,function (err, file) {
console.log("Converted!")
fs.createReadStream(file).pipe(res)
.on("close", () => {
console.log("Freed!")
fs.unlinkSync(file)
if (fs.existsSync(ytpath)) {
fs.unlinkSync(ytpath)
}
})
})
})
})
2023-05-05 11:15:22 -05:00
});
app.use(express.static(path.join(__dirname, 'static')))
2023-05-10 12:36:26 -05:00
app.listen(PORT, function () {
2023-05-05 11:15:22 -05:00
console.log("Hosted on port " + PORT)
})