segmentor.py 157 B

12345
  1. from typing import List, Tuple
  2. def segmentor(scenes: List[bool], min_frames: int, threshold: float) -> List[Tuple[int, int]]:
  3. return [(1, 5), (8, 30)]