dagloop5 commited on
Commit
6ef0404
·
verified ·
1 Parent(s): de4f8f0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -84,8 +84,10 @@ DEFAULT_FRAME_RATE = 24.0
84
 
85
  # Resolution presets: (width, height)
86
  RESOLUTIONS = {
87
- "high": {"16:9": (1536, 1024), "9:16": (1024, 1536), "1:1": (1024, 1024)},
88
- "low": {"16:9": (768, 512), "9:16": (512, 768), "1:1": (768, 768)},
 
 
89
  }
90
 
91
 
 
84
 
85
  # Resolution presets: (width, height)
86
  RESOLUTIONS = {
87
+ "low": {"16:9": (768, 512), "9:16": (512, 768), "1:1": (768, 768),
88
+ "4:3": (768, 576), "3:4": (576, 768), "21:9": (768, 384)},
89
+ "high": {"16:9": (1536, 1024), "9:16": (1024, 1536), "1:1": (1024, 1024),
90
+ "4:3": (1536, 1152), "3:4": (1152, 1536), "21:9": (1536, 768)},
91
  }
92
 
93