mirror of
https://github.com/KrisKennaway/ii-vision.git
synced 2024-12-22 12:29:31 +00:00
33aa4d46c4
Add a test case that the bmp2dhr output of input filenames containing '.' are handled correctly. Break out video.Mode into video_mode.VideoMode to resolve circular dependency.
9 lines
113 B
Python
9 lines
113 B
Python
"""Enum representing video encoding mode."""
|
|
|
|
import enum
|
|
|
|
|
|
class VideoMode(enum.Enum):
|
|
HGR = 0
|
|
DHGR = 1
|