(video_path)
| 350 | |
| 351 | |
| 352 | def check_video_integrity(video_path): |
| 353 | vid = VideoReader(video_path) |
| 354 | vid.check_integrity() |
| 355 | vid.check_integrity_robust() |
| 356 | |
| 357 | |
| 358 | def imread(image_path, mode="skimage"): |
nothing calls this directly
no test coverage detected