MCPcopy Create free account
hub / github.com/Breakthrough/PySceneDetect / VideoOpenFailure

Class VideoOpenFailure

scenedetect/video_stream.py:52–60  ·  view source on GitHub ↗

Raised by a backend if opening a video fails.

Source from the content-addressed store, hash-verified

50
51
52class VideoOpenFailure(Exception):
53 """Raised by a backend if opening a video fails."""
54
55 def __init__(self, message: str = "Unknown backend error."):
56 """
57 Arguments:
58 message: Additional context the backend can provide for the open failure.
59 """
60 super().__init__(message)
61
62
63class FrameRateUnavailable(VideoOpenFailure):

Callers 3

__init__Method · 0.90
resetMethod · 0.90
_open_captureMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected