Update output.py with NTSC DVT, Amcrest DV1 aspect ratio 704x480

This commit is contained in:
Eric M 2023-12-02 07:26:43 -08:00 committed by GitHub
parent 595fa3d111
commit 0c60ff1685
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,6 +45,7 @@ def get_standard_aspect_ratio(width: int, height: int) -> tuple[int, int]:
(32, 9), # panoramic cameras
(12, 9),
(9, 12),
(22, 15), # Amcrest, NTSC DVT
] # aspects are scaled to have common relative size
known_aspects_ratios = list(
map(lambda aspect: aspect[0] / aspect[1], known_aspects)