Properties for each input a VideoStream is tested against.
| 78 | |
| 79 | @dataclass |
| 80 | class VideoParameters: |
| 81 | """Properties for each input a VideoStream is tested against.""" |
| 82 | |
| 83 | path: str |
| 84 | height: int |
| 85 | width: int |
| 86 | frame_rate: float |
| 87 | total_frames: int |
| 88 | aspect_ratio: float |
| 89 | |
| 90 | |
| 91 | # TODO: Save two "golden" frames from each video on a shot boundary, and use that to validate |
no outgoing calls