Demonstrate usage of the `detect()` function to generate a statsfile.
(test_video_file: str)
| 35 | |
| 36 | |
| 37 | def test_api_detect_stats(test_video_file: str): |
| 38 | """Demonstrate usage of the `detect()` function to generate a statsfile.""" |
| 39 | from scenedetect import ContentDetector, detect |
| 40 | |
| 41 | detect(test_video_file, ContentDetector(), stats_file_path="frame_metrics.csv") |
| 42 | |
| 43 | |
| 44 | def test_api_scene_manager(test_video_file: str): |
nothing calls this directly
no test coverage detected