The underlying VideoCapture is assumed to not support seeking.
(self, target: TimecodeLike)
| 502 | return self._num_frames |
| 503 | |
| 504 | def seek(self, target: TimecodeLike): |
| 505 | """The underlying VideoCapture is assumed to not support seeking.""" |
| 506 | raise NotImplementedError("Seeking is not supported.") |
| 507 | |
| 508 | def reset(self): |
| 509 | """Not supported.""" |
nothing calls this directly
no outgoing calls
no test coverage detected