mirror of
https://github.com/shadoll/moma.git
synced 2026-08-28 03:27:34 +00:00
8 lines
304 B
Python
8 lines
304 B
Python
class ResolutionFormatter:
|
|
"""Class for formatting video resolutions and frame classes"""
|
|
|
|
@staticmethod
|
|
def format_resolution_dimensions(resolution: tuple[int, int]) -> str:
|
|
"""Format resolution as WIDTHxHEIGHT"""
|
|
width, height = resolution
|
|
return f"{width}x{height}" |