Spaces:
Running on Zero
Running on Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -84,8 +84,10 @@ DEFAULT_FRAME_RATE = 24.0
|
|
| 84 |
|
| 85 |
# Resolution presets: (width, height)
|
| 86 |
RESOLUTIONS = {
|
| 87 |
-
"
|
| 88 |
-
|
|
|
|
|
|
|
| 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 |
|