Size of each video frame in pixels as a tuple of (width, height).
(self)
| 179 | |
| 180 | @property |
| 181 | def frame_size(self) -> tuple[int, int]: |
| 182 | """Size of each video frame in pixels as a tuple of (width, height).""" |
| 183 | return (self._codec_context.width, self._codec_context.height) |
| 184 | |
| 185 | @property |
| 186 | def duration(self) -> FrameTimecode: |
nothing calls this directly
no outgoing calls
no test coverage detected