Add remaining cuts to the cutting list, after processing the last frame.
(self, timecode: FrameTimecode)
| 407 | return new_cuts |
| 408 | |
| 409 | def _post_process(self, timecode: FrameTimecode) -> None: |
| 410 | """Add remaining cuts to the cutting list, after processing the last frame.""" |
| 411 | for detector in self._detector_list: |
| 412 | self._cutting_list += detector.post_process(timecode) |
| 413 | |
| 414 | def stop(self) -> None: |
| 415 | """Stop the current :meth:`detect_scenes` call, if any. Thread-safe.""" |
no test coverage detected