(video_path)
| 135 | |
| 136 | |
| 137 | def get_fps(video_path): |
| 138 | container = av.open(video_path) |
| 139 | video_stream = next(s for s in container.streams if s.type == "video") |
| 140 | fps = video_stream.average_rate |
| 141 | container.close() |
| 142 | return fps |
nothing calls this directly
no outgoing calls
no test coverage detected