Skip to content

BestSourceVideoProvider

Bases: ABCVideoProvider

Video provider that is based on BestSource.

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