Factor to downscale each frame by. Will always be >= 1, where 1 indicates no scaling. Will be ignored if auto_downscale=True.
(self)
| 279 | |
| 280 | @property |
| 281 | def downscale(self) -> int: |
| 282 | """Factor to downscale each frame by. Will always be >= 1, where 1 |
| 283 | indicates no scaling. Will be ignored if auto_downscale=True.""" |
| 284 | return self._downscale |
| 285 | |
| 286 | @downscale.setter |
| 287 | def downscale(self, value: int): |
nothing calls this directly
no outgoing calls
no test coverage detected