(self)
| 53 | self._n_frames_robust = None |
| 54 | |
| 55 | def __repr__(self): |
| 56 | string = "Video (duration={:0.2f}, fps={}, dimensions={}x{})" |
| 57 | return string.format(self.calc_duration(), self.fps, *self.dimensions) |
| 58 | |
| 59 | def __len__(self): |
| 60 | return self._n_frames |
nothing calls this directly
no test coverage detected