Called after there are no more frames to process. Args: timecode: The last position in the video which was read. Returns: List of timecodes where scene cuts have been detected, if any.
(self, timecode: FrameTimecode)
| 62 | # Optional Methods |
| 63 | |
| 64 | def post_process(self, timecode: FrameTimecode) -> list[FrameTimecode]: |
| 65 | """Called after there are no more frames to process. |
| 66 | |
| 67 | Args: |
| 68 | timecode: The last position in the video which was read. |
| 69 | |
| 70 | Returns: |
| 71 | List of timecodes where scene cuts have been detected, if any. |
| 72 | """ |
| 73 | return [] |
| 74 | |
| 75 | @property |
| 76 | def event_buffer_length(self) -> int: |