Skip to content

FFMS2VideoProvider

Bases: ABCVideoProvider

Video provider that is based on FFMS2.

Source code in video_timestamps/video_provider/ffms2_video_provider.pyi
 9
10
11
12
13
14
15
16
class FFMS2VideoProvider(ABCVideoProvider):
    """
    Video provider that is based on [FFMS2](https://github.com/FFMS/ffms2).
    """
    def __init__(self) -> None:
        ...
    def get_pts(self, filename: str, index: int) -> tuple[list[int], Fraction, Fraction]:
        ...