remove 240p and 360p transcodes

This commit is contained in:
Carl Pearson
2024-09-14 14:07:46 -06:00
parent f414b436c2
commit 2dcd31b834

View File

@@ -461,7 +461,7 @@ func processOriginal(originalID uint) {
}
// create video transcodes
for _, targetHeight := range []uint{144, 240, 360, 480, 720, 1080} {
for _, targetHeight := range []uint{144, 480, 720, 1080} {
if targetHeight <= videoMeta.height {
t := Transcode{
SrcID: video.ID,