web/queue: scale cropped covers to 720x720

instead of 800x800 because usually thumbnails that need to be cropped are 1280x720
This commit is contained in:
wukko 2025-06-26 18:11:02 +06:00
parent bfb23c86f9
commit 81a0d5e154
No known key found for this signature in database
GPG Key ID: 3E30B3F26C7B4AA2

View File

@ -90,7 +90,7 @@ const makeAudioArgs = (info: CobaltLocalProcessingResponse) => {
"-map", "1",
...(info.audio.cropCover ? [
"-c:v", "mjpeg",
"-vf", "scale=-1:800,crop=800:800",
"-vf", "scale=-1:720,crop=720:720",
] : [
"-c:v", "copy",
]),