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