Exception instance to provide consistent error messaging across backends when the video frame rate is unavailable or cannot be calculated. Subclass of VideoOpenFailure.
| 61 | |
| 62 | |
| 63 | class FrameRateUnavailable(VideoOpenFailure): |
| 64 | """Exception instance to provide consistent error messaging across backends when the video frame |
| 65 | rate is unavailable or cannot be calculated. Subclass of VideoOpenFailure.""" |
| 66 | |
| 67 | def __init__(self): |
| 68 | super().__init__( |
| 69 | "Unable to obtain video framerate! Specify `framerate` manually, or" |
| 70 | " re-encode/re-mux the video and try again." |
| 71 | ) |
| 72 | |
| 73 | |
| 74 | ## |
no outgoing calls
no test coverage detected