(video_path)
| 44 | |
| 45 | |
| 46 | def _detect(video_path): |
| 47 | video = open_video(video_path) |
| 48 | sm = SceneManager() |
| 49 | sm.add_detector(ContentDetector()) |
| 50 | sm.detect_scenes(video) |
| 51 | return video, sm.get_scene_list() |
| 52 | |
| 53 | |
| 54 | @pytest.mark.release |
no test coverage detected