forked from Supositware/Haha-Yes
Limit videos to 720p
This commit is contained in:
parent
b095d5ce3a
commit
3b9d2dc556
2 changed files with 2 additions and 3 deletions
|
@ -137,8 +137,7 @@ export default {
|
|||
};
|
||||
|
||||
async function download(url, interaction, originalInteraction) {
|
||||
let format = 'bestvideo*+bestaudio/best';
|
||||
|
||||
let format = undefined;
|
||||
const Embed = new EmbedBuilder()
|
||||
.setColor(interaction.member ? interaction.member.displayHexColor : 'Navy')
|
||||
.setAuthor({ name: `Downloaded by ${interaction.user.username}`, iconURL: interaction.user.displayAvatarURL(), url: url })
|
||||
|
|
|
@ -12,7 +12,7 @@ export default {
|
|||
getVideoSize,
|
||||
getMaxFileSize,
|
||||
};
|
||||
async function downloadVideo(urlArg, output, format = 'bestvideo*+bestaudio/best') {
|
||||
async function downloadVideo(urlArg, output, format = 'bestvideo[height<=?720]*+bestaudio/best') {
|
||||
await new Promise((resolve, reject) => {
|
||||
exec(`./bin/yt-dlp -f "${format}" "${urlArg}" -o "${os.tmpdir()}/${output}.%(ext)s" --force-overwrites --no-playlist --remux-video=mp4/webm/mov`, (err, stdout, stderr) => {
|
||||
if (err) {
|
||||
|
|
Loading…
Reference in a new issue