add 540p and 360p options

This commit is contained in:
Carl Pearson
2025-02-20 06:00:41 -07:00
parent 6995da6d5d
commit c4e325a23c
3 changed files with 5 additions and 4 deletions

View File

@@ -510,7 +510,7 @@ func processOriginal(originalID uint) {
}
// create video transcodes
for _, targetHeight := range []uint{480, 240, 144} {
for _, targetHeight := range []uint{540, 480, 360, 240, 144} {
if targetHeight <= video.Height {
newVideoTranscode(video.ID, originalID, targetHeight, video.FPS)
break