StatsManager should work correctly with VFR video.
(test_vfr_video: str)
| 135 | |
| 136 | |
| 137 | def test_vfr_stats_manager(test_vfr_video: str): |
| 138 | """StatsManager should work correctly with VFR video.""" |
| 139 | video = open_video(test_vfr_video, backend="pyav") |
| 140 | stats = StatsManager() |
| 141 | sm = SceneManager(stats_manager=stats) |
| 142 | sm.add_detector(ContentDetector()) |
| 143 | sm.detect_scenes(video=video) |
| 144 | assert len(sm.get_scene_list()) > 0 |
| 145 | |
| 146 | |
| 147 | def test_vfr_csv_output(test_vfr_video: str, tmp_path): |
nothing calls this directly
no test coverage detected